| | #ifndef LANG_ID
# define LANG_ID__EN_US 0x0409
# define LANG_ID__RU_RU 0x0419
# define LANG_ID LANG_ID__EN_US
# if LANG_ID == LANG_ID__EN_US
# define LANGS(msg_en_US, msg_ru_RU) msg_en_US
# elif LANG_ID == LANG_ID__RU_RU
# define LANGS(msg_en_US, msg_ru_RU) msg_ru_RU
# endif
#endif // LANG_ID
LOCALIZATION_ITEM(hello, "Hello", "Привет")
LOCALIZATION_ITEM(bye, "Bye", "Пока")
|