I would like to overwrite some of my UI LangString, to have:
- Default variables when they don't exists in my custom language file
- New variables from my custom language file when they do
I used the following:
As a consequence, I get the following warnings:!insertmacro MUI_LANGUAGE "English"
!insertmacro LANGFILE_INCLUDE "lang\English.nsh"
LangString ... set multiple timesSince there is no way to unset LangStrings, how can I do the intended job cleanly?
Many thanks!