From b2fd28532a84cd98de217ff95949f098d212a318 Mon Sep 17 00:00:00 2001 From: njohnston Date: Wed, 13 Jun 2018 18:10:11 +0000 Subject: [PATCH 1/2] English string correctness, typo and style fixes e14d7518 and 554e433c changed many English strings. Many of the changes (use of active voice, clearer phrasing, some simplification) were good, but others introduced unusual style, inconsistencies in the UI, and strange language. Some examples: * import_gpx_file_description: was "can be imported as Favorites, or as track file.", changed to "can be imported as favorite, or track file.". The new phrase doesn't take into account that OsmAnd has a concept or feature called "Favorites", so when referring to that, an initial capital letter should be used, and that a track can have many waypoints, so it's more appropriate to use "Favorites" (plural). * Several strings containing colons have been changed such that the initial letter of the word immediately following the colon is in uppercase. For example, osm_live_banner_desc now contains "once a month: Weekly, daily, or hourly". Capitalising the first letter in "Weekly" is not correct. * Inconsistencies have been introduced, for example changing "underlay" (as in "underlay map" to "underlaying"). The "Configure map" menu now is now inconsistent as it contains "Overlay map" and "Underlaying map". * Typos have been introduced, for example "doens\'t" instead of "doesn\'t". * "Start time" and "End time" (used in GPX analysis, for example) are now "Departure" and "Arrival" which makes little sense in this context. Also fixes #5566. --- OsmAnd/res/values/strings.xml | 50 +++++++++++++++++------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index ce9c637606..4151ebe73c 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -54,8 +54,8 @@ Welcome to the open beta Travel Guides Guides to the most interesting places on the planet, inside OsmAnd, without a connection to the Internet. - Map updates: Every month - Map updates: Every hour + Map updates: every month + Map updates: every hour In-app purchase One-time payment Once purchased, it will be permanently available to you. @@ -85,7 +85,7 @@ Travel guides Wikivoyage Article removed - Search: Country, city, province + Search: country, city, province Read Bookmarked articles Explore @@ -100,8 +100,8 @@ Clear all intermediate points Group deleted Whitewater sports - Distance: Farthest first - Distance: Nearest first + Distance: farthest first + Distance: nearest first Enter longitude Enter latitude Enter latitude and longitude @@ -195,7 +195,7 @@ Show directional line from your position to the active marker locations. Show one or two arrows indicating the direction to the active markers. Choose how to display the distance to active markers. - Choose the number of active markers to display. + Choose how many direction indicators to display. Number of decimal digits Right Left @@ -208,9 +208,9 @@ A tap on the map toggles the control buttons and widgets. Fullscreen mode Mark passed - can be imported as favorites or GPX file. + can be imported as Favorites or a GPX file. Import as GPX file - Import as favorite + Import as Favorites Import file Wrong input Enter new name @@ -334,7 +334,7 @@ Online street-level photos for everyone. Discover places, collaborate, capture the world. Mapillary Street-level photos for everyone. Discover places, collaborate, capture the world. - Your destination is located in an area with private access. Trespass private roads for this trip? + Your destination is located in an area with private access. Allow access to the private roads for this trip? Restart search Increase search radius Nothing found @@ -342,11 +342,11 @@ Toggle OSM Notes Show OSM Notes Hide OSM Notes - Tapping this action button shows or hides OSM notes on the map. + Tapping this action button shows or hides OSM Notes on the map. Sorted by distance Search favorites - Download the \'Hillshade Overlay\' map to hillshade this region. - Install the \'Contour Lines\' plugin to show them on the map + To see relief hillshading on the map, download the hillshade overlay map of this region. + To see relief hillshading on the map, you need to buy and install the \'Contour Lines\' plugin Hide from zoom level Download the \'Contour Line\' map for use in this region. Plugin @@ -389,7 +389,7 @@ Nautical depth contours Worldwide Wikivoyage articles - Southern hemisphere nautical depth points + Southern hemisphere nautical depth points Northern hemisphere nautical depth points Nautical depth contours Nautical maps @@ -424,8 +424,8 @@ Time moving Time span Max - Departure - Arrival + Start time + End time Color Select GPX file folder File can not be moved. @@ -560,7 +560,7 @@ Get it Get for %1$s Get for %1$s month - Get unlimited map downloads, and map updates more than once a month: Weekly, daily, or hourly. + Get unlimited map downloads, and map updates more than once a month: weekly, daily, or hourly. Unlimited map downloads, updates, and Wikipedia plugin. Miles/meters Skip downloading maps @@ -576,7 +576,7 @@ OsmAnd\'s data storage (for maps, GPX files, etc.): %1$s. Grant permission Allow location access - Get directions and discover new places without a connection to the Internet + Get directions and discover new places without an Internet connection Find my position Do not check for new versions or OsmAnd related discounts. Do not show new versions @@ -590,7 +590,7 @@ Get started %1$s stops before Coordinates search - Advanced coordinate search + Advanced coordinates search Back to search Remove selected items from \'History\'? Show %1$s on the map @@ -691,7 +691,7 @@ OSM Editors ranking OsmAnd Live subscription Subscribe - For your info about contributions. + Needed to provide you information about contributions. Public Name Do not show my name in reports Support region @@ -854,7 +854,7 @@ geo: Share location Send - Please use a category name that doens\'t already exist. + Please use a category name that doesn\'t already exist. Category name Add new category Regions @@ -890,7 +890,7 @@ Locations Plugins Avoid shuttle train - Avoid using the shuttle train + Avoid using shuttle trains Hazard Bold outline No updates available @@ -976,7 +976,7 @@ Color by OSMC hiking symbol Log Off House numbers - Copy its data files to the new destination? + Copy OsmAnd data files to the new destination? Maps could not be created in specified directory Copying files failed External storage @@ -1500,7 +1500,7 @@ Disable two-phase routing for car navigation. Disable complex routing Seamark - Select the use profiles to be visible in the app. + Select the profiles to be visible in the app. App Profiles Map rendering Hiking @@ -2301,9 +2301,9 @@ Overlay transparency Modify the base map transparency. Base map transparency - Underlaying map… + Underlay map… Underlay map - Choose the underlaying map. + Choose the underlay map. Overlay map… Overlay map Choose the overlay map. From 8edd4270d94409b5013208f5c5b6b63e211088c1 Mon Sep 17 00:00:00 2001 From: njohnston Date: Wed, 13 Jun 2018 18:18:53 +0000 Subject: [PATCH 2/2] Trivial style fix in terrain message --- OsmAnd/res/values/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/res/values/strings.xml b/OsmAnd/res/values/strings.xml index 4151ebe73c..e1ab7d3ee5 100644 --- a/OsmAnd/res/values/strings.xml +++ b/OsmAnd/res/values/strings.xml @@ -411,7 +411,7 @@ Shorter routes Balanced Prefer byways - Preferred terrain: Flat or hilly. + Preferred terrain: flat or hilly. Slope Add new folder Point(s) deleted.