Created
September 7, 2012 23:45
-
-
Save Hamcha/3670800 to your computer and use it in GitHub Desktop.
dartMUSH English i18n file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"messages" : { | |
"welcome" : "Welcome, you'll soon enter %NAME% (World: %WORLD%),\r\nYou'll enter as a guest, you'll need to %WHITE%LOGIN%END% to affect the world\r\n", | |
"assignedname" : "You've been assigned the name %NAME%", | |
"userlist" : "\r\nYou see %PLAYERS%", | |
"locationlist" : "\r\nYou can go: %DIRECTIONS%", | |
"unknown_go" : "Go %WHITE%where?%END%", | |
"unknown_use" : "Use %WHITE%what?%END%", | |
"unknown_say" : "Say %WHITE%what?%END%", | |
"unknown_look" : "Look %WHITE%what?%END%", | |
"unknown_switch": "Switch to %WHITE%what?%END%", | |
"unknown_param" : "There is no attribute called %PARAM%", | |
"unknown_cmd" : "What? I don't know what %CMD% means.", | |
"no_credentials": "Credentials are missing...", | |
"no_parameters" : "Some parameters are missing...", | |
"missing_name" : "You need to specify a name", | |
"logged_in" : "You are now logged in as %NAME%", | |
"no_username" : "That username doesn't exist!", | |
"wrong_password": "Wrong password!", | |
"notloggedin" : "You can't affect the world as a guest", | |
"cant_build" : "You can't build here!", | |
"cant_edit" : "You don't have rights to edit this place!", | |
"success_build" : "You created location %LOCATION%", | |
"success_edit" : "You modified location %LOCATION%", | |
"avail_places" : "You can only go to the following places from here: ", | |
"world_notfound": "World not found", | |
"switching_to" : "Switching to %WORLD%" | |
"unknown_error" : "Something went really wrong.", | |
"user_entered" : "%NAME% has entered.", | |
"user_exited" : "%NAME% went away.", | |
"user_loggedin" : "%OLD% has been recognized as %NEW%", | |
"u_newlocation" : "%NAME% created location %LOCATION%", | |
"u_editlocation": "%NAME% modified this location", | |
"chat_you_say" : "You say", | |
"chat_user_say" : "%NAME% says", | |
"yes" : "Yes", | |
"no" : "No", | |
} | |
"commands" : { | |
"GO" : ["go to", "go", "move to", "move"], | |
"EDIT" : ["set", "edit", "modify"], | |
"SAY" : ["say", "tell", "ask"], | |
"SWITCH": ["switch to", "switch"], | |
"LOOK" : ["look at", "look", "watch"], | |
"LOGIN" : ["login"], | |
"USE" : ["use"], | |
"CREATE": ["create", "build", "make"], | |
"QUIT" : ["quit", "logout", "disconnect"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment