Skip to content

Instantly share code, notes, and snippets.

@robotgryphon
Created May 25, 2016 19:39
Show Gist options
  • Save robotgryphon/76ce44bceeb10443fadd3177dab01e1d to your computer and use it in GitHub Desktop.
Save robotgryphon/76ce44bceeb10443fadd3177dab01e1d to your computer and use it in GitHub Desktop.
JSON lang format?
{
"tile": {
"beds": {
"wooden.name": "Wooden Bed",
"stone.name": "Stone Bed"
},
"bedcraftbeyond": {
"rug": {
"Black.name": "Black Rug",
"Red.name": "Red Rug",
"Green.name": "Green Rug",
"Brown.name": "Brown Rug",
"Blue.name": "Blue Rug",
"Purple.name": "Purple Rug",
"Cyan.name": "Cyan Rug",
"LightGray.name": "Light Gray Rug",
"Gray.name": "Gray Rug",
"Pink.name": "Pink Rug",
"Lime.name": "Lime Rug",
"Yellow.name": "Yellow Rug",
"LightBlue.name": "Light Blue Rug",
"Magenta.name": "Magenta Rug",
"Orange.name": "Orange Rug",
"White.name": "White Rug"
}
}
},
"item": {
"beds": {
"wooden.name": "Wooden Bed",
"drawer.name": "Bed Drawer",
"stone.name": "Stone Bed",
"scissorsItem.name": "Scissors",
"drawerKey.name": "Drawer Key",
"dye_bottle.name": "Bottle of Dye",
"linens": {
"blankets.name": "Blankets",
"sheets.name": "Sheets"
}
}
},
"itemGroup": {
"bedcraftbeyond": {
"~": "BedCraft and Beyond",
"beds": "BedCraft Beds"
}
},
"bedcraftbeyond": {
"frames": {
"messages": {
"reset_complete": "Reset whitelist for type %s.",
"reset_entry_complete": "Reset whitelist for entry %s, under type %s.",
"frame_valid": "Block %s (meta %s) is a valid frame type for %s.",
"frame_invalid": "Block %s (meta %s) is NOT a valid frame type for %s."
},
"errors": {
"invalid_meta": "Invalid metadata for whitelist entry '%s': '%d'.",
"already_added": "Entry %s is already added to the whitelist for type %s.",
"already_added_meta": "Entry %s already has meta %s added to its whitelist for type %s.",
"not_valid_entry": "Invalid frame entry: %s is not in the valid frame list.",
"unknown_frame_type": "Unknown frame type.",
"no_frame_type": "No frame type selected."
},
"blacklisted": {
"~": "Successfully whitelisted %s (and its variants) to frame type %s.",
"fail": "Failed to whitelist %s (and its variants) to frame type %s.",
"by_meta": {
"~": "Successfully blacklisted %s (meta %s) to %s frame type.",
"fail": "Failed to blacklist %s (meta %s) to %s frame type."
},
},
"whitelisted": {
"~": "Successfully whitelisted %s (and its variants) to frame type %s.",
"fail": "Failed to whitelist %s (and its variants) to frame type %s.",
"by_meta": {
"~": "Successfully whitelisted %s (meta %s) to frame type %s.",
"fail": "Failed to whitelist %s (meta %s) to frame type %s."
}
}
}
}
}
# Blocks
tile.beds.wooden.name=Wooden Bed
tile.beds.stone.name=Stone Bed
# Rugs
tile.rug.Black.name=Black Rug
tile.rug.Red.name=Red Rug
tile.rug.Green.name=Green Rug
tile.rug.Brown.name=Brown Rug
tile.rug.Blue.name=Blue Rug
tile.rug.Purple.name=Purple Rug
tile.rug.Cyan.name=Cyan Rug
tile.rug.LightGray.name=Light Gray Rug
tile.rug.Gray.name=Gray Rug
tile.rug.Pink.name=Pink Rug
tile.rug.Lime.name=Lime Rug
tile.rug.Yellow.name=Yellow Rug
tile.rug.LightBlue.name=Light Blue Rug
tile.rug.Magenta.name=Magenta Rug
tile.rug.Orange.name=Orange Rug
tile.rug.White.name=White Rug
# Items
item.beds.wooden.name=Wooden Bed
item.beds.drawer.name=Bed Drawer
item.beds.stone.name=Stone Bed
item.scissorsItem.name=Scissors
item.drawerKey.name=Drawer Key
item.dye_bottle.name=Bottle of Dye
item.linens.blankets.name=Blankets
item.linens.sheets.name=Sheets
# GUI
# Other
itemGroup.bedcraftbeyond=BedCraft and Beyond
itemGroup.bedcraftbeyond.beds=BedCraft Beds
### FRAMES!!
# Frame Messages
bedcraftbeyond.frames.messages.reset_complete=Reset whitelist for type %s.
bedcraftbeyond.frames.messages.reset_entry_complete=Reset whitelist for entry %s, under type %s.
bedcraftbeyond.frames.messages.frame_valid=Block %s (meta %s) is a valid frame type for %s.
bedcraftbeyond.frames.messages.frame_invalid=Block %s (meta %s) is NOT a valid frame type for %s.
# Frame Errors
bedcraftbeyond.frames.errors.invalid_meta=Invalid metadata for whitelist entry '%s': '%d'.
bedcraftbeyond.frames.errors.already_added=Entry %s is already added to the whitelist for type %s.
bedcraftbeyond.frames.errors.already_added_meta=Entry %s already has meta %s added to its whitelist for type %s.
bedcraftbeyond.frames.errors.not_valid_entry=Invalid frame entry: %s is not in the valid frame list.
bedcraftbeyond.frames.errors.unknown_frame_type=Unknown frame type.
bedcraftbeyond.frames.errors.no_frame_type=No frame type selected.
# Blacklist Frame Command
bedcraftbeyond.frames.blacklisted=Successfully whitelisted %s (and its variants) to frame type %s.
bedcraftbeyond.frames.blacklisted.fail=Failed to whitelist %s (and its variants) to frame type %s.
bedcraftbeyond.frames.blacklisted.by_meta=Successfully blacklisted %s (meta %s) to %s frame type.
bedcraftbeyond.frames.blacklisted.by_meta.fail=Failed to blacklist %s (meta %s) to %s frame type.
# Whitelist Frame Command
bedcraftbeyond.frames.whitelisted=Successfully whitelisted %s (and its variants) to frame type %s.
bedcraftbeyond.frames.whitelisted.fail=Failed to whitelist %s (and its variants) to frame type %s.
bedcraftbeyond.frames.whitelisted.by_meta=Successfully whitelisted %s (meta %s) to frame type %s.
bedcrafybeyond.frames.whitelisted.by_meta.fail=Failed to whitelist %s (meta %s) to frame type %s.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment