about summary refs log tree commit diff
path: root/src/game/client/components
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-04-16 18:37:57 +0200
committeroy <Tom_Adams@web.de>2011-04-16 18:37:57 +0200
commit726bbbbdb08a6ea9e1ed0ad1e328090692cafac5 (patch)
tree1d34f501d656ec58df3277f82aad075f7b7c8280 /src/game/client/components
parentfede33447ae04d79015afadc88db97ee220f0aee (diff)
downloadzcatch-726bbbbdb08a6ea9e1ed0ad1e328090692cafac5.tar.gz
zcatch-726bbbbdb08a6ea9e1ed0ad1e328090692cafac5.zip
added missing localisation in the demo player
Diffstat (limited to 'src/game/client/components')
-rw-r--r--src/game/client/components/menus_demo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/client/components/menus_demo.cpp b/src/game/client/components/menus_demo.cpp
index 7fcfab99..28b22b7f 100644
--- a/src/game/client/components/menus_demo.cpp
+++ b/src/game/client/components/menus_demo.cpp
@@ -201,7 +201,7 @@ void CMenus::RenderDemoPlayer(CUIRect MainView)
 
 		// demo name
 		char aBuf[128];
-		str_format(aBuf, sizeof(aBuf), "Demofile: %s", DemoPlayer()->GetDemoName());
+		str_format(aBuf, sizeof(aBuf), Localize("Demofile: %s"), DemoPlayer()->GetDemoName());
 		CTextCursor Cursor;
 		TextRender()->SetCursor(&Cursor, NameBar.x, NameBar.y, Button.h*0.5f, TEXTFLAG_RENDER|TEXTFLAG_STOP_AT_END);
 		Cursor.m_LineWidth = MainView.w;