iOS: include xCode language (*.lproj) files in Qt project
-
Hi,
I have 3rd party Objective-C code from an xCode project with localization. Each language is stored in a separate file with its own directory like this:
App.strings // not a real name but a logical group generated by xCode
en-EN.lproj/App.strings
pt-PT.lproj/App.stringsI tried to copy the files like this:
assets_catalogs.files += ...
QMAKE_BUNDLE_DATA += assets_catalogsThis includes the files in the project (each having its original directory) but the app crashes on start. Are there other means to include these language files?
Regards,