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
path: root/iphone
diff options
context:
space:
mode:
authorIlya Grechuhin <i.grechuhin@gmail.com>2016-12-14 14:30:49 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2016-12-14 14:30:49 +0300
commitf68d5d354080c40bf98c61a7825904dfad527757 (patch)
treef7e5bd492f218f479f040fa5b5278483124fc668 /iphone
parent204594068eface4786de24a6229ef6ebacb584a3 (diff)
[traffic] [ios] Updated traffic toats keys.
Diffstat (limited to 'iphone')
-rw-r--r--iphone/Maps/Classes/CustomViews/MapViewControls/TrafficButton/MWMTrafficButtonViewController.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/iphone/Maps/Classes/CustomViews/MapViewControls/TrafficButton/MWMTrafficButtonViewController.mm b/iphone/Maps/Classes/CustomViews/MapViewControls/TrafficButton/MWMTrafficButtonViewController.mm
index 13e8fd36d5..606d9a7187 100644
--- a/iphone/Maps/Classes/CustomViews/MapViewControls/TrafficButton/MWMTrafficButtonViewController.mm
+++ b/iphone/Maps/Classes/CustomViews/MapViewControls/TrafficButton/MWMTrafficButtonViewController.mm
@@ -155,7 +155,7 @@ NSArray<UIImage *> * imagesWithName(NSString * name)
break;
case TrafficManager::TrafficState::NoData:
btn.imageName = @"btn_traffic_on";
- [MWMToast showWithText:L(@"traffic_state_no_data")];
+ [MWMToast showWithText:L(@"traffic_data_unavailable")];
break;
case TrafficManager::TrafficState::NetworkError:
btn.imageName = @"btn_traffic_off";
@@ -164,11 +164,11 @@ NSArray<UIImage *> * imagesWithName(NSString * name)
break;
case TrafficManager::TrafficState::ExpiredApp:
btn.imageName = @"btn_traffic_on";
- [MWMToast showWithText:L(@"traffic_state_expired_app")];
+ [MWMToast showWithText:L(@"traffic_update_app_message")];
break;
case TrafficManager::TrafficState::ExpiredData:
btn.imageName = @"btn_traffic_on";
- [MWMToast showWithText:L(@"traffic_state_expired_data")];
+ [MWMToast showWithText:L(@"traffic_update_maps_text")];
break;
}
}