diff options
| author | Fujnky <larsfunke1996@gmail.com> | 2010-06-07 16:17:40 +0200 |
|---|---|---|
| committer | Fujnky <larsfunke1996@gmail.com> | 2010-06-07 16:17:40 +0200 |
| commit | 7ca5e0fbb1e55806a53bcfe7e9747f1b881505a7 (patch) | |
| tree | da7bccba448794bf5f36735730e30cb94f0f7eed /src/game/editor | |
| parent | 7cc7c8f84eba9d9c103e6cc393da9c0fab41cf16 (diff) | |
| download | zcatch-7ca5e0fbb1e55806a53bcfe7e9747f1b881505a7.tar.gz zcatch-7ca5e0fbb1e55806a53bcfe7e9747f1b881505a7.zip | |
Fixed localizations, most german translation strings fit in buttons now.
Diffstat (limited to 'src/game/editor')
| -rw-r--r-- | src/game/editor/ed_editor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/editor/ed_editor.cpp b/src/game/editor/ed_editor.cpp index 92939bb4..63963dc2 100644 --- a/src/game/editor/ed_editor.cpp +++ b/src/game/editor/ed_editor.cpp @@ -1986,9 +1986,9 @@ void CEditor::RenderImages(CUIRect ToolBox, CUIRect ToolBar, CUIRect View) ToolBox.HSplitTop(15.0f, &Slot, &ToolBox); if(e == 0) - UI()->DoLabel(&Slot, Localize(""Embedded"), 12.0f, 0); + UI()->DoLabel(&Slot, Localize("Embedded"), 12.0f, 0); else - UI()->DoLabel(&Slot, Localize(""External"), 12.0f, 0); + UI()->DoLabel(&Slot, Localize("External"), 12.0f, 0); } ImageCur++; @@ -2700,7 +2700,7 @@ void CEditor::RenderMenubar(CUIRect MenuBar) static CUIRect s_File /*, view, help*/; MenuBar.VSplitLeft(60.0f, &s_File, &MenuBar); - if(DoButton_Menu(&s_File, "File", 0, &s_File, 0, 0)) + if(DoButton_Menu(&s_File, Localize("File"), 0, &s_File, 0, 0)) UiInvokePopupMenu(&s_File, 1, s_File.x, s_File.y+s_File.h-1.0f, 120, 150, PopupMenuFile, this); /* |