Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2017-07-05 16:22:29 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2017-07-05 16:25:42 +0300
commit855844368af5927498c7dc1254284a6e1d186c7e (patch)
tree27ff17160e67f78a8cd5589e42c51cb010f438c5
parent756b9980bbc69456f08f8a767c150efc794cd204 (diff)
[iOS] Fixed text idsbeta-896
-rw-r--r--iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm4
-rw-r--r--iphone/Maps/UI/PlacePage/PlacePageLayout/Content/TaxiCell/PlacePageTaxiCell.swift2
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")