How to localize privacy-value in info.plist?

Firstly, our app supports one more language, such as English, Japanese, Korean .e.t

So, when I added the privacy key in info.plist, a question obviously, which was how can I localize the value of relevant key?

Accepted Reply

Generally

Info.plist
values are localised using an
InfoPlist.strings
file, per the Localizing Property List Values section of the Information Property List Key Reference.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Replies

Generally

Info.plist
values are localised using an
InfoPlist.strings
file, per the Localizing Property List Values section of the Information Property List Key Reference.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

Nice!


Thanks for answering!