I use
How can I use this command for Russian Language?InstallButtonText "my text"
I try
LangString "InstallButtonText" ${LANG_ENGLISH} "my text"
LangString "InstallButtonText" ${LANG_RUSSIAN} "my Russian text"it doesn't work..4 posts
How can I use this command for Russian Language?InstallButtonText "my text"
LangString "InstallButtonText" ${LANG_ENGLISH} "my text"
LangString "InstallButtonText" ${LANG_RUSSIAN} "my Russian text"it doesn't work..!insertmacro MUI_LANGUAGE "English"
!insertmacro MUI_LANGUAGE "Slovak"
; !include "your_translation_file.nsh" ; here or:
LangString GraphicalInstallerButtonPrint ${LANG_SLOVAK} "Vytlacit"
LangString GraphicalInstallerButtonPrint ${LANG_ENGLISH} "Print" This is important when you have your translation in some .nsh file and you !include it.Since when? The LANG_ define is only set after you include the nlf (language file) so you need to do that before using LangString.Originally Posted by jiake View PostIt seems that NSIS doesn't support ${LANG_*} constants now.
You must use id instead, for example, English (US) is 1033.
LangString GraphicalInstallerButtonPrint 1033 "Print"