Update strings

This commit is contained in:
Victor Shcherb 2012-06-28 01:30:21 +02:00
parent 0e7aa8bb29
commit f9a9f6d431
3 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,7 @@ import java.net.URLEncoder;
public class MapCreatorVersion { public class MapCreatorVersion {
public static String APP_VERSION = "0.7.3"; //$NON-NLS-1$ public static String APP_VERSION = "0.8.1"; //$NON-NLS-1$
public static final String APP_DESCRIPTION = "alpha"; //$NON-NLS-1$ public static final String APP_DESCRIPTION = "alpha"; //$NON-NLS-1$
public static final String APP_MAP_CREATOR_NAME = "OsmAndMapCreator"; //$NON-NLS-1$ public static final String APP_MAP_CREATOR_NAME = "OsmAndMapCreator"; //$NON-NLS-1$

View file

@ -9,6 +9,7 @@
1. All your modified/created strings are in the top of the file (to make easier find what's translated). 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 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="tip_recent_changes_0_8_1_t">Changes in 0.8.1 : </string>
<string name="asap">ASAP</string> <string name="asap">ASAP</string>
<string name="save_route_as_gpx">Save route as GPX file</string> <string name="save_route_as_gpx">Save route as GPX file</string>
<string name="route_roundabout">Roundabout : take %1$d exit and go</string> <string name="route_roundabout">Roundabout : take %1$d exit and go</string>

View file

@ -16,7 +16,7 @@ import android.widget.TextView;
public class TipsAndTricksActivity { public class TipsAndTricksActivity {
private int[][] tipNamesAndDescriptions = new int[][] { private int[][] tipNamesAndDescriptions = new int[][] {
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_8_0_t}, {R.string.tip_recent_changes,R.string.tip_recent_changes_0_8_1_t},
{R.string.tip_rotation_switching,R.string.tip_rotation_switching_t}, {R.string.tip_rotation_switching,R.string.tip_rotation_switching_t},
{R.string.tip_update_index,R.string.tip_update_index_t}, {R.string.tip_update_index,R.string.tip_update_index_t},
{R.string.tip_day_night_mode,R.string.tip_day_night_mode_t}, {R.string.tip_day_night_mode,R.string.tip_day_night_mode_t},
@ -28,8 +28,8 @@ public class TipsAndTricksActivity {
{R.string.tip_select_destination_point,R.string.tip_select_destination_point_t}, {R.string.tip_select_destination_point,R.string.tip_select_destination_point_t},
{R.string.tip_navigation,R.string.tip_navigation_t}, {R.string.tip_navigation,R.string.tip_navigation_t},
{R.string.tip_app_mode,R.string.tip_app_mode_t}, {R.string.tip_app_mode,R.string.tip_app_mode_t},
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_8_0_t},
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_7_1_t}, {R.string.tip_recent_changes,R.string.tip_recent_changes_0_7_1_t},
{R.string.tip_recent_changes,R.string.tip_recent_changes_0_6_9_t},
{R.string.tip_map_switch,R.string.tip_map_switch_t}, {R.string.tip_map_switch,R.string.tip_map_switch_t},
}; };