diff options
author | Constantin Wenger <constantin.wenger@googlemail.com> | 2011-07-20 16:51:19 +0200 |
---|---|---|
committer | Constantin Wenger <constantin.wenger@googlemail.com> | 2011-07-20 16:51:19 +0200 |
commit | 052bb24c7f03e5542be2b8c2a14662fcbf928a42 (patch) | |
tree | b82d6fa9554fe4e6b4c6751cc1bba054965f73d3 /src/guiTextInputMenu.cpp | |
parent | d0810b0156073833b9966672c86b5fc3650dade9 (diff) | |
download | minetest-052bb24c7f03e5542be2b8c2a14662fcbf928a42.tar.gz minetest-052bb24c7f03e5542be2b8c2a14662fcbf928a42.tar.bz2 minetest-052bb24c7f03e5542be2b8c2a14662fcbf928a42.zip |
added gettext support
german translation file
and bashscript to update translations
Diffstat (limited to 'src/guiTextInputMenu.cpp')
-rw-r--r-- | src/guiTextInputMenu.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/guiTextInputMenu.cpp b/src/guiTextInputMenu.cpp index 2cb8cae62..b15f8bc07 100644 --- a/src/guiTextInputMenu.cpp +++ b/src/guiTextInputMenu.cpp @@ -22,6 +22,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "serialization.h" #include <string> +#include "gettext.h" + GUITextInputMenu::GUITextInputMenu(gui::IGUIEnvironment* env, gui::IGUIElement* parent, s32 id, IMenuManager *menumgr, @@ -105,7 +107,7 @@ void GUITextInputMenu::regenerateGui(v2u32 screensize) { core::rect<s32> rect(0, 0, 140, 30); rect = rect + v2s32(size.X/2-140/2, size.Y/2-30/2+25); - Environment->addButton(rect, this, 257, L"Proceed"); + Environment->addButton(rect, this, 257, chartowchar_t(gettext("Proceed"))); } } |