forked from Scottish-Tech-Army/Soundscape-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings.xml
More file actions
1107 lines (1105 loc) · 145 KB
/
Copy pathstrings.xml
File metadata and controls
1107 lines (1105 loc) · 145 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="general_alert_yes">"Yes"</string> -->
<!-- <string name="general_alert_no">"No"</string> -->
<!-- <string name="general_alert_dismiss">"Dismiss"</string> -->
<!-- <string name="general_alert_skip">"Skip"</string> -->
<string name="general_alert_cancel">"Cancel"</string>
<!-- <string name="general_alert_not_now">"Not Now"</string> -->
<!-- <string name="general_alert_disconnect">"Disconnect"</string> -->
<!-- <string name="general_alert_forget">"Forget"</string> -->
<string name="general_alert_done">"Done"</string>
<!-- <string name="general_alert_exit">"Exit"</string> -->
<!-- <string name="general_alert_delete">"Delete"</string> -->
<!-- <string name="general_alert_reset">"Reset"</string> -->
<!-- <string name="general_alert_remove">"Remove"</string> -->
<!-- <string name="general_alert_resume">"Resume"</string> -->
<!-- <string name="general_alert_keep">"Keep"</string> -->
<!-- <string name="general_alert_edit">"Edit"</string> -->
<!-- <string name="general_alert_add">"Add"</string> -->
<!-- <string name="general_alert_download">"Download"</string> -->
<!-- <string name="general_alert_details">"Details"</string> -->
<!-- <string name="general_alert_next">"Next"</string> -->
<!-- <string name="general_alert_continue">"Continue"</string> -->
<!-- <string name="general_alert_stop">"Stop"</string> -->
<!-- <string name="general_alert_close">"Close"</string> -->
<!-- <string name="general_alert_choose_an_action">"Choose an Action"</string> -->
<!-- <string name="general_alert_choose_an_app">"Choose an App"</string> -->
<!-- <string name="general_alert_destructive_undone_message">"This action cannot be undone"</string> -->
<!-- <string name="general_alert_open_settings">"Open Settings"</string> -->
<!-- <string name="general_alert_open">"Open"</string> -->
<!-- <string name="general_alert_replace">"Replace"</string> -->
<!-- <string name="general_alert_confirmation_title">"Are You Sure?"</string> -->
<!-- <string name="general_alert_discard">"Discard"</string> -->
<!-- <string name="general_text_clear_text">"Clear text"</string> -->
<!-- <string name="general_text_clear">"Clear"</string> -->
<!-- <string name="general_loading_almost_ready">"Almost ready…"</string> -->
<!-- <string name="general_loading_loading">"Loading…"</string> -->
<!-- <string name="general_loading_no_punctuation">"Loading"</string> -->
<!-- <string name="general_percentage">"%s%%"</string> -->
<!-- <string name="general_percentage_complete">"%s%% Complete"</string> -->
<!-- <string name="general_alert_offline_default_title">"Offline mode"</string> -->
<!-- <string name="general_alert_offline_default_message">"Soundscape is working offline. Nevertheless, Soundscape will continue to work, but some functions may be limited."</string> -->
<!-- <string name="general_alert_offline_search_title">"Search is not available"</string> -->
<!-- <string name="general_alert_offline_search_message">"When Soundscape is working offline, search is disabled. Dismiss to return to the previous screen"</string> -->
<!-- <string name="general_alert_offline_learn_more">"Learn more"</string> -->
<!-- <string name="general_alert_error_message">"Please try again later."</string> -->
<string name="general_loading_start">"Getting things ready…"</string>
<!-- <string name="general_loading_end">"Cleaning things up…"</string> -->
<!-- <string name="general_mute">"Mute"</string> -->
<!-- <string name="general_volume">"Volume"</string> -->
<!-- <string name="general_tabs">"%1$s, tab, %2$s of %3$s"</string> -->
<!-- <string name="general_alert_survey_title">"We'd love to hear from you!"</string> -->
<!-- <string name="general_alert_survey_message">"Do you have time to complete a 5-minute survey?"</string> -->
<!-- <string name="general_text_string_with_quotation_marks">"\"%s\""</string> -->
<!-- <string name="general_play">"Play"</string> -->
<!-- <string name="general_stop">"Stop"</string> -->
<!-- <string name="general_downloading">"Downloading"</string> -->
<!-- <string name="general_app_open">"Open App"</string> -->
<!-- <string name="general_app_download">"Download App"</string> -->
<!-- <string name="general_error_error_occurred">"Error Occurred"</string> -->
<!-- <string name="general_error_location_services">"Turn on Location Services to use Soundscape"</string> -->
<!-- <string name="general_error_precise_location">"Turn on Precise Location to use Soundscape"</string> -->
<!-- <string name="general_error_location_services_authorize_title">"Authorise Location Services"</string> -->
<!-- <string name="general_error_location_services_authorize_description">"Soundscape uses your location to find and tell you about the places and things around you. The app needs your permission to use Location Services."</string> -->
<!-- <string name="general_error_location_services_authorize_instructions">"1. Open the Settings app below\n2. Select \"Location\"\n3. Select \"Always\" or \"While Using the App\""</string> -->
<!-- <string name="general_error_location_services_precise_location_instructions">"1. Open the Settings app below\n2. Select \"Location\"\n3. Turn on \"Precise Location\""</string> -->
<!-- <string name="general_error_location_services_resume">"Open Soundscape to resume Location Services"</string> -->
<!-- <string name="general_error_location_services_enable">"Enable Location Services"</string> -->
<!-- <string name="general_error_location_services_enable_description">"Location Services are currently disabled. Soundscape cannot work when Location Services are turned off."</string> -->
<!-- <string name="general_error_location_services_enable_instructions_2">"Turn Location Services On in the Settings app to continue.\n\n1. Press the back button (titled Settings)\n2. Select Privacy\n3. Select Location Services\n4. Turn On Location Services"</string> -->
<!-- <string name="general_error_location_services_enable_instructions_3">"Turn Location Services On in the Settings app to continue.\n\n1. Press Open Settings\n2. Press the back button (titled Settings)\n3. Select Privacy\n4. Select Location Services\n5. Turn On Location Services"</string> -->
<string name="general_error_location_services_find_location_error">"We are having trouble finding your current location."</string>
<!-- <string name="general_error_heading">"Soundscape is not sure which direction you are facing. Please hold your phone flat or begin walking and try again"</string> -->
<!-- <string name="general_error_location_services_find_location_error_try_again">"We are having trouble finding your current location. Try again later."</string> -->
<!-- <string name="general_error_wifi">"Oops! It doesn't look like you are connected to Wi-Fi."</string> -->
<!-- <string name="general_error_wifi_info">"You will need a Wi-Fi connection to download."</string> -->
<!-- <string name="general_error_network_connection_required">"Network Connection Required"</string> -->
<!-- <string name="general_error_network_connection_required_deleting_data">"A network connection is required when deleting and reloading Soundscape's map data. Check that your phone is not in airplane mode."</string> -->
<!-- <string name="general_error_ble_unauthorized_title">"Authorise Bluetooth"</string> -->
<!-- <string name="general_error_ble_unauthorized_message">"Bluetooth permission is required to connect your devices. Open the Settings app below to enable Bluetooth. Note that this can cause the app to restart."</string> -->
<string name="general_error_add_marker_error">"We are having trouble marking this place. Try again later."</string>
<!-- <string name="general_error_set_beacon_error">"We are having trouble setting the beacon currently. Try again later."</string> -->
<!-- <string name="general_error_preview">"Location preview could not be started at this location."</string> -->
<!-- <string name="device_motion_title">"Motion & Fitness"</string> -->
<!-- <string name="device_motion_enable_title">"Enable Motion & Fitness Tracking"</string> -->
<!-- <string name="device_motion_enable_description">"Motion & Fitness tracking is currently disabled. Soundscape cannot work when Motion & Fitness tracking is turned off."</string> -->
<!-- <string name="device_motion_enable_instructions">"Turn On Fitness Tracking in the Settings app to continue.\n\n1. Press Open Settings\n2. Press the Back button (titled Settings)\n3. Select Privacy\n4. Select Motion & Fitness\n5. Turn on Fitness Tracking\n6. Restart Soundscape"</string> -->
<!-- <string name="device_motion_authorize_title">"Authorise Motion & Fitness Tracking"</string> -->
<!-- <string name="device_motion_authorize_description">"This allows Soundscape to improve your experience based on whether you are walking, in a vehicle, or standing still. The app needs your permission to use Motion & Fitness. Before you authorise Soundscape to use this permission, you may need to enable Fitness Tracking under Settings → Privacy → Motion & Fitness."</string> -->
<!-- <string name="device_motion_authorize_instructions">"1. Open the Settings app below\n2. Turn on Motion & Fitness Tracking"</string> -->
<string name="settings_screen_title">"Settings"</string>
<!-- <string name="settings_clear_cache_alert_title">"Delete Stored Data?"</string> -->
<!-- <string name="settings_clear_cache_alert_message">"Soundscape stores map data to reduce data and battery consumption. Deleting stored data will require Soundscape to re-download the data."</string> -->
<!-- <string name="settings_clear_cache_markers_alert_title">"Keep Markers and Routes?"</string> -->
<!-- <string name="settings_clear_cache_markers_alert_message">"Choose \"Delete\" to remove markers, beacons and routes, or \"Keep\" to only remove map data. \"Delete\" will reset the app back to a freshly installed state and cannot be undone!"</string> -->
<!-- <string name="settings_clear_cache_no_service_title">"Unable to Clear Stored Map Data"</string> -->
<!-- <string name="settings_clear_cache_no_service_message">"Soundscape is currently unable to connect to the internet. An internet connection is required when clearing the stored map data so that the map data can be refreshed."</string> -->
<!-- <string name="settings_telemetry_optout_alert_title">"Telemetry Opt-Out"</string> -->
<!-- <string name="settings_telemetry_optout_alert_message">"This action will clear the stored information and opt-out of future telemetry gathering. Are you sure?"</string> -->
<!-- <string name="settings_telemetry_optout_action">"Opt-Out"</string> -->
<!-- <string name="settings_version_history_version">"Version %s"</string> -->
<!-- <string name="settings_version_about_version">"Version %1$s (%2$s)"</string> -->
<!-- <string name="settings_feedback_subject">"Soundscape Feedback"</string> -->
<!-- <string name="settings_feedback_choose_email_app">"Choose a email app:"</string> -->
<!-- <string name="settings_feedback_no_mail_client_error">"No email app installed"</string> -->
<!-- <string name="settings_general_voice">"Voice"</string> -->
<!-- <string name="settings_units_imperial">"Imperial (Feet)"</string> -->
<!-- <string name="settings_units_metric">"Metric (Metres)"</string> -->
<!-- <string name="settings_clear_data">"Clear Stored Map Data"</string> -->
<string name="settings_about_app">"About Soundscape"</string>
<!-- <string name="settings_section_general">"General Settings"</string> -->
<!-- <string name="settings_section_units">"Units of Measure"</string> -->
<!-- <string name="settings_section_troubleshooting">"Troubleshooting"</string> -->
<!-- <string name="settings_section_about">"About"</string> -->
<!-- <string name="settings_section_telemetry">"Telemetry"</string> -->
<!-- <string name="settings_section_share_usage_data">"Share Usage Data"</string> -->
<!-- <string name="settings_section_telemetry_footer">"Help Soundscape improve by automatically sending diagnostics, error reporting, and usage data. No personal data is collected."</string> -->
<!-- <string name="settings_language_screen_title">"Language"</string> -->
<!-- <string name="settings_language_screen_title_2">"Language & Region"</string> -->
<!-- <string name="settings_language_change_alert">"Would you like to change the app language to %s?"</string> -->
<!-- <string name="settings_language_change_alert_action">"Change to %s"</string> -->
<!-- <string name="settings_language_language_name">"%1$s (%2$s)"</string> -->
<!-- <string name="settings_audio_media_controls">"Media Controls"</string> -->
<!-- <string name="settings_audio_mix_with_others_title">"Enable Media Controls"</string> -->
<!-- <string name="settings_audio_mix_with_others_description">"Use this to enable control of Soundscape with the buttons on your headphones and the media playback buttons on the lock screen. Note that when turned on, Soundscape can’t be used while other media such as podcasts or music is playing."</string> -->
<!-- <string name="setting_audio_mix_with_others_confirmation">"Turning this setting on will cause Soundscape's callouts and other audio to pause whenever you start using a different media app. You can return to Soundscape to resume callouts."</string> -->
<!-- <string name="settings_volume_other">"Sound Effects"</string> -->
<!-- <string name="voice_action_preview">"Preview"</string> -->
<!-- <string name="voice_preview">"Hello. My name is %s."</string> -->
<string name="voice_settings_speaking_rate">"Speaking Rate"</string>
<string name="voice_voices">"Voices"</string>
<!-- <string name="voice_voice_rate_test">"How does this sound?"</string> -->
<!-- <string name="voice_title_voice_name_and_locale">"%1$s, %2$s."</string> -->
<!-- <string name="voice_title_voice_name_and_locale_selected">"%1$s, %2$s, Selected."</string> -->
<!-- <string name="voice_voice_cell_selected_acc_hint">"This voice is currently selected. Swipe up or down to preview."</string> -->
<!-- <string name="voice_voice_cell_use_acc_hint">"Double tap to use this voice. Swipe up or down to preview."</string> -->
<!-- <string name="voice_apple_other_languages">"Other Languages"</string> -->
<!-- <string name="voice_apple_male">"Male"</string> -->
<!-- <string name="voice_apple_female">"Female"</string> -->
<!-- <string name="voice_apple_default">"%s (Default Voice)"</string> -->
<!-- <string name="voice_apple_preview">"This is %s. How does this sound?"</string> -->
<!-- <string name="voice_apple_preview_hint">"Double tap to select and play a preview."</string> -->
<!-- <string name="voice_settings_enhanced_available_title">"Enhanced Voice Available!"</string> -->
<!-- <string name="voice_settings_enhanced_available">"A higher quality version of this voice may be available. To download it and other voices, go to the Spoken Content section of the iOS accessibility settings."</string> -->
<!-- <string name="voice_settings_enhanced_available_button">"Use Current Version"</string> -->
<!-- <string name="voice_apple_no_siri">"Note that Siri voices are not available to Soundscape and are not in the list below."</string> -->
<!-- <string name="beacon_settings_title">"Beacon Settings"</string> -->
<string name="beacon_settings_style">"Audio Styles"</string>
<!-- <string name="beacon_settings_style_haptic">"Haptic Styles"</string> -->
<!-- <string name="beacon_settings_style_haptic_explanation">"These beacon styles include haptic feedback that you can feel in addition to normal beacon audio. Haptic feedback is only available when your phone is unlocked and Soundscape is open."</string> -->
<!-- <string name="beacon_settings_cues">"Departure and Arrival"</string> -->
<!-- <string name="beacon_settings_melodies">"Enable Departure and Arrival Cues"</string> -->
<!-- <string name="beacon_settings_explanation">"In choosing a beacon style, select a style that is comfortable to listen to and is easily heard outdoors and in noisy surroundings. Make sure you can easily determine its direction through your preferred listening device (headphones or phone speaker)."</string> -->
<!-- <string name="settings_bluetooth_forget">"Forget This Device"</string> -->
<!-- <string name="troubleshooting_gps_status">"Location Accuracy"</string> -->
<!-- <string name="troubleshooting_gps_status_explanation_meters">"This value is an estimate of how accurately Soundscape knows where you are located. Less than ±10 metres is good. Less than ±20 metres is OK. Anything else is poor. Location data is most accurate when outside and not under any structures."</string> -->
<!-- <string name="troubleshooting_gps_status_explanation_feet">"This value is an estimate of how accurately Soundscape knows where you are located. Less than ±30 feet is good. Less than ±60 feet is OK. Anything else is poor. Location data is most accurate when outside and not under any structures."</string> -->
<!-- <string name="troubleshooting_gps_status_meters">"±%s metres"</string> -->
<!-- <string name="troubleshooting_gps_status_feet">"±%s feet"</string> -->
<!-- <string name="troubleshooting_check_audio">"Check Audio"</string> -->
<!-- <string name="troubleshooting_check_audio_hint">"Double tap to check the status of the headphones you are using with Soundscape."</string> -->
<!-- <string name="troubleshooting_check_audio_explanation">"Tap this button to hear about the status of the headphones you are using with Soundscape."</string> -->
<!-- <string name="troubleshooting_cache">"Map Data"</string> -->
<!-- <string name="troubleshooting_cache_hint">"Double tap to delete and redownload stored map data."</string> -->
<!-- <string name="troubleshooting_cache_explanation">"Soundscape downloads map data as you walk around so that it can tell you about the things and places around you. If you are having issues with Soundscape or it is using too much memory, you can clear the stored map data and Soundscape will only redownload the map data near your current location."</string> -->
<!-- <string name="settings_about_title_whats_new">"What's New?"</string> -->
<!-- <string name="settings_about_title_privacy">"Scottish Tech Army Privacy Statement"</string> -->
<!-- <string name="settings_about_title_service_agreement">"Services Agreement"</string> -->
<!-- <string name="settings_about_title_third_party">"Third Party Notices"</string> -->
<!-- <string name="settings_new_feature_num_of_num">"%1$s of %2$s"</string> -->
<!-- <string name="settings_new_feature_accept_button_acc_label">"Double tap to close announcements"</string> -->
<!-- <string name="settings_new_feature_accept_button_acc_hint">"Double tap to view next update announcement"</string> -->
<!-- <string name="settings_new_feature_recent_updates">"Recent Updates"</string> -->
<!-- <string name="beacon_generic_name">"Beacon"</string> -->
<string name="beacon_styles_current">"Current"</string>
<string name="beacon_styles_original">"Original"</string>
<string name="beacon_styles_flare">"Flare"</string>
<string name="beacon_styles_shimmer">"Shimmer"</string>
<string name="beacon_styles_tactile">"Tactile"</string>
<string name="beacon_styles_ping">"Ping"</string>
<string name="beacon_styles_drop">"Drop"</string>
<string name="beacon_styles_signal">"Signal"</string>
<string name="beacon_styles_signal_slow">"Signal (Slow)"</string>
<string name="beacon_styles_signal_very_slow">"Signal (Very Slow)"</string>
<string name="beacon_styles_mallet">"Mallet"</string>
<string name="beacon_styles_mallet_slow">"Mallet (Slow)"</string>
<string name="beacon_styles_mallet_very_slow">"Mallet (Very Slow)"</string>
<!-- <string name="beacon_styles_haptic_wand">"Haptic Wand"</string> -->
<!-- <string name="beacon_styles_haptic_pulse">"Haptic Pulse"</string> -->
<string name="beacon_audio_beacon">"Audio Beacon"</string>
<!-- <string name="beacon_beacon_on">"Beacon on %s"</string> -->
<!-- <string name="beacon_distance_unknown">"Distance unknown"</string> -->
<!-- <string name="beacon_action_remove_beacon">"Remove Beacon"</string> -->
<!-- <string name="beacon_action_remove_beacon_double_tap_acc_hint">"Double tap this button to remove the current audio beacon"</string> -->
<string name="beacon_action_mute_beacon">"Mute Beacon"</string>
<string name="beacon_action_mute_beacon_acc_hint">"mute the audio beacon."</string>
<string name="beacon_action_unmute_beacon">"Unmute Beacon"</string>
<string name="beacon_action_unmute_beacon_acc_hint">"unmute the audio beacon."</string>
<!-- <string name="beacon_action_mute_unmute_beacon">"Mute or Unmute Beacon"</string> -->
<!-- <string name="beacon_action_callout_beacon">"Call out Beacon"</string> -->
<!-- <string name="beacon_action_mute_unmute_beacon_acc_hint">"Double tap to mute or unmute the audio beacon"</string> -->
<!-- <string name="beacon_action_view_details">"View Details"</string> -->
<!-- <string name="beacon_action_view_details_acc_hint_details">"Double tap to view additional details"</string> -->
<!-- <string name="beacon_distance_update">"Beacon Distance Update"</string> -->
<!-- <string name="beacon_beacon_location_within">"Beacon within %s"</string> -->
<!-- <string name="beacon_beacon_location_within_audio_beacon_muted">"Beacon within %s. Audio beacon has been muted"</string> -->
<string name="preview_title">"Soundscape Street Preview"</string>
<!-- <string name="preview_current_intersection_unknown_label">"Current Location Unknown"</string> -->
<!-- <string name="preview_next_intersection_label">"To %s"</string> -->
<!-- <string name="preview_approaching_intersection_label">"Approaching Intersection"</string> -->
<!-- <string name="preview_content_orientation_text_with_cardinal">"%1$s° %2$s"</string> -->
<!-- <string name="preview_content_orientation_text_without_cardinal">"%1$s°"</string> -->
<!-- <string name="preview_content_edge_text">"%1$s on %2$s"</string> -->
<!-- <string name="preview_content_edge_text_accessibility_hint">"Double tap to move to the next intersection"</string> -->
<string name="preview_go_title">"Go"</string>
<!-- <string name="preview_go_back_title">"Previous"</string> -->
<!-- <string name="preview_go_back_accessibility_text">"Double tap to go back to your previous intersection"</string> -->
<!-- <string name="preview_search_label">"Explore Nearby"</string> -->
<!-- <string name="preview_search_accessibility_hint">"Double tap to search or browse nearby places"</string> -->
<!-- <string name="preview_alert_restart_title">"Preview Already in Progress"</string> -->
<!-- <string name="preview_alert_restart_message">"Do you want to restart Soundscape Street Preview at this location?"</string> -->
<!-- <string name="preview_alert_restart_button">"Restart"</string> -->
<!-- <string name="preview_callout_paused">"Street Preview paused"</string> -->
<!-- <string name="preview_callout_end">"Ending Soundscape Street Preview"</string> -->
<!-- <string name="preview_callout_previous">"Returning to previous intersection"</string> -->
<!-- <string name="preview_callout_start_at">"Starting Street Preview at %s"</string> -->
<!-- <string name="preview_callout_start_along">"Starting Street Preview along %s"</string> -->
<!-- <string name="preview_callout_continue_at">"Continuing Street Preview at %s"</string> -->
<!-- <string name="preview_callout_continue_along">"Continuing Street Preview along %s"</string> -->
<!-- <string name="preview_callout_road_finder_instructions">"Turn your phone to preview available roads"</string> -->
<!-- <string name="preview_callout_road_finder_error_instructions">"Turn to select a road and then press Go"</string> -->
<!-- <string name="preview_callout_road_finder_road">"%1$s, heading %2$s"</string> -->
<!-- <string name="preview_callout_road_finder_intersection">"Next intersection: %s"</string> -->
<!-- <string name="preview_callout_road_finder_intersection_same">"Next intersection: Circles back to current intersection"</string> -->
<!-- <string name="preview_callout_road_finder_intersection_end">"Next intersection: End of road"</string> -->
<!-- <string name="preview_callout_approach_end">"Approaching end of road"</string> -->
<!-- <string name="preview_callout_turn_left">"Turned left. Now along %s"</string> -->
<!-- <string name="preview_callout_turn_right">"Turned right. Now along %s"</string> -->
<!-- <string name="preview_callout_turn_continue">"Continuing along %s"</string> -->
<!-- <string name="preview_callout_turn_roundabout">"Departed roundabout. Now along %s"</string> -->
<string name="preview_include_unnamed_roads_title">"Unnamed Roads"</string>
<!-- <string name="preview_include_unnamed_roads_subtitle">"Include unnamed roads during Soundscape Street Preview"</string> -->
<!-- <string name="preview_include_unnamed_roads_label_off">"Enable Unnamed Roads"</string> -->
<!-- <string name="preview_include_unnamed_roads_label_on">"Disable Unnamed Roads"</string> -->
<!-- <string name="preview_include_unnamed_roads_hint_off">"Double tap to include unnamed roads during Soundscape Street Preview"</string> -->
<!-- <string name="preview_include_unnamed_roads_hint_on">"Double tap to exclude unnamed roads during Soundscape Street Preview"</string> -->
<!-- <string name="preview_tutorial_done_hint">"Double tap to exit the tutorial"</string> -->
<!-- <string name="preview_tutorial_title_1">"Welcome to Soundscape Street Preview!"</string> -->
<!-- <string name="preview_tutorial_content_1">"Explore and get a sense of an area anywhere in the world. For the best experience, we recommend that you stand up to turn in place and use stereo headphones."</string> -->
<!-- <string name="preview_tutorial_title_2">"What’s about to happen"</string> -->
<!-- <string name="preview_tutorial_content_2">"You have been transported to the middle of the street near the location you selected. Using the phone as a pointer, slowly turn, and the street names will be called out as you turn. When you are facing the street you want to go down, tap \"Go\" and you will advance to the next intersection."</string> -->
<!-- <string name="preview_tutorial_title_3">"Continuing your exploration"</string> -->
<!-- <string name="preview_tutorial_content_3">"At each intersection, you can use the phone again to choose which road to go down, or you can explore your immediate surroundings using the familiar Soundscape buttons at the bottom of the screen. You can tap \"Search\" to start the audio beacon at any point of interest, change your location, or to just explore the area in more detail."</string> -->
<!-- <string name="preview_tutorial_content_4">"Enjoy and have fun!"</string> -->
<string name="location_detail_title_default">"Location Details"</string>
<!-- <string name="location_detail_title_marker">"Marker Details"</string> -->
<!-- <string name="location_detail_title_waypoint">"Waypoint Details"</string> -->
<string name="location_detail_action_beacon">"Start Audio Beacon"</string>
<string name="location_detail_action_beacon_hint">"set an audio beacon at this location"</string>
<!-- <string name="location_detail_action_beacon_hint_disabled">"Setting a new audio beacon is disabled while route guidance is active"</string> -->
<string name="location_detail_action_save_hint">"save this location as a marker"</string>
<string name="location_detail_action_edit_hint">"edit marker"</string>
<string name="location_detail_action_share_hint">"share this location"</string>
<string name="location_detail_action_preview_hint">"start previewing at this location"</string>
<!-- <string name="location_detail_action_preview_hint_disabled">"Street Preview is disabled while route guidance is active"</string> -->
<!-- <string name="location_detail_action_directions_hint">"Double tap to open this location in an external maps app"</string> -->
<!-- <string name="location_detail_default_address">"Address unknown"</string> -->
<!-- <string name="location_detail_default_annotation">"No marker annotation"</string> -->
<!-- <string name="location_select_hint">"Double tap to select this location"</string> -->
<!-- <string name="location_detail_disabled_save">"Saving a marker at this location is currently unavailable"</string> -->
<!-- <string name="location_detail_disabled_share">"Sharing this location is currently unavailable"</string> -->
<!-- <string name="location_detail_disabled_generic">"This location is currently unavailable"</string> -->
<!-- <string name="location_detail_map_view_title">"Selected Location"</string> -->
<!-- <string name="location_detail_map_view_hint">"Edit to select a new location"</string> -->
<!-- <string name="location_detail_map_edit_title">"Edit Location"</string> -->
<!-- <string name="location_detail_map_edit_hint">"Move the map to the correct location"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_label">"Nudge Marker"</string> -->
<!-- <string name="location_detail_map_edit_compass_accessibility_hint">"Double tap to nudge marker in the direction your phone is pointing. Use actions to nudge in a different direction."</string> -->
<!-- <string name="location_detail_map_edit_north_accessibility_hint">"Double tap to nudge marker north. Use actions to nudge in a different direction."</string> -->
<!-- <string name="location_detail_map_edit_south_accessibility_hint">"Double tap to nudge marker south. Use actions to nudge in a different direction."</string> -->
<!-- <string name="location_detail_map_edit_east_accessibility_hint">"Double tap to nudge marker east. Use actions to nudge in a different direction."</string> -->
<!-- <string name="location_detail_map_edit_west_accessibility_hint">"Double tap to nudge marker west. Use actions to nudge in a different direction."</string> -->
<!-- <string name="location_detail_map_edit_accessibility_annoucement">"Nudging, %s of original location"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_action_compass">"Nudge In Direction of Phone"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_action_north">"Nudge North"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_action_south">"Nudge South"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_action_east">"Nudge East"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_action_west">"Nudge West"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_action_current_location">"Move to current location"</string> -->
<!-- <string name="location_detail_map_edit_accessibility_beacon_callout">"Starting beacon to track marker location. Nudging, %s of original location."</string> -->
<!-- <string name="location_detail_waypoint">"Waypoint %s"</string> -->
<string name="location_detail_add_waypoint_existing_hint">"remove this marker from your route."</string>
<string name="location_detail_add_waypoint_new_hint">"add this marker to your route."</string>
<!-- <string name="location_detail_add_waypoint_marker_hint">"Double tap to create a marker and add it as a waypoint"</string> -->
<string name="route_detail_action_start_route">"Start Route"</string>
<string name="route_detail_action_stop_route">"Stop Route"</string>
<!-- <string name="route_detail_action_start_event">"Start Activity"</string> -->
<!-- <string name="route_detail_action_stop_event">"Stop Activity"</string> -->
<string name="route_detail_action_edit">"Edit Route"</string>
<string name="route_detail_action_start_route_hint">"start this route"</string>
<string name="route_detail_action_start_route_disabled_hint">"Add waypoints before starting the route"</string>
<string name="route_detail_action_stop_route_hint">"stop this route"</string>
<!-- <string name="route_detail_action_start_event_hint">"Double tap to start this activity"</string> -->
<!-- <string name="route_detail_action_stop_event_hint">"Double tap to stop this activity and save your progress"</string> -->
<!-- <string name="route_detail_action_reset_hint">"Double tap to reset this activity and download any available updates"</string> -->
<string name="route_detail_action_share_hint">"share this route"</string>
<string name="route_detail_action_edit_hint">"edit this route"</string>
<string name="route_detail_action_create">"New Route"</string>
<string name="route_detail_action_create_hint">"create a new route"</string>
<!-- <string name="route_detail_waypoint_current_beacon">"Waypoint %s. Current beacon."</string> -->
<!-- <string name="route_detail_name_default">"Route"</string> -->
<!-- <string name="route_title_time">"%s elapsed"</string> -->
<!-- <string name="route_title">"%1$s・Waypoint %2$s of %3$s"</string> -->
<!-- <string name="route_waypoint_progress">"%s waypoints remaining"</string> -->
<!-- <string name="route_waypoint_progress_complete_elapsed">"Completed in %s"</string> -->
<!-- <string name="route_waypoint_progress_complete">"Completed!"</string> -->
<!-- <string name="route_end_completed">"Route Completed!・%s"</string> -->
<string name="route_end_completed_accessibility">"Route Completed! %s"</string>
<!-- <string name="route_end_not_completed">"Route Stopped・%s"</string> -->
<!-- <string name="route_end_not_completed_accessibility">"Route Stopped, %s"</string> -->
<!-- <string name="route_end_completed_summary">"%s Waypoints Reached・Last Waypoint Nearby"</string> -->
<!-- <string name="route_end_completed_summary_accessibility">"%s Waypoints Reached, Last Waypoint Nearby"</string> -->
<!-- <string name="route_end_not_completed_summary">"%1$s of %2$s Waypoints Reached・%3$s Remaining"</string> -->
<!-- <string name="route_end_not_completed_summary_accessibility">"%1$s of %2$s Waypoints Reached, %3$s Remaining"</string> -->
<!-- <string name="route_title_accessibility_label">"%1$s, Waypoint %2$s of %3$s"</string> -->
<string name="route_detail_action_previous">"Previous Waypoint"</string>
<string name="route_detail_action_previous_hint">"set the beacon on the previous waypoint"</string>
<string name="route_detail_action_next">"Next Waypoint"</string>
<string name="route_detail_action_next_hint">"set the beacon on the next waypoint"</string>
<!-- <string name="waypoint_detail_annotation_cluster_title">"%s,…"</string> -->
<string name="route_detail_edit_description">"Description"</string>
<!-- <string name="route_detail_edit_description_default">"Add a description of your route"</string> -->
<string name="route_detail_edit_waypoints_button">"Add Waypoints"</string>
<!-- <string name="route_detail_edit_waypoints_label">"Waypoints"</string> -->
<string name="route_detail_edit_delete">"Delete Route"</string>
<!-- <string name="route_detail_edit_delete_title">"Are you sure you want to delete this route?"</string> -->
<!-- <string name="route_detail_edit_delete_message">"This action cannot be undone."</string> -->
<!-- <string name="route_detail_edit_cancel_title">"Unsaved Changes"</string> -->
<!-- <string name="route_detail_edit_cancel_message">"Are you sure you want to discard your changes?"</string> -->
<!-- <string name="route_detail_beacon_title">"Guided Route"</string> -->
<!-- <string name="route_detail_orienteering_title">"Orienteering"</string> -->
<!-- <string name="route_detail_beacon_stop">"End Route"</string> -->
<string name="route_update_success_title">"Update Complete!"</string>
<!-- <string name="route_update_success_message">"Your recreational activity is up to date"</string> -->
<!-- <string name="route_update_fail_title">"Update Failed"</string> -->
<!-- <string name="route_update_fail_message">"An error occurred while updating your recreational activity"</string> -->
<!-- <string name="route_update_unavailable_title">"You're all set!"</string> -->
<!-- <string name="route_update_unavailable_message">"Your recreational activity is already up to date"</string> -->
<!-- <string name="tour_detail_beacon_title">"Guided Tour"</string> -->
<!-- <string name="tour_detail_beacon_stop">"End Tour"</string> -->
<string name="waypoint_title">"Waypoint"</string>
<!-- <string name="waypoint_callout">"Waypoint, %s"</string> -->
<!-- <string name="tour_progress_elapsed_distance_accessibility">"Beacon set on %1$s. %2$s. %3$s elapsed. %4$s waypoints remaining"</string> -->
<!-- <string name="tour_progress_distance_accessibility">"Beacon set on %1$s, %2$s, %3$s waypoints remaining"</string> -->
<!-- <string name="tour_progress_elapsed_accessibility">"Beacon set on %1$s. %2$s elapsed. %3$s waypoints remaining"</string> -->
<!-- <string name="tour_progress_accessibility">"Beacon set on %1$s. %2$s waypoints remaining"</string> -->
<!-- <string name="tour_progress_elapsed_distance_accessibility_singular">"Beacon set on %1$s. %2$s. %3$s elapsed. 1 waypoint remaining"</string> -->
<!-- <string name="tour_progress_distance_accessibility_singular">"Beacon set on %1$s, %2$s, 1 waypoint remaining"</string> -->
<!-- <string name="tour_progress_elapsed_accessibility_singular">"Beacon set on %1$s. %2$s elapsed. 1 waypoint remaining"</string> -->
<!-- <string name="tour_progress_accessibility_singular">"Beacon set on %s. 1 waypoint remaining"</string> -->
<!-- <string name="waypoint_audio_available">"Audio available"</string> -->
<!-- <string name="waypoint_images_available">"Images available"</string> -->
<!-- <string name="waypoint_audio_images_available">"Images and audio available."</string> -->
<!-- <string name="waypoint_callout_button_title">"Call out waypoint"</string> -->
<!-- <string name="waypoint_callout_button_hint">"Double tap to hear additional details"</string> -->
<!-- <string name="recommender_view_title">"Suggestion"</string> -->
<!-- <string name="first_use_experience_share_alert_title">"Sharing in Soundscape"</string> -->
<!-- <string name="first_use_experience_share_alert_message">"When you share a Soundscape marker or route, you are sharing the locations associated with that marker or route. You should only share with people you trust."</string> -->
<!-- <string name="universal_links_alert_error_title">"Oops! Something went wrong."</string> -->
<!-- <string name="universal_links_alert_import_error_message">"The link appears to be invalid."</string> -->
<!-- <string name="universal_links_alert_share_error_message">"This content could not be shared."</string> -->
<string name="universal_links_alert_action_marker">"Save as Marker"</string>
<!-- <string name="universal_links_alert_action_beacon">"Set a Beacon"</string> -->
<!-- <string name="universal_links_marker_alert_title">"You've received a marker: \"%s\""</string> -->
<!-- <string name="universal_links_marker_alert_message">"You should only use markers from someone you trust."</string> -->
<!-- <string name="universal_links_marker_existing_alert_title">"Marker already exists"</string> -->
<!-- <string name="universal_links_marker_existing_alert_message">"A marker already exists at this location. Do you want to replace it?"</string> -->
<string name="universal_links_marker_share_message">"I've shared a Soundscape marker with you! \"%s\""</string>
<!-- <string name="siri_shortcuts_title">"Siri Shortcuts"</string> -->
<!-- <string name="siri_shortcuts_title_beta">"Siri Shortcuts (Beta)"</string> -->
<!-- <string name="siri_shortcuts_description">"After adding Siri Shortcuts, you will be able to use your voice to invoke them even when Soundscape is not running."</string> -->
<!-- <string name="user_activity_my_location_title">"What's My Location?"</string> -->
<!-- <string name="user_activity_around_me_title">"What's Around Me?"</string> -->
<!-- <string name="user_activity_ahead_of_me_title">"What's Ahead of Me?"</string> -->
<!-- <string name="user_activity_nearby_markers_title">"Hear Markers Nearby"</string> -->
<!-- <string name="user_activity_search_title">"Search in Soundscape"</string> -->
<string name="user_activity_save_marker_title">"Save Marker"</string>
<!-- <string name="user_activity_street_preview_title">"Start Street Preview"</string> -->
<!-- <string name="url_resource_alert_route_share_message">"I've shared a Soundscape route with you! \"%s\""</string> -->
<!-- <string name="url_resource_alert_route_import_title">"You've received a route: \"%s\""</string> -->
<!-- <string name="url_resource_alert_route_import_message">"You should only use routes from someone you trust. Routes are not created, shared with or reviewed by Scottish Tech Army and may contain errors."</string> -->
<!-- <string name="url_resource_alert_route_import_existing_title">"Route already exists"</string> -->
<!-- <string name="url_resource_alert_route_import_existing_message">"Do you want to replace it? Replacing this route will also replace the markers used in this route."</string> -->
<!-- <string name="url_resource_alert_route_import_save">"Save Route"</string> -->
<!-- <string name="url_resource_alert_route_import_error_message">"The content appears to be invalid."</string> -->
<string name="routes_title">"Routes"</string>
<string name="routes_action_deleted">"Route deleted"</string>
<!-- <string name="routes_action_deleted_error">"We are unable to delete this route currently. Try again later."</string> -->
<string name="routes_no_routes_title">"Getting Started with Route Waypoints"</string>
<string name="routes_no_routes_hint_1">"Create a route for yourself or for someone else by organising a set of markers as waypoints on a route."</string>
<string name="routes_no_routes_hint_2">"While out on your route with Soundscape, you will be informed on arrival to each waypoint, and the Audio Beacon will automatically advance to the next waypoint."</string>
<!-- <string name="route_no_waypoints_hint_1">"Name your route and add an optional description. You can then add waypoints as you go or pick them from your list of markers."</string> -->
<!-- <string name="route_no_waypoints_hint_2">"You can rearrange the order of waypoints along a route at any time by editing the route."</string> -->
<!-- <string name="routes_tutorial_title">"Hear Your Waypoints on Your Journey"</string> -->
<!-- <string name="routes_tutorial_details">"You will now return to the Soundscape home page and an Audio Beacon will be placed on your first waypoint. When you arrive at the waypoint, the beacon will advance to the next waypoint on your route."</string> -->
<!-- <string name="routes_callout_complete">"Route complete!"</string> -->
<string name="routes_sort_by_name">"Sort by Name"</string>
<!-- <string name="routes_sort_by_name_hint">"Double tap to sort by name"</string> -->
<string name="routes_sort_by_distance">"Sort by Distance"</string>
<!-- <string name="routes_sort_by_distance_hint">"Double tap to sort by distance"</string> -->
<!-- <string name="routes_import_alert_title">"Route Error"</string> -->
<!-- <string name="routes_import_alert_message">"Waypoint data is missing for one or more of your routes. Please review the following routes, and re-add waypoints if necessary."</string> -->
<string name="markers_title">"Markers"</string>
<string name="markers_action_delete">"Delete Marker"</string>
<!-- <string name="markers_action_deleted">"Marker deleted"</string> -->
<!-- <string name="markers_action_deleted_error">"We are unable to delete this marker currently. Try again later."</string> -->
<!-- <string name="markers_action_update_error">"We are having trouble updating this marker currently. Try again later."</string> -->
<!-- <string name="markers_action_add_to_markers">"Add to Markers"</string> -->
<string name="markers_sort_button_sort_by_name">"Name"</string>
<string name="markers_sort_button_sort_by_name_voiceover">"Sorted by name"</string>
<string name="markers_sort_button_sort_by_distance">"Distance"</string>
<string name="markers_sort_button_sort_by_distance_voiceover">"Sorted by distance"</string>
<string name="markers_no_markers_title">"Getting Started with Markers"</string>
<string name="markers_no_markers_hint_1">"Create markers for your favourite destinations, waypoints on a route, or any locations you want called out. Simply choose a location, or even your current location, from the home screen and select \"Save as Marker\"."</string>
<string name="markers_no_markers_hint_2">"Try marking your home, the entrance to your work, or your favourite spot in the park."</string>
<!-- <string name="markers_edit_screen_title_save">"Save Marker"</string> -->
<string name="markers_edit_screen_title_edit">"Edit Marker"</string>
<!-- <string name="markers_edit_screen_done_button_acc_hint">"Double tap to save this marker"</string> -->
<!-- <string name="markers_edit_screen_route">"Saving to Route: %s"</string> -->
<string name="markers_generic_name">"Marker"</string>
<string name="markers_marker_with_name">"Marker. %s"</string>
<string name="markers_marker_created">"Marker created"</string>
<!-- <string name="markers_marker_created_on">"Marker created on %s"</string> -->
<!-- <string name="markers_marker_distance_from_poi">"Marker %1$s from %2$s"</string> -->
<!-- <string name="markers_marker_at">"Marker at %s"</string> -->
<!-- <string name="markers_marker_along">"Marker along %s"</string> -->
<!-- <string name="markers_new_badge_acc_label">"New. %s"</string> -->
<!-- <string name="markers_destructive_delete_message">"Are you sure you want to delete this marker?"</string> -->
<!-- <string name="markers_destructive_delete_message_routes">"This marker is part of the following routes:\n%s"</string> -->
<string name="markers_annotation">"Annotation"</string>
<!-- <string name="search_no_results_found_with_action">"No results found. Edit text or press Search for more."</string> -->
<!-- <string name="search_no_results_found_with_hint">"No results found. Try editing your search term."</string> -->
<!-- <string name="searching_no_results_found_title">"Oops! No results found"</string> -->
<!-- <string name="searching_no_results_found_message">"If you're looking for a specific place, you can try searching by name or address."</string> -->
<!-- <string name="searching_offline">"Search is disabled while offline"</string> -->
<!-- <string name="search_search_for">"Search for \"%s\""</string> -->
<!-- <string name="search_searching">"Searching"</string> -->
<!-- <string name="search_searching_with_punctuation">"Searching…"</string> -->
<string name="search_choose_destination">"Choose destination"</string>
<!-- <string name="search_results_found_first_result">%1$s results found. First result: %2$s</string> -->
<!-- <string name="search_no_results_found_error">"It doesn't look like there are any places nearby. If you're looking for a specific place, you can try searching by name or address."</string> -->
<string name="search_use_current_location">"Current Location"</string>
<string name="search_nearby_screen_title">"Places Nearby"</string>
<string name="search_view_markers">"Markers & Routes"</string>
<string name="search_button_markers_accessibility_hint">"select or edit markers you have saved"</string>
<string name="search_button_nearby_accessibility_hint">"explore nearby restaurants, public transport and more"</string>
<string name="search_button_current_location_accessibility_hint">"preview, mark, or share your current location with a friend"</string>
<!-- <string name="filter_alert_title">"Filter places by category"</string> -->
<!-- <string name="filter_set">"Set Filter"</string> -->
<!-- <string name="filter_clear_capital">"Clear Filter"</string> -->
<!-- <string name="filter_clear_hint">"Double tap to clear selected filter"</string> -->
<!-- <string name="filter_double_tap_places_category">"Double tap to filter places by category."</string> -->
<string name="filter_all">"All Places"</string>
<string name="filter_transit">"Public Transport"</string>
<string name="filter_food_drink">"Food & Drink"</string>
<!-- <string name="filter_things_to_do">"Things to do"</string> -->
<string name="filter_groceries">"Groceries & Convenience Stores"</string>
<string name="filter_banks">"Banks & ATMs"</string>
<!-- <string name="filter_selected">"%s (selected)"</string> -->
<!-- <string name="filter_not_available">"Some category filters are not available. You can still browse nearby places by selecting \"%s\""</string> -->
<string name="callouts_panel_title">"Hear My Surroundings"</string>
<!-- <string name="callouts_turn_on_off">"Turn all callouts on or off"</string> -->
<!-- <string name="callouts_callouts_on">"Callouts On"</string> -->
<!-- <string name="callouts_callouts_off">"Callouts Off"</string> -->
<string name="callouts_allow_callouts">"Allow Callouts"</string>
<string name="callouts_places_and_landmarks">"Places and Landmarks"</string>
<!-- <string name="callouts_places_and_landmarks_info">"Nearby places like shops and restaurants"</string> -->
<string name="callouts_mobility">"Mobility"</string>
<!-- <string name="callouts_mobility_info">"Intersection and transportation info"</string> -->
<string name="callouts_audio_beacon">"Distance to the Audio Beacon"</string>
<!-- <string name="callouts_audio_beacon_info">"Updates about distance to the audio beacon when it's set"</string> -->
<string name="callouts_automatic_callouts">"Automatic Callouts"</string>
<!-- <string name="callouts_intersection_callout">"Intersection Callout"</string> -->
<!-- <string name="callouts_ahead_of_you">"Ahead of You"</string> -->
<!-- <string name="callouts_around_you">"Around You"</string> -->
<!-- <string name="callouts_marked_points">"Marked Points"</string> -->
<string name="callouts_nothing_to_call_out_now">"There is nothing to call out right now"</string>
<string name="callouts_nearby_markers">"Nearby Markers"</string>
<!-- <string name="callouts_no_nearby_markers_to_call_out_now">"There are no nearby markers to call out right now."</string> -->
<!-- <string name="callouts_action_repeat">"Repeat"</string> -->
<!-- <string name="callouts_action_more_info">"More Info"</string> -->
<!-- <string name="callouts_hardware_low_battery">"%1$s only has %2$s percent battery remaining."</string> -->
<!-- <string name="callouts_departure">"Departure Callout"</string> -->
<!-- <string name="callouts_arrival">"Arrival Callout"</string> -->
<!-- <string name="sleep_snoozing">"Snoozing"</string> -->
<string name="sleep_sleep">"Sleep"</string>
<string name="sleep_sleeping">"Sleeping"</string>
<!-- <string name="sleep_snoozing_message">"Soundscape is currently snoozing. When you leave your current location, Soundscape will automatically wake up. This uses Location Services in a low power mode to conserve your phone's battery. Tap the button below to wake up now."</string> -->
<string name="sleep_sleeping_message">"Soundscape is currently sleeping. This prevents Soundscape from using Location Services or downloading data. This conserves battery when you are not using Soundscape. Tap the button below to wake up Soundscape."</string>
<string name="sleep_sleep_acc_hint">"put Soundscape to sleep"</string>
<!-- <string name="sleep_wake_up_when_i_leave">"Wake Up When I Leave"</string> -->
<string name="sleep_wake_up_now">"Wake Up Now"</string>
<!-- <string name="sleep_ui_wake_on_leave">"Wake On\nLeave"</string> -->
<!-- <string name="sleep_ui_wake_up_now">"Wake Up\nNow"</string> -->
<string name="intersection_approaching_intersection">"Approaching intersection"</string>
<!-- <string name="directions_intersection_with_name_distance_direction">"Intersection with %1$s %2$s %3$s"</string> -->
<!-- <string name="directions_intersection_with_name_distance">"Intersection with %1$s %2$s away"</string> -->
<!-- <string name="directions_intersection_with_name_direction">"Intersection with %1$s %2$s"</string> -->
<!-- <string name="directions_intersection_with_name">"Intersection with %s nearby"</string> -->
<!-- <string name="directions_intersection_with_name_was_distance_direction">"Intersection with %1$s was %2$s %3$s"</string> -->
<!-- <string name="intersection_named_intersection">"%s Intersection"</string> -->
<string name="directions_at_poi">"At %s"</string>
<!-- <string name="directions_along_road">"Along %s."</string> -->
<string name="directions_my_location">"My Location"</string>
<!-- <string name="directions_near_address">"Near address %s"</string> -->
<!-- <string name="directions_intersects_with_in">"Intersects with %1$s in %2$s"</string> -->
<string name="directions_near_name">"Near %s"</string>
<!-- <string name="directions_unknown_address">"Address is unknown"</string> -->
<!-- <string name="directions_unknown_road">"Unknown Road"</string> -->
<!-- <string name="directions_previous_location">"Previous Location"</string> -->
<!-- <string name="directions_previous_location_along">"Previous Location, Along %s"</string> -->
<!-- <string name="directions_amenity_entrance_list">"Entrance List"</string> -->
<!-- <string name="directions_nearest_road_name_is_distance_direction">"Nearest road, %1$s, is %2$s %3$s"</string> -->
<!-- <string name="directions_nearest_road_name_is_distance">"Nearest road, %1$s, is %2$s away"</string> -->
<!-- <string name="directions_nearest_road_name_was_distance_direction">"Nearest road, %1$s, was %2$s %3$s"</string> -->
<!-- <string name="directions_poi_name_is_distance_direction">"%1$s is %2$s %3$s"</string> -->
<!-- <string name="directions_poi_name_is_distance">"%1$s is %2$s away"</string> -->
<!-- <string name="directions_poi_name_was_distance_direction">"%1$s was %2$s %3$s"</string> -->
<!-- <string name="directions_roundabout_with_exits_distance_direction">"Roundabout with %1$s exits %2$s %3$s"</string> -->
<!-- <string name="directions_roundabout_with_exits_distance">"Roundabout with %1$s exits %2$s away"</string> -->
<!-- <string name="directions_roundabout_with_exits_was_distance_direction">"Roundabout with %1$s exits was %2$s %3$s"</string> -->
<!-- <string name="directions_roundabout_with_exits_direction">"Roundabout with %1$s exits %2$s"</string> -->
<!-- <string name="directions_roundabout_with_exits">"Roundabout with %1$s exits nearby"</string> -->
<!-- <string name="directions_approaching_name">"Approaching %s"</string> -->
<!-- <string name="directions_approaching_roundabout">"Approaching roundabout"</string> -->
<!-- <string name="directions_approaching_name_roundabout">"Approaching %s roundabout"</string> -->
<!-- <string name="directions_name_roundabout">"%s roundabout"</string> -->
<!-- <string name="directions_approaching_name_roundabout_with_exits">"Approaching %1$s roundabout with %2$s exits"</string> -->
<!-- <string name="directions_approaching_name_with_exits">"Approaching %1$s with %2$s exits"</string> -->
<!-- <string name="directions_name_roundabout_with_exits">"%1$s roundabout with %2$s exits"</string> -->
<!-- <string name="directions_name_with_exits">"%1$s with %2$s exits"</string> -->
<string name="directions_name_goes_left">"%s, goes left"</string>
<!-- <string name="directions_name_goes_left_roundabout">"%s, goes left in roundabout"</string> -->
<string name="directions_name_goes_right">"%s, goes right"</string>
<!-- <string name="directions_name_goes_right_roundabout">"%s, goes right in roundabout"</string> -->
<string name="directions_name_continues_ahead">"%s, continues ahead"</string>
<!-- <string name="directions_name_continues_ahead_roundabout">"%s, continues ahead in roundabout"</string> -->
<string name="directions_direction_ahead">"ahead"</string>
<!-- <string name="directions_direction_ahead_to_the_right">"ahead to the right"</string> -->
<!-- <string name="directions_direction_to_the_right">"to the right"</string> -->
<!-- <string name="directions_direction_behind_to_the_right">"behind to the right"</string> -->
<!-- <string name="directions_direction_behind">"behind"</string> -->
<!-- <string name="directions_direction_behind_to_the_left">"behind to the left"</string> -->
<!-- <string name="directions_direction_to_the_left">"to the left"</string> -->
<!-- <string name="directions_direction_ahead_to_the_left">"ahead to the left"</string> -->
<!-- <string name="directions_direction_away">"away"</string> -->
<!-- <string name="directions_name_close_by">"%s close by"</string> -->
<!-- <string name="directions_name_about_distance">"%1$s about %2$s"</string> -->
<!-- <string name="directions_name_around_distance">"%1$s around %2$s"</string> -->
<!-- <string name="directions_name_is_nearby_street_address">"%1$s is nearby. Street address is %2$s."</string> -->
<!-- <string name="directions_name_is_currently_street_address">"%1$s is currently %2$s. Street address is %3$s."</string> -->
<!-- <string name="directions_name_street_address">"%1$s. Street address is %2$s. Distance unknown."</string> -->
<string name="directions_traveling_n">"Travelling north"</string>
<string name="directions_traveling_ne">"Travelling northeast"</string>
<string name="directions_traveling_e">"Travelling east"</string>
<string name="directions_traveling_se">"Travelling southeast"</string>
<string name="directions_traveling_s">"Travelling south"</string>
<string name="directions_traveling_sw">"Travelling southwest"</string>
<string name="directions_traveling_w">"Travelling west"</string>
<string name="directions_traveling_nw">"Travelling northwest"</string>
<string name="directions_facing_n">"Facing north"</string>
<string name="directions_facing_ne">"Facing northeast"</string>
<string name="directions_facing_e">"Facing east"</string>
<string name="directions_facing_se">"Facing southeast"</string>
<string name="directions_facing_s">"Facing south"</string>
<string name="directions_facing_sw">"Facing southwest"</string>
<string name="directions_facing_w">"Facing west"</string>
<string name="directions_facing_nw">"Facing northwest"</string>
<string name="directions_heading_n">"Heading north"</string>
<string name="directions_heading_ne">"Heading northeast"</string>
<string name="directions_heading_e">"Heading east"</string>
<string name="directions_heading_se">"Heading southeast"</string>
<string name="directions_heading_s">"Heading south"</string>
<string name="directions_heading_sw">"Heading southwest"</string>
<string name="directions_heading_w">"Heading west"</string>
<string name="directions_heading_nw">"Heading northwest"</string>
<string name="directions_along_traveling_n">"Travelling north along %s"</string>
<string name="directions_along_traveling_ne">"Travelling northeast along %s"</string>
<string name="directions_along_traveling_e">"Travelling east along %s"</string>
<string name="directions_along_traveling_se">"Travelling southeast along %s"</string>
<string name="directions_along_traveling_s">"Travelling south along %s"</string>
<string name="directions_along_traveling_sw">"Travelling southwest along %s"</string>
<string name="directions_along_traveling_w">"Travelling west along %s"</string>
<string name="directions_along_traveling_nw">"Travelling northwest along %s"</string>
<string name="directions_along_facing_n">"Facing north along %s"</string>
<string name="directions_along_facing_ne">"Facing northeast along %s"</string>
<string name="directions_along_facing_e">"Facing east along %s"</string>
<string name="directions_along_facing_se">"Facing southeast along %s"</string>
<string name="directions_along_facing_s">"Facing south along %s"</string>
<string name="directions_along_facing_sw">"Facing southwest along %s"</string>
<string name="directions_along_facing_w">"Facing west along %s"</string>
<string name="directions_along_facing_nw">"Facing northwest along %s"</string>
<string name="directions_along_heading_n">"Heading north along %s"</string>
<string name="directions_along_heading_ne">"Heading northeast along %s"</string>
<string name="directions_along_heading_e">"Heading east along %s"</string>
<string name="directions_along_heading_se">"Heading southeast along %s"</string>
<string name="directions_along_heading_s">"Heading south along %s"</string>
<string name="directions_along_heading_sw">"Heading southwest along %s"</string>
<string name="directions_along_heading_w">"Heading west along %s"</string>
<string name="directions_along_heading_nw">"Heading northwest along %s"</string>
<!-- <string name="directions_cardinal_north">"North"</string> -->
<!-- <string name="directions_cardinal_north_east">"North East"</string> -->
<!-- <string name="directions_cardinal_east">"East"</string> -->
<!-- <string name="directions_cardinal_south_east">"South East"</string> -->
<!-- <string name="directions_cardinal_south">"South"</string> -->
<!-- <string name="directions_cardinal_south_west">"South West"</string> -->
<!-- <string name="directions_cardinal_west">"West"</string> -->
<!-- <string name="directions_cardinal_north_west">"North West"</string> -->
<!-- <string name="directions_cardinal_north_abb">"N"</string> -->
<!-- <string name="directions_cardinal_north_east_abb">"NE"</string> -->
<!-- <string name="directions_cardinal_east_abb">"E"</string> -->
<!-- <string name="directions_cardinal_south_east_abb">"SE"</string> -->
<!-- <string name="directions_cardinal_south_abb">"S"</string> -->
<!-- <string name="directions_cardinal_south_west_abb">"SW"</string> -->
<!-- <string name="directions_cardinal_west_abb">"W"</string> -->
<!-- <string name="directions_cardinal_north_west_abb">"NW"</string> -->
<!-- <string name="directions_name_distance">"%1$s, %2$s"</string> -->
<!-- <string name="distance_format_m">"%s m"</string> -->
<!-- <string name="distance_format_meter">"%s metre"</string> -->
<string name="distance_format_meters">"%s metres"</string>
<string name="distance_format_km">"%s km"</string>
<!-- <string name="distance_format_kilometer">"%s kilometre"</string> -->
<!-- <string name="distance_format_kilometers">"%s kilometres"</string> -->
<!-- <string name="distance_format_ft">"%s ft"</string> -->
<!-- <string name="distance_format_foot">"%s foot"</string> -->
<string name="distance_format_feet">"%s feet"</string>
<!-- <string name="distance_format_mi">"%s mi"</string> -->
<!-- <string name="distance_format_mile">"%s mile"</string> -->
<string name="distance_format_miles">"%s miles"</string>
<string name="ui_action_button_my_location">"My\nLocation"</string>
<string name="ui_action_button_my_location_acc_hint">"hear about your current location"</string>
<string name="ui_action_button_nearby_markers">"Nearby\nMarkers"</string>
<string name="ui_action_button_nearby_markers_acc_hint">"hear about nearby places that you have marked"</string>
<string name="ui_action_button_around_me">"Around\nMe"</string>
<string name="ui_action_button_around_me_acc_hint">"hear about places in the four quadrants around you"</string>
<string name="ui_action_button_ahead_of_me">"Ahead\nof Me"</string>
<string name="ui_action_button_ahead_of_me_acc_hint">"hear about places in front of you"</string>
<string name="ui_menu">"Menu"</string>
<string name="ui_menu_hint">"open the menu"</string>
<string name="ui_menu_close">"Close Menu"</string>
<string name="ui_continue">"Continue"</string>
<!-- <string name="menu_events">"Recreational Activities"</string> -->
<!-- <string name="menu_devices">"Head Tracking Headphones"</string> -->
<string name="menu_manage_callouts">"Manage Callouts"</string>
<string name="menu_help_and_tutorials">"Help & Tutorials"</string>
<!-- <string name="menu_send_feedback">"Send Feedback"</string> -->
<string name="menu_rate">"Rate"</string>
<!-- <string name="menu_learning_resources">"Soundscape Blog"</string> -->
<string name="ui_back_button_title">"Back"</string>
<!-- <string name="bar_icon_external_GPS_acc_label">"External GPS Connected Icon"</string> -->
<!-- <string name="history_view_item_of">"Item %1$s of %2$s"</string> -->
<!-- <string name="history_view_item_of_no_callouts_yet">"No Callouts Yet"</string> -->
<!-- <string name="poi_screen_screen_title_select_a_location">"Select a Location"</string> -->
<!-- <string name="poi_screen_loading_title_loading">"Loading Nearby Places"</string> -->
<!-- <string name="poi_screen_loading_title_finding_error">"Uh oh! We are having trouble finding nearby places. Try again later."</string> -->
<!-- <string name="poi_screen_loading_title_no_places_matching">"There are no places matching %s. Try a different filter"</string> -->
<!-- <string name="poi_screen_section_header_nearby">"Nearby"</string> -->
<!-- <string name="poi_cell_accessibility_label_suggested_search">"Suggested search: %s"</string> -->
<!-- <string name="poi_cell_accessibility_hint_suggested_search">"Double tap to search for: %s"</string> -->
<!-- <string name="poi_screen_header_recent_callouts">"Recent Callouts"</string> -->
<!-- <string name="location_callout_cell_marked_location">"Marked Location"</string> -->
<!-- <string name="location_callout_cell_nearest_road">"Nearest road, %s."</string> -->
<!-- <string name="location_callout_cell_nearest_road_beacon_set_on">"Nearest road, %1$s. Beacon was set on %2$s."</string> -->
<!-- <string name="location_callout_cell_nearest_road_nearest_poi">"Nearest road, %1$s. Nearest point of interest, %2$s."</string> -->
<!-- <string name="devices_airpods_supported_versions">"Apple AirPods with spatial audio"</string> -->
<!-- <string name="devices_title_pair_audio">"Pair Headphones Audio"</string> -->
<!-- <string name="devices_title_first_connection">"Headphones Connected"</string> -->
<!-- <string name="devices_title_calibrate">"Headphones Calibration"</string> -->
<!-- <string name="devices_title_completed_connection">"Headphones Ready"</string> -->
<!-- <string name="devices_explain_ar_disconnected">"Head tracking headphones are Bluetooth headphones with sensors that tell Soundscape where you are facing. This helps Soundscape to improve your audio experience, making it more natural as you move around in the world.\n\nTap the button below to connect a device."</string> -->
<!-- <string name="devices_explain_ar_connected_airpods">"Your AirPods are ready for use, so you can put your phone in your pocket and go! Soundscape is tracking the direction of your head so you do not need to hold the phone in your hand."</string> -->
<!-- <string name="devices_explain_ar_paired">"Soundscape is not currently connected to your %s. Please ensure your headphones are turned on and near your phone."</string> -->
<!-- <string name="devices_explain_ar_connecting">"Soundscape is connecting to your %s. One moment…"</string> -->
<!-- <string name="devices_connect_headset">"Connect Headphones"</string> -->
<!-- <string name="devices_connect_headset_calibrate_button">"Start Calibration"</string> -->
<!-- <string name="devices_connect_headset_calibrate_explanation">"Your headphones connected successfully to Soundscape but must be calibrated before use. Soundscape will inform you whenever headphones calibration is needed, for example each time you turn it on."</string> -->
<!-- <string name="devices_connect_headset_error_title">"Unable to Connect"</string> -->
<!-- <string name="devices_connect_headset_unsupported_firmware">"Your AR Headphones need to be updated before they can connect to Soundscape. Go to the Cortana app to update your headphones."</string> -->
<!-- <string name="devices_connect_headset_failed">"Soundscape was unable to connect to your headphones. Please try again later."</string> -->
<!-- <string name="devices_connect_headset_unavailable">"The device you selected is currently unavailable for connection. Please try again later."</string> -->
<!-- <string name="devices_connect_headset_explanation">"Select the type of your headphones from the list of supported headphones below."</string> -->
<!-- <string name="devices_connect_headset_audio">"Before connecting your headphones to Soundscape, make sure it is paired to your phone. If it is not yet paired, go to the Bluetooth section in the iOS Settings app to pair your device and then return to Soundscape."</string> -->
<!-- <string name="devices_connect_headset_calibrate">"Your headphones need to be calibrated. Remove them from your head, gently shake them in all directions for about 10 seconds, and place them back on your head. This must be repeated if the calibration chime continues to play."</string> -->
<!-- <string name="devices_connect_headset_calibrate_in_ear">"Your headphones need to be calibrated. Gently shake your head in all directions for about 10 seconds. This must be repeated if the calibration chime continues to play."</string> -->
<!-- <string name="devices_connect_headset_completed_airpods">"Congratulations! Your AirPods are ready for use, so you can put your phone in your pocket and go! Soundscape will now track the direction of your head so you do not need to hold the phone in your hand. A single click on the headphones button will mute or unmute the beacon, double click will callout your location, and a triple click will repeat the last callout."</string> -->
<!-- <string name="devices_connect_headset_completed_test">"Check Your Headphones"</string> -->
<!-- <string name="devices_connect_headset_completed_test_hint">"Double tap to check your %s"</string> -->
<!-- <string name="devices_test_headset_title">"Headphones Check"</string> -->
<!-- <string name="devices_test_headset_explanation">"We've placed an audio beacon to your right. Listen where it is, and turn your head towards it. Notice how you can do this even when your phone is in your pocket. When you are done, Tap the button below to return to Soundscape, and enjoy your next walk with your new head tracking headphones."</string> -->
<!-- <string name="devices_test_headset_continue">"Return to Soundscape"</string> -->
<!-- <string name="devices_test_headset_callout">"We've placed an audio beacon to your right. Listen where it is, and turn your head towards it… Notice how you can do this even when your phone is in your pocket."</string> -->
<!-- <string name="devices_forget_headset_prompt_forget">"Are you sure you wish to forget these headphones?"</string> -->
<!-- <string name="devices_forget_headset_prompt_explanation">"This will disconnect your headphones from Soundscape. You can connect to Soundscape again in the future from here."</string> -->
<!-- <string name="devices_callouts_connected">"%s connected."</string> -->
<!-- <string name="devices_callouts_needs_calibration">"Your headphones need to be calibrated. Remove them from your head and gently shake them in all directions."</string> -->
<!-- <string name="devices_callouts_needs_calibration_in_ear">"Your headphones need to be calibrated. Gently shake your head in all directions."</string> -->
<!-- <string name="devices_callouts_calibrated">"Calibration complete"</string> -->
<!-- <string name="devices_callouts_disconnected">"%s disconnected."</string> -->
<!-- <string name="devices_callouts_check_audio_default">"Head tracking headphones are not connected."</string> -->
<!-- <string name="devices_callouts_check_audio_airpods">"Apple AirPods connected."</string> -->
<!-- <string name="devices_callouts_check_audio_airpods_disconnected">"Soundscape is searching for your AirPods. Ensure they are connected to your phone."</string> -->
<!-- <string name="devices_troubleshoot_reconnect">"Reconnect"</string> -->
<!-- <string name="devices_airpods_unavailable_alert_description">"This device does not support head tracking with Apple AirPods. Check that your device is an iPhone 7 or later and is running iOS 14.4 or later."</string> -->
<!-- <string name="devices_reachability_alert_title">"Turn on Head Tracking with %s"</string> -->
<!-- <string name="devices_reachability_alert_description">"Your %s can tell Soundscape which direction you are facing, and this will help Soundscape to improve your audio experience. You can enable head tracking in the Head Tracking Headphones settings."</string> -->
<!-- <string name="behavior_experiences_events_list_nav_title">"Activities"</string> -->
<!-- <string name="behavior_experiences_event_nav_title">"Activity Details"</string> -->
<string name="behavior_experiences_route_nav_title">"Route Details"</string>
<!-- <string name="behavior_experiences_more_actions">"More Actions"</string> -->
<!-- <string name="behavior_experiences_download_failed_title">"Unable to Download Activity"</string> -->
<!-- <string name="behavior_experiences_download_failed_error">"Attempting to download the activity failed. Please try again later. Use the \"Send Feedback\" feature or contact the creator of the activity if this issue persists."</string> -->
<!-- <string name="behavior_experiences_reset_title">"Reset this activity?"</string> -->
<!-- <string name="behavior_experiences_reset_action">"Reset Activity"</string> -->
<!-- <string name="behavior_experiences_reset_and_update_action">"Check for Updates"</string> -->
<!-- <string name="behavior_experiences_reset_prompt">"Resetting this activity will remove your current progress and allow you to start this activity over again. In addition to resetting this activity, you may also choose to check for updates. This will download updated information for this activity if any updates are available."</string> -->
<!-- <string name="behavior_experiences_updates_prompt">"If any updates are available, this will reset this activity and download the updates."</string> -->
<!-- <string name="behavior_experiences_reset_confirmation">"Activity reset"</string> -->
<!-- <string name="behavior_experiences_delete_action">"Delete Activity"</string> -->
<!-- <string name="behavior_experience_delete_title">"Delete this activity?"</string> -->
<!-- <string name="behavior_experience_delete_explanation">"If you delete this activity, it will be removed from your phone."</string> -->
<!-- <string name="behavior_experiences_delete_confirmation">"Activity deleted"</string> -->
<!-- <string name="behavior_experiences_no_events_title">"Soundscape Recreational Activities (Beta)"</string> -->
<!-- <string name="behavior_experiences_no_events_caption_1">"Non-profit organisations, businesses, and local governments may create their own Soundscape-based experiences. Examples include adaptive sporting programmes and events, treasure hunt activities, curated trails, curated city guides and more."</string> -->
<!-- <string name="behavior_experiences_no_events_caption_2">"To find out more or express your organisation’s interest in creating customised Soundscape experiences, please write to us at email@address.com"</string> -->
<!-- <string name="behavior_scavenger_hunt_media_player_title">"%1$s: %2$s"</string> -->
<!-- <string name="behavior_scavenger_hunt_by_line">"By %s"</string> -->
<!-- <string name="behavior_scavenger_hunt_callout_nearby_with_name">"%s is nearby"</string> -->
<!-- <string name="behavior_scavenger_hunt_callout_complete">"Activity complete! Congratulations!"</string> -->
<!-- <string name="behavior_scavenger_hunt_callout_pausing_hunt">"Returning to the normal Soundscape experience."</string> -->
<string name="behavior_scavenger_hunt_callout_next_flag">"Beacon set on %1$s, %2$s away, %3$s of %4$s"</string>
<!-- <string name="behavior_scavenger_hunt_callout_next_flag_no_distance">"Beacon set on %1$s, %2$s of %3$s"</string> -->
<!-- <string name="behavior_scavenger_hunt_callout_started">"Activity started!"</string> -->
<!-- <string name="behavior_experience_badges_active">"Active"</string> -->
<!-- <string name="behavior_experience_badges_complete">"Completed"</string> -->
<!-- <string name="behavior_experience_badges_not_complete">"Not Complete"</string> -->
<!-- <string name="time_just_now">"Just now"</string> -->
<!-- <string name="time_one_minute_ago">"1 minute ago"</string> -->
<!-- <string name="time_num_minutes_ago">"%s minutes ago"</string> -->
<!-- <string name="time_one_hour_ago">"1 hour ago"</string> -->
<!-- <string name="time_over_one_hour_ago">"Over 1 hour ago"</string> -->
<!-- <string name="announced_name">"Announced %s."</string> -->
<!-- <string name="announced_name_named">"%1$s, announced %2$s."</string> -->
<!-- <string name="announced_name_distance_away_named">"%1$s, announced %2$s, %3$s away."</string> -->
<!-- <string name="previous_location_announced_name">"Previous Location. Announced %s."</string> -->
<!-- <string name="previous_location_announced_name_distance">"Previous Location. Announced %1$s, currently %2$s away."</string> -->
<!-- <string name="beacon_distance_update_announced_name">"Beacon distance update. Announced %s."</string> -->
<!-- <string name="beacon_distance_update_announced_name_distance">"Beacon distance update. Announced %1$s, beacon is currently %2$s away."</string> -->
<!-- <string name="intersection_callout_announced_name">"Intersection call out. Announced %s."</string> -->
<!-- <string name="intersection_callout_announced_name_distance">"Intersection call out. Announced %1$s, intersection currently %2$s away."</string> -->
<!-- <string name="third_party_apps_general_maps">"Open in external maps app"</string> -->
<!-- <string name="icloud_kv_store_quota_violation_alert_title">"Soundscape iCloud Storage Full"</string> -->
<!-- <string name="icloud_kv_store_quota_violation_alert_message">"iCloud storage for this app is full. To create a new marker, you will need to free up space by removing some of your existing markers."</string> -->
<!-- <string name="poi_unknown">"Unknown"</string> -->
<!-- <string name="poi_unknown_place">"Unknown Place"</string> -->
<!-- <string name="audio_player_action_play_again">"Play Again"</string> -->
<!-- <string name="text_coming_soon">"Coming soon…"</string> -->
<!-- <string name="text_cleaning_things">"Cleaning things up…"</string> -->
<!-- <string name="action_double_tap_to_repeat">"Double tap to repeat"</string> -->
<!-- <string name="location">"Location"</string> -->
<!-- <string name="text_oops">"Oops!"</string> -->
<!-- <string name="tutorial_title_plural">"Tutorials"</string> -->
<!-- <string name="tutorial_exit">"Exit Tutorial"</string> -->
<!-- <string name="tutorial_skip">"Skip Tutorial"</string> -->
<!-- <string name="tutorial_exit_alert_title">"Are you sure you want to exit the tutorial?"</string> -->
<!-- <string name="tutorial_markers_getting_started">"Getting Started with Markers"</string> -->
<!-- <string name="tutorial_markers_mark_your_world">"Mark Your World"</string> -->
<!-- <string name="tutorial_markers_experience_your_world">"Experience Your World"</string> -->
<!-- <string name="tutorial_markers_add_marker">"Add Marker"</string> -->
<!-- <string name="tutorial_markers_your_marker">"your marker"</string> -->
<!-- <string name="tutorial_markers_mark_location_acc_hint">"Double tap to mark this location"</string> -->
<!-- <string name="tutorial_markers_text_Intro">"With Soundscape, you can mark anything around that you care about. For example, you can mark your home, your bus stop, or even just the spot where you are.\nLet's give it a try. Press the Add Marker button below and select as an example a nearby place or address to mark."</string> -->
<!-- <string name="tutorial_markers_text_EditMarker">"Great! You have selected @!marker_name!! as a marker. You will hear it called out by Soundscape when you are close by.\nOn the next screen you can change it's name if you'd like to."</string> -->
<!-- <string name="tutorial_markers_text_NearbyMarkers">"Excellent! You have a new marker named @!marker_name!!.\nNow, to hear where your marker is, press the Nearby Markers button. This button can be found at the bottom of the home screen.\nTry it out now."</string> -->
<!-- <string name="tutorial_markers_text_AudioBeacon">"You can also set an audio beacon on your marker.\nLet's try it out. Here is the beacon on @!marker_name!!.\nListen carefully where it is, and holding your phone flat, turn towards it."</string> -->
<!-- <string name="tutorial_markers_text_WrapUp">"Perfect, you are now facing your marker, @!marker_name!!.\nIt looks like you've got it!\nYou can manage your list of markers by selecting manage markers from the menu.\nAnd you can always visit the Help & Tutorials pages to go through this tutorial again or to read a comprehensive guide on everything you can do with markers. The beacon you set for this tutorial will now be cleared and you will be returned to the previous screen."</string> -->
<!-- <string name="tutorial_beacon_getting_started">"Getting Started with Beacons"</string> -->
<!-- <string name="tutorial_beacon_set_a_beacon_acc_hint">"Double tap to load a list of places where you can set the beacon. Choose a place from the list to start the tutorial."</string> -->
<!-- <string name="tutorial_beacon_getting_started_text">"When you set a beacon on a location, Soundscape will play a sound coming from the direction of that location. This tutorial will step you through setting a beacon and how to use it.\n\nPress the \"Start Audio Beacon\" button below to open a list of nearby places. Choose a location from the list and the tutorial will begin."</string> -->
<!-- <string name="tutorial_beacon_your_destination">"your destination"</string> -->
<!-- <string name="tutorial_beacon_mark_location_acc_hint">"Double tap to use this location for the beacon tutorial"</string> -->
<!-- <string name="tutorial_beacon_poi_selected">"You selected %s as the location for the beacon."</string> -->
<!-- <string name="tutorial_beacon_the_audio_beacon">"The Audio Beacon"</string> -->
<!-- <string name="tutorial_beacon_the_audio_beacon_text">"You selected %s as the location of your audio beacon."</string> -->
<!-- <string name="tutorial_beacon_found_the_beacon">"Great! You Found Your Beacon!"</string> -->
<!-- <string name="tutorial_beacon_need_some_silence">"Need Some Silence?"</string> -->
<!-- <string name="tutorial_beacons_text_IntroPart1">"When you set a beacon on a location, Soundscape will play a sound coming from the direction of that location. This tutorial will step you through setting a beacon and how to use it."</string> -->
<!-- <string name="tutorial_beacons_text_IntroPart2">"Press the \"Start Audio Beacon\" button below to open a list of nearby places. Choose a location from the list and the tutorial will begin."</string> -->
<!-- <string name="tutorial_beacons_text_OrientationIsFlat">"You are currently holding your phone flat with the screen facing up towards the sky. Make sure the top of the phone is pointing straight ahead of you."</string> -->
<!-- <string name="tutorial_beacons_text_OrientationIsNotFlat">"To get started, hold your phone flat in your hand with the screen facing up towards the sky and with the top of the phone pointing straight ahead of you."</string> -->
<!-- <string name="tutorial_beacons_text_OrientationAirPods">"Your AirPods are connected to Soundscape. When your AirPods are connected to Soundscape, it doesn't matter how you hold your phone. It can even go in your pocket or bag."</string> -->
<!-- <string name="tutorial_beacons_text_OrientationRepeat">"To continue, hold your phone flat in your hand so that the screen is facing up towards the sky"</string> -->
<!-- <string name="tutorial_beacons_text_HoldingPhone">"Holding your phone flat in this way is only required when you are standing still. When walking feel free to place the phone in an easily accessible pocket or bag."</string> -->
<!-- <string name="tutorial_beacons_text_HoldingPhone_great">"Great! Holding your phone flat in this way is only required when you are standing still. When walking feel free to place the phone in an easily accessible pocket or bag."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconInitial">"Now that you have set a beacon on @!destination!!, Soundscape will start playing a sound coming from the direction of that location. Now, here comes the audio beacon."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconOutOfBounds">"If you listen carefully you will hear that it is playing from a certain direction around you."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconOutOfBoundsRotate">"Now, still holding your phone flat, slowly turn towards the direction of the beacon. You will hear a bell sound when you are facing directly towards it."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconOutOfBoundsRotate_ar_headset">"Now, slowly turn towards the direction of the beacon. You will hear a bell sound when you are facing directly towards it."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconOutOfBoundsRepeat">"Slowly turn until you hear the bell indicating you are facing in the direction of the beacon."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconOutOfBoundsConfirmation">"Perfect, you are now facing in the direction of @!destination!!."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconInBounds">"If you listen carefully you will hear that it is playing from right in front of you and that there is a bell sound in addition to the normal beacon sound. That is because you are facing directly towards @!destination!!"</string> -->
<!-- <string name="tutorial_beacons_text_BeaconInBoundsRotate">"Now try to slowly turn away from the direction of the beacon, while still holding your phone flat. The bell sound will stop and the beacon continues to show you where @!destination!! is. Give it a try now."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconInBoundsRotate_ar_headset">"Now try to slowly turn away from the direction of the beacon. The bell sound will stop and the beacon continues to show you where @!destination!! is. Give it a try now."</string> -->
<!-- <string name="tutorial_beacons_text_BeaconInBoundsRepeat">"Slowly turn away from the direction of the beacon."</string> -->
<!-- <string name="tutorial_beacons_text_MobilitySkills">"The beacon always points directly towards the location you selected. It does not tell you the paths to follow or give you directions to get to that location. Use this beacon as a tool to decide how you want to get there."</string> -->
<!-- <string name="tutorial_beacons_text_AutomaticCallout">"As you progress on your journey, Soundscape will occasionally update you about the distance to the location marked by the beacon with a call out like this."</string> -->
<!-- <string name="tutorial_beacons_text_HomeScreen">"Distance information is also displayed on the home screen along with the street address of the beacon's location if we have it. Soundscape will notify you when you get close to the beacon's location, at which point the audio beacon will silence."</string> -->
<!-- <string name="tutorial_beacons_text_Mute">"If you need the app to be quiet for any reason, you can either use the mute beacon button or the sleep button on the home screen, or you can double tap with two fingers anywhere on the screen. A double tap with two fingers will stop any current callouts and will mute the audio beacon. Give it a try now."</string> -->
<!-- <string name="tutorial_beacons_text_MuteRepeat">"Double tap with two fingers anywhere on the screen"</string> -->
<!-- <string name="tutorial_beacons_text_WrapUp">"It looks like you have got it! If you want to repeat this tutorial, you can access it at any time on the Help and Tutorials screen. The beacon you set for this tutorial will now be cleared and you will be returned to the previous screen."</string> -->
<!-- <string name="settings_help_title">"Help"</string> -->
<string name="help_configuration_section_title">"Configuring Soundscape"</string>
<!-- <string name="help_using_headsets_airpods_title">"Using Apple AirPods"</string> -->
<string name="settings_help_section_beacons_and_pois">"Beacons and Callouts"</string>
<!-- <string name="help_offline_section_title">"Using Soundscape Offline"</string> -->
<string name="settings_help_section_home_screen_buttons">"Home Screen Buttons"</string>
<string name="help_config_voices_content">"Soundscape can use any of the voices you have downloaded in the iOS Settings app except for the Siri voices which are not available to Soundscape. We recommend choosing one of the \"Enhanced\" voices as they have a much higher voice quality, but in order to do so, you will first need to download an enhanced voice. You can download voices in the iOS Settings app by going to Accessibility > Spoken Content > Voices and tapping on a voice. Within the Soundscape app, you can select the voice you want to use by going to Settings from the main menu and then selecting \"Voice\"."</string>
<string name="help_offline_page_title">"Why is Soundscape working offline?"</string>
<string name="help_offline_description">"When there is no internet connection or an outage in the Soundscape services, Soundscape transitions into an offline mode. Nevertheless, Soundscape will continue to work, but some functions may be limited."</string>
<string name="help_offline_limitations_heading">"Limitations"</string>
<string name="help_offline_limitations_description">"Callouts will continue to work if you are in an area that you have walked by before and that has been stored in your callout history. Similarly, you can place an audio beacon or create a marker on places that have been stored in your callout history"</string>
<string name="help_offline_troubleshooting_heading">"What can you do?"</string>
<string name="help_offline_troubleshooting_description">"Soundscape will try to resume normal operation when your phone is connected to Wi-Fi or mobile data is enabled and you are in an area with good signal. If your phone does have a good internet connection, but Soundscape does not resume normal operation, then there may be an outage in the Soundscape services."</string>
<string name="help_orient_page_title">"Around Me"</string>
<string name="help_explore_page_title">"Ahead of Me"</string>
<string name="help_creating_markers_page_title">"Creating Markers"</string>
<string name="help_edit_markers_page_title">"Customising Markers"</string>
<string name="help_remote_page_title">"Using Media Controls"</string>
<!-- <string name="help_tutorial_footer_disabled">"Tutorials are disabled while route guidance is active"</string> -->
<string name="help_text_section_title_what">"What is it?"</string>
<string name="help_text_section_title_when">"When would I use it?"</string>
<string name="help_text_section_title_how">"How does it work?"</string>
<!-- <string name="help_more_help_section_title">"More Help"</string> -->
<!-- <string name="help_support">"Scottish Tech Army Support"</string> -->
<string name="terms_of_use_title">"Terms of Use"</string>
<string name="terms_of_use_message">"Your use of Soundscape is subject to the terms of the %s and the terms set out below (together, the \"Terms of Use\")."</string>
<!-- <string name="terms_of_use_message_prompt">"Please check the box below to agree and continue."</string> -->
<string name="terms_of_use_service_agreement">"Scottish Tech Army Services Agreement"</string>
<string name="terms_of_use_accept_checkbox_acc_label">"Accept Terms of Use"</string>
<!-- <string name="terms_of_use_accept_checkbox_on_acc_hint">"Double tap to check the \"accept the terms of use\" checkbox"</string> -->
<!-- <string name="terms_of_use_accept_checkbox_off_acc_hint">"Double tap to untick the \"accept the terms of use\" checkbox"</string> -->
<!-- <string name="terms_of_use_accept_checkbox_on_acc_value">"Ticked"</string> -->
<!-- <string name="terms_of_use_accept_checkbox_off_acc_value">"Unticked"</string> -->
<string name="terms_of_use_medical_safety_disclaimer">"You acknowledge that Soundscape (1) is not designed, intended, or made available as a medical device, and (2) is not designed or intended to be a substitute for professional medical advice, diagnosis, treatment, or judgment and should not be used to replace or as a substitute for professional medical advice, diagnosis, treatment, or judgment.\n\nSafety Notice\nSoundscape is a navigation aid and should not be used in lieu of mobility skills, being aware of your surroundings, and good judgement. Use caution when navigating your environment as the mapping data incorporated into the Soundscape programme is captured from a third-party programme, and therefore, there may be limitations with the accuracy of the information presented."</string>
<!-- <string name="terms_of_use_accept_new_features">"Accept"</string> -->
<!-- <string name="terms_of_use_accept_new_features_accessibility_hint">"Double tap to accept and close annoucements"</string> -->
<!-- <string name="first_launch_get_started_button_off_acc_hint">"You must check the \"accept the terms of use\" checkbox before you can press this button"</string> -->
<!-- <string name="first_launch_welcome_text">"Welcome! Before we get started, we need to go through some setup and ask for several permissions. Press the Next button to start."</string> -->
<!-- <string name="first_launch_welcome_audio_text">"Welcome! Soundscape helps you stay aware of where you are and where you're going by using unique audio guidance and by calling out roads, intersections, and places as you approach them. Press the Next button to begin."</string> -->
<!-- <string name="first_launch_permission_required">"This permission is required."</string> -->
<string name="first_launch_soundscape_language">"Soundscape Language"</string>
<string name="first_launch_soundscape_language_text">"Select the language you would like Soundscape to use. You can always change your selection in the app settings."</string>
<!-- <string name="first_launch_location_text">"Soundscape is a location-based app. We use your location to find and call out things around you."</string> -->
<!-- <string name="first_launch_location_enable_location">"Enable Location"</string> -->
<!-- <string name="first_launch_device_motion">"Device Motion"</string> -->
<!-- <string name="first_launch_device_motion_text">"This allows Soundscape to improve your experience based on whether you are walking, in a vehicle, or standing still."</string> -->
<!-- <string name="first_launch_lighting_way_with_sound">"Lighting up your way with sound"</string> -->
<!-- <string name="first_launch_lighting_way_with_sound_text_alt">"Soundscape uses 3D sound to let you know what’s around you. For example, if your destination is on your right, you will hear sound coming from that direction, or if a coffee shop is on your left, you will hear a callout from that direction."</string> -->
<!-- <string name="first_launch_heading_somewhere">"Heading Somewhere?"</string> -->
<!-- <string name="first_launch_heading_somewhere_text">"Place an audio beacon on your destination and Soundscape will keep you informed of its location and your surroundings along the way. Use Soundscape in conjunction with your wayfinding skills and even your favourite navigation app to find your way to your destination."</string> -->
<!-- <string name="first_launch_setting_off_way">"Setting off on your way?"</string> -->
<!-- <string name="first_launch_setting_off_way_text">"Put away the phone and walk. Soundscape will help you stay aware of where you are by calling out roads, intersections, and landmarks as you approach them. Callouts can be adjusted in the settings."</string> -->
<!-- <string name="first_launch_find_things_nearby">"Want to find more things nearby?"</string> -->
<!-- <string name="first_launch_find_things_nearby_text">"Hold the phone flat in your hand, and use the buttons to locate roads and upcoming intersections, orient to familiar landmarks around you, and explore landmarks ahead of you."</string> -->
<string name="first_launch_welcome_title">"Welcome!"</string>
<!-- <string name="first_launch_welcome_title_accessibility_label">"Welcome to Soundscape!"</string> -->
<string name="first_launch_welcome_description">"Navigate with confidence using Soundscape spatial audio"</string>
<string name="first_launch_welcome_button">"Get Started"</string>
<string name="first_launch_headphones_title">"Listening to Soundscape"</string>
<string name="first_launch_headphones_message_1">"Soundscape works great with any pair of headphones. If you would like to use headphones, grab them now."</string>
<string name="first_launch_headphones_message_2">"If you don't have headphones or would prefer not to use them, that's alright! Soundscape will work with the speakers on your phone."</string>
<string name="first_launch_callouts_title">"Hear Your Surroundings"</string>
<string name="first_launch_callouts_message">"Soundscape helps you stay aware of where you are and where you're going by calling out roads, intersections and points of interest as you approach them."</string>
<string name="first_launch_callouts_listen">"Listen to an example of what Soundscape might call out on your next walk"</string>
<string name="first_launch_callouts_listen_accessibility_label">"Listen"</string>
<!-- <string name="first_launch_callouts_listen_accessibility_hint">"Double tap to listen to an example of what Soundscape might call out on your next walk"</string> -->
<string name="first_launch_callouts_example_1">"Cafe"</string>
<string name="first_launch_callouts_example_3">"Main Street goes left"</string>
<string name="first_launch_callouts_example_4">"Main Street goes right"</string>
<string name="first_launch_permissions_title">"Navigating with Soundscape"</string>
<string name="first_launch_permissions_message">"When navigating with Soundscape you will be guided by an audio beacon. To do that, Soundscape needs you to enable the following permissions:"</string>
<string name="first_launch_permissions_location">"Location Services with Precise Location"</string>
<string name="first_launch_permissions_required">"This permission is required"</string>
<string name="first_launch_beacon_title">"Choose an Audio Beacon"</string>
<string name="first_launch_beacon_message_1">"When navigating with Soundscape, you will hear the audio beacon in the direction of your destination. By following its sound, you will always know which way to go."</string>
<string name="first_launch_beacon_message_2">"Listen to the available audio beacons and select your preference."</string>
<string name="first_launch_beacon_message_3">"This can be changed later in app settings."</string>
<!-- <string name="first_launch_select_beacon">"Select Beacon"</string> -->
<!-- <string name="first_launch_beacon_audio_title">"Spatial Audio Beacon"</string> -->
<!-- <string name="first_launch_beacon_audio_message">"The beacon follows the movement of your phone and uses spatial audio so that you are always aware of its location."</string> -->
<!-- <string name="first_launch_beacon_callout_standard">"Placing beacon to your right. Turn your phone to follow its sound and experience the beacon's spatial audio."</string> -->
<!-- <string name="first_launch_beacon_callout_haptic">"Placing beacon in front of you. Turn your phone left and right to experience the beacon's haptic feedback."</string> -->
<!-- <string name="first_launch_beacon_callout_headtracking_standard">"Placing beacon to your right. Turn to follow its sound and experience the beacon's spatial audio."</string> -->
<!-- <string name="first_launch_beacon_callout_headtracking_haptic">"Placing beacon in front of you. Turn left and right to experience the beacon's haptic feedback."</string> -->
<!-- <string name="first_launch_beacon_callout_ahead">"Beacon ahead"</string> -->
<!-- <string name="first_launch_beacon_callout_behind">"Beacon behind"</string> -->
<string name="first_launch_prompt_title">"You're all set!"</string>
<string name="first_launch_prompt_message">"You are ready for your first walk with Soundscape. To try it now, just choose a nearby destination, start the audio beacon, and you’ll hear it in the direction of your destination."</string>
<string name="first_launch_prompt_button">"Finish"</string>
<!-- <string name="first_launch_help_title">"App Setup"</string> -->
<string name="help_text_destination_beacons_what">"Setting a beacon on a nearby location allows Soundscape to keep you informed by playing an audible beacon sound coming from the direction of that location. This beacon can be muted or unmuted on the home screen. Additionally, Soundscape displays information about the location on the home screen including the distance to it and its street address if it is known."</string>
<string name="help_text_destination_beacons_when">"Setting a beacon is useful when you want to keep track of a familiar landmark as you explore a new area or when you are going somewhere and want to be informed about your surroundings along the way. The beacon feature does not give you turn-by-turn directions, but it does give you a continuous audible sound that tells you the direction to the beacon, relative to where you are currently located. Using the audio beacon, your existing wayfinding skills, and even your favourite navigation app, you can choose how you want to get to nearby locations yourself."</string>
<string name="help_text_destination_beacons_how_1">"<b>To set a beacon</b>:<br/> First, view the details for a location by either using the search bar to search for a place, or tapping one of the \"Places Nearby\", \"Saved Markers\", or \"Current Location\" buttons and selecting a location. From the location details screen you can select the \"Start Audio Beacon\" button. Tapping this will return you to the home screen and turn on an audible beacon coming from the direction of the place you selected. The name of the place you have selected along with its distance and physical address, if available, will now be displayed on the main app screen."</string>
<string name="help_text_destination_beacons_how_2">"<b>To remove the current beacon</b>:<br/> Simply press the \"Remove Beacon\" button on the home screen."</string>
<string name="help_text_destination_beacons_how_3">"<b>To mute the audible beacon</b>:<br/> Tap the \"Mute Beacon\" button underneath the \"Remove Beacon\" button on the home screen."</string>
<string name="help_text_automatic_callouts_what">"Soundscape can tell you about things around you as you approach them by calling out their name from the direction they are located in. The app will do this automatically for all sorts of things like businesses, bus stops, and even intersections. You can configure what the app automatically calls out in the \"Manage Callouts\" section of the \"Settings\" screen, and you can turn all callouts off when you want the app to be silent."</string>
<string name="help_text_automatic_callouts_when_1">"<b>Exploring a new area</b>:<br/> Turn automatic callouts on and walk around to hear about all of the different stores, restaurants, and the like as you pass them."</string>
<string name="help_text_automatic_callouts_when_2">"<b>Walking to a specific location</b>:<br/> When you are on your way to a particular location, automatic callouts for intersections can be particularly useful. Intersection callouts tell you about the layout of intersections as you approach them, and confirm the road you are on when you leave them."</string>
<string name="help_text_automatic_callouts_when_3">"<b>When you need silence</b>:<br/> When you are about to cross a road or just need the app to be quiet, you can turn callouts off. When callouts are off, the app will only tell you information if you manually tap one of the <em>\"My Location\"</em>, <em>\"Nearby Markers\"</em>, <em>\"Around Me\"</em>, or <em>\"Ahead of Me\"</em> buttons."</string>
<string name="help_text_automatic_callouts_how_1">"<b>Turning callouts on or off</b>:<br/> Turning callouts off will silence the app. Callouts can be turned on or off in the \"Manage Callouts\" section of the \"Settings\" screen where you can tap the \"Allow Callouts\" toggle to turn callouts on or off. You can also turn callouts on or off by using the \"skip forward\" command (double tap and hold) if your headphones have media control buttons. Alternatively, you can use the \"Sleep\" button in the upper right hand corner of the home screen to stop Soundscape from making callouts until you choose to wake it up again."</string>
<string name="help_text_automatic_callouts_how_2">"<b>Managing which callouts you hear</b>:<br/> To choose the types of things Soundscape will automatically callout, go to the \"Settings\" screen using the menu on the \"Home\" screen. The \"Manage Callouts\" section of the \"Settings\" screen contains a list of types of things the app can callout. Each item has a toggle button that you can turn on or off. If you wish to turn off all callouts, tap the \"Allow Callouts\" toggle at the top of the list."</string>
<string name="help_text_my_location_what">"The <em>\"My Location\"</em> button quickly gives you information that helps you figure out where you currently are. <em>\"My Location\"</em> tells you about your current location including things like the direction you are facing, where nearby roads or intersections are, and where nearby points of interest are."</string>
<string name="help_text_my_location_when">"<em>\"My Location\"</em> is useful when you need to figure out where you are or what cardinal direction you are facing."</string>
<string name="help_text_my_location_how">"As with all four of the buttons at the bottom of the home screen, hold your phone with the screen flat (facing towards the sky) and the top of the phone pointing in the direction you are facing before you press the <em>\"My Location\"</em> button. This acts like a compass telling the app which direction you are facing. Simply, tap the <em>\"My Location\"</em> button and listen."</string>
<string name="help_text_nearby_markers_what">"The <em>\"Nearby Markers\"</em> button tells you about up to four markers that are closest to you. <em>\"Nearby Markers\"</em> is intended to help you orient yourself using places you already know about."</string>
<string name="help_text_nearby_markers_when">"When you are trying to get your bearings and orient yourself to your surroundings, use <em>\"Nearby Markers\"</em> to hear about the locations of places you know of."</string>
<string name="help_text_nearby_markers_how">"As with all four of the buttons at the bottom of the home screen, hold your phone with the screen flat (facing towards the sky) and the top of the phone pointing in the direction you are facing before you press the <em>\"Nearby Markers\"</em> button. This acts like a compass telling the app which direction you are facing. Simply, tap the <em>\"Nearby Markers\"</em> button and you will hear up to four markers near you."</string>
<string name="help_text_around_me_what">"The <em>\"Around Me\"</em> button tells you about one thing in each of the four quadrants around you (ahead, to the right, behind, and to the left). <em>\"Around Me\"</em> is intended to help you orient yourself to your surroundings."</string>
<string name="help_text_around_me_when">"When you are trying to get your bearings and orient yourself to your surroundings, use <em>\"Around Me\"</em> to hear about the things around you."</string>
<string name="help_text_around_me_how">"As with all four of the buttons at the bottom of the home screen, hold your phone with the screen flat (facing towards the sky) and the top of the phone pointing in the direction you are facing before you press the <em>\"Around Me\"</em> button. This acts like a compass telling the app which direction you are facing. Simply, tap the <em>\"Around Me\"</em> button and you will hear four points of interest arranged around you."</string>
<string name="help_text_ahead_of_me_what">"The <em>\"Ahead of Me\"</em> button tells you about four things ahead of you. <em>\"Ahead of Me\"</em> is intended to help you explore the way ahead of yourself when you are learning about a new area."</string>
<string name="help_text_ahead_of_me_when">"When you are walking down the street, try using <em>\"Ahead of Me\"</em> to discover the places and things coming up on either side of the street ahead."</string>
<string name="help_text_ahead_of_me_how">"As with all four of the buttons at the bottom of the home screen, hold your phone with the screen flat (facing towards the sky) and the top of the phone pointing in the direction you are facing before you press the <em>\"Ahead of Me\"</em> button. This acts like a compass telling the app which direction you are facing. Simply, tap the <em>\"Ahead of Me\"</em> button and you will hear several points of interest all roughly ahead of you."</string>
<string name="help_text_remote_control_what">"You can access certain features in Soundscape with the help of the media control buttons on your headphones. This functionality works with any wired or Bluetooth headphones that have media control buttons like Play, Pause, Next, Previous and others. Different headphones may include different buttons so please refer to the list of actions below to determine which ones are available to you.<br>Also note that this feature only works with headphones that support Apple's media controls (such as play and pause)."</string>
<string name="help_text_remote_control_when">"Headphone media controls can be used while Soundscape is running. This is true whether you are currently in Soundscape or while Soundscape is in the background and even while your device is locked. Note however that headphone media control buttons will not work with Soundscape if you are playing audio like music, podcasts or videos with another app."</string>
<string name="help_text_remote_control_how">"<p>You can access the following features in Soundscape using your the media control buttons on your headphones:<p><br>&#x23EF Play/Pause: Mute any current callouts and if the audio beacon is set, toggle the beacon audio. </p><p>&#x23ED Next: Callout <em>\"My Location\"</em>.</p><p>&#x23EE Previous: Repeat last callout.</p><p>&#x23E9 Skip Forward: Toggle callouts On and Off.</p><p>&#x23EA Skip Backward: Callout <em>\"Around Me\"</em>.</p>"</string>
<string name="help_text_markers_content_1">"With Soundscape, you can mark your world and anything you care about."</string>
<string name="help_text_markers_content_2">"You can mark things that are personal and relevant to you like your home, your office and your preferred grocery store. You can mark any place or address, but you can also mark things that might traditionally not be available in maps, for example, entrances to buildings or parks, push-to-walk buttons, pedestrian crossings or bridges, bus stops or even your dog’s favourite tree and use these as references along your walk."</string>
<string name="help_text_markers_content_3">"To experience marked places, Soundscape will automatically call out marked places as you walk by or approach them, or you can also use the Nearby markers button at the bottom of the Soundscape home screen to hear a spatial callout of marked places around you. In addition, you have the ability to set an audio beacon on any marked place. When you do this, the Soundscape audio beacon you are familiar with, will be heard and you can operate it as usual."</string>
<string name="help_text_creating_markers_content_1">"You can create markers in three ways: searching for the place you would like to save using the search bar, finding somewhere using the \"Places Nearby\" button, or using the \"Use Current Location\" button, all of which can be found on the Soundscape home screen. Once you have found the place you would like, selecting it will take you to the \"Location Details\" page. On this page, select the button called \"Save Marker\"."</string>
<string name="help_text_creating_markers_content_2">"You will now have the option to customise this marker. This step is optional. If you want to, you can change the name of the marker and also add an annotation that will be called out along with the marker to provide some extra information. Once you are done, select the \"Done\" button to save your Marker. "</string>
<string name="help_text_customizing_markers_content_1">"If you want to rename a marker you previously created, or add an annotation to it, then you can do so by selecting the marker from the \"Markers\" tab of the \"Markers & Routes\" page, then selecting the \"Edit Marker\" button. You can use this to give markers descriptive or useful nicknames, as well as giving them a longer description using the annotation field."</string>
<string name="help_text_customizing_markers_content_2">"From this Edit screen, you can also delete a marker if you no longer need it."</string>
<string name="help_text_routes_content_what">"Routes are a series of waypoints. You will be informed on arrival to each waypoint, and the Audio Beacon will automatically advance to the next waypoint."</string>
<string name="help_text_routes_content_when">"You may want to create and use a route somewhere you know to make sure you keep on track, or you may want to use it as a tool to help familiarise yourself along a new journey."</string>
<string name="help_text_routes_content_how_1">"<b>Creating a route</b>:<br/> First, go to \"Markers & Routes\", select the \"Routes\" tab, and then select the \"New Route\" button. Give the route a name and an optional description, then add waypoints as you go or pick them from your list of Markers. You can rearrange the order of the waypoints along a route at any time by editing the route."</string>
<string name="help_text_routes_content_how_2">"<b>Editing a route</b>:<br/> Select your route on the \"Markers & Routes\" page and then select \"Edit Route\". From here you can add and remove waypoints, as well as editing the name and description of the route."</string>
<string name="help_text_routes_content_how_3">"<b>Sharing a route</b>:<br/> Select your route on the \"Markers & Routes\" page and then select the option to \"Share\" using all of the usual share options available to you."</string>
<!-- <string name="help_using_headsets_airpods_what">"Soundscape supports spatial audio with dynamic head tracking when using compatible AirPods. When connected to Soundscape, sensors in the AirPods tell Soundscape the direction your head is facing. This helps Soundscape to improve your audio experience making it more natural as you move around in the world. When you use Soundscape with AirPods connected, you do not need to hold your phone for Soundscape to work correctly."</string> -->
<!-- <string name="help_using_headsets_airpods_when">"You can use AirPods with Soundscape anytime you would normally use Soundscape. Using AirPods provides you with high quality audio and allows you to have a more hands-free experience with Soundscape."</string> -->
<!-- <string name="help_using_headsets_airpods_how_1">"<b>Connecting a Device</b>:<br/> Go to the \"Head Tracking Headphones\" item in the Soundscape menu to connect your AirPods and follow the instructions on screen. Note that you will need to pair your AirPods to your phone in the Bluetooth settings before connecting them in Soundscape."</string> -->
<!-- <string name="help_using_headsets_airpods_how_2">"<b>Using the Media Controls on your Headphones</b>:<br/> When media controls are enabled in the Soundscape settings, you can use the media controls on your AirPods to mute or unmute the beacon, call out your location or to repeat the last callout. For more information, see the \"Using Media Controls\" help section."</string> -->
<string name="osm_tag_crossing">"Crossing"</string>
<string name="osm_tag_construction">"Construction"</string>
<string name="osm_tag_dangerous_area">"Dangerous Area"</string>
<string name="osm_tag_townhall">"Townhall"</string>
<string name="osm_tag_steps">"Steps"</string>
<string name="osm_tag_elevator">"Lifts"</string>
<string name="osm_tag_walking_path">"FootPath"</string>
<string name="osm_tag_pedestrian_street">"Pedestrian Street"</string>
<string name="osm_tag_bicycle_path">"Bicycle Path"</string>
<string name="osm_tag_residential_street">"Residential Street"</string>
<string name="osm_tag_service_road">"Service Road"</string>
<string name="osm_tag_road">"Road"</string>
<string name="osm_tag_highway">"Highway"</string>
<string name="osm_tag_highway_named">"%s Highway"</string>
<string name="osm_tag_highway_refed">"Highway %s"</string>
<string name="osm_tag_intersection">"Intersection"</string>
<string name="osm_tag_roundabout">"Roundabout"</string>
<string name="osm_tag_highway_ramp">"Highway Ramp"</string>
<string name="osm_tag_merging_lane">"Merging Lane"</string>
<string name="osm_tag_office_building">"Office Building"</string>
<string name="osm_tag_school_building">"School Building"</string>
<string name="osm_tag_covered_pavilion">"Covered Pavilion"</string>
<string name="osm_tag_convenience_store">"Convenience Store"</string>
<string name="osm_tag_building_entrance">"Building Entrance"</string>
<string name="osm_tag_assembly_point">"Assembly Point"</string>
<string name="osm_tag_cycle_barrier">"Cycle Barrier"</string>
<string name="osm_tag_turnstile">"Turnstile"</string>
<string name="osm_tag_cattle_grid">"Cattle Grid"</string>
<string name="osm_tag_gate">"Gate"</string>
<string name="osm_tag_restroom">"Toilets"</string>
<string name="osm_tag_parking_lot">"Car Park"</string>
<string name="osm_tag_parking_entrance">"Car Park Entrance"</string>
<string name="osm_tag_bench">"Bench"</string>
<string name="osm_tag_taxi_waiting_area">"Taxi Rank"</string>
<string name="osm_tag_post_office">"Post Office"</string>
<string name="osm_tag_post_box">"Post Box"</string>
<string name="osm_tag_waste_basket">"Waste Bin"</string>
<string name="osm_tag_shower">"Shower"</string>
<string name="osm_tag_bike_parking">"Bike Parking"</string>
<string name="osm_tag_cafe">"Cafe"</string>
<string name="osm_tag_restaurant">"Restaurant"</string>
<string name="osm_tag_telephone">"Telephone"</string>
<string name="osm_tag_gas_station">"Petrol Station"</string>
<string name="osm_tag_bank">"Bank"</string>
<string name="osm_tag_atm">"ATM"</string>
<string name="osm_tag_atm_named">"%s ATM"</string>
<string name="osm_tag_atm_refed">"ATM %s"</string>
<string name="osm_tag_bus_stop">"Bus Stop"</string>
<string name="osm_tag_bus_stop_named">"%s Bus Stop"</string>