[ios] Changed Cancel to Later in guide alert popup

This commit is contained in:
Alex Zolotarev 2013-10-23 21:39:54 +03:00 committed by Alex Zolotarev
parent bebfc7272a
commit 8479b9b6de

View file

@ -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];