I'm was trying to complete the german locale of UU and had some probs with it.
1. Following string are there for english but not for any other language:
- Code: Select all
_WARNINGWILLCLEAR=
_WARNING=
_LOGINONCE=
I copied them to the german section and translated them. When I restart UU languages.ini gets overwritten because automatic updates for UU are on. Turnig this off is not good when I want to distribute this among guildies. So partial l10n or not automatic upload.
2. There is some stuff I couldn't find a corresponding entry in languages.ini for:
On the settings tab:
- Show SVs / Hide SVs
- Show Addons / Hide Addons
- Clear SV Contens
In the window that pops up when you hit "Show Addons":
- Explanation text on the right.
- Everything else
And some questions about translating the NSIS script just to make sure I get this right:
I have to put in a LangString-entry for every word (i.e. LangString DESC_HOUR ${LANG_GERMAN} "Stunde")
Then I have to add this for German?
- Code: Select all
Function .onInit
StrCpy $LANGUAGE_DLL_TITLE "Installer Language"
StrCpy $LANGUAGE_DLL_INFO "Please select a language:"
StrCpy $URL_DOTNET "${URL_DOTNET_1031}"
StrCpy $OSLANGUAGE "1031"
And finaly add
- Code: Select all
!insertmacro MUI_LANGUAGE "German"
If I use the english installer, would it install the german version of .NET Framework for a german user (can't test this, because I run Windows in english)
Thank you for your replies and advise in advance
Rain