intl/README.md
msg_hash_us.json and the editor should openLinks:
You can open a new issue and @guoyunhe to add new language.
Install Java, Python3 and Git
cd intl
python3 crowin_sync.py
Links:
#else// bad
MSG_HASH(
MENU_ENUM_SUBLABEL_CHEEVOS_ENABLE,
"Compete to earn custom-made achievements in classic games.\n"
"For more information, visit http://retroachievements.org"
)
// good
MSG_HASH(
MENU_ENUM_SUBLABEL_CHEEVOS_ENABLE,
"Compete to earn custom-made achievements in classic games.\nFor more information, visit http://retroachievements.org"
)
// bad (x)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CTR_VIDEO_MODE_2D_800x240,
"2D (High Resolution)"
)
// good (X)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CTR_VIDEO_MODE_2D_800X240,
"2D (High Resolution)"
)