From 46f621ac391848668b11d813d09191950f0aec0c Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Wed, 5 Jul 2017 16:22:29 +0300 Subject: [PATCH] [iOS] Fixed text ids --- .../NavigationDashboard/Views/MWMNavigationInfoView.mm | 4 ++-- .../PlacePageLayout/Content/TaxiCell/PlacePageTaxiCell.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm b/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm index 31fdeb9206..cc8306ca32 100644 --- a/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm +++ b/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm @@ -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 diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/TaxiCell/PlacePageTaxiCell.swift b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/TaxiCell/PlacePageTaxiCell.swift index 1f4f7d8a1f..0346cd81cb 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/TaxiCell/PlacePageTaxiCell.swift +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/Content/TaxiCell/PlacePageTaxiCell.swift @@ -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")