zoukankan      html  css  js  c++  java
  • Inno Setup入门(七)——提供安装语言选项

    Inno Setup安装目录下有一个Languages的文件夹,该文件夹提供了可供使用的语言,通过在脚本中加入[languages]段,可以实现该项功能,实现代码如下:

    [setup]

    ;全局设置,本段必须

    AppName=Test

    AppVerName=TEST

    DefaultDirName="E:\TEST"

    AppVersion=1.0

    Compression=lzma2/max

    ShowLanguageDialog=yes

    [languages]

    Name: "en"; MessagesFile: "compiler:Default.isl"

    Name: "cs"; MessagesFile: "compiler:Languages\ChineseSimp.isl"

     

    [files]

    Source: "F:\desktop\test\ipmsg.exe"; DestDir: "{app}";

    Source: "F:\desktop\test\bin.dat"; DestDir: "{app}"

    Source: "F:\desktop\test\help.chm"; DestDir: "{app}"

    Source: "F:\desktop\test\readme.txt"; DestDir: "{app}";Flags:isreadme

    上例中需要提到的是[setup]段中需要加入ShowLanguageDialog=yes,其实不加也是可以的,因为ShowLanguageDialog默认是yes

    安装过程中会根据用户的选择采用不同的语言界面:

    Inno Setup入门(七)——提供安装语言选项 - Castor - 趁年轻,多折腾~~ 
    Inno Setup入门(七)——提供安装语言选项 - Castor - 趁年轻,多折腾~~
     最后需要说明的是compiler:他提供了编译器所在目录的路径。
     

    转自:http://www.360doc.com/content/13/0327/15/4221543_274250821.shtml

  • 相关阅读:
    UVA 10618 Tango Tango Insurrection
    UVA 10118 Free Candies
    HDU 1024 Max Sum Plus Plus
    POJ 1984 Navigation Nightmare
    CODEVS 3546 矩阵链乘法
    UVA 1625 Color Length
    UVA 1347 Tour
    UVA 437 The Tower of Babylon
    UVA 1622 Robot
    UVA127-"Accordian" Patience(模拟)
  • 原文地址:https://www.cnblogs.com/xiurui12345/p/3095103.html
Copyright © 2011-2022 走看看