From 8479b9b6defe699422beb80bd79f286bc3b88143 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Wed, 23 Oct 2013 21:39:54 +0300 Subject: [PATCH] [ios] Changed Cancel to Later in guide alert popup --- iphone/Maps/Classes/MapsAppDelegate.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Classes/MapsAppDelegate.mm b/iphone/Maps/Classes/MapsAppDelegate.mm index e7ff0f6db5..a03910110e 100644 --- a/iphone/Maps/Classes/MapsAppDelegate.mm +++ b/iphone/Maps/Classes/MapsAppDelegate.mm @@ -204,7 +204,7 @@ void InitLocalizedStrings() if ([[dict objectForKey:@"Proposal"] isEqual:@"OpenGuides"]) { self.lastGuidesUrl = [dict objectForKey:@"GuideUrl"]; - UIAlertView * view = [[UIAlertView alloc] initWithTitle:[dict objectForKey:@"GuideTitle"] message:[dict objectForKey:@"GuideMessage"] delegate:self cancelButtonTitle:NSLocalizedString(@"cancel", nil) otherButtonTitles:NSLocalizedString(@"get_it_now", nil), nil]; + UIAlertView * view = [[UIAlertView alloc] initWithTitle:[dict objectForKey:@"GuideTitle"] message:[dict objectForKey:@"GuideMessage"] delegate:self cancelButtonTitle:NSLocalizedString(@"later", nil) otherButtonTitles:NSLocalizedString(@"get_it_now", nil), nil]; view.tag = NOTIFICATION_ALERT_VIEW_TAG; [view show]; [view release];