forked from mapbox/mapbox-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.xml
More file actions
96 lines (84 loc) · 5.01 KB
/
Copy pathstrings.xml
File metadata and controls
96 lines (84 loc) · 5.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<resources>
<string name="app_name">Mapbox Android Services</string>
<string name="action_settings">Settings</string>
<string name="default_style" translatable="false">mapbox://styles/mapbox/streets-v9</string>
<string name="category">category</string>
<string name="category_directions">Directions</string>
<string name="category_geocoding">Geocoding</string>
<string name="category_static_image">Static Image</string>
<string name="no_name">No name</string>
<string name="no_description">No description</string>
<!-- Forward geocoding -->
<string name="no_geocoder_available">No geocoder available</string>
<string name="fetch_address">Fetch address</string>
<string name="address_found">Address found</string>
<string name="no_address_found">Sorry, no address found</string>
<string name="no_location_data_provided">No location data provided</string>
<string name="service_not_available">Sorry, the service is not available</string>
<string name="invalid_lat_long_used">Invalid latitude or longitude used</string>
<!-- Titles -->
<string name="title_location">Location Engine</string>
<string name="title_directions_v5">Directions v5</string>
<string name="title_directions_icons">Directions icons</string>
<string name="title_reverse_geocoding">Reverse geocoding</string>
<string name="title_geocoding_widget">Geocoding widget</string>
<string name="title_geocoding_service">Geocoding service</string>
<string name="title_maki_icons">Maki icons</string>
<string name="title_static_image">Static image</string>
<string name="title_static_image_with_annotations">Static Image with Annotations</string>
<string name="title_simplify_polyline">Simplify staticPolylineAnnotation</string>
<string name="title_map_matching">Map matching</string>
<string name="title_turf_bearing">Turf bearing</string>
<string name="title_turf_destination">Turf destination</string>
<string name="title_turf_distance">Turf distance</string>
<string name="title_turf_line_slice">Turf line slice</string>
<string name="title_turf_inside">Turf inside</string>
<string name="title_turf_midpoint">Turf midpoint</string>
<string name="title_connectivity">Connectivity state</string>
<!-- Descriptions -->
<string name="description_location">Shows how to obtain location from different engines.</string>
<string name="description_directions_v5">Show you how to get where you\'re going.</string>
<string name="description_directions_icons">Icons that can used for navigation.</string>
<string name="description_reverse_geocoding">Pick a point on the map and receive a geocoded result.</string>
<string name="description_geocoding_widget">An easy to incorporate geocoding search bar.</string>
<string name="description_geocoding_service">Gets your current location and returns information using geocoder.</string>
<string name="description_maki_icons">List of the Maki icons.</string>
<string name="description_static_image">Use the static map API and display in an image view.</string>
<string name="description_static_image_with_annotations">Use the static map API with Annotations and display in an image view.</string>
<string name="description_simplify_polyline">Take a polyline and simplify it\'s geometry.</string>
<string name="description_map_matching">Use the map matching API to match a route to a road.</string>
<string name="description_turf_bearing">Use Turf to get the bearing.</string>
<string name="description_turf_destination">Use Turf to get a destination point.</string>
<string name="description_turf_distance">Use Turf to calculate a distance.</string>
<string name="description_turf_line_slice">Use Turf to slice a line into a smaller section.</string>
<string name="description_turf_inside">Use Turf to determine if something is within a polygon.</string>
<string name="description_turf_midpoint">Use Turf to get a midpoint.</string>
<string name="description_connectivity">Keep track of the connectivity status.</string>
<string name="title_optimized_trip">Optimized Trip</string>
<string name="description_optimized_trip">Use the optimized trip API to solve the traveling salesperson problem</string>
<string-array name="turf_calculation_items">
<item>Select calculation</item>
<item>Bearing</item>
<item>Destination</item>
<item>Distance</item>
<item>Line distance</item>
<item>item 6</item>
</string-array>
<string-array name="turf_calculation_units">
<item>kilometers</item>
<item>miles</item>
<item>nauticalmiles</item>
<item>radians</item>
<item>degrees</item>
<item>inches</item>
<item>yards</item>
<item>meters</item>
</string-array>
<string-array name="location_engines">
<item>None</item>
<item>Mock</item>
<item>Android</item>
<item>Lost</item>
<item>Google Play Services</item>
</string-array>
</resources>