usbloadergx/source/language/gettext.h
2020-12-12 21:35:12 +00:00

24 lines
383 B
C

#ifndef _GETTEXT_H_
#define _GETTEXT_H_
#ifdef __cplusplus
extern "C"
{
#endif
bool gettextLoadLanguage(const char* langFile);
void gettextCleanUp(void);
/*
* input msg = a text in ASCII
* output = the translated msg in utf-8
*/
const char *get_text(const char *msg);
#define tr(s) get_text(s)
#define trNOOP(s) (s)
#ifdef __cplusplus
}
#endif
#endif /* _GETTEXT_H_ */