-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstrings.xml
More file actions
2087 lines (2061 loc) · 104 KB
/
Copy pathstrings.xml
File metadata and controls
2087 lines (2061 loc) · 104 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name" translatable="false">WunderLINQ</string>
<string name="automotive_app_desc" translatable="false">WunderLINQ</string>
<string name="widget_datagrid_name" translatable="false">WunderLINQ Data Grid</string>
<string name="product" translatable="false">WunderLINQ</string>
<string name="company_name" translatable="false">Black Box Embedded, LLC</string>
<!-- <string name="device_name" translatable="false">WunderLINQ</string> -->
<string name="device_name" translatable="false">WunderLINQ</string>
<!-- FirstRunActivity -->
<string name="firstrun_start">The WunderLINQ requires a lot of permissions to enable all the cool features the app provides. On the next few screens we will explain the need for each permission request.
You will only be presented with these screens this one time. If you need to enable certain permissions after, you will need to go into Android Settings and enable them.</string>
<string name="firstrun_navapp_body">Select your preferred Navigation App. Level of WunderLINQ support varies, for more details see the following page: https://blackboxembedded.com/pages/integrations</string>
<string name="firstrun_end">Thank you for purchasing the WunderLINQ! Ride Safe.</string>
<string name="firstrun_button_ok">Agree</string>
<string name="firstrun_button_skip">Disagree</string>
<!-- Permission Requests -->
<string name="accessibilityservice_alert_title">WunderLINQ needs to run a Accessibility Service</string>
<string name="accessibilityservice_alert_body">The WunderLINQ app uses an Accessibility service to enable Picture-in-Picture launching.</string>
<string name="camera_alert_title">WunderLINQ needs permissions to use your camera</string>
<string name="camera_alert_body">The WunderLINQ app needs access to your camera to take pictures and record video.</string>
<string name="call_alert_title">WunderLINQ needs permissions to use your phone to make phone calls</string>
<string name="call_alert_body">The WunderLINQ app needs access to phone to initiate calls.</string>
<string name="contacts_alert_title">WunderLINQ needs permissions to use read your contacts</string>
<string name="contacts_alert_body">The WunderLINQ app needs access to your contacts to list them for dialing.</string>
<string name="record_audio_alert_title">WunderLINQ needs permissions to record audio</string>
<string name="record_audio_alert_body">The WunderLINQ app needs access to your microphone to record video audio.</string>
<string name="location_alert_title">WunderLINQ needs location permission</string>
<string name="location_alert_body">The WunderLINQ app needs access to your location to allow background track recording and data logging.
Location permission is also used for data points such as elevation, GPS speed, and bearing.</string>
<string name="btconnect_alert_title">WunderLINQ needs Bluetooth permission</string>
<string name="btconnect_alert_body">The WunderLINQ app needs the ability to connect to the WunderLINQ Hardware.</string>
<string name="write_alert_title">WunderLINQ needs write permission</string>
<string name="write_alert_body">The WunderLINQ app needs access to write files for track logging and photos.</string>
<string name="phone_state_alert_title">WunderLINQ needs phone state permission</string>
<string name="phone_state_alert_body">The WunderLINQ app needs phone state permissions for the cellular signal strength data point.</string>
<string name="overlay_alert_title">WunderLINQ needs overlay permission</string>
<string name="overlay_alert_body">The WunderLINQ app needs overlay permissions for background video recording.</string>
<string name="notification_alert_title">WunderLINQ needs notification access</string>
<string name="notification_alert_body">The WunderLINQ app needs notification access so that it can control your music player.</string>
<string name="negative_alert_title">Functionality limited</string>
<string name="negative_location_alert_body">Since location access has not been granted, this app will not be able to save waypoints or log your location.</string>
<string name="negative_btconnect_alert_body">Since Bluetooth permission has not been granted, this app will not be able to connect to the WunderLINQ hardware.</string>
<string name="negative_write_alert_body">Since write access has not been granted, this app will not be able to save files.</string>
<string name="negative_camera_alert_body">Since camera access has not been granted, this app will not be able to take photos or videos.</string>
<string name="negative_contacts_alert_body">Since contact access has not been granted, this app will not be able to display or call your contacts.</string>
<string name="negative_call_alert_body">Since phone access has not been granted, this app will not be able to place phone calls.</string>
<string name="negative_microphone_alert_body">Since microphone access has not been granted, this app will not be able to record videos.</string>
<string name="negative_record_audio_alert_body">Since audio recording access has not been granted, this app will not be able to record videos.</string>
<string name="negative_phone_state_alert_body">Since phone state access has not been granted, this app will not be able to display your signal strength.</string>
<string name="usagestats_alert_title">WunderLINQ needs usage stat access</string>
<string name="usagestats_alert_body">The WunderLINQ app needs access to usage stats for auto launch of the app when the WunderLINQ device is connected.</string>
<!-- MainActivity -->
<string name="main_title">Motorcycle</string>
<string name="blank_field" translatable="false">∞</string>
<string name="no_pairing_alert_title">No paired WunderLINQ</string>
<string name="no_pairing_alert_body">No paired WunderLINQ. Please pair to your WunderLINQ under your Bluetooth Settings.</string>
<string name="too_many_pairings_alert_title">More than one paired WunderLINQ</string>
<string name="too_many_pairings_alert_body">More than one paired WunderLINQ. Please remove old pairings under your Bluetooth Settings.</string>
<string name="disclaimer_alert_title">WARNING!</string>
<string name="disclaimer_alert_body">
Do not attempt to enter route information or adjust the WunderLINQ while driving.
Failure to pay full attention to the operation of your vehicle could result in death, serious injury, or property damage.
You assume total responsibility and risk for using this device.
</string>
<string name="disclaimer_ok">I agree</string>
<string name="disclaimer_quit">Quit</string>
<string name="bt_not_supported">BLE is not supported</string>
<string name="rdc_front_label">Front Tire</string>
<string name="rdc_rear_label">Rear Tire</string>
<string name="engine_temp_label">Engine Temp</string>
<string name="ambient_temp_label">Ambient Temp</string>
<string name="odometer_label">Odometer</string>
<string name="trip1_label">Trip 1</string>
<string name="trip2_label">Trip 2</string>
<string name="tripauto_label">Trip Auto</string>
<string name="voltage_label">Voltage</string>
<string name="throttle_label">Throttle</string>
<string name="gear_label">Gear</string>
<string name="frontbrakes_label">Front Brakes</string>
<string name="rearbrakes_label">Rear Brakes</string>
<string name="ambientlight_label">Ambient Light</string>
<string name="speed_label">Speed</string>
<string name="avgspeed_label">Avg Speed</string>
<string name="cconsumption_label">Consumption</string>
<string name="fueleconomyone_label">Economy 1</string>
<string name="fueleconomytwo_label">Economy 2</string>
<string name="fuelrange_label">Range</string>
<!-- Menu -->
<string name="bike_info_label">Bike Info</string>
<string name="geodata_label">Trips & Waypoints</string>
<string name="appsettings_label">App Settings</string>
<string name="hwsettings_label">HW Settings</string>
<string name="info_label">About</string>
<string name="close_label">Close</string>
<!-- BikeInfoActivity -->
<string name="bike_info_title">Bike Info</string>
<string name="vin_label">VIN</string>
<string name="next_service_date_label">Next Service Date</string>
<string name="next_service_label">Next Service</string>
<string name="reset_header">Cluster Data Reset</string>
<string name="reset_label">Item</string>
<string-array name="resettype_array" translatable="false">
<item name="1">@string/avgspeed_label</item>
<item name="2">@string/fueleconomyone_label</item>
<item name="3">@string/fueleconomytwo_label</item>
<item name="4">@string/trip1_label</item>
<item name="5">@string/trip2_label</item>
</string-array>
<string name="reset_btn_label">Reset</string>
<!-- HWSettingsActivity -->
<string name="fw_config_title">HW Settings</string>
<string name="fw_version_label">Firmware Version</string>
<string name="wwtype_label">Wheel Type</string>
<string name="wwMode1">Full</string>
<string name="wwMode2">RT/K1600</string>
<string-array name="wwtype_array" translatable="false">
<item name="1">@string/wwMode1</item>
<item name="2">@string/wwMode2</item>
</string-array>
<string name="config_reset_label">Reset Settings</string>
<string name="config_write_label">Save Settings</string>
<string name="hwsave_alert_title">Warning!</string>
<string name="hwsave_alert_body">After saving new hardware settings, the WunderLINQ hardware will become unstable and will need to be removed and reinstalled into the cradle.\n Key mapping changes can impact app navigation with the wheel.</string>
<string name="hwsave_alert_btn_ok">Continue</string>
<string name="hwsave_alert_btn_cancel">Cancel</string>
<!-- AboutActivity -->
<string name="about_title">About</string>
<string name="app_name_link" translatable="false">
<a href="http://www.wunderlinq.com">WunderLINQ™</a>
</string>
<string name="version_label">Version:</string>
<string name="fw_ver_label">Firmware:</string>
<string name="app_ver_label">App:</string>
<string name="btn_documentation_title">Documentation</string>
<string name="btn_sendlogs_title">Send Logs</string>
<string name="sendlogs_email" translatable="false">support@blackboxembedded.com</string>
<string name="sendlogs_subject" translatable="false">WunderLINQ Android Logs</string>
<string name="sendlogs_body">Please describe your problem below:\n</string>
<string name="sendlogs_intent_title">Send Logs…</string>
<string name="credits_label">Credits</string>
<string name="company_name_link" translatable="false">
<a href="https://www.blackboxembedded.com">Black Box Embedded, LLC</a>
</string>
<string name="thanks" translatable="false">
<b>Support and Patience</b>\n
\n
Amy and Yaeko\n
\n
<b>All Star Beta Tester</b>\n
\n
Martin Dohnal\n
\n
<b>Translators</b>\n
\n
Tüscher Martin\n
Efren Martin\n
PT_JCAL\n
Martin Dohnal\n
Nikos Papanikolaou\n
Frederic Boucher\n
Žiga Selčan\n
Remco van den Ende\n
Touratech Japan\n
Oliver Ohlendorf\n
Jean-Claude Jacquet\n
\n
<b>Kickstarter Backers</b>\n
\n
Gareth Hadden\n
Dennis Beilby\n
André\n
Guest 1027536916\n
Guest 1868214759\n
Guest 1239069827\n
Guest 237538773\n
Sandra H. Minner\n
The Creative Fund\n
Guest 1333815029\n
Anthony Law\n
Sarah Berg\n
Pam Fisher\n
Martin Tuescher\n
Guest 680374823\n
Guest 695474876\n
Guest 1405252041\n
Guest 1792224733\n
ARND\n
Tobias Frank\n
Efren\n
Sean Peter\n
Ulf Behrens\n
ue hiro\n
Christian Haller\n
Werner Ensink\n
Holger\n
Jeff Alfeld\n
Thorsten Meier\n
Hairul Effendy\n
Patrick W. OBrien\n
Dieter Tetzner\n
Marc Rajewski\n
Kutschmann\n
Guest 726087000\n
Guest 1955680076\n
David J Wade\n
Scott Graham\n
Sameer Gaffar\n
Kevin Dawson\n
Jonathan Kubiak\n
Alexander\n
Guest 1292675875\n
Andy Murden\n
Chuck Hickey\n
Charles Fisher\n
Sergio\n
Timothy Ide\n
chiang jui sheng\n
Christopher Beneke\n
Christophe\n
Ben\n
Nikos Papanikolaou\n
Cabo\n
René Touw\n
Benat\n
Kaz\n
Elvin Chew Km\n
Sammy Groover\n
Kenneth Tan\n
Fynn van Gou\n
Jude Tok\n
Julian Bale\n
Fred\n
Gerd\n
stevemc52\n
Daniel Wratschko\n
Craig Kehrer\n
Guest 1308539216\n
Chew Kee Meng Elvin\n
Mark Sweeney\n
Taro Mizutani\n
Ben\n
Mike Civil\n
Tina\n
Liu Han Sheng David\n
Ad Bakker\n
Alexander Kienle\n
pekabo\n
Eric\n
Morwinsky\n
Scott Kennedy\n
Greg Kingston\n
Guest 413601162\n
Kőhalmi Zoltán\n
Eddy Concar\n
Darryl Payne\n
\n
<b>Icons from fontawesome.com</b>\n
\n
</string>
<!-- FaultActivity -->
<string name="title_activity_fault">FaultActivity</string>
<string name="fault_title">Active Faults</string>
<string name="notification_channel">Active Faults</string>
<!-- Fault strings -->
<string name="fault_ABSSLF">ABS self-diagnosis not completed</string>
<string name="fault_ABSERR">ABS error</string>
<string name="fault_ABSDAC">ABS deactivated</string>
<string name="fault_ASCSLF">ASC self-diagnosis not completed</string>
<string name="fault_ASCINT">ASC intervention</string>
<string name="fault_ASCERR">ASC error</string>
<string name="fault_ASCDAC">ASC deactivated</string>
<string name="fault_FUELF">Low Fuel</string>
<string name="fault_LAMPAFL1">Additional front light 1</string>
<string name="fault_LAMPAFL2">Additional front light 2</string>
<string name="fault_LAMPDAY">Daytime running light</string>
<string name="fault_LAMPFLI">Front left indicator</string>
<string name="fault_LAMPFRI">Front right indicator</string>
<string name="fault_LAMPRLI">Rear left indicator</string>
<string name="fault_LAMPRRI">Rear right indicator</string>
<string name="fault_LAMPFPK1">Front parking light 1</string>
<string name="fault_LAMPFPK2">Front parking light 2</string>
<string name="fault_LAMPLOW">Low-beam</string>
<string name="fault_LAMPHI">High-beam</string>
<string name="fault_LAMPREAR">Rear Light</string>
<string name="fault_LAMPBRK">Brake Light</string>
<string name="fault_LAMPLIC">License plate Light</string>
<string name="fault_LAMPRFOG">Rear Fog Light</string>
<string name="fault_LAMPADDD">Additional dipped/high-beam</string>
<string name="fault_LAMPADDB">Additional brake light</string>
<string name="fault_LAMPFL1">Front lamp 1</string>
<string name="fault_LAMPFL2">Front lamp 2</string>
<string name="fault_ICEWARN">Ice Warning</string>
<string name="fault_GENWARNFSYLW">The general warning light flashes yellow</string>
<string name="fault_GENWARNSHYLW">The general warning light shows yellow</string>
<string name="fault_GENWARNFSRED">The general warning light flashes red</string>
<string name="fault_GENWARNSHRED">The general warning light shows red</string>
<string name="fault_OILLOW">Engine oil level too low</string>
<string name="fault_TIREFWF">Front Tire Pressure Warning</string>
<string name="fault_TIRERWF">Rear Tire Pressure Warning</string>
<string name="fault_TIREFCF">Front Tire Pressure Critical</string>
<string name="fault_TIRERCF">Rear Tire Pressure Critical</string>
<string name="fault_SERVICE">Service Due</string>
<!-- WaypointActivity -->
<string name="waypoint_title">Saved Waypoints</string>
<!-- AddWaypointActivity -->
<string name="addwaypoint_view_title">Add Waypoint</string>
<string name="addwaypoint_view_bt_save">Save</string>
<string name="addwaypoint_view_bt_search">Lookup</string>
<string name="addwaypoint_view_tv_search_label">Drop pin or lookup address</string>
<string name="addwaypoint_view_search_hint">Type Address</string>
<string name="toast_waypoint_error">Latitude & Longitude Required</string>
<!-- WaypointViewActivity -->
<string name="waypoint_view_title">Saved Waypoint</string>
<string name="waypoint_view_tv_date_label">Date Recorded</string>
<string name="waypoint_view_tv_lat_label">Latitude</string>
<string name="waypoint_view_tv_lon_label">Longitude</string>
<string name="waypoint_view_tv_elevation_label">Elevation</string>
<string name="waypoint_view_tv_label_label">Label</string>
<string name="waypoint_view_label_hint">Waypoint Label</string>
<string name="waypoint_view_bt_navigate">Navigate</string>
<string name="waypoint_view_bt_open">Open in Map App</string>
<string name="waypoint_view_bt_share">Share</string>
<string name="waypoint_view_bt_delete">Delete</string>
<string name="waypoint_view_waypoint_label">Waypoint</string>
<string name="waypoint_view_share_label">Share via</string>
<string name="delete_waypoint_alert_title">Warning!</string>
<string name="delete_waypoint_alert_body">Delete Waypoint?</string>
<!-- TripsActivity -->
<string name="trips_title">Recorded Trips</string>
<!-- TripViewActivity -->
<string name="trip_view_title">Trip</string>
<string name="trip_view_trip_label">WunderLINQ Trip Log</string>
<string name="trip_view_label_hint">Trip Label</string>
<string name="trip_view_waypoint_start_label">Start</string>
<string name="trip_view_waypoint_end_label">End</string>
<string name="trip_view_share_label">Share</string>
<string name="trip_view_tv_distance">Distance</string>
<string name="trip_view_tv_duration">Duration</string>
<string name="trip_view_tv_speed">Speed (Avg/Max)</string>
<string name="trip_view_tv_lean">Lean (Max)</string>
<string name="trip_view_tv_shifts">Gear Shifts</string>
<string name="trip_view_tv_brakes">Brakes (Front/Rear)</string>
<string name="trip_view_tv_ambient">Ambient Temp (Min/Avg/Max)</string>
<string name="trip_view_tv_engine">Engine Temp (Min/Avg/Max)</string>
<string name="hours">h</string>
<string name="minutes">m</string>
<string name="seconds">s</string>
<string name="delete_trip_alert_title">Warning!</string>
<string name="delete_trip_alert_body">Delete Trip Log?</string>
<string name="delete_bt">Delete</string>
<string name="cancel_bt">Cancel</string>
<!-- CompassActivity -->
<string name="compass_title">Compass</string>
<string name="north">N</string>
<string name="north_west">NW</string>
<string name="north_east">NE</string>
<string name="south">S</string>
<string name="south_west">SW</string>
<string name="south_east">SE</string>
<string name="west">W</string>
<string name="east">E</string>
<!-- AccessoryActivity -->
<string name="accessory_title">Accessory Status</string>
<string name="default_accessory_one_name">Channel One</string>
<string name="default_accessory_two_name">Channel Two</string>
<!-- MusicActivity -->
<string name="music_title">Music</string>
<string name="title_activity_music">MusicActivity</string>
<string name="not_found_media_player">No running media player found</string>
<string name="start_media_player">Start a compatible media player</string>
<string name="unknown">Unknown</string>
<string name="touch_here">Touch Here for Permisson</string>
<!-- TaskActivity -->
<string name="quicktask_title">Quick Tasks</string>
<string name="task_title_navigation">Navigation</string>
<string name="task_title_gohome">Go Home</string>
<string name="task_title_favnumber">Call Favorite Number</string>
<string name="task_title_callcontact">Call Contact</string>
<string name="task_title_photo">Take Photo</string>
<string name="task_title_selfie">Take Selfie</string>
<string name="task_title_start_record">Start Recording</string>
<string name="task_title_stop_record">Stop Recording</string>
<string name="task_title_start_trip">Start Trip Log</string>
<string name="task_title_stop_trip">Stop Trip Log</string>
<string name="task_title_waypoint">Save Waypoint</string>
<string name="task_title_waypoint_nav">Navigate to Waypoint</string>
<string name="task_title_voicecontrol">Voice Assistant</string>
<string name="task_title_settings">Settings</string>
<string name="task_title_homescreen">Home Screen</string>
<string name="task_title_actioncam_start_video">Start ActionCam Recording</string>
<string name="task_title_actioncam_stop_video">Stop ActionCam Recording</string>
<string name="task_title_weathermap">Weather Map</string>
<string name="task_title_applauncher">App Launcher</string>
<string name="task_title_roadbook">Road Book</string>
<string name="task_title_systemvolume">Volume</string>
<string name="task_title_gopro">GoPro Control</string>
<string name="task_title_fuel">Fuel</string>
<string name="task_title_faults">Active Faults</string>
<string name="nogpremote_alert_title">WunderLINQ GoPro Remote Not Found</string>
<string name="nogpremote_alert_body">GoPro Control is provided by a separate free app called WunderLINQ GoPro Remote. Click OK to install.</string>
<string name="task_title_insta360">Insta360 Control</string>
<string name="no360remote_alert_title">WunderLINQ Insta360 Remote Not Found</string>
<string name="no360remote_alert_body">Insta360 Control is provided by a separate free app called WunderLINQ Insta360 Remote. Click OK to install.</string>
<string name="toast_actioncam_notconnected">ActionCam Not Connected</string>
<string name="toast_actioncam_notset">Set ActionCam type in the app settings</string>
<string name="task_title_front_start_record">Start Selfie Recording</string>
<string name="task_title_rear_stop_record">Stop Selfie Recording</string>
<string name="task_title_empty">Empty</string>
<string name="toast_permission_denied">Permissions required for this task have not been granted.</string>
<string name="toast_address_not_set">No Go Home address set in Settings</string>
<string name="toast_phone_not_set">No Favorite Number set in Settings</string>
<string name="toast_photo_taken">Photo Taken!</string>
<!-- ContactListActivity -->
<string name="contactlist_title">Contacts</string>
<string name="contact_type_0">Custom</string>
<string name="contact_type_1">Home</string>
<string name="contact_type_2">Mobile</string>
<string name="contact_type_3">Work</string>
<string name="contact_type_4">Work Fax</string>
<string name="contact_type_5">Home Fax</string>
<string name="contact_type_6">Pager</string>
<string name="contact_type_7">Other</string>
<string name="contact_type_8">Callback</string>
<string name="contact_type_9">Car</string>
<string name="contact_type_10">Company Main</string>
<string name="contact_type_11">ISDN</string>
<string name="contact_type_12">Main</string>
<string name="contact_type_13">Other Fax</string>
<string name="contact_type_14">Radio</string>
<string name="contact_type_15">Telex</string>
<string name="contact_type_16">TTY TDD</string>
<string name="contact_type_17">Work Mobile</string>
<string name="contact_type_18">Work Pager</string>
<string name="contact_type_19">Assistant</string>
<string name="contact_type_20">MMS</string>
<!-- AppListActivity -->
<string name="applist_title">Apps</string>
<!-- AlertActivity -->
<string name="alert_btn_ok">OK</string>
<string name="alert_btn_close">Close</string>
<string name="alert_title_fuel">Low Fuel</string>
<string name="alert_label_fuel">Route to the nearest fuel station?"</string>
<string name="alert_title_ignition">Ignition Off</string>
<string name="alert_label_ignition">Shutdown WunderLINQ App?"</string>git
<string name="alert_title_photopreview">Photo Preview</string>
<!-- LoggingService -->
<string name="gps_nofix">No Fix</string>
<string name="title_logging_notification">WunderLINQ Trip Recording Active</string>
<string name="btn_logging_notification_stop">Stop Recording</string>
<string name="time_header">Time</string>
<string name="latitude_header">Latitude</string>
<string name="longitude_header">Longitude</string>
<string name="altitude_header">Elevation</string>
<string name="gpsspeed_header">GPS Speed</string>
<string name="gear_header">Gear</string>
<string name="enginetemp_header">Engine Temperature</string>
<string name="ambienttemp_header">Ambient Temperature</string>
<string name="frontpressure_header">Front Tire Pressure</string>
<string name="rearpressure_header">Rear Tire Pressure</string>
<string name="odometer_header">Odometer</string>
<string name="voltage_header">Voltage</string>
<string name="throttle_header">Throttle Position</string>
<string name="frontbrakes_header">Front Brakes</string>
<string name="rearbrakes_header">Rear Brakes</string>
<string name="shifts_header">Shifts</string>
<string name="vin_header">VIN</string>
<string name="ambientlight_header">Ambient Light</string>
<string name="tripone_header">Trip 1</string>
<string name="triptwo_header">Trip 2</string>
<string name="tripauto_header">Trip Auto</string>
<string name="speed_header">Speed</string>
<string name="avgspeed_header">Average Speed</string>
<string name="cconsumption_header">Current Consumption</string>
<string name="fueleconomyone_header">Fuel Economy 1</string>
<string name="fueleconomytwo_header">Fuel Economy 2</string>
<string name="fuelrange_header">Fuel Range</string>
<string name="leanangle_header">Lean Angle Mobile</string>
<string name="gforce_header">g-force</string>
<string name="bearing_header">Bearing</string>
<string name="barometricpressure_header">Barometric Pressure</string>
<string name="sunrisesunset_header">Sunrise/Sunset</string>
<string name="rpm_header">RPM</string>
<string name="leanangle_bike_header">Lean Angle</string>
<string name="rearwheel_speed_header">Rear Wheel Speed</string>
<string name="cellular_signal_header">Cell Signal</string>
<string name="local_battery_header">Device Battery</string>
<string name="elevation_change_header">Elv Change</string>
<!-- VideoRecService -->
<string name="title_video_notification">WunderLINQ recording video</string>
<!-- WeatherMapActivity -->
<string name="weathermap_title">Weather Map</string>
<!-- VolumeActivity -->
<string name="systemvolume_title">System Volume</string>
<!-- SettingsActivity -->
<string name="title_activity_settings">Settings</string>
<!-- Preference strings -->
<string name="info_title">Personal Information</string>
<string name="pref_homeAddress_name">Home Address</string>
<string name="pref_homeAddress_summary">Format: 12345 Street, City, State 12345</string>
<string name="pref_homePhone_name">Favorite Phone Number</string>
<string name="pref_homePhone_summary">Format: 11234567890</string>
<string name="ui_title">User Interface</string>
<string name="pref_highlightColor_title">Highlight Color</string>
<string name="pref_dashboard_speedsource_name">Dashboard Speed Source</string>
<string name="pref_rpmmax_name">Max RPM</string>
<string name="rpmmax_10k">10000</string>
<string name="rpmmax_12k">12000</string>
<string name="rpmmax_15k">15000</string>
<string-array name="rpmmax_array" translatable="false">
<item name="1">@string/rpmmax_10k</item>
<item name="2">@string/rpmmax_12k</item>
<item name="3">@string/rpmmax_15k</item>
</string-array>
<string-array name="rpmmax_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
</string-array>
<string name="pref_main_settings_title">Main Screen Customization</string>
<string name="pref_main_settings_summary">Customize optional screens to display</string>
<string name="pref_display_music_name">Enable Music Control Screen</string>
<string name="pref_display_dashboard_name">Enable Dashboard Screen</string>
<string name="pref_grid_settings_title">Data Grid Customization</string>
<string name="pref_grid_settings_summary">Customize which data points to display and in which cell</string>
<string name="first">First</string>
<string name="second">Second</string>
<string name="third">Third</string>
<string name="fourth">Fourth</string>
<string name="fifth">Fifth</string>
<string name="sixth">Sixth</string>
<string name="seventh">Seventh</string>
<string name="eighth">Eighth</string>
<string name="ninth">Ninth</string>
<string name="tenth">Tenth</string>
<string name="eleventh">Eleventh</string>
<string name="twelfth">Twelfth</string>
<string name="thirteenth">Thirteenth</string>
<string name="fourteenth">Fourteenth</string>
<string name="fiftheenth">Fifteenth</string>
<string name="sixteenth">Sixteenth</string>
<string name="seventeenth">Seventeenth</string>
<string name="eighteenth">Eighteenth</string>
<string name="pref_grid_one" translatable="false">@string/first</string>
<string name="pref_grid_two" translatable="false">@string/second</string>
<string name="pref_grid_three" translatable="false">@string/third</string>
<string name="pref_grid_four" translatable="false">@string/fourth</string>
<string name="pref_grid_five" translatable="false">@string/fifth</string>
<string name="pref_grid_six" translatable="false">@string/sixth</string>
<string name="pref_grid_seven" translatable="false">@string/seventh</string>
<string name="pref_grid_eight" translatable="false">@string/eighth</string>
<string name="pref_grid_nine" translatable="false">@string/ninth</string>
<string name="pref_grid_ten" translatable="false">@string/tenth</string>
<string name="pref_grid_eleven" translatable="false">@string/eleventh</string>
<string name="pref_grid_twelve" translatable="false">@string/twelfth</string>
<string name="pref_grid_thirteen" translatable="false">@string/thirteenth</string>
<string name="pref_grid_fourteen" translatable="false">@string/fourteenth</string>
<string name="pref_grid_fifteen" translatable="false">@string/fiftheenth</string>
<string-array name="dataPoints_array" translatable="false">
<item name="1">@string/gear_header</item>
<item name="2">@string/enginetemp_header</item>
<item name="3">@string/ambienttemp_header</item>
<item name="4">@string/frontpressure_header</item>
<item name="5">@string/rearpressure_header</item>
<item name="6">@string/odometer_header</item>
<item name="7">@string/voltage_header</item>
<item name="8">@string/throttle_header</item>
<item name="9">@string/frontbrakes_header</item>
<item name="10">@string/rearbrakes_header</item>
<item name="11">@string/ambientlight_header</item>
<item name="12">@string/tripone_header</item>
<item name="13">@string/triptwo_header</item>
<item name="14">@string/tripauto_header</item>
<item name="15">@string/speed_header</item>
<item name="16">@string/avgspeed_header</item>
<item name="17">@string/cconsumption_header</item>
<item name="18">@string/fueleconomyone_header</item>
<item name="19">@string/fueleconomytwo_header</item>
<item name="20">@string/fuelrange_header</item>
<item name="21">@string/shifts_header</item>
<item name="22">@string/leanangle_header</item>
<item name="23">@string/gforce_header</item>
<item name="24">@string/bearing_header</item>
<item name="25">@string/time_header</item>
<item name="26">@string/barometricpressure_header</item>
<item name="27">@string/gpsspeed_header</item>
<item name="28">@string/altitude_header</item>
<item name="29">@string/sunrisesunset_header</item>
<item name="30">@string/rpm_header</item>
<item name="31">@string/leanangle_bike_header</item>
<item name="32">@string/rearwheel_speed_header</item>
<item name="33">@string/cellular_signal_header</item>
<item name="34">@string/local_battery_header</item>
<item name="35">@string/elevation_change_header</item>
</string-array>
<string-array name="dataPoints_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
<item name="4">3</item>
<item name="5">4</item>
<item name="6">5</item>
<item name="7">6</item>
<item name="8">7</item>
<item name="9">8</item>
<item name="10">9</item>
<item name="11">10</item>
<item name="12">11</item>
<item name="13">12</item>
<item name="14">13</item>
<item name="15">14</item>
<item name="16">15</item>
<item name="17">16</item>
<item name="18">17</item>
<item name="19">18</item>
<item name="20">19</item>
<item name="21">20</item>
<item name="22">21</item>
<item name="23">22</item>
<item name="24">23</item>
<item name="25">24</item>
<item name="26">25</item>
<item name="27">26</item>
<item name="28">27</item>
<item name="29">28</item>
<item name="30">29</item>
<item name="31">30</item>
<item name="32">31</item>
<item name="33">32</item>
<item name="34">33</item>
<item name="35">34</item>
</string-array>
<string name="pref_tasks_settings_title">Quick Task Customization</string>
<string name="pref_tasks_settings_summary">Customize which tasks to display and in which order</string>
<string name="pref_task_one" translatable="false">@string/first</string>
<string name="pref_task_two" translatable="false">@string/second</string>
<string name="pref_task_three" translatable="false">@string/third</string>
<string name="pref_task_four" translatable="false">@string/fourth</string>
<string name="pref_task_five" translatable="false">@string/fifth</string>
<string name="pref_task_six" translatable="false">@string/sixth</string>
<string name="pref_task_seven" translatable="false">@string/seventh</string>
<string name="pref_task_eight" translatable="false">@string/eighth</string>
<string name="pref_task_nine" translatable="false">@string/ninth</string>
<string name="pref_task_ten" translatable="false">@string/tenth</string>
<string name="pref_task_eleven" translatable="false">@string/eleventh</string>
<string name="pref_task_twelve" translatable="false">@string/twelfth</string>
<string name="pref_task_thirteen" translatable="false">@string/thirteenth</string>
<string name="pref_task_fourteen" translatable="false">@string/fourteenth</string>
<string name="pref_task_fifteen" translatable="false">@string/fiftheenth</string>
<string name="pref_task_sixteen" translatable="false">@string/sixteenth</string>
<string name="pref_task_seventeen" translatable="false">@string/seventeenth</string>
<string name="pref_task_eighteen" translatable="false">@string/eighteenth</string>
<string-array name="tasks_array" translatable="false">
<item name="1">@string/task_title_navigation</item>
<item name="2">@string/task_title_gohome</item>
<item name="3">@string/task_title_favnumber</item>
<item name="4">@string/task_title_callcontact</item>
<item name="5">@string/task_title_photo</item>
<item name="6">@string/task_title_selfie</item>
<item name="7">@string/task_title_start_record</item>
<item name="8">@string/task_title_front_start_record</item>
<item name="9">@string/task_title_start_trip</item>
<item name="10">@string/task_title_waypoint</item>
<item name="11">@string/task_title_waypoint_nav</item>
<item name="12">@string/task_title_voicecontrol</item>
<item name="13">@string/task_title_settings</item>
<item name="14">@string/task_title_homescreen</item>
<item name="15">@string/task_title_gopro</item>
<item name="16">@string/task_title_weathermap</item>
<item name="17">@string/task_title_applauncher</item>
<item name="18">@string/task_title_roadbook</item>
<item name="19">@string/task_title_systemvolume</item>
<item name="20">@string/task_title_insta360</item>
<item name="21">@string/task_title_fuel</item>
<item name="22">@string/task_title_faults</item>
<item name="23">@string/task_title_empty</item>
</string-array>
<string-array name="tasks_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
<item name="4">3</item>
<item name="5">4</item>
<item name="6">5</item>
<item name="7">6</item>
<item name="8">19</item>
<item name="9">7</item>
<item name="10">8</item>
<item name="11">9</item>
<item name="12">10</item>
<item name="13">11</item>
<item name="14">12</item>
<item name="15">13</item>
<item name="16">14</item>
<item name="17">15</item>
<item name="18">16</item>
<item name="19">17</item>
<item name="20">18</item>
<item name="21">20</item>
<item name="22">21</item>
<item name="23">22</item>
</string-array>
<string name="pref_nav_app_title">Navigation App</string>
<string name="nav_app_feature_not_supported">Feature not supported by selected Navigation App</string>
<string name="nav_app_default">Android Default</string>
<string name="nav_app_google">Google Maps</string>
<string name="nav_app_locus">Locus Map 4</string>
<string name="nav_app_locus_classic">Locus Map 3 Classic</string>
<string name="nav_app_waze">Waze</string>
<string name="nav_app_mapsme">Maps.me</string>
<string name="nav_app_osmand">OsmAnd</string>
<string name="nav_app_mapfactor">Mapfactor Navigator Pro</string>
<string name="nav_app_sygic">Sygic</string>
<string name="nav_app_kurviger1">Kurviger 1 Pro</string>
<string name="nav_app_kurviger3">Kurviger 3</string>
<string name="nav_app_tomtomgo">TomTom GO</string>
<string name="nav_app_bmwconnectedride">BMW Motorrad Connected</string>
<string name="nav_app_calimoto">Calimoto</string>
<string name="nav_app_copilot">CoPilot GPS</string>
<string name="nav_app_yandex">Yandex.Navigator</string>
<string name="nav_app_cartograph">Cartograph Maps</string>
<string name="nav_app_organicmaps">Organic Maps</string>
<string name="nav_app_cruiser">Cruiser</string>
<string name="nav_app_oruxmaps">OruxMaps</string>
<string name="nav_app_gurumaps">Guru Maps</string>
<string name="nav_app_myrouteapp">MyRoute-app</string>
<string name="nav_app_here">HERE WeGo</string>
<string name="nav_app_tourstart">Tourstart</string>
<string name="nav_app_dmd2">DMD2</string>
<string name="nav_app_bmaps">Bmaps</string>
<string-array name="nav_apps_array" translatable="false">
<item name="1">@string/nav_app_default</item>
<item name="2">@string/nav_app_google</item>
<item name="3">@string/nav_app_locus</item>
<item name="4">@string/nav_app_waze</item>
<item name="5">@string/nav_app_mapsme</item>
<item name="6">@string/nav_app_osmand</item>
<item name="7">@string/nav_app_mapfactor</item>
<item name="8">@string/nav_app_sygic</item>
<item name="9">@string/nav_app_kurviger3</item>
<item name="11">@string/nav_app_kurviger1</item>
<item name="12">@string/nav_app_tomtomgo</item>
<item name="13">@string/nav_app_bmwconnectedride</item>
<item name="14">@string/nav_app_calimoto</item>
<item name="15">@string/nav_app_copilot</item>
<item name="16">@string/nav_app_yandex</item>
<item name="17">@string/nav_app_cartograph</item>
<item name="18">@string/nav_app_organicmaps</item>
<item name="19">@string/nav_app_cruiser</item>
<item name="20">@string/nav_app_oruxmaps</item>
<item name="21">@string/nav_app_gurumaps</item>
<item name="22">@string/nav_app_myrouteapp</item>
<item name="23">@string/nav_app_locus_classic</item>
<item name="24">@string/nav_app_here</item>
<item name="25">@string/nav_app_tourstart</item>
<item name="26">@string/nav_app_dmd2</item>
<item name="27">@string/nav_app_bmaps</item>
</string-array>
<string-array name="nav_apps_arrayValues" translatable="false">
<item name="1">1</item>
<item name="2">2</item>
<item name="3">3</item>
<item name="4">4</item>
<item name="5">5</item>
<item name="6">6</item>
<item name="7">7</item>
<item name="8">8</item>
<item name="9">20</item>
<item name="11">13</item>
<item name="12">10</item>
<item name="13">11</item>
<item name="14">12</item>
<item name="15">14</item>
<item name="16">15</item>
<item name="17">16</item>
<item name="18">17</item>
<item name="19">18</item>
<item name="20">19</item>
<item name="21">21</item>
<item name="22">22</item>
<item name="23">23</item>
<item name="24">24</item>
<item name="25">25</item>
<item name="26">26</item>
<item name="27">27</item>
</string-array>
<string name="pref_roadbook_app_title">Roadbook App</string>
<string name="roadbook_app_rabbitrally">Rabbit Rally</string>
<string-array name="roadbook_apps_array" translatable="false">
<item name="1">@string/roadbook_app_rabbitrally</item>
</string-array>
<string-array name="roadbook_apps_arrayValues" translatable="false">
<item name="1">1</item>
</string-array>
<string name="pref_contacts_filter_title">Contacts Display</string>
<string name="contacts_filter_favorites">Favorites</string>
<string name="contacts_filter_all">All</string>
<string-array name="contacts_filter_array" translatable="false">
<item name="1">@string/contacts_filter_favorites</item>
<item name="2">@string/contacts_filter_all</item>
</string-array>
<string-array name="contacts_filter_arrayValues" translatable="false">
<item name="1">1</item>
<item name="2">2</item>
</string-array>
<string name="pref_tempf_name">Temperature Unit</string>
<string name="tempf_c">Celsius</string>
<string name="tempf_f">Fahrenheit</string>
<string-array name="tempf_array" translatable="false">
<item name="1">@string/tempf_c</item>
<item name="2">@string/tempf_f</item>
</string-array>
<string-array name="tempf_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
</string-array>
<string name="pref_distance_name">Distance Unit</string>
<string name="distance_m">Metric</string>
<string name="distance_i">Imperial</string>
<string-array name="distance_array" translatable="false">
<item name="1">@string/distance_m</item>
<item name="2">@string/distance_i</item>
</string-array>
<string-array name="distance_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
</string-array>
<string name="pref_bearing_name">Bearing Unit</string>
<string name="bearing_d">Degrees</string>
<string name="bearing_c">Cardinal</string>
<string-array name="bearing_array" translatable="false">
<item name="1">@string/bearing_d</item>
<item name="2">@string/bearing_c</item>
</string-array>
<string-array name="bearing_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
</string-array>
<string name="pref_pressuref_name">Pressure Unit</string>
<string name="pressuref_bar">Bar</string>
<string name="pressuref_kpa">kPa</string>
<string name="pressuref_kgf">Kg-f</string>
<string name="pressuref_psi">psi</string>
<string-array name="pressuref_array" translatable="false">
<item name="1">@string/pressuref_bar</item>
<item name="2">@string/pressuref_kpa</item>
<item name="3">@string/pressuref_kgf</item>
<item name="4">@string/pressuref_psi</item>
</string-array>
<string-array name="pressuref_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
<item name="4">3</item>
</string-array>
<string name="pref_consumption_name">Consumption Unit</string>
<string name="consumption_hundred_km">L/100</string>
<string name="consumption_gallon_us">mpg(US)</string>
<string name="consumption_gallon_imperial">mpg(Imperial)</string>
<string name="consumption_km">km/L</string>
<string-array name="consumption_array" translatable="false">
<item name="1">@string/consumption_hundred_km</item>
<item name="2">@string/consumption_gallon_us</item>
<item name="3">@string/consumption_gallon_imperial</item>
<item name="4">@string/consumption_km</item>
</string-array>
<string-array name="consumption_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
<item name="4">3</item>
</string-array>
<string name="pref_time_name">Time Format</string>
<string name="timef_12h">12h</string>
<string name="timef_24h">24h</string>
<string-array name="time_array" translatable="false">
<item name="1">@string/timef_12h</item>
<item name="2">@string/timef_24h</item>
</string-array>
<string-array name="time_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
</string-array>
<string name="pref_orientation_name">Orientation Lock</string>
<string name="orientation_a">Off</string>
<string name="orientation_l">Landscape</string>
<string name="orientation_p">Portrait</string>
<string name="orientation_rl">Reverse Landscape</string>
<string-array name="orientation_array" translatable="false">
<item name="1">@string/orientation_a</item>
<item name="2">@string/orientation_l</item>
<item name="3">@string/orientation_rl</item>
<item name="4">@string/orientation_p</item>
</string-array>
<string-array name="orientation_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
<item name="3">3</item>
</string-array>
<string name="pref_brightness_name">Display Brightness</string>
<string name="pref_brightness_summary">Sets the devices brightness to the max.</string>
<string name="pref_nightMode_name">Night Mode</string>
<string name="pref_nightMode_summary">User Interface Color Scheme</string>
<string name="off">Off</string>
<string name="on">On</string>
<string name="auto">Auto</string>
<string name="system_default">System Default</string>
<string-array name="night_mode_array" translatable="false">
<item name="1">@string/off</item>
<item name="2">@string/on</item>
<item name="3">@string/auto</item>
<item name="4">@string/system_default</item>
</string-array>
<string-array name="night_mode_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
<item name="4">3</item>
</string-array>
<string name="pref_autoNightModeDelay_name">Auto Night Mode Delay</string>
<string name="pref_autoNightModeDelay_summary">Set Auto Night Mode Delay In Seconds</string>
<string name="pref_hide_navbar_name">Hide NavBar when not in use</string>
<string name="pref_hide_navbar_summary">Auto hide NavBar when not in use.</string>
<string name="pref_focus_indication_name">Focus Indication</string>
<string name="pref_focus_indication_summary">Applies Highlight Color to navigation bar when the app has control focus.</string>
<string name="experimental_title">Experimental Features</string>
<string name="pref_pip_name">Enable Picture in Picture mode</string>
<string name="pref_pip_summary">When leaving the app the data grid is minimized into a hovering window. Only available in Android 8.0+</string>
<string name="pref_piporientation_name">PiP Orientation</string>
<string-array name="piporientation_array" translatable="false">
<item name="1">@string/orientation_l</item>
<item name="2">@string/orientation_p</item>
</string-array>
<string-array name="piporientation_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
</string-array>
<string name="pref_pipgrid_name">PiP Cell Count</string>
<string-array name="pipgrid_array">
<item name="1">4</item>
<item name="2">2</item>
<item name="3">1</item>
</string-array>
<string-array name="pipgrid_arrayValues" translatable="false">
<item name="1">4</item>
<item name="2">2</item>
<item name="3">1</item>
</string-array>
<string name="alerting_title">Alert Settings</string>
<string name="pref_notification_name">Enable Fault Notififcations</string>
<string name="pref_notification_summary">Enable or disable all alert notifications</string>
<string name="pref_tpmsAlert_name">Custom Tire Pressure Threshold</string>
<string name="pref_tpmsAlert_summary">Use a custom threshold for low tire pressure alerting</string>
<string name="pref_tpmsAlertThreshold_name">Low Tire Pressure Threshold</string>
<string name="pref_tpmsAlertThreshold_summary">Specify a number based on your unit selection</string>
<string name="pref_fuelAlert_name">Fuel Routing</string>
<string name="pref_fuelAlert_summary">Prompt to route to nearest fuel station when low fuel fault is present</string>
<string name="pref_ignitionAlert_name">Ignition</string>
<string name="pref_ignitionAlert_summary">Prompt to close app when ignition is shutoff</string>
<string name="debug_settings_title">Debug Settings</string>
<string name="advanced_settings_title">Advanced Settings</string>
<string-array name="dashSpeedSources_array" translatable="false">
<item name="1">@string/speed_header</item>
<item name="2">@string/rearwheel_speed_header</item>
<item name="3">@string/gpsspeed_header</item>
</string-array>
<string-array name="dashSpeedSources_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
<item name="3">2</item>
</string-array>
<string name="pref_bearing_override_name">GPS Bearing</string>
<string name="pref_bearing_override_summary">Use GPS Bearing instead of magnetic compass.</string>
<string name="pref_photopreview_name">Photo Preview</string>
<string name="pref_photopreview_summary">Displays the photo after capture</string>
<string name="pref_autolaunch_name">Auto Launch App</string>
<string name="pref_autolaunch_summary">Auto launch WunderLINQ app when WunderLINQ hardware connects</string>
<string name="pref_autotrip_name">Auto Trip Logging</string>
<string name="pref_autotrip_summary">Automatically starts trip logging when connected to the WunderLINQ hardware.</string>
<string name="toast_auto_trip_logging">Auto Trip Logging Enabled</string>
<string name="pref_app_launch_options_name">Split Screen App Launch</string>
<string name="pref_app_launch_adjacent">Launch Adjacent</string>
<string name="pref_app_launch_over">Launch Overtop</string>
<string-array name="appLaunchOptions_array" translatable="false">
<item name="1">@string/pref_app_launch_adjacent</item>
<item name="2">@string/pref_app_launch_over</item>
</string-array>
<string-array name="appLaunchOptions_arrayValues" translatable="false">
<item name="1">0</item>
<item name="2">1</item>
</string-array>
<string name="pref_debuglogging_name">Enable Debug Logging</string>
<string name="pref_debuglogging_summary">Only enable if needed by Support, may impact performance if left running. Please disable when finished.</string>
<string name="hw_settings_title">WunderLINQ hardware Settings</string>
<string name="waypoints_nav_title">Waypoints</string>
<string name="toast_waypoint_saved">Waypoint Saved</string>
<string name="toast_gpx_saved">GPX Imported</string>
<string name="geocode_error">Problem looking up geocode</string>
<string name="pref_integrations_settings_title">Integrations</string>