23 lines
805 B
Lua
23 lines
805 B
Lua
return setmetatable({
|
|
["newgame_button"] = "New Game",
|
|
["join_button"] = "Join Server",
|
|
["quit_button"] = "Quit",
|
|
["option_button"] = "Settings",
|
|
["mainmenu_button"] = "Main Menu",
|
|
["option_name"] = "Player Name",
|
|
["option_pron"] = "Player Pronouns",
|
|
["option_tint"] = "Player Colour",
|
|
["option_keybinds"] = "Edit Keybindings",
|
|
["utf8_error"] = "[countrypilled]",
|
|
["server_browser"] = "Server Browser",
|
|
["ip_button"] = "Enter IP:",
|
|
["svinfo_name"] = "Server Name",
|
|
["svinfo_map"] = "Current Map",
|
|
["svinfo_players"] = "In",
|
|
["svinfo_capacity"] = "Max",
|
|
["svinfo_ip"] = "IP",
|
|
["svinfo_port"] = "Port",
|
|
["refresh_button"] = "Refresh",
|
|
["cancel_button"] = "Cancel",
|
|
game_intro = "A gaze blank and pitiless as the sun",
|
|
}, {__index = function( t, k ) return k end } ) |