Small glitches/precise routing
This commit is contained in:
parent
9b15c5dafd
commit
b5faf906b0
3 changed files with 6 additions and 0 deletions
|
@ -9,6 +9,8 @@
|
|||
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
|
||||
-->
|
||||
<string name="precise_routing_mode_descr">Enable precise routing to calculate precise routes without glitches. It is very limited by distance and doesn\'t use native library.</string>
|
||||
<string name="precise_routing_mode">Precise routing (alpha)</string>
|
||||
<string name="recording_context_menu_show">Show</string>
|
||||
<string name="recording_photo_description">Photo %1$s at %2$s</string>
|
||||
<string name="av_def_action_picture">Take a photo</string>
|
||||
|
|
|
@ -37,6 +37,9 @@
|
|||
<Preference android:title="@string/avoid_in_routing_title" android:summary="@string/avoid_in_routing_descr" android:key="avoid_in_routing"/>
|
||||
<CheckBoxPreference android:summary="@string/use_compass_navigation_descr" android:title="@string/use_compass_navigation"
|
||||
android:key="use_compass_navigation"></CheckBoxPreference>
|
||||
<CheckBoxPreference android:summary="@string/precise_routing_mode_descr" android:title="@string/precise_routing_mode"
|
||||
android:key="precise_routing_mode"></CheckBoxPreference>
|
||||
|
||||
</PreferenceScreen>
|
||||
|
||||
<Preference android:title="@string/prefs_plugins" android:summary="@string/prefs_plugins_descr" android:key="plugins"/>
|
||||
|
|
|
@ -293,6 +293,7 @@ public class SettingsActivity extends PreferenceActivity implements OnPreference
|
|||
registerBooleanPreference(osmandSettings.USE_ENGLISH_NAMES, screen);
|
||||
registerBooleanPreference(osmandSettings.AUTO_ZOOM_MAP, screen);
|
||||
registerBooleanPreference(osmandSettings.FAST_ROUTE_MODE, screen);
|
||||
registerBooleanPreference(osmandSettings.PRECISE_ROUTING_MODE, screen);
|
||||
registerBooleanPreference(osmandSettings.SNAP_TO_ROAD, screen);
|
||||
registerBooleanPreference(osmandSettings.USE_COMPASS_IN_NAVIGATION, screen);
|
||||
registerBooleanPreference(osmandSettings.LEFT_SIDE_NAVIGATION, screen);
|
||||
|
|
Loading…
Reference in a new issue