#pragma once #include #define _(x) LanguageTranslate(x) #define ngettext(x, y, z) LanguagePluralTranslate(x, y, z) #define pgettext(context, x) LanguageParticularTranslate(context, x) #define N_(x) (x) #define P_(context, x) (x) bool HasTranslation(const std::string &locale); void LanguageInitialize(); const std::string &LanguageParticularTranslate(const char *context, const char *message); const std::string &LanguagePluralTranslate(const char *singular, const char *plural, int count); const std::string &LanguageTranslate(const char *key); // Chinese and Japanese, and Korean small font is 16px instead of a 12px one for readability. bool IsSmallFontTall();