arcgis-maps-sdk-swift-toolkit
arcgis-maps-sdk-swift-toolkit copied to clipboard
Localized string constants are stored when they should be computed
trafficstars
Because a localized string is based on a locale and the locale can change while the app is running, localized string "constants" should be computed, not stored. In some places, like this extension, the localized strings are stored as static properties, meaning that they won't change if that app's locale were to change. All static localized strings should be converted from stored to computed.
@philium Thanks for noticing that!!