使用 VS 设置和部署项目本地化安装程序?
我想要本地化我的安装程序,但在 Visual Studio 2008 中,本地化属性下拉列表不包含该语言。我认为我们可以使用代码页,但如果用户不想更改计算机中的区域和语言中的区域设置,字符将显示错误。我已阅读 http://blogs.msdn.com/b/heaths/archive/2005/10/05/msi-databases-and-code-pages.aspx,上面说MSI非官方支持UTF-8,但是我对MSI不太熟悉。有没有人有经验,请指点一下。谢谢。
I want to localize my installer but in Visual Studio 2008, Localization Property drop down does not contain the language. I think we could use code page but if users don't want to change locale in Region and language in their computers, characters will display wrong. I've read the article at http://blogs.msdn.com/b/heaths/archive/2005/10/05/msi-databases-and-code-pages.aspx, it said that MSI unofficially support UTF-8 but I'm not familiar with MSI. Have anyone experienced, please point me. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Visual Studio 仅提供少量语言用于包本地化。如果您想要的语言不在列表中,您可以尝试使用支持它的其他设置创作工具。
Visual Studio offers only a small number of languages for package localization. If you want a language which is not in the list, you can try using a different setup authoring tool which supports it.
我的要求相似,但不一样。
我希望我的自定义设置能够识别操作系统的语言,并以该语言显示所有消息。
一个可能的解决方法可能是插入一个包含我所有语言的下拉菜单,但我真的不知道如何做。
My requirements is similar, but not the same.
I want that my custom setup recognized the language of the OS and visualized all the messages in this language.
A possible workaround may be to insert a dropdown which has all my languiges, but i really don't know how.