Localized system dialogs on OS X
Posted: Fri Oct 12, 2012 6:06 am
When compiling with PureBasic for OS X, all system dialogs are english by default.
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.
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>