From ab171f8f303306f5b45e2ccaa4c47404b11b0256 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Mon, 15 Jun 2009 07:34:25 +0000 Subject: updated localization --- src/game/client/components/chat.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/game/client/components/chat.cpp') 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; -- cgit 1.4.1