diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-08-13 10:46:15 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-08-13 10:46:15 +0200 |
commit | 40094c2620248c0f79df12e5860bf6eb26614f75 (patch) | |
tree | aa5916d683f1b77d433f207162c970f43e3bbadc /main.lua | |
parent | Finished up the main plugin. (diff) | |
download | cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.gz cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.bz2 cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.lz cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.xz cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.tar.zst cuberite-40094c2620248c0f79df12e5860bf6eb26614f75.zip |
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ -- This plugin copyright Alexander Harkness 2013, licensed under the MIT license. -- Configuration -g_ServerLang = "english" -g_ConsoleLang = "english" +g_ServerLang = "en" +g_ConsoleLang = "en" -- Global Variables g_Plugin = nil @@ -23,7 +23,7 @@ function Initialize( Plugin ) Plugin:SetVersion( 1 ) -- This is the place for commands! - g_PluginManager:BindCommand("/language", "transapi.setlang", HandleLanguageCommand, " - Set your preferred language.") + g_PluginManager:BindCommand("/language", "transapi.setlang", HandleLanguageCommand, " - Set your preferred language (use ISO 639-1)") -- Load the userdata file. g_UserData = cIniFile( g_PluginDir .. "/userdata.ini" ) |