about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-11-19 20:20:51 +0100
committeroy <Tom_Adams@web.de>2010-11-19 20:20:51 +0100
commit32e52d51ceeebc36d4ad520f730ba8ac4009d8a9 (patch)
treead00ad53f166ed5b84e4be5afff517b926df724f /src
parent101f1da20759eafe091b0593cf44609a9c405b66 (diff)
downloadzcatch-32e52d51ceeebc36d4ad520f730ba8ac4009d8a9.tar.gz
zcatch-32e52d51ceeebc36d4ad520f730ba8ac4009d8a9.zip
added a missing localisation
Diffstat (limited to 'src')
-rw-r--r--src/game/client/components/scoreboard.cpp2
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);
 		}