diff options
| author | oy <Tom_Adams@web.de> | 2010-11-19 20:20:51 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-11-19 20:20:51 +0100 |
| commit | 32e52d51ceeebc36d4ad520f730ba8ac4009d8a9 (patch) | |
| tree | ad00ad53f166ed5b84e4be5afff517b926df724f /src/game/client | |
| parent | 101f1da20759eafe091b0593cf44609a9c405b66 (diff) | |
| download | zcatch-32e52d51ceeebc36d4ad520f730ba8ac4009d8a9.tar.gz zcatch-32e52d51ceeebc36d4ad520f730ba8ac4009d8a9.zip | |
added a missing localisation
Diffstat (limited to 'src/game/client')
| -rw-r--r-- | src/game/client/components/scoreboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/scoreboard.cpp b/src/game/client/components/scoreboard.cpp index fd862348..0f91a0df 100644 --- a/src/game/client/components/scoreboard.cpp +++ b/src/game/client/components/scoreboard.cpp @@ -63,7 +63,7 @@ void CScoreboard::RenderGoals(float x, float y, float w) if(m_pClient->m_Snap.m_pGameobj->m_TimeLimit) { char aBuf[64]; - str_format(aBuf, sizeof(aBuf), "%s: %d min", Localize("Time limit"), m_pClient->m_Snap.m_pGameobj->m_TimeLimit); + str_format(aBuf, sizeof(aBuf), Localize("Time limit: %d min"), m_pClient->m_Snap.m_pGameobj->m_TimeLimit); TextRender()->Text(0, x+220.0f, y, 22.0f, aBuf, -1); tw += TextRender()->TextWidth(0, 22.0f, aBuf, -1); } |