From e4c2b14d0e8e8c31c5b9b275e724384fb797d694 Mon Sep 17 00:00:00 2001 From: sonora Date: Wed, 16 Jan 2013 00:28:19 +0100 Subject: [PATCH] string corrections --- OsmAnd/res/values-de/strings.xml | 3 ++- OsmAnd/res/values/strings.xml | 5 +++-- .../plus/distancecalculator/DistanceCalculatorPlugin.java | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/OsmAnd/res/values-de/strings.xml b/OsmAnd/res/values-de/strings.xml index f875e6a827..034b3ddaa5 100644 --- a/OsmAnd/res/values-de/strings.xml +++ b/OsmAnd/res/values-de/strings.xml @@ -1,5 +1,6 @@  + Start Keine Grenzen anzeigen Unterdrückt die Anzeige regionaler Grenzverläufe Höhenangaben - Offset Korrektur @@ -1179,7 +1180,7 @@ Höhenlinien-Plugin Andere Karten Höhenlinien - Entfernung zwischen zwei und vielen Punkten messen. Start/Ziel antippen und löschen durch lang drücken. + Entfernung zwischen zwei oder mehr Punkten messen. Start/Ziel antippen und löschen durch langes drücken. Entfernungsmesser Video aufzeichnen Audio aufnehmen diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index e4a08b7661..5096221afc 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -9,6 +9,7 @@ 1. All your modified/created strings are in the top of the file (to make easier find what\'s translated). PLEASE: Have a look at http://code.google.com/p/osmand/wiki/UIConsistency, it may really improve your and our work :-) Thx - Hardy --> + Start Audio/Video data Are you sure you want to stop the navigation? Are you sure you want to clear your destination point? @@ -62,10 +63,10 @@ Audio/video notes OsmAnd plugin for offline contour lines This plugin provides contour lines which can be displayed in OsmAnd\'s offline maps. The global data (between 70 degrees north and 70 degrees south) is based on measurements by SRTM (Shuttle Radar Topography Mission) and ASTER (Advanced Spaceborne Thermal Emission and Reflection Radiometer), an imaging instrument onboard Terra, the flagship satellite of NASA\'s Earth Observing System. ASTER is a cooperative effort between NASA, Japan\'s Ministry of Economy, Trade and Industry (METI), and Japan Space Systems (J-spacesystems). - Measure a distance between two and many points. Add points by a short click and remove by a long press. + Measure the distance between two or more points. Add points by a short click and remove by a long press. Distance calculator Click one more time to clear measurement points. - Tap to make a point, press and hold to delete previous point, click on measurement widget to exit. + Tap to mark a point, press and hold to delete previous points, click on measurement widget to exit. Distance measurement Location to associate with the note is not defined yet. \"Use location...\" to assign a note to the specified location stop diff --git a/OsmAnd/src/net/osmand/plus/distancecalculator/DistanceCalculatorPlugin.java b/OsmAnd/src/net/osmand/plus/distancecalculator/DistanceCalculatorPlugin.java index 8ce014825f..8a4c740948 100644 --- a/OsmAnd/src/net/osmand/plus/distancecalculator/DistanceCalculatorPlugin.java +++ b/OsmAnd/src/net/osmand/plus/distancecalculator/DistanceCalculatorPlugin.java @@ -91,7 +91,7 @@ public class DistanceCalculatorPlugin extends OsmandPlugin { private void updateText() { if (distanceControl != null) { if (distanceMeasurementMode == 0) { - distanceControl.setText(app.getString(R.string.monitoring_control_start), ""); + distanceControl.setText(app.getString(R.string.dist_control_start), ""); } else { float dist = 0; for (int j = 1; j < measurementPoints.size(); j++) {