diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-06-15 07:34:25 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-06-15 07:34:25 +0000 |
| commit | ab171f8f303306f5b45e2ccaa4c47404b11b0256 (patch) | |
| tree | 379a16543832b67012694d04b077b666efafd9f1 /src/game/client/components/chat.cpp | |
| parent | f9ef0293ff882b97cfe650e92fe0844c8920f4e3 (diff) | |
| download | zcatch-ab171f8f303306f5b45e2ccaa4c47404b11b0256.tar.gz zcatch-ab171f8f303306f5b45e2ccaa4c47404b11b0256.zip | |
updated localization
Diffstat (limited to 'src/game/client/components/chat.cpp')
| -rw-r--r-- | src/game/client/components/chat.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/game/client/components/chat.cpp b/src/game/client/components/chat.cpp index 8ef4e17d..a03aab65 100644 --- a/src/game/client/components/chat.cpp +++ b/src/game/client/components/chat.cpp @@ -143,11 +143,13 @@ void CHAT::on_render() cursor.line_width = 200.0f; if(mode == MODE_ALL) - gfx_text_ex(&cursor, "All: ", -1); + gfx_text_ex(&cursor, localize("All"), -1); else if(mode == MODE_TEAM) - gfx_text_ex(&cursor, "Team: ", -1); + gfx_text_ex(&cursor, localize("Team"), -1); else - gfx_text_ex(&cursor, "Chat: ", -1); + gfx_text_ex(&cursor, localize("Chat"), -1); + + gfx_text_ex(&cursor, ": ", -1); gfx_text_ex(&cursor, input.get_string(), input.cursor_offset()); TEXT_CURSOR marker = cursor; |