Fixed wrong keys in Android

This commit is contained in:
Timofey 2016-11-01 18:29:42 +03:00 committed by Ilya Grechuhin
parent bea61e7ca7
commit 21c20645de

View file

@ -442,7 +442,7 @@ public class RoutingPlanController extends ToolbarController
showError(R.string.taxi_not_found);
break;
case RemoteError:
showError(R.string.uber_remote_error);
showError(R.string.dialog_taxi_error);
break;
default:
throw new AssertionError("Unsupported uber error: " + code);
@ -455,7 +455,7 @@ public class RoutingPlanController extends ToolbarController
int checkedId = mRouterTypes.getCheckedRadioButtonId();
RoutingToolbarButton rb = (RoutingToolbarButton) mRouterTypes.findViewById(checkedId);
rb.error();
showError(R.string.uber_no_internet);
showError(R.string.dialog_taxi_offline);
}
private void showError(@StringRes int message)