mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
14 lines
300 B
C
14 lines
300 B
C
#ifndef I18N_H
|
|
#define I18N_H
|
|
|
|
#include "trstr.h"
|
|
|
|
void unloadLocale();
|
|
void loadLocale(const char* locale);
|
|
const char* findtext(unsigned int msgid, const char* fallback);
|
|
int getLocaleFamily();
|
|
|
|
#define LOCALE_FAMILY_LATIN 1
|
|
#define LOCALE_FAMILY_ASIAN 2
|
|
|
|
#endif /* end of include guard: I18N_H */
|