27 lines
1.3 KiB
Plaintext
27 lines
1.3 KiB
Plaintext
# language_menu.nsi
|
|
# Prepare for language selection menu with native language names
|
|
# In a separate file so the main script can remain ASCII text, whereas this
|
|
# file can be UTF-16LE
|
|
|
|
# Order doesn't appear to matter, NSIS sorts the menu by itself.
|
|
Push ${LANG_ENGLISH}
|
|
Push "English"
|
|
Push ${LANG_GERMAN}
|
|
Push "Deutsch"
|
|
Push ${LANG_SPANISH}
|
|
Push "Español"
|
|
Push ${LANG_FRENCH}
|
|
Push "Français"
|
|
Push ${LANG_ITALIAN}
|
|
Push "Italiano"
|
|
Push ${LANG_DUTCH}
|
|
Push "Nederlands"
|
|
Push ${LANG_PORTUGUESEBR}
|
|
Push "Português do Brasil"
|
|
Push ${LANG_JAPANESE}
|
|
Push "日本語"
|
|
Push ${LANG_KOREAN}
|
|
Push "한국어"
|
|
Push ${LANG_SIMPCHINESE}
|
|
Push "中文 (简体)"
|