move windowsinstaller to /package update artwork adapt to conda builds make msvc redist directory optional automate version information definition use relative directories for file locations definitions improve/update readme partially update Delete.bat for qt6 libpack add .gitignore update signing.bat and add hashing command WindowsInstaller: use --safe-mode in freecadcmd commands [skip ci] WindowsInstaller: make windows 8 the minimum version [skip ci] WindowsInstaller: allow configuring some values via command line windows installer update for qt6 build
34 lines
1011 B
NSIS
34 lines
1011 B
NSIS
!macro LANG LANG_NAME
|
|
# NSIS language file
|
|
!insertmacro MUI_LANGUAGE "${LANG_NAME}"
|
|
# FreeCAD language file
|
|
!insertmacro LANGFILE_INCLUDE_WITHDEFAULT "lang\${LANG_NAME}.nsh" "lang\english.nsh"
|
|
!macroend
|
|
|
|
# list of all languages the installer is 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 "russian"
|
|
!insertmacro LANG "slovak"
|
|
!insertmacro LANG "spanish"
|
|
!insertmacro LANG "swedish"
|
|
!insertmacro LANG "turkish"
|
|
!insertmacro LANG "ukrainian"
|