如何本地化 Visual Studio 引导程序?
我有一个wix安装项目,具有以下msbuild引导程序设置:
<GenerateBootstrapper ApplicationFile="$(TargetFileName)"
Culture="cs"
ApplicationName="Slais"
BootstrapperItems="@(BootstrapperFile)"
ComponentsLocation="Relative"
CopyComponents="True"
OutputPath="$(OutputPath)"
Path="c:\Program Files (x86)\Microsoft SDKs\Windows\v6.0A\Bootstrapper\" />
当引导程序对话框运行时,它有英文UI。 EULA 已更改,但标签和“接受”等按钮仍为英文。是否可以本地化该对话框或跳过它?或者以其他方式创建静默引导程序?
I have a wix setup project with the following msbuild bootstraper settings:
<GenerateBootstrapper ApplicationFile="$(TargetFileName)"
Culture="cs"
ApplicationName="Slais"
BootstrapperItems="@(BootstrapperFile)"
ComponentsLocation="Relative"
CopyComponents="True"
OutputPath="$(OutputPath)"
Path="c:\Program Files (x86)\Microsoft SDKs\Windows\v6.0A\Bootstrapper\" />
When the bootstraper dialog runs it has UI in english. The EULA is changed but the labels and the buttons like "Accept" are still in English. Is it possible to localize the dialog or to skip it? Or to create silent bootstraper other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Wix 如何使安装程序可本地化
http://wix.sourceforge.net/manual-wix3/make_installer_localizes.htm
From Wix How to make your installer localizable
http://wix.sourceforge.net/manual-wix3/make_installer_localizable.htm