diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-06-15 09:46:25 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-06-15 09:46:25 +0000 |
| commit | b3c1bae2e917faf6e2f4e9f3075195a03a16f8ba (patch) | |
| tree | c48d376273ccc54f65698ab797816afa9cb67d0a /src/game/client/components/menus.cpp | |
| parent | a934488e9f2c5aeb1997a4b3b9ecdad2537686d1 (diff) | |
| download | zcatch-b3c1bae2e917faf6e2f4e9f3075195a03a16f8ba.tar.gz zcatch-b3c1bae2e917faf6e2f4e9f3075195a03a16f8ba.zip | |
cleaned up localization. fixed motd so it shows when connecting to a server
Diffstat (limited to 'src/game/client/components/menus.cpp')
| -rw-r--r-- | src/game/client/components/menus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/components/menus.cpp b/src/game/client/components/menus.cpp index f415fba6..a8165418 100644 --- a/src/game/client/components/menus.cpp +++ b/src/game/client/components/menus.cpp @@ -867,7 +867,7 @@ int MENUS::render() ui_vsplit_l(&label, 100.0f, 0, &textbox); ui_vsplit_l(&textbox, 20.0f, 0, &textbox); ui_vsplit_r(&textbox, 60.0f, &textbox, 0); - ui_do_label(&label, localize("Password:"), 20, -1); + ui_do_label(&label, localize("Password"), 20, -1); ui_do_edit_box(&config.password, &textbox, config.password, sizeof(config.password), 14.0f, true); } else if(popup == POPUP_FIRST_LAUNCH) @@ -889,7 +889,7 @@ int MENUS::render() ui_vsplit_l(&label, 100.0f, 0, &textbox); ui_vsplit_l(&textbox, 20.0f, 0, &textbox); ui_vsplit_r(&textbox, 60.0f, &textbox, 0); - ui_do_label(&label, localize("Nickname:"), 20, -1); + ui_do_label(&label, localize("Nickname"), 20, -1); ui_do_edit_box(&config.player_name, &textbox, config.player_name, sizeof(config.player_name), 14.0f); } else |