user3132964
user3132964

Reputation: 17

Parse iOS SDK Localizing

I am using Parse SDK as a backend and when application loading data from server i see label "Loading". But my app using another language and i wanna translate it. How can i fix it?

Image here

I am tried to change simulator language and and changing value of Localization native development region key in plist.

Anyone had this problem? I think there is very simple answer, but i cannot find it. :)

Thank you for help!

Upvotes: 1

Views: 88

Answers (1)

Doruk Güneş
Doruk Güneş

Reputation: 86

So after a long search, i discovered that you should create a file named "ParseUI.strings" in order to change UI elements like "Loading.." as you mentioned. You can see the file in the image below. You should use at least ParseUI framework 1.1.6 for this method.

enter image description here

After you create a file and named it as "ParseUI.strings" you can change UI elements which parse provides us. You can see which strings are editable here.

In your example you want to change "Loading..." string, so all you have to do is enter the code in your ParseUI.strings file.

"Loading..." = "Whatever thing you want to say...";

Thats it, it worked for me.

Upvotes: 2

Related Questions