Archive: How to load translation strings for my own app?


How to load translation strings for my own app?
I am using the modern UI translations, but my installer has a number of strings which also need translations. I notice if I do a !MUI_LANGUAGE "English" than I can't use LoadLanguageFile to load strings for my own application. Is there another mechanism I should be using?

Otherwise I will write a tool which merges several language files into one, so I can maintain some semblance of separation of concerns. But I have trouble believing this is the correct path?

Thanks,
ogden


!insertmacro MUI_LANGUAGE "language_name" among others loads the corresponding language file (nlf).
All you further need to translate your own strings is LangString,

http://nsis.sourceforge.net/Docs/Chapter4.html#4.9.15.2


Thank you very much :)