home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Developer & Web Development Tools / Inno Setup 5.2.3 / isetup-5.2.3.exe / {app} / Examples / Languages.iss (.txt) < prev    next >
Encoding:
Inno Setup Script  |  2006-10-03  |  2.0 KB  |  50 lines

  1. ; -- Languages.iss --
  2. ; Demonstrates a multilingual installation.
  3. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  4. [Setup]
  5. AppName={cm:MyAppName}
  6. AppId=My Program
  7. AppVerName={cm:MyAppVerName,1.5}
  8. DefaultDirName={pf}\{cm:MyAppName}
  9. DefaultGroupName={cm:MyAppName}
  10. UninstallDisplayIcon={app}\MyProg.exe
  11. VersionInfoDescription=My Program Setup
  12. OutputDir=userdocs:Inno Setup Examples Output
  13. ; Uncomment the following line to disable the "Select Setup Language"
  14. ; dialog and have it rely solely on auto-detection.
  15. ;ShowLanguageDialog=no
  16. ; If you want all languages to be listed in the "Select Setup Language"
  17. ; dialog, even those that can't be displayed in the active code page,
  18. ; uncomment the following line.
  19. ;ShowUndisplayableLanguages=yes
  20. [Languages]
  21. Name: en; MessagesFile: "compiler:Default.isl"
  22. Name: nl; MessagesFile: "compiler:Languages\Dutch.isl"
  23. Name: de; MessagesFile: "compiler:Languages\German.isl"
  24. [Messages]
  25. en.BeveledLabel=English
  26. nl.BeveledLabel=Nederlands
  27. de.BeveledLabel=Deutsch
  28. [CustomMessages]
  29. en.MyDescription=My description
  30. en.MyAppName=My Program
  31. en.MyAppVerName=My Program %1
  32. nl.MyDescription=Mijn omschrijving
  33. nl.MyAppName=Mijn programma
  34. nl.MyAppVerName=Mijn programma %1
  35. de.MyDescription=Meine Beschreibung
  36. de.MyAppName=Meine Anwendung
  37. de.MyAppVerName=Meine Anwendung %1
  38. [Files]
  39. Source: "MyProg.exe"; DestDir: "{app}"
  40. Source: "MyProg.chm"; DestDir: "{app}"; Languages: en
  41. Source: "Readme.txt"; DestDir: "{app}"; Languages: en; Flags: isreadme
  42. Source: "Readme-Dutch.txt"; DestName: "Leesmij.txt"; DestDir: "{app}"; Languages: nl; Flags: isreadme
  43. Source: "Readme-German.txt"; DestName: "Liesmich.txt"; DestDir: "{app}"; Languages: de; Flags: isreadme
  44. [Icons]
  45. Name: "{group}\{cm:MyAppName}"; Filename: "{app}\MyProg.exe"
  46. Name: "{group}\{cm:UninstallProgram,{cm:MyAppName}}"; Filename: "{uninstallexe}"
  47. [Tasks]
  48. ; The following task doesn't do anything and is only meant to show [CustomMessages] usage
  49. Name: mytask; Description: "{cm:MyDescription}"
  50.