DenVog
DenVog

Reputation: 4286

Duplicate Localized Resource Files

I have an app that is intended to be localized into 5 languages via Localizable.strings files. When I view the Project > Info: Localizations information, I see duplicates of some languages (English, French, German) and an unintended language (Japanese).

enter image description here

My Resources in XCode, also appear off. But if I look at the Resources directory in Finder, they appear as I would expect.

enter image description here enter image description here

I have tried:

I'd appreciate any suggestions and an explanation. I'm using XCode 6.1.1 on Mavericks. Thank you.

Upvotes: 8

Views: 2494

Answers (1)

Fabian Kreiser
Fabian Kreiser

Reputation: 8337

I was running in the same issue and it was fixed by manually editing the project.pbxproj file inside the .xcodeproj Xcode project file container.

Before:

...
knownRegions = (
    English,
    German,
    en,
    de,
    Base,
);
...

After:

...
knownRegions = (
    en,
    de,
    Base,
);
...

Upvotes: 11

Related Questions