exe打包安装程序

官网下载 inno setup

因为不带中文安装,所以需要下载中文包,以下链接有很多语言

如果不想下载,下方提供了中文包源码。复制即可

          中文及其他语言

将中文包放在inno setup安装目录Languages下

exe打包安装程序

安装语言选择的时候即可选择中文安装方式

也可选择多语言安装

exe打包安装程序

 如果安装时出现中文乱码:

点击下载的中文包  ChineseSimplified.isl

另存为 然后更改编码格式UTF-8 如果还是乱码、再次将其更改为BOM UTF-8

exe打包安装程序

 中文包:

ChineseSimplified.isl


  1. ; *** Inno Setup version 6.1.0+ Chinese Simplified messages ***
  2. ;
  3. ; To download user-contributed translations of this file, go to:
  4. ; https://jrsoftware.org/files/istrans/
  5. ;
  6. ; Note: When translating this text, do not add periods (.) to the end of
  7. ; messages that didn't have them already, because on those messages Inno
  8. ; Setup adds the periods automatically (appending a period would result in
  9. ; two periods being displayed).
  10. ;
  11. ; Maintained by Zhenghan Yang
  12. ; Email: 847320916@QQ.com
  13. ; Translation based on network resource
  14. ; The latest Translation is on https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation
  15. ;
  16. [LangOptions]
  17. ; The following three entries are very important. Be sure to read and
  18. ; understand the '[LangOptions] section' topic in the help file.
  19. LanguageName=简体中文
  20. ; If Language Name display incorrect, uncomment next line
  21. ; LanguageName=7B80>4F53>4E2D>6587>
  22. ; About LanguageID, to reference link:
  23. ; https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-lcid/a9eac961-e77d-41a6-90a5-ce1a8b0cdb9c
  24. LanguageID=$0804
  25. LanguageCodePage=936
  26. ; If the language you are translating to requires special font faces or
  27. ; sizes, uncomment any of the following entries and change them accordingly.
  28. ;DialogFontName=
  29. ;DialogFontSize=8
  30. ;WelcomeFontName=Verdana
  31. ;WelcomeFontSize=12
  32. ;TitleFontName=Arial
  33. ;TitleFontSize=29
  34. ;CopyrightFontName=Arial
  35. ;CopyrightFontSize=8
  36. [Messages]
  37. ; *** 应用程序标题
  38. SetupAppTitle=安装
  39. SetupWindowTitle=安装 - %1
  40. UninstallAppTitle=卸载
  41. UninstallAppFullTitle=%1 卸载
  42. ; *** Misc. common
  43. InformationTitle=信息
  44. ConfirmTitle=确认
  45. ErrorTitle=错误
  46. ; *** SetupLdr messages
  47. SetupLdrStartupMessage=现在将安装 %1。您想要继续吗/span>
  48. LdrCannotCreateTemp=不能创建临时文件。安装中断。
  49. LdrCannotExecTemp=不能执行临时目录中的文件。安装中断。
  50. HelpTextNote=
  51. ; *** 启动错误消息
  52. LastErrorMessage=%1.%n%n错误 %2: %3
  53. SetupFileMissing=安装目录中的文件 %1 丢失。请修正这个问题或者获取程序的新副本。
  54. SetupFileCorrupt=安装文件已损坏。请获取程序的新副本。
  55. SetupFileCorruptOrWrongVer=安装文件已损坏,或是与这个安装程序的版本不兼容。请修正这个问题或获取新的程序副本。
  56. InvalidParameter=无效的命令行参数:%n%n%1
  57. SetupAlreadyRunning=安装程序正在运行。
  58. WindowsVersionNotSupported=这个程序不支持当前计算机运行的Windows版本。
  59. WindowsServicePackRequired=这个程序需要 %1 服务包 %2 或更高。
  60. NotOnThisPlatform=这个程序将不能运行于 %1。
  61. OnlyOnThisPlatform=这个程序必须运行于 %1。
  62. OnlyOnTheseArchitectures=这个程序只能在为下列处理器结构设计的Windows版本中进行安装:%n%n%1
  63. WinVersionTooLowError=这个程序需要 %1 版本 %2 或更高。
  64. WinVersionTooHighError=这个程序不能安装于 %1 版本 %2 或更高。
  65. AdminPrivilegesRequired=在安装这个程序时您必须以管理员身份登录。
  66. PowerUserPrivilegesRequired=在安装这个程序时您必须以管理员身份或有权限的用户组身份登录。
  67. SetupAppRunningError=安装程序发现 %1 当前正在运行。%n%n请先关闭所有运行的窗口,然后点击“确定”继续,或按“取消”退出。
  68. UninstallAppRunningError=卸载程序发现 %1 当前正在运行。%n%n请先关闭所有运行的窗口,然后点击“确定”继续,或按“取消”退出。
  69. ; *** 启动问题
  70. PrivilegesRequiredOverrideTitle=选择安装程序模式
  71. PrivilegesRequiredOverrideInstruction=选择安装模式
  72. PrivilegesRequiredOverrideText1=%1 可以为所有用户安装(需要管理员权限),或仅为您安装。
  73. PrivilegesRequiredOverrideText2=%1 只能为您安装,或为所有用户安装(需要管理员权限)。
  74. PrivilegesRequiredOverrideAllUsers=为所有用户安装(&A)
  75. PrivilegesRequiredOverrideAllUsersRecommended=为所有用户安装(&A) (建议选项)
  76. PrivilegesRequiredOverrideCurrentUser=只为我安装(&M)
  77. PrivilegesRequiredOverrideCurrentUserRecommended=只为我安装(&M) (建议选项)
  78. ; *** 其它错误
  79. ErrorCreatingDir=安装程序不能创建目录“%1”。
  80. ErrorTooManyFilesInDir=不能在目录“%1”中创建文件,因为里面的文件太多
  81. ; *** 安装程序公共消息
  82. ExitSetupTitle=退出安装程序
  83. ExitSetupMessage=安装程序还未完成安装。如果您现在退出,程序将不能安装。%n%n您可以以后再运行安装程序完成安装。%n%n现在退出安装程序吗/span>
  84. AboutSetupMenuItem=关于安装程序(&A)...
  85. AboutSetupTitle=关于安装程序
  86. AboutSetupMessage=%1 版本 %2%n%3%n%n%1 主页:%n%4
  87. AboutSetupNote=
  88. TranslatorNote=
  89. ; *** 按钮
  90. ButtonBack=
  91. ButtonNext=下一步(&N) >
  92. ButtonInstall=安装(&I)
  93. ButtonOK=确定
  94. ButtonCancel=取消
  95. ButtonYes=是(&Y)
  96. ButtonYesToAll=全是(&A)
  97. ButtonNo=否(&N)
  98. ButtonNoToAll=全否(&O)
  99. ButtonFinish=完成(&F)
  100. ButtonBrowse=浏览(&B)...
  101. ButtonWizardBrowse=浏览(&R)...
  102. ButtonNewFolder=新建文件夹(&M)
  103. ; *** “选择语言”对话框消息
  104. SelectLanguageTitle=选择安装语言
  105. SelectLanguageLabel=选择安装时要使用的语言。
  106. ; *** 公共向导文字
  107. ClickNext=点击“下一步”继续,或点击“取消”退出安装程序。
  108. BeveledLabel=
  109. BrowseDialogTitle=浏览文件夹
  110. BrowseDialogLabel=在下列列表中选择一个文件夹,然后点击“确定”。
  111. NewFolderName=新建文件夹
  112. ; *** “欢迎”向导页
  113. WelcomeLabel1=欢迎使用 [name] 安装向导
  114. WelcomeLabel2=现在将安装 [name/ver] 到您的电脑中。%n%n推荐您在继续安装前关闭所有其它应用程序。
  115. ; *** “密码”向导页
  116. WizardPassword=密码
  117. PasswordLabel1=这个安装程序有密码保护。
  118. PasswordLabel3=请输入密码,然后点击“下一步”继续。密码区分大小写。
  119. PasswordEditLabel=密码(&P):
  120. IncorrectPassword=您所输入的密码不正确,请重试。
  121. ; *** “许可协议”向导页
  122. WizardLicense=许可协议
  123. LicenseLabel=继续安装前请阅读下列重要信息。
  124. LicenseLabel3=请仔细阅读下列许可协议。您在继续安装前必须同意这些协议条款。
  125. LicenseAccepted=我同意此协议(&A)
  126. LicenseNotAccepted=我不同意此协议(&D)
  127. 来源:IT鸠摩智

    声明:本站部分文章及图片转载于互联网,内容版权归原作者所有,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2022年7月1日
下一篇 2022年7月1日

相关推荐