houbysoft
houbysoft

Reputation: 33392

Include only select localizations in application build

I am working on a Mac App in Xcode. Eventually, I plan to add a few localizations to languages other than English. I have already started, and I now have localizations for French and Czech in Xcode.

However, I don't have a few other things ready in those languages, and therefore, for now, I decided to submit my app to the Mac App Store using only the English localization.

Is there a way to tell Xcode to only include the English version in the .app it builds? I would rather not have to delete / re-add the localizations manually to achieve this.

Thanks!

Upvotes: 0

Views: 98

Answers (1)

user405725
user405725

Reputation:

I don't know if there is a way to do that using Xcode but you can simplify your life by playing with version control system. For example, create a branch for your localisation files that you don't want to include (that may as well include Xcode project file as they are listed there), and do not merge it into the main project until it is done.

Upvotes: 1

Related Questions