Can't localize info.plist strings

2019-06-15 13:15发布

I need to localize two keys of info.plist: NSLocationUsageDescription and NSCameraUsageDescription. So I tried to create a new file called InfoPlist.strings and then I localized it, but app always shows strings stored in info.plist file. What's wrong?

Official documentation from Information Property List Key Reference

Localized values are not stored in the Info.plist file itself. Instead, you store the values for a particular localization in a strings file with the name InfoPlist.strings. You place this file in the same language-specific project directory that you use to store other resources for the same localization. The contents of the InfoPlist.strings file are the individual keys you want localized and the appropriately translated value. The routines that look up key values in the Info.plist file take the user’s language preferences into account and return the localized version of the key (from the appropriate InfoPlist.strings file) when one exists. If a localized version of a key does not exist, the routines return the value stored in the Info.plist file.

My InfoPlist.strings file:

NSCameraUsageDescription = "hello";
NSLocationUsageDescription = "hello hello";

7条回答
劫难
2楼-- · 2019-06-15 13:25

Sometimes you have to make a Clean first, Click Menu -> Product -> Clean.

Sometimes you have to make a Clean first

查看更多
Juvenile、少年°
3楼-- · 2019-06-15 13:26

As a matter of fact, my problem was that I had misspelled the NSLocationWhenInUseUsageDescription constant so of course it was not taken into account.

查看更多
家丑人穷心不美
4楼-- · 2019-06-15 13:26

Since iOS 10, you are required to add the privacy keys to your Info.plist.

<key>NSPhotoLibraryUsageDescription</key>
<string>Please allow access to the photo library.</string>

Of course, you still need those keys to be localized (and you can't localize the application's Info.plist). So you ALSO add those privacy keys to the InfoPlist.strings, which in turn are localized.

"NSPhotoLibraryUsageDescription" = "Please allow access to the photo library.";
查看更多
Juvenile、少年°
5楼-- · 2019-06-15 13:32

InfoPlist.strings doesn't consider your scheme's Application Region, but the region set in the device! On your device: Settings-> General -> Language & Region, check if iPhone Language is the one that you like.

查看更多
萌系小妹纸
6楼-- · 2019-06-15 13:39

Your plist file can have multiple versions for each language your application supports. In Utilities \ File Inspector (on the right) click on "Localize":

enter image description here

And then choose the languages you want to have their own versions:

enter image description here

After that you will be able to enter each plist file and edit it as you want.

查看更多
Lonely孤独者°
7楼-- · 2019-06-15 13:44

Please check in the generated application package, whether the file is really stored in there and it is put to the correct location. Usually this is the missing step.

Just go into the project settings, open "Build Phases" and see whether the file can be found in "Copy Bundle Resources"

查看更多
登录 后发表回答