diff --git a/OsmAnd/res/values-de/strings.xml b/OsmAnd/res/values-de/strings.xml index 5f76184d7d..9cbc00f3ee 100644 --- a/OsmAnd/res/values-de/strings.xml +++ b/OsmAnd/res/values-de/strings.xml @@ -2118,7 +2118,7 @@ Lon %2$s QR-Code Karte heruntergeladen Karte von %1$s wurde heruntergeladen. Gehen Sie zur Karte, um sie zu benutzen. - Zur Karte gehen + Karte anzeigen Plattdeutsch Mazedonisch Weiter lesen @@ -2498,7 +2498,7 @@ Wenn Sie OsmAnd und OSM lieben und unterstützen wollen, so ist dies die perfekt Alle Kartenkacheln löschen Es sind keine Offlinekarten installiert. Sie können jetzt eine Karte auswählen oder später Karten über “Menü - %1$s“ herunterladen. Eine andere Region auswählen - Karte wird gesucht… + Karten werden gesucht… Lassen Sie OsmAnd Ihren Standort bestimmen und Karten für diese Region zum Herunterladen vorschlagen. Position nicht gefunden Keine Internetverbindung diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index d18fa56a7c..f676d33adf 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -95,7 +95,7 @@ Skip downloading maps You have no offline map installed. You may choose a map from the list or download maps later via Menu - %1$s. Select another region - Searching map… + Searching maps… Let OsmAnd determine your location and suggest maps to download for that region. Location not found No Internet connection @@ -405,7 +405,7 @@ QR-code Map downloaded Map of %1$s has been downloaded. Go back to the map to start using it. - Go to the map + Display the map "Sets the flag indicating first app startup, keeps all other settings unchanged" Simulate first app start geo: diff --git a/OsmAnd/src/net/osmand/plus/development/SettingsDevelopmentActivity.java b/OsmAnd/src/net/osmand/plus/development/SettingsDevelopmentActivity.java index adf05204ec..6a374af766 100644 --- a/OsmAnd/src/net/osmand/plus/development/SettingsDevelopmentActivity.java +++ b/OsmAnd/src/net/osmand/plus/development/SettingsDevelopmentActivity.java @@ -59,6 +59,10 @@ public class SettingsDevelopmentActivity extends SettingsBaseActivity { final CheckBoxPreference openGlRender = createCheckBoxPreference(settings.USE_OPENGL_RENDER, R.string.use_opengl_render,R.string.use_opengl_render_descr); cat.addPreference(openGlRender); + cat.addPreference(createCheckBoxPreference(settings.USE_OSM_LIVE_FOR_ROUTING, + R.string.use_osm_live_routing, + R.string.use_osm_live_routing_description)); + final Preference firstRunPreference = new Preference(this); firstRunPreference.setTitle(R.string.simulate_initial_startup); firstRunPreference.setSummary(R.string.simulate_initial_startup_descr); @@ -74,11 +78,6 @@ public class SettingsDevelopmentActivity extends SettingsBaseActivity { }); cat.addPreference(firstRunPreference); - - cat.addPreference(createCheckBoxPreference(settings.USE_OSM_LIVE_FOR_ROUTING, - R.string.use_osm_live_routing, - R.string.use_osm_live_routing_description)); - cat.addPreference(createCheckBoxPreference(settings.SHOULD_SHOW_FREE_VERSION_BANNER, R.string.show_free_version_banner, R.string.show_free_version_banner_description));