about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-11-21 14:12:39 +0100
committeroy <Tom_Adams@web.de>2010-11-21 14:12:39 +0100
commitba05ddd0f5fc56dd07237fb7804103c9aee3fa18 (patch)
treec9b8a8f95fce1c7ae59a445d19e8adda0cc0015b /src/game
parentfaee45d928f366a5ced6c899ade041c8b36356bc (diff)
downloadzcatch-ba05ddd0f5fc56dd07237fb7804103c9aee3fa18.tar.gz
zcatch-ba05ddd0f5fc56dd07237fb7804103c9aee3fa18.zip
removed duplicate entry from the localisation files
Diffstat (limited to 'src/game')
-rw-r--r--src/game/client/components/hud.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/components/hud.cpp b/src/game/client/components/hud.cpp
index 239bcd17..f7e00edb 100644
--- a/src/game/client/components/hud.cpp
+++ b/src/game/client/components/hud.cpp
@@ -231,11 +231,11 @@ void CHud::RenderVoting()
 	
 	const char *pYesKey = m_pClient->m_pBinds->GetKey("vote yes");
 	const char *pNoKey = m_pClient->m_pBinds->GetKey("vote no");
-	str_format(Buf, sizeof(Buf), "%s - %s", pYesKey, Localize("Vote Yes"));
+	str_format(Buf, sizeof(Buf), "%s - %s", pYesKey, Localize("Vote yes"));
 	Base.y += Base.h+1;
 	UI()->DoLabel(&Base, Buf, 6.0f, -1);
 
-	str_format(Buf, sizeof(Buf), "%s - %s", Localize("Vote No"), pNoKey);
+	str_format(Buf, sizeof(Buf), "%s - %s", Localize("Vote no"), pNoKey);
 	UI()->DoLabel(&Base, Buf, 6.0f, 1);
 }