Reference/LicenseLangString: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
mNo edit summary
 
Line 9: Line 9:
LicenseLangString license ${LANG_GERMAN} license-german.txt
LicenseLangString license ${LANG_GERMAN} license-german.txt
LicenseData $(license)</highlight-nsis>
LicenseData $(license)</highlight-nsis>
''Command introduced with NSIS v2.0''

Latest revision as of 11:19, 3 June 2013

LicenseLangString

name language_id license_path

Does the same as LangString only it loads the string from a text/RTF file and defines a special LangString that can be used only by LicenseData.

LicenseLangString license ${LANG_ENGLISH} license-english.txt
LicenseLangString license ${LANG_FRENCH} license-french.txt
LicenseLangString license ${LANG_GERMAN} license-german.txt
LicenseData $(license)

Command introduced with NSIS v2.0