Reputation: 19
I am currently building an app in three languages English, Arabic, and Kurdish. I have already managed to do the English and Arabic but there is no choice for Kurdish. Is there any way to add my language (Kurdish) to my app in Xcode ( I am using Swift)?
Upvotes: 1
Views: 489
Reputation: 1763
Close XCode. Open project file (yourProject.xcodeproj/project.pbxproj) in a text editor and find
knownRegions = (
You can see other languages; so, you can add your language code to the end of values:
knownRegions = (
en,
Base,
tr,
ckb
);
Save and open Xcode again, you can find your lang in localization list. Don't forget to enable for files that you need.
PS: ckb is the language code for Central Kurdish (Sorani)
Upvotes: 1
Reputation: 2794
ku
You can add this language in two ways
Localizable
files and then drag them to the projectUpvotes: 3