mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 15:45:43 +00:00
49576dda9e
- since NSIS 3 Unicode is allowed and even required. The first installer for RC1 used the non-Unicode and therefore users of non-Latin script languages could not see readable text in the installer. - also remove some JabRef residues
33 lines
981 B
Plaintext
33 lines
981 B
Plaintext
!macro LANG LANG_NAME
|
|
# NSIS language file
|
|
!insertmacro MUI_LANGUAGE "${LANG_NAME}"
|
|
# LyX language file
|
|
!insertmacro LANGFILE_INCLUDE_WITHDEFAULT "lang\${LANG_NAME}.nsh" "lang\english.nsh"
|
|
!macroend
|
|
|
|
# list of all languages the installers are translated to
|
|
!insertmacro LANG "english" # first language is the default
|
|
!insertmacro LANG "arabic"
|
|
!insertmacro LANG "basque"
|
|
!insertmacro LANG "catalan"
|
|
!insertmacro LANG "czech"
|
|
!insertmacro LANG "danish"
|
|
!insertmacro LANG "dutch"
|
|
!insertmacro LANG "french"
|
|
!insertmacro LANG "german"
|
|
!insertmacro LANG "galician"
|
|
!insertmacro LANG "hungarian"
|
|
!insertmacro LANG "indonesian"
|
|
!insertmacro LANG "italian"
|
|
!insertmacro LANG "japanese"
|
|
!insertmacro LANG "norwegian"
|
|
!insertmacro LANG "polish"
|
|
!insertmacro LANG "portuguese"
|
|
!insertmacro LANG "portugueseBR"
|
|
!insertmacro LANG "romanian"
|
|
!insertmacro LANG "slovak"
|
|
!insertmacro LANG "spanish"
|
|
!insertmacro LANG "swedish"
|
|
!insertmacro LANG "turkish"
|
|
!insertmacro LANG "ukrainian"
|