[MAPSME-6519] [ios] Review fixes.

This commit is contained in:
Ilya Grechuhin 2018-02-09 11:50:04 +03:00 committed by Vladimir Byko-Ianko
parent eb18cc4fa4
commit fd73e7d0d9

View file

@ -47,22 +47,22 @@ static NSString * const kDefaultAlertNibName = @"MWMDefaultAlert";
+ (instancetype)routeNotFoundNoPublicTransportAlert
{
return [self defaultAlertWithTitle:L(@"transport_not_found")
return [self defaultAlertWithTitle:L(@"transit_not_found")
message:nil
rightButtonTitle:L(@"ok")
leftButtonTitle:nil
rightButtonAction:nil
statisticsEvent:@"transport_not_found"];
statisticsEvent:@"transit_not_found"];
}
+ (instancetype)routeNotFoundTooLongPedestrianAlert
{
return [self defaultAlertWithTitle:L(@"transport_not_found_connection")
return [self defaultAlertWithTitle:L(@"transit_not_found_connection")
message:nil
rightButtonTitle:L(@"ok")
leftButtonTitle:nil
rightButtonAction:nil
statisticsEvent:@"transport_not_found_connection"];
statisticsEvent:@"transit_not_found_connection"];
}
+ (instancetype)locationServiceNotSupportedAlert