Locate the installer using the VS installation and deployment project?

I want to localize my installer, but in Visual Studio 2008, the drop-down Localization property does not contain a language. I think we could use a code page, but if users do not want to change the locale in the region and language on their computers, the characters will not display correctly. I read the article at http://blogs.msdn.com/b/heaths/archive/2005/10/05/msi-databases-and-code-pages.aspx , he said that MSI unofficially supports UTF-8, but I am not familiar with MSI. Has anyone experienced, please point me. Thanks.

+4
source share
2 answers

Visual Studio offers only a small number of languages ​​for package localization. If you need a language that is not on the list, you can try using another settings tool that supports it.

0
source

My requirements are similar, but not the same. I want my user preference to recognize the OS language and visualize all messages in that language. A possible workaround could be to insert a drop-down list that has all my words, but I really don't know how to do this.

0
source

Source: https://habr.com/ru/post/1340002/


All Articles