How will I be able to translate location purpose strings? Will it use InfoPlist.strings, or Localizable.strings? I assume that the purpose key will not be shown to the user.
If I have my Info.plist set up as such:
Should my InfoPlistStrings file look like?:
Thanks
If I have my Info.plist set up as such:
Code Block <key>NSLocationTemporaryUsageDescriptionDictionary</key> <dict> <key>Purpose1</key> <string>Purpose1TranslatedPhrase</string> <key>Purpose2</key> <string>Purpose2TranslatedPhrase</string> </dict>
Should my InfoPlistStrings file look like?:
Code Block "Purpose1TranslatedPhrase" = "We use your location to do a thing"; "Purpose2TranslatedPhrase" = "We use your location to do something very different";
Thanks