From 888f79e9234de100694d074c32e2bb62fadd78bc Mon Sep 17 00:00:00 2001 From: Julian Rex Date: Thu, 2 May 2019 10:59:34 -0400 Subject: [ios] Update Cancel localization hint and run genstrings --- platform/ios/resources/Base.lproj/Localizable.strings | 4 ++-- platform/ios/src/MGLMapView.mm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/ios/resources/Base.lproj/Localizable.strings b/platform/ios/resources/Base.lproj/Localizable.strings index d660cb6ddd..e1bfc0b256 100644 --- a/platform/ios/resources/Base.lproj/Localizable.strings +++ b/platform/ios/resources/Base.lproj/Localizable.strings @@ -1,7 +1,7 @@ /* Accessibility hint */ "ANNOTATION_A11Y_HINT" = "Shows more info"; -/* No comment provided by engineer. */ +/* Title of button for dismissing attribution action sheet */ "CANCEL" = "Cancel"; /* Accessibility hint for closing the selected annotation’s callout view and returning to the map */ @@ -20,7 +20,7 @@ "DESIGNABLE" = "To display a Mapbox-hosted map here, set %1$@ to your access token in %2$@\n\nFor detailed instructions, see:"; /* Setup documentation URL display string; keep as short as possible */ -"FIRST_STEPS_URL" = "mapbox.com/help/first-steps-ios-sdk"; +"FIRST_STEPS_URL" = "docs.mapbox.com/help/tutorials/first-steps-ios-sdk"; /* Accessibility hint */ "INFO_A11Y_HINT" = "Shows credits, a feedback form, and more"; diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm index 4e6b203aee..7cebd57710 100644 --- a/platform/ios/src/MGLMapView.mm +++ b/platform/ios/src/MGLMapView.mm @@ -2481,7 +2481,7 @@ public: }]; [attributionController addAction:telemetryAction]; - NSString *cancelTitle = NSLocalizedStringWithDefaultValue(@"CANCEL", nil, nil, @"Cancel", @"Cancel"); + NSString *cancelTitle = NSLocalizedStringWithDefaultValue(@"CANCEL", nil, nil, @"Cancel", @"Title of button for dismissing attribution action sheet"); UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelTitle style:UIAlertActionStyleCancel handler:NULL]; -- cgit v1.2.1