1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-05-09 18:43:45 +00:00
oot/include/translation.h
2025-04-23 03:22:00 -04:00

16 lines
543 B
C

#ifndef TRANSLATION_H
#define TRANSLATION_H
/**
* Note: This translation macro exists for quality of life purposes.
* This does not refect anything from the original game
*
* The "T" macro holds translations in English for original debug strings written in Japanese.
* The translated strings are only direct translations. Certain names or terms may not reflect
* their in-game localized counterparts.
*
* To use translated English strings in the build, change the definition below from to "en".
*/
#define T(jp, en) jp
#endif