From 9344565835b4a4f4a001120460fb0473f9428e8e Mon Sep 17 00:00:00 2001 From: Roman Romanov Date: Tue, 6 Jun 2017 12:35:51 +0400 Subject: [PATCH] [android] Use enable_location_services string for toast. --- android/src/com/mapswithme/maps/MwmActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java index 1a855eb1ca..3689fedc74 100644 --- a/android/src/com/mapswithme/maps/MwmActivity.java +++ b/android/src/com/mapswithme/maps/MwmActivity.java @@ -199,7 +199,7 @@ public class MwmActivity extends BaseMwmFragmentActivity if (PermissionsUtils.isLocationExplanationNeeded(MwmActivity.this)) PermissionsUtils.requestLocationPermission(MwmActivity.this, LOCATION_REQUEST); else - Toast.makeText(MwmActivity.this, R.string.location_permission_denied, Toast.LENGTH_SHORT) + Toast.makeText(MwmActivity.this, R.string.enable_location_services, Toast.LENGTH_SHORT) .show(); return; }