diff options
Diffstat (limited to 'src/gettext.h')
-rw-r--r-- | src/gettext.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gettext.h b/src/gettext.h index ca82b1f02..fd32e082f 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -83,5 +83,12 @@ inline void changeCtype(const char *l) else infostream<<"locale has been set to:"<<ret<<std::endl;*/ } + +inline std::wstring wstrgettext(std::string text) { + wchar_t* wlabel = wgettext(text.c_str()); + std::wstring out = (std::wstring)wlabel; + delete[] wlabel; + return out; +} #define GETTEXT_HEADER #endif |