Martin Schultz
Martin Schultz

Reputation: 2861

Localize iOS Info.plist Privacy Strings

I want to localize the privacy strings from the Runner's info.plist file, but fail to find how. In the official documentation (https://flutter.dev/docs/development/accessibility-and-localization/internationalization) at the very end is stated to add a key named "*eLocalizations**", but I don't see that if I try to add some new key to the plist (having the top item selected like written in the docs).

Any idea what I'm doing wrong? Please see attached what I see in Xcode when I add a new key.

enter image description here

Upvotes: 4

Views: 6820

Answers (1)

picciano
picciano

Reputation: 22701

One way is to create an InfoPlist.strings file and localize that. The Info.plist will pull the appropriate translation from these files.

enter image description here

Upvotes: 8

Related Questions