; -- Languages.iss --
; Demonstrates a multilingual installation.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
[Setup]
AppName={cm:MyAppName}
AppId=My Program
AppVerName={cm:MyAppVerName,1.5}
DefaultDirName={pf}{cm:MyAppName}
DefaultGroupName={cm:MyAppName}
UninstallDisplayIcon={app}MyProg.exe
VersionInfoDescription=My Program Setup
OutputDir=D:Kanashirodemo
; Uncomment the following line to disable the "Select Setup Language"
; dialog and have it rely solely on auto-detection.
;ShowLanguageDialog=no
; If you want all languages to be listed in the "Select Setup Language"
; dialog, even those that can't be displayed in the active code page,
; uncomment the following line.
;ShowUndisplayableLanguages=yes
[Languages]
Name: en; MessagesFile: "compiler:Default.isl"
Name: sp; MessagesFile: "compiler:LanguagesSpanish.isl"
[Messages]
en.BeveledLabel=English
sp.BeveledLabel=Spanish
[CustomMessages]
en.MyDescription=My description
en.MyAppName=My Program
en.MyAppVerName=My Program %1
sp.MyDescription=Mi descripcion
sp.MyAppName=Mi programa
sp.MyAppVerName=Mi programa %1
[Files]
Source: "MyProg.exe"; DestDir: "{app}"
Source: "MyProg.chm"; DestDir: "{app}"; Languages: en
Source: "Readme.txt"; DestDir: "{app}"; Languages: en; Flags: isreadme
Source: "Readme-Spanish.txt"; DestName: "Leeme.txt"; DestDir: "{app}"; Languages: sp; Flags: isreadme
[Icons]
Name: "{group}{cm:MyAppName}"; Filename: "{app}MyProg.exe"
Name: "{group}{cm:UninstallProgram,{cm:MyAppName}}"; Filename: "{uninstallexe}"
[Tasks]
; The following task doesn't do anything and is only meant to show [CustomMessages] usage
Name: mytask; Description: "{cm:MyDescription}"