Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2017-01-29 09:50:23 +01:00
commit a890b1f065
2 changed files with 12 additions and 1 deletions

View file

@ -9,6 +9,17 @@
3. All your modified/created strings are in the top of the file (to make easier find what\'s translated). 3. 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 PLEASE: Have a look at http://code.google.com/p/osmand/wiki/UIConsistency, it may really improve your and our work :-) Thx - Hardy
--> -->
<string name="release_2_6">
\u2022 New feature: Quick action button\n\n
\u2022 Improved touch screen gesture response\n\n
\u2022 New map fonts covering more locales\n\n
\u2022 Support TTS for regional language variants\n\n
\u2022 Visibility enhancements in several map styles and wikipedia\n\n
\u2022 Support Open Location Code (OLC)\n\n
\u2022 Display basic elevation profile for recorded GPX\n\n
\u2022 Several other improvements and bug fixes\n\n
and more…
</string>
<string name="auto_split_recording_title">Auto-split recordings after gap</string> <string name="auto_split_recording_title">Auto-split recordings after gap</string>
<string name="auto_split_recording_descr">Start new segment after gap of 6 min, new track after gap of 2 h, or new file after longer gap if date has changed.</string> <string name="auto_split_recording_descr">Start new segment after gap of 6 min, new track after gap of 2 h, or new file after longer gap if date has changed.</string>
<string name="rendering_attr_contourDensity_description">Contour lines density</string> <string name="rendering_attr_contourDensity_description">Contour lines density</string>

View file

@ -28,7 +28,7 @@ public class WhatsNewDialogFragment extends DialogFragment {
final OsmandApplication osmandApplication = (OsmandApplication) getActivity().getApplication(); final OsmandApplication osmandApplication = (OsmandApplication) getActivity().getApplication();
final String appVersion = Version.getAppVersion(osmandApplication); final String appVersion = Version.getAppVersion(osmandApplication);
builder.setTitle(getString(R.string.whats_new) + " " + appVersion) builder.setTitle(getString(R.string.whats_new) + " " + appVersion)
.setMessage(getString(R.string.release_2_5)) .setMessage(getString(R.string.release_2_6))
.setNegativeButton(R.string.shared_string_close, null); .setNegativeButton(R.string.shared_string_close, null);
if (AppInitializer.LATEST_CHANGES_URL != null) { if (AppInitializer.LATEST_CHANGES_URL != null) {
builder.setPositiveButton(R.string.read_more, new DialogInterface.OnClickListener() { builder.setPositiveButton(R.string.read_more, new DialogInterface.OnClickListener() {