diff --git a/OsmAnd/res/values-de/strings.xml b/OsmAnd/res/values-de/strings.xml index 06f953e2ad..49268da299 100644 --- a/OsmAnd/res/values-de/strings.xml +++ b/OsmAnd/res/values-de/strings.xml @@ -413,7 +413,7 @@ OsmAnd Routing OsmAnd Offlinerouting für große Entfernungen verwenden (experimentell) anstatt automatisch CloudMade zu nehmen - OsmAnd Offlinerouting ist noch experimentell und funktioniert nicht gut für Entfernungen über 20 km.\n Routingdienst wird automatisch zu online Cloudmade gewechselt. + OsmAnd Offlinerouting ist noch experimentell und funktioniert nicht gut für Entfernungen über 20 km.\n Als Routingdienst wird temporär online CloudMade verwendet. Angegebener Ordner kann nicht gefunden werden. Verzeichnis Das Wechseln des Verzeichnis verschiebt oder löscht keine Daten. Dies muss separat außerhalb von OsmAnd durchgeführt werden. Dennoch fortfahren? diff --git a/OsmAnd/res/values-it/strings.xml b/OsmAnd/res/values-it/strings.xml index e24a2a3842..37c813eb5f 100644 --- a/OsmAnd/res/values-it/strings.xml +++ b/OsmAnd/res/values-it/strings.xml @@ -390,7 +390,7 @@ Routing OsmAnd Usa il routing OsmAnd offline per lunghe distanze (sperimentale) - Il routing offline di OsmAnd è sperimentale e non funziona per distanze superiori ai 20 km.\n Il servizio routing viene cambiato in automatico tramite Cloudmade online. + Il routing offline di OsmAnd è sperimentale e non funziona per distanze superiori ai 20 km.\n Il servizio routing viene cambiato temporaneo tramite Cloudmade online. Impossibile trovare la directory specificata. Cartella deposito Il cambiamento della cartella non sposterà nè eliminerà i dati. Dovrà essere fatto manualmente al di fuori di OsmAnd. Continuare? diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index d757026174..14ab778b08 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -415,7 +415,7 @@ OsmAnd routing Use OsmAnd offline routing for long distances (experimental) instead of fallback to CloudMade - OsmAnd offline routing is an experimental feature and it doesn\'t work for distances of more than about 20 km.\n Routing service is automatically switched to online Cloudmade. + OsmAnd offline routing is an experimental feature and it doesn\'t work for distances of more than about 20 km.\n Routing service is temporarily switched to online Cloudmade. Can not find specified directory. Storage directory Changing the storage directory will not move or delete the data. This must be performed separately and outside OsmAnd. Continue anyway? diff --git a/OsmAnd/src/net/osmand/plus/routing/RoutingHelper.java b/OsmAnd/src/net/osmand/plus/routing/RoutingHelper.java index 9adbe48fa7..cf6ad028fb 100644 --- a/OsmAnd/src/net/osmand/plus/routing/RoutingHelper.java +++ b/OsmAnd/src/net/osmand/plus/routing/RoutingHelper.java @@ -498,13 +498,13 @@ public class RoutingHelper { int[] dist = res.getListDistance(); int l = dist != null && dist.length > 0 ? dist[0] : 0; showMessage(context.getString(R.string.new_route_calculated_dist) - + " : " + OsmAndFormatter.getFormattedDistance(l, context)); //$NON-NLS-1$ + + ": " + OsmAndFormatter.getFormattedDistance(l, context)); //$NON-NLS-1$ } else if (service != RouteService.OSMAND && !settings.isInternetConnectionAvailable()) { showMessage(context.getString(R.string.error_calculating_route) - + " : " + context.getString(R.string.internet_connection_required_for_online_route), Toast.LENGTH_LONG); //$NON-NLS-1$ + + ":\n" + context.getString(R.string.internet_connection_required_for_online_route), Toast.LENGTH_LONG); //$NON-NLS-1$ } else { if (res.getErrorMessage() != null) { - showMessage(context.getString(R.string.error_calculating_route) + " : " + res.getErrorMessage(), Toast.LENGTH_LONG); //$NON-NLS-1$ + showMessage(context.getString(R.string.error_calculating_route) + ":\n" + res.getErrorMessage(), Toast.LENGTH_LONG); //$NON-NLS-1$ } else if (res.getLocations() == null) { showMessage(context.getString(R.string.error_calculating_route_occured), Toast.LENGTH_LONG); } else {