diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2017-03-18 14:59:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-18 14:59:11 -0700 |
commit | f846205eb68e9508a0d80259008cf9adb8069a1b (patch) | |
tree | eeea54428883e141044a9b24f031f4cc5b142525 /platform/macos/sdk | |
parent | b3fe46728da2ed9ae31f2eb0ff2e0b2538bced72 (diff) | |
download | qtlocation-mapboxgl-f846205eb68e9508a0d80259008cf9adb8069a1b.tar.gz |
[ios, macos] Fix map load error descriptions (#8466)
* [ios, macos] Corrected map load error descriptions
Ensured the uniqueness of localizable string IDs. Ran make genstrings to add the -[MGLMapViewDelegate mapViewDidFailToLoad:withError:] error description strings to the base localization.
* [ios, macos] Moved failure error changelog entry to new release
Diffstat (limited to 'platform/macos/sdk')
-rw-r--r-- | platform/macos/sdk/Base.lproj/Localizable.strings | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/platform/macos/sdk/Base.lproj/Localizable.strings b/platform/macos/sdk/Base.lproj/Localizable.strings index b7a4a21173..68360320eb 100644 --- a/platform/macos/sdk/Base.lproj/Localizable.strings +++ b/platform/macos/sdk/Base.lproj/Localizable.strings @@ -1,6 +1,18 @@ +/* User-friendly error description */ +"LOAD_MAP_FAILED_DESC" = "The map failed to load because an unknown error occurred."; + +/* User-friendly error description */ +"LOAD_STYLE_FAILED_DESC" = "The map failed to load because the style can't be loaded."; + /* Accessibility title */ "MAP_A11Y_TITLE" = "Mapbox"; +/* User-friendly error description */ +"PARSE_STYLE_FAILED_DESC" = "The map failed to load because the style is corrupted."; + +/* User-friendly error description */ +"STYLE_NOT_FOUND_DESC" = "The map failed to load because the style can’t be found or is incompatible."; + /* Label of Zoom In button */ "ZOOM_IN_LABEL" = "+"; |