X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fgettext.h;h=54470cb0d863fc03ea25f04e2c5e9ca3bfd82649;hb=43ebec2be1949aa5eac127df7cb902d37e4e461b;hp=a42820a15d1a28473d4983da1c67d27277b937cb;hpb=a817419fe497fad32d675fbe16b1419c853ae083;p=minetest.git diff --git a/src/gettext.h b/src/gettext.h index a42820a15..54470cb0d 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -1,5 +1,6 @@ #ifndef GETTEXT_HEADER #include "config.h" // for USE_GETTEXT +#include "log.h" #if USE_GETTEXT #include @@ -13,7 +14,10 @@ inline void init_gettext(const char *path) { #if USE_GETTEXT - setlocale(LC_MESSAGES, ""); + // don't do this if MSVC compiler is used, it gives an assertion fail + #ifndef _MSC_VER + setlocale(LC_MESSAGES, ""); + #endif bindtextdomain(PROJECT_NAME, path); textdomain(PROJECT_NAME); #endif @@ -27,14 +31,19 @@ inline wchar_t* chartowchar_t(const char *str) return nstr; } +inline wchar_t* wgettext(const char *str) +{ + return chartowchar_t(gettext(str)); +} + inline void changeCtype(const char *l) { char *ret = NULL; ret = setlocale(LC_CTYPE, l); if(ret == NULL) - std::cout<<"locale could not be set"<