diff options
| author | Tom Adams <Tom_Adams@web.de> | 2010-05-31 11:07:58 +0000 |
|---|---|---|
| committer | Tom Adams <Tom_Adams@web.de> | 2010-05-31 11:07:58 +0000 |
| commit | 651cd062e671b97e9f8930860f31dbaa045e17fa (patch) | |
| tree | 3536657345ac7ac34903cfad8913f6025ee0e552 /src/game/client/components/menus_browser.cpp | |
| parent | 262b566c94b547dc4fbc7fda2c3f5c9a51a19834 (diff) | |
| download | zcatch-651cd062e671b97e9f8930860f31dbaa045e17fa.tar.gz zcatch-651cd062e671b97e9f8930860f31dbaa045e17fa.zip | |
fixed english localisation bug
Diffstat (limited to 'src/game/client/components/menus_browser.cpp')
| -rw-r--r-- | src/game/client/components/menus_browser.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/game/client/components/menus_browser.cpp b/src/game/client/components/menus_browser.cpp index f2437107..8d9b11cf 100644 --- a/src/game/client/components/menus_browser.cpp +++ b/src/game/client/components/menus_browser.cpp @@ -56,12 +56,12 @@ void CMenus::RenderServerbrowserServerList(CUIRect View) {COL_FLAG_LOCK, -1, " ", -1, 14.0f, 0, {0}, {0}}, {COL_FLAG_PURE, -1, " ", -1, 14.0f, 0, {0}, {0}}, {COL_FLAG_FAV, -1, " ", -1, 14.0f, 0, {0}, {0}}, - {COL_NAME, IServerBrowser::SORT_NAME, Localize("Name"), 0, 300.0f, 0, {0}, {0}}, - {COL_GAMETYPE, IServerBrowser::SORT_GAMETYPE, Localize("Type"), 1, 50.0f, 0, {0}, {0}}, - {COL_MAP, IServerBrowser::SORT_MAP, Localize("Map"), 1, 100.0f, 0, {0}, {0}}, - {COL_PLAYERS, IServerBrowser::SORT_NUMPLAYERS, Localize("Players"), 1, 60.0f, 0, {0}, {0}}, + {COL_NAME, IServerBrowser::SORT_NAME, "Name", 0, 300.0f, 0, {0}, {0}}, // Localize - these strings are localized within CLocConstString + {COL_GAMETYPE, IServerBrowser::SORT_GAMETYPE, "Type", 1, 50.0f, 0, {0}, {0}}, + {COL_MAP, IServerBrowser::SORT_MAP, "Map", 1, 100.0f, 0, {0}, {0}}, + {COL_PLAYERS, IServerBrowser::SORT_NUMPLAYERS, "Players", 1, 60.0f, 0, {0}, {0}}, {-1, -1, " ", 1, 10.0f, 0, {0}, {0}}, - {COL_PING, IServerBrowser::SORT_PING, Localize("Ping"), 1, 40.0f, FIXED, {0}, {0}}, + {COL_PING, IServerBrowser::SORT_PING, "Ping", 1, 40.0f, FIXED, {0}, {0}}, }; int NumCols = sizeof(s_aCols)/sizeof(CColumn); @@ -486,9 +486,9 @@ void CMenus::RenderServerbrowserServerDetail(CUIRect View) { CUIRect Row; static CLocConstString s_aLabels[] = { - Localize("Version"), - Localize("Game type"), - Localize("Ping")}; + "Version", // Localize - these strings are localized within CLocConstString + "Game type", + "Ping"}; CUIRect LeftColumn; CUIRect RightColumn; |