Add ObjectRef:punch and ObjectRef:right_click to Lua API
[oweals/minetest.git] / src / gettext.h
index ff3a0f8cb7a5c52e8a7fe3565f5a0f6d6bd10059..0e6ee0fd5f779965a1dc7d10caeb3f214c880284 100644 (file)
@@ -1,5 +1,6 @@
 #ifndef GETTEXT_HEADER
 #include "config.h" // for USE_GETTEXT
+#include <iostream>
 
 #if USE_GETTEXT
 #include <libintl.h>
@@ -30,6 +31,11 @@ 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;