Qt lingual translation on mobile (ios)
-
Hi,
I trying a simple hell world qt quick app on ios & android.
I did the following:-
Took the most basic hello world qt quick project with "Hello World" written with qsTr() of course
-
Ran lupdate on main.qml & created main_no.ts for norwegian
-
Opened main_no.ts in linguist app. Gave the translation for "Hello World" as "Hei Verden"
-
Saved main_no.ts
-
Ran lrelease on main_no.ts. This created main_no.qm
-
Opened my project's .pro file and added the following
TRANSLATIONS += main_no.ts -
Rebuilt my app
-
Ran it on iPhone where the language was set to english
-
App launched. The text "Hello World" showed up. All great untill now
-
Next I changed the language to Norwegian ("Norsk Bokmal").
-
Relaunched the app & it crashed !!!!!
After this it keeps crashing on every launch even if I change the language back to English.
Can anyone please tell what is wrong that I am doing ?
Thanks a many in advance.
-