Hi,
I am building an installer package for macOS using pkgbuild and productbuild. I would ideally like to make a multi-language installer that does the following:
-
Allows the user to select the language, but defaults to the OS language.
-
Displays the installer Welcome, Readme, and License based on that language.
-
Installs a different .app and some specific support files based on the selected language.
-
Runs a language specific postinstall script.
I have localized text files (license, readme, welcome) in the resources directory in subfolders named en.lproj, de.lproj, fr.lproj etc.
When I build and test this installer on my English mac, it displays only the English readme, though it does allow me to select the License language which is a start.
To what extent is the above possible?
Thanks, Andrew