diff options
| author | oy <Tom_Adams@web.de> | 2011-04-16 18:37:57 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-04-16 18:37:57 +0200 |
| commit | 726bbbbdb08a6ea9e1ed0ad1e328090692cafac5 (patch) | |
| tree | 1d34f501d656ec58df3277f82aad075f7b7c8280 /src | |
| parent | fede33447ae04d79015afadc88db97ee220f0aee (diff) | |
| download | zcatch-726bbbbdb08a6ea9e1ed0ad1e328090692cafac5.tar.gz zcatch-726bbbbdb08a6ea9e1ed0ad1e328090692cafac5.zip | |
added missing localisation in the demo player
Diffstat (limited to 'src')
| -rw-r--r-- | src/game/client/components/menus_demo.cpp | 2 |
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; |