From 7744fa1876ade6c656883b878cc96c3a0b5babcf Mon Sep 17 00:00:00 2001 From: Igor Khmurets Date: Tue, 12 Aug 2014 19:02:41 +0300 Subject: [PATCH] [ios] Changed Facebook alert --- iphone/Maps/Classes/MapViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 9c61d8ada2..87a8d6a9ac 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -596,7 +596,7 @@ [userDefaults setBool:YES forKey:alertKey]; [userDefaults synchronize]; - UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Facebook" message:NSLocalizedString(@"maps_me_is_free_today_ios", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"no_thanks", nil) otherButtonTitles:NSLocalizedString(@"share", nil), nil]; + UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"maps_me_is_free_today_ios", nil) message:NSLocalizedString(@"maps_me_is_free_today_facebook_post_ios", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"no_thanks", nil) otherButtonTitles:NSLocalizedString(@"share", nil), nil]; alertView.tag = ALERT_VIEW_PROMO; [alertView show]; }