So I am new to NSIS, and I am taking over for another person who setup our system. I am going through all the code and learning as best I can. With that said, I have a question about multi language installers.
I have the installer setup so that it will now give the choice of English, French and German language installation. Which is great, but the initial window that pops up is always in English. Is there a way to detect the language of the OS and it will make that window appear in the correct language?
We are currently using 2.46.
Thanks for any assistance.
G
Multi Language - Initial Window
4 posts
Currently no, English is chosen because it is most common language understandable to everyone.
Of course you can change LangDll plugin (modify the sources and rebuild it) - you need to provide all localized strings inside the plug-in and after detecting OS language set the right string to dialog.
Of course you can change LangDll plugin (modify the sources and rebuild it) - you need to provide all localized strings inside the plug-in and after detecting OS language set the right string to dialog.
LangDll is passed some of the strings it displays as parameters and these can be changed, it is the low-level NSIS error messages that are always in English...
Thanks a lot for the reply, appreciate it!!