summaryrefslogtreecommitdiff
path: root/platform/ios/resources/Base.lproj/Localizable.strings
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2017-09-09 15:13:52 -0700
committerMinh Nguyễn <mxn@1ec5.org>2017-11-02 15:19:53 -0700
commit0983893ca511a2bb157c41a7c173511c5a4a45f7 (patch)
treef9b2118d46bb979859695ac11bcc98e96a84c294 /platform/ios/resources/Base.lproj/Localizable.strings
parentd9fe24176153f14d1c101f48993860ee776cbfb0 (diff)
downloadqtlocation-mapboxgl-0983893ca511a2bb157c41a7c173511c5a4a45f7.tar.gz
[ios] Summarize places, roads after zooming with VoiceOver
After zooming, MGLMapView’s accessibility value now indicates the number of visible roads and lists out a few places visible in the current viewport, starting with the features at the highest z-index (not necessarily the largest or the closest to the center of the view). Avoid saying that no annotations are visible.
Diffstat (limited to 'platform/ios/resources/Base.lproj/Localizable.strings')
-rw-r--r--platform/ios/resources/Base.lproj/Localizable.strings16
1 files changed, 14 insertions, 2 deletions
diff --git a/platform/ios/resources/Base.lproj/Localizable.strings b/platform/ios/resources/Base.lproj/Localizable.strings
index 3f59262d71..815f7a3498 100644
--- a/platform/ios/resources/Base.lproj/Localizable.strings
+++ b/platform/ios/resources/Base.lproj/Localizable.strings
@@ -34,6 +34,9 @@
/* Accessibility label */
"INFO_A11Y_LABEL" = "About this map";
+/* List separator */
+"LIST_SEPARATOR" = ", ";
+
/* User-friendly error description */
"LOAD_MAP_FAILED_DESC" = "The map failed to load because an unknown error occurred.";
@@ -46,8 +49,17 @@
/* Accessibility label */
"MAP_A11Y_LABEL" = "Map";
-/* Map accessibility value */
-"MAP_A11Y_VALUE" = "Zoom %1$dx\n%2$ld annotation(s) visible";
+/* Map accessibility value; {number of visible annotations} */
+"MAP_A11Y_VALUE_ANNOTATIONS" = "%ld annotation(s) visible.";
+
+/* Map accessibility value; {list of visible places} */
+"MAP_A11Y_VALUE_PLACES" = "Places visible: %@.";
+
+/* Map accessibility value; {number of visible roads} */
+"MAP_A11Y_VALUE_ROADS" = "%ld road(s) visible.";
+
+/* Map accessibility value; {zoom level} */
+"MAP_A11Y_VALUE_ZOOM" = "Zoom %dx.";
/* User-friendly error description */
"PARSE_STYLE_FAILED_DESC" = "The map failed to load because the style is corrupted.";