trkpt/app/src/main/res/values/strings.xml

69 lines
5.4 KiB
XML
Raw Normal View History

2016-08-29 12:50:41 +00:00
<resources>
<!-- activities -->
<string name="app_name">Trackbook</string>
2016-09-07 10:30:46 +00:00
<string name="title_activity_infosheet">Info Sheet</string>
2016-08-29 12:50:41 +00:00
<!-- menu entries -->
<string name="menu_my_location">My Location</string>
<string name="menu_about">About</string>
2016-09-07 10:30:46 +00:00
<!-- headers -->
<string name="header_about">About</string>
<!-- notification -->
<string name="notification_title_trackbook_running">Trackbook running</string>
<string name="notification_title_trackbook_not_running">Trackbook not running</string>
<string name="notification_stop">Stop</string>
2016-09-07 13:48:12 +00:00
<string name="notification_swipe_to_clear_map">&#8230; swipe to clear map.</string>
<string name="notification_content_duration">Duration</string>
<string name="notification_content_distance">Distance</string>
2016-08-29 12:50:41 +00:00
<!-- snackbar messages -->
<string name="snackbar_message_tracking_stopped">Tracking stopped</string>
<string name="snackbar_message_tracking_started">Tracking started</string>
<!-- toast messages -->
<string name="toast_message_permissions_granted">Permissions granted.</string>
<string name="toast_message_unable_to_start_app">Unable to start Trackbook.</string>
<string name="toast_message_location_offline">Location is turned off.</string>
<string name="toast_message_acquiring_location">Acquiring current location.</string>
<string name="toast_message_last_location">Last location:</string>
<string name="toast_message_last_location_age_one_hour">over one hour</string>
2016-08-29 12:50:41 +00:00
<!-- map markers -->
<string name="marker_description_source">Source</string>
<string name="marker_description_accuracy">Accuracy</string>
2016-08-29 12:50:41 +00:00
<!-- onboading layout -->
<string name="layout_onboarding_h1_welcome">Hello</string>
2016-08-29 12:50:41 +00:00
<string name="layout_onboading_description_app_icon">Trackbook App Icon</string>
<string name="layout_onboading_h2_app_name">Trackbook</string>
<string name="layout_onboading_p_app_claim">Movement Recorder for Android</string>
<string name="layout_onboading_h2_request_permissions">Trackbook cannot work without these permissions:</string>
<string name="layout_onboading_h3_permission_location">LOCATION</string>
<string name="layout_onboading_p_permission_location">Trackbook needs accurate GPS location data to be able to record your movements. If the GPS data is not available or not accurate enough Trackbook uses location data from cell tower and WiFi triangulation.</string>
2016-08-29 12:50:41 +00:00
<string name="layout_onboading_h3_permission_storage">STORAGE</string>
<string name="layout_onboading_p_permission_storage">Trackbook uses osmdroid, which caches map tiles on Android\'s external storage. You can find the map cache in the osmdroid folder on the top level of the user-facing file system.</string>
2016-08-29 12:50:41 +00:00
<string name="layout_onboading_button_okay">Got it!</string>
2016-09-07 10:30:46 +00:00
<!-- infosheet about -->
<string name="infosheet_about_h1_about">About Trackbook</string>
<string name="infosheet_about_h2_recorder">Movement Recorder for Android</string>
2016-09-07 10:30:46 +00:00
<string name="infosheet_about_h3_version">Version 0.1 ("The Great Gig in the Sky")</string>
<string name="infosheet_about_p_bare">Trackbook is a bare bones app for recording your movements. Trackbook is great for hiking, vacation or workout. Once started it displays your movements on a map. You can save your recorded tracks and share them with friends.</string>
<string name="infosheet_about_p_free">Trackbook is free software. You can find the code on GitHub. GitHub is also a good place to file bugs or even to contribute, if you are interested. Trackbook is published under the MIT open source license. Trackbook uses osmdroid to display the map, which is also free software published under the Apache License.</string>
2016-09-07 10:30:46 +00:00
<string name="infosheet_about_p_github">https://github.com/y20k/trackbook</string>
<string name="infosheet_about_p_osmdroid">https://github.com/osmdroid/osmdroid</string>
<string name="infosheet_about_p_license">https://opensource.org/licenses/MIT</string>
<string name="infosheet_about_h2_permissions">Which Permissions does Trackbook need?</string>
<string name="infosheet_about_h3_internet">Permission INTERNET</string>
<string name="infosheet_about_p_internet">Trackbook needs to download map data from Open Street Map servers and therefore needs access to the internet.</string>
<string name="infosheet_about_h3_network">Permission ACCESS_WIFI_STATE and ACCESS_NETWORK_STATE</string>
<string name="infosheet_about_p_network">Trackbook uses to draw its main map. osmdroid needs to know the current state of your devices connectivity. I am not sure why though. On the other hand: These permissions are not harmful in any way.</string>
2016-09-07 10:30:46 +00:00
<string name="infosheet_about_h3_location">Permission ACCESS_COARSE_LOCATION and ACCESS_FINE_LOCATION</string>
<string name="infosheet_about_p_location">Trackbook needs accurate GPS location data to be able to record your movements. If the GPS data is not available or not accurate enough Trackbook uses location data from cell tower and WiFi triangulation.</string>
2016-09-07 10:30:46 +00:00
<string name="infosheet_about_h3_external">Permission WRITE_EXTERNAL_STORAGE</string>
<string name="infosheet_about_p_external">Trackbook uses osmdroid, which caches map tiles on Android\'s external storage. You can find the map cache in the osmdroid folder on the top level of the user-facing file system.</string>
2016-08-29 12:50:41 +00:00
</resources>