Reputation: 2861
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.
Upvotes: 4
Views: 6820
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.
Upvotes: 8