[iOS] Fixed text ids

This commit is contained in:
r.kuznetsov 2017-07-05 16:22:29 +03:00
parent e9e7af891b
commit 46f621ac39
2 changed files with 3 additions and 3 deletions

View file

@ -123,7 +123,7 @@ BOOL defaultOrientation(CGSize const & size)
{
if ([MWMLocationManager lastLocation])
{
[self.toastView configWithText:L(@"planning_route_need_start") withActionButton:YES];
[self.toastView configWithText:L(@"routing_add_start_point") withActionButton:YES];
[self setToastViewHidden:NO];
}
else
@ -133,7 +133,7 @@ BOOL defaultOrientation(CGSize const & size)
}
else if (![MWMRouter finishPoint])
{
[self.toastView configWithText:L(@"planning_route_need_finish") withActionButton:NO];
[self.toastView configWithText:L(@"routing_add_finish_point") withActionButton:NO];
[self setToastViewHidden:NO];
}
else

View file

@ -33,7 +33,7 @@ final class PlacePageTaxiCell: MWMTableViewCell {
title.text = L("taxi")
case .uber:
icon.image = #imageLiteral(resourceName: "icTaxiUber")
title.text = L("taxi_uber")
title.text = L("uber")
case .yandex:
icon.image = #imageLiteral(resourceName: "icTaxiYandex")
title.text = L("yandex_taxi_title")