mirror of
https://github.com/minetest/minetest.git
synced 2024-11-11 10:13:45 +01:00
20 lines
422 B
C
20 lines
422 B
C
#ifdef USE_GETTEXT
|
|
#include <libintl.h>
|
|
#else
|
|
#define gettext(String) String
|
|
#define bindtextdomain(domain, dir) /* */
|
|
#define textdomain(domain) /* */
|
|
#endif
|
|
|
|
#define _(String) gettext(String)
|
|
#define gettext_noop(String) String
|
|
#define N_(String) gettext_noop (String)
|
|
|
|
inline wchar_t* chartowchar_t(const char *str)
|
|
{
|
|
size_t l = strlen(str)+1;
|
|
wchar_t* nstr = new wchar_t[l];
|
|
mbstowcs(nstr, str, l);
|
|
return nstr;
|
|
}
|