]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/gettext.h
Document zoom_fov in settingtypes.txt and minetest.conf.example
[dragonfireclient.git] / src / gettext.h
index dce45fa3aafd3b339bbf843cbcb6fc5ab3b53c5b..b8d27f77ceb82a2b229ba8e01b24b4baf461a0cd 100644 (file)
@@ -23,37 +23,25 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "config.h" // for USE_GETTEXT
 
 #if USE_GETTEXT
-#include <libintl.h>
+       #include <libintl.h>
 #else
-#define gettext(String) String
+       #define gettext(String) String
 #endif
 
 #define _(String) gettext(String)
-#define gettext_noop(String) String
-#define N_(String) gettext_noop (String)
+#define gettext_noop(String) (String)
+#define N_(String) gettext_noop((String))
 
-#ifdef _MSC_VER
-void init_gettext(const char *path, const std::string &configured_language, int argc, char** argv);
-#else
-void init_gettext(const char *path, const std::string &configured_language);
-#endif
+void init_gettext(const char *path, const std::string &configured_language,
+       int argc, char *argv[]);
 
-extern const wchar_t *narrow_to_wide_c(const char *mbs);
-extern std::wstring narrow_to_wide(const std::string &mbs);
+extern wchar_t *utf8_to_wide_c(const char *str);
 
 // You must free the returned string!
+// The returned string is allocated using new
 inline const wchar_t *wgettext(const char *str)
 {
-       return narrow_to_wide_c(gettext(str));
-}
-
-// Gettext under MSVC needs this strange way. Just don't ask...
-inline std::wstring wstrgettext(const std::string &text)
-{
-       const wchar_t *tmp = wgettext(text.c_str());
-       std::wstring retval = (std::wstring)tmp;
-       delete[] tmp;
-       return retval;
+       return utf8_to_wide_c(gettext(str));
 }
 
 inline std::string strgettext(const std::string &text)