You can specify in the Info.plist file what languages your application supports.
For each language you add here, the system dialogs will automatically be localized.
Some PureBasic dialogs like MessageRequester seem to be hardcoded in english but OpenFileRequester for example will be localized.
Code: Select all
<key>CFBundleLocalizations</key>
<array>
<string>de</string>
<string>en</string>
<string>fr</string>
<string>nl</string>
</array>