-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathallIosStrings.xml
More file actions
3641 lines (2464 loc) · 314 KB
/
allIosStrings.xml
File metadata and controls
3641 lines (2464 loc) · 314 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name" translatable="false">Soundscape</string>
<!--******************************************************************************-->
<!-- MARK: General-->
<!--******************************************************************************-->
<!-- Title for an affirmative alert button -->
<string name="general_alert_yes">"Yes"</string>
<!-- Title for a negative alert button -->
<string name="general_alert_no">"No"</string>
<!-- Title for button to dismiss alert -->
<string name="general_alert_dismiss">"Dismiss"</string>
<!-- Title for button to open settings from alert -->
<string name="general_alert_settings" translatable="false">"Settings"</string>
<!-- Title for a button that allows a user to skip a step -->
<string name="general_alert_skip">"Skip"</string>
<!-- Title for button to cancel alert -->
<string name="general_alert_cancel">"Cancel"</string>
<!-- Title for button to dismiss alert -->
<string name="general_alert_not_now">"Not Now"</string>
<!-- Title for button to disconnect a device -->
<string name="general_alert_disconnect">"Disconnect"</string>
<!-- Title for button to forget a device -->
<string name="general_alert_forget">"Forget"</string>
<!-- Alert button title for done -->
<string name="general_alert_done">"Done"</string>
<!-- Alert button title to exit a screen -->
<string name="general_alert_exit">"Exit"</string>
<!-- Alert button title to delete an object -->
<string name="general_alert_delete">"Delete"</string>
<!-- Alert button title to reset the state of an experience back to it's original state -->
<string name="general_alert_reset">"Reset"</string>
<!-- Alert button title to remove an object -->
<string name="general_alert_remove">"Remove"</string>
<!-- Alert button title to resume an activity -->
<string name="general_alert_resume">"Resume"</string>
<!-- Alert button title to keep an object -->
<string name="general_alert_keep">"Keep"</string>
<!-- Alert button title to edit an object -->
<string name="general_alert_edit">"Edit"</string>
<!-- Alert button title to add an object -->
<string name="general_alert_add">"Add"</string>
<!-- Alert button title to download an object -->
<string name="general_alert_download">"Download"</string>
<!-- Alert button title to show more details of an object -->
<string name="general_alert_details">"Details"</string>
<!-- Alert button title to move to next object -->
<string name="general_alert_next">"Next"</string>
<!-- Alert button title for actions where the user is prompted if they would like to continue with the current action (as opposed to cancelling the current action) -->
<string name="general_alert_continue">"Continue"</string>
<!-- Alert button title to stop an action (such as a download) -->
<string name="general_alert_stop">"Stop"</string>
<!-- Button title to close a modal UI -->
<string name="general_alert_close">"Close"</string>
<!-- Alert button title to choose an action -->
<string name="general_alert_choose_an_action">"Choose an Action"</string>
<!-- Alert title to choose another application -->
<string name="general_alert_choose_an_app">"Choose an App"</string>
<!-- Alert for a destructive action -->
<string name="general_alert_destructive_undone_message">"This action cannot be undone"</string>
<!-- Alert button title to open the settings -->
<string name="general_alert_open_settings">"Open Settings"</string>
<!-- Alert button title to open an item -->
<string name="general_alert_open">"Open"</string>
<!-- Alert button title to replace an item -->
<string name="general_alert_replace">"Replace"</string>
<!-- Alert title for alerts that ask users to confirm a choice they made -->
<string name="general_alert_confirmation_title">"Are You Sure?"</string>
<!-- Alert action to discard changes -->
<string name="general_alert_discard">"Discard"</string>
<!-- Alert action to give options when location access is denied -->
<string name="location_denied_options_title" translatable="false">"Enable Location Services"</string>
<!-- Alert action messages to give options when location access is denied -->
"location.denied.options.message" = "It appears that your privacy settings are preventing the use of location services.
To enable full app functionality, please adjust your device settings.
Alternatively, you may continue previewing the app with a predefined test location.";
<!-- Clear text from a text field -->
<string name="general_text_clear_text">"Clear text"</string>
<!-- Clear text from a text field -->
<string name="general_text_clear">"Clear"</string>
<!-- Text displayed when information loading is almost ready -->
<string name="general_loading_almost_ready">"Almost ready…"</string>
<!-- Text displayed when information is loading -->
<string name="general_loading_loading">"Loading…"</string>
<!-- Text displayed when information is loading -->
<string name="general_loading_no_punctuation">"Loading"</string>
<!-- A percentage, %@ is a number, %% represents the percentage symbol "%". "4.2%" -->
<string name="general_percentage">"%s%%"</string>
<!-- A percentage, %@ is a number, %% represents the percentage symbol "%". "40% Complete" -->
<string name="general_percentage_complete">"%s%% Complete"</string>
<!-- Title for the default offline alert -->
<string name="general_alert_offline_default_title">"Offline mode"</string>
<!-- Message for the default offline alert -->
<string name="general_alert_offline_default_message">"Soundscape is working offline. Nevertheless, Soundscape will continue to work, but some functions may be limited."</string>
<!-- Title for the offline alert when searching -->
<string name="general_alert_offline_search_title">"Search is not available"</string>
<!-- Message for the offline alert when searching -->
<string name="general_alert_offline_search_message">"When Soundscape is working offline, search is disabled. Dismiss to return to the previous screen"</string>
<!-- Offline alert, Learn more -->
<string name="general_alert_offline_learn_more">"Learn more"</string>
<!-- Message for a generic error message displayed to the user -->
<string name="general_alert_error_message">"Please try again later."</string>
<!-- Text displayed while we are doing work to start an experience -->
<string name="general_loading_start">"Getting things ready…"</string>
<!-- Text displayed while we are doing work to end an experience -->
<string name="general_loading_end">"Cleaning things up…"</string>
<!-- VoiceOver label for a button that mutes the audio when it is tapped -->
<string name="general_mute">"Mute"</string>
<!-- Title for a slider that controls the volume level -->
<string name="general_volume">"Volume"</string>
<!-- This is a voiceover label for a custom tab view control (tabs at the bottom of the screen that allow the user to switch between views - for an example of this, see iOS's Phone app). "Tab" should be translated in the same way that it is translated when using VoiceOver on the tabs in the iOS Phone app. %1$@ is the name of the tab (for instance, on the Markers and Routes screen, this will be either "Markers" or "Routes"). %2$@ is the index of the tab and %3$@ is the total number of the tabs (an example of this final part would be "1 of 2" or "2 of 2". {NumberedPlaceholder="%1$@","%2$@","%3$@"} -->
<string name="general_tabs">"%1$s, tab, %2$s of %3$s"</string>
<!-- The title for an alert displayed which will link to a user survey -->
<string name="general_alert_survey_title">"We'd love to hear from you!"</string>
<!-- The message for an alert displayed which will link to a user survey -->
<string name="general_alert_survey_message">"Do you have time to complete a 5-minute survey?"</string>
<!-- A string that is surrounded by quotation marks. Should be translated to the appropriate punctuation marks for each locale, i.e., " " for English, « » for Russian, etc. {NumberedPlaceholder="%@"} -->
<string name="general_text_string_with_quotation_marks">"\"%s\""</string>
<!-- Play audio -->
<string name="general_play">"Play"</string>
<!-- Stop playing audio -->
<string name="general_stop">"Stop"</string>
<!-- Indicates that an item is being downloaded -->
<string name="general_downloading">"Downloading"</string>
<!-- Button title to open an app -->
<string name="general_app_open">"Open App"</string>
<!-- Button title to download an app -->
<string name="general_app_download">"Download App"</string>
<!--******************************************************************************-->
<!-- MARK: - Errors-->
<!--******************************************************************************-->
<!-- Generic error message -->
<string name="general_error_error_occurred">"Error Occurred"</string>
<!--******************************************************************************-->
<!-- MARK: Errors (Location)-->
<!--******************************************************************************-->
<!-- Error message to turn on device location services. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. {NumberedPlaceholder="Soundscape"} -->
<string name="general_error_location_services">"Turn on Location Services to use Soundscape"</string>
<!-- Error message to turn on device precise location services. Ensure "Precise Location" is translated the same as in the iOS Settings app under Maps > Location > Precise Location (this refers to an Apple feature called "Precise Location" in US English). {NumberedPlaceholder="Soundscape"} -->
<string name="general_error_precise_location">"Turn on Precise Location to use Soundscape"</string>
<!-- Error message to authorize location services. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. -->
<string name="general_error_location_services_authorize_title">"Authorize Location Services"</string>
<!-- Error message to authorize location services. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. {NumberedPlaceholder="Soundscape"} -->
<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>
<!-- Error message to authorize location services. Quotes written as \" Keep newlines (\n) between sentences.. {NumberedPlaceholder="\n"} -->
<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>
<!-- Error message to turn on precise location. Ensure "Precise Location" is translated the same as in the iOS Settings app under Maps > Location > Precise Location (this refers to an Apple feature called "Precise Location" in US English). Quotes written as \". Keep newlines (\n) between sentences. {NumberedPlaceholder="\n"} -->
<string name="general_error_location_services_precise_location_instructions">"1. Open the Settings app below\n2. Select \"Location\"\n3. Turn on \"Precise Location\""</string>
<!-- Error message to open Soundscape to resume setting location services. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. {NumberedPlaceholder="Soundscape"} -->
<string name="general_error_location_services_resume">"Open Soundscape to resume Location Services"</string>
<!-- Error message to enable device location services. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. -->
<string name="general_error_location_services_enable">"Enable Location Services"</string>
<!-- Error message to enable location services. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. {NumberedPlaceholder="Soundscape"} -->
<string name="general_error_location_services_enable_description">"Location Services are currently disabled. Soundscape cannot work when Location Services are turned off."</string>
<!-- Error message to turn on location services in Soundscape to continue with instructions on how to do so on device. Keep newlines (\n) between sentences. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. {NumberedPlaceholder="\n"} -->
<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>
<!-- Error message to turn on location services in Soundscape to continue with instructions on how to do so on device. Keep newlines (\n) between sentences. "Location Services" is an iOS term that can be found in the Privacy section in the iPhone Settings app. {NumberedPlaceholder="\n"} -->
<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>
<!-- Error message Sounscape is haveing trouble determining current location -->
<string name="general_error_location_services_find_location_error">"We are having trouble finding your current location."</string>
<!-- Error message when Soundscape does not know the user's heading -->
<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>
<!-- Error message Soundscape is having trouble determining current location. Try again later -->
<string name="general_error_location_services_find_location_error_try_again">"We are having trouble finding your current location. Try again later."</string>
<!--******************************************************************************-->
<!-- MARK: Errors (Network)-->
<!--******************************************************************************-->
<!-- Error message that you are not connected to Wi-Fi Oops - a playful informal synonym for uh oh, my bad, an error etc. -->
<string name="general_error_wifi">"Oops! It doesn't look like you are connected to Wi-Fi."</string>
<!-- Error message that you will need to connect to Wi-Fi in order to download -->
<string name="general_error_wifi_info">"You will need a Wi-Fi connection to download."</string>
<!-- Error message that the internet is not connected. -->
<string name="general_error_network_connection_required">"Network Connection Required"</string>
<!-- Error message that the internet is not connected. {NumberedPlaceholder="Soundscape"} -->
<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>
<!--******************************************************************************-->
<!-- MARK: Errors (BLE)-->
<!--******************************************************************************-->
<!-- Error message title to authorized Bluetooth setting by the user -->
<string name="general_error_ble_unauthorized_title">"Authorize Bluetooth"</string>
<!-- Error message description to authorized Bluetooth setting by the user -->
<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>
<!--******************************************************************************-->
<!-- MARK: Errors (Other)-->
<!--******************************************************************************-->
<!-- Error message that Soundscape is having trouble adding a marker to this location. Try again later -->
<string name="general_error_add_marker_error">"We are having trouble marking this place. Try again later."</string>
<!-- Error message that Soundscape is having trouble setting a beacon. Try again later -->
<string name="general_error_set_beacon_error">"We are having trouble setting the beacon currently. Try again later."</string>
<!-- Error message that the preview experience could not be started -->
<string name="general_error_preview">"Location preview could not be started at this location."</string>
<!--******************************************************************************-->
<!-- MARK: - Motion & Fitness (Enable)-->
<!--******************************************************************************-->
<!-- "Motion & Fitness" is an iOS term that can be found in the Privacy section in the iPhone Settings app. Translation for fr_FR and fr_CA: "Mouvements et forme" -->
<string name="device_motion_title">"Motion & Fitness"</string>
<!-- Notification to enable motion and fitness activity on the device. Ensure that "Motion & Fitness" is translated the same as `device_motion.title`. -->
<string name="device_motion_enable_title">"Enable Motion & Fitness Tracking"</string>
<!-- Notification to enable motion and fitness activity on the device. Ensure that "Motion & Fitness" is translated the same as `device_motion.title`. {NumberedPlaceholder="Soundscape"} -->
<string name="device_motion_enable_description">"Motion & Fitness tracking is currently disabled. Soundscape cannot work when Motion & Fitness tracking is turned off."</string>
<!-- Notification to enable motion and fitness activity on the device. Keep newlines (\n) between sentences. Ensure that "Motion & Fitness" is translated the same as `device_motion.title`. {NumberedPlaceholder="Soundscape"} -->
<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>
<!--******************************************************************************-->
<!-- MARK: Motion & Fitness (Authorize)-->
<!--******************************************************************************-->
<!-- Notification to authorize motion and fitness activity on the device. Ensure that "Motion & Fitness" is translated the same as `device_motion.title`. -->
<string name="device_motion_authorize_title">"Authorize Motion & Fitness Tracking"</string>
<!-- Notification to authorize motion and fitness activity on the device. Ensure that "Motion & Fitness" is translated the same as `device_motion.title`. {NumberedPlaceholder="Soundscape"} -->
<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 authorize Soundscape to use this permission, you may need to enable Fitness Tracking under Settings → Privacy → Motion & Fitness."</string>
<!-- Notification to authorize motion and fitness activity on the device. Keep newlines (\n) between sentences. Ensure that "Motion & Fitness" is translated the same as `device_motion.title`. {NumberedPlaceholder="\n"} -->
<string name="device_motion_authorize_instructions">"1. Open the Settings app below\n2. Turn on Motion & Fitness Tracking"</string>
<!--******************************************************************************-->
<!-- MARK: - Supported email clients-->
<!--******************************************************************************-->
<!-- String indicating the system-default mail client on iOS -->
<string name="mail_default" translatable="false">"Default"</string>
<!-- Translated string for Gmail -->
<string name="mail_gmail" translatable="false">"Gmail"</string>
<!-- Translated name string for Outlook -->
<string name="mail_msoutlook" translatable="false">"Microsoft Outlook"</string>
<!-- Translated string for Yahoo Mail -->
<string name="mail_yahoo" translatable="false">"Yahoo Mail"</string>
<!--******************************************************************************-->
<!-- MARK: - Settings-->
<!--******************************************************************************-->
<!-- Title, Settings -->
<string name="settings_screen_title">"Settings"</string>
<!-- Alert, would you like to delete stored data? -->
<string name="settings_clear_cache_alert_title">"Delete Stored Data?"</string>
<!-- Message, Soundscape stores map data to reduce device data and battery consumption {NumberedPlaceholder="Soundscape"} -->
<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>
<!-- Alert, would you like to keep saved markers -->
<string name="settings_clear_cache_markers_alert_title">"Keep Markers and Routes?"</string>
<!-- Message, chose delete or keep. Quotes written as \" Delete removes markers and beacons resetting the app to a new installation build and cannot be undone. Keep only removes map data. -->
<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>
<!-- Alert title, the stored data wasn't deleted -->
<string name="settings_clear_cache_no_service_title">"Unable to Clear Stored Map Data"</string>
<!-- Message, the cached data cannot be deleted when there is no internet connection -->
<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>
<!-- Alert, opt-out of app telemetry -->
<string name="settings_telemetry_optout_alert_title">"Telemetry Opt-Out"</string>
<!-- Message, Opting out will clear the stored information and opt-out of future telemetry collection. Confirm if sure. -->
<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>
<!-- Button, Opt-out -->
<string name="settings_telemetry_optout_action">"Opt-Out"</string>
<!-- Version history, %@ is the numerical version of the app, "Version 1.7" {NumberedPlaceholder="%@"} -->
<string name="settings_version_history_version">"Version %s"</string>
<!-- The app's version and build numbers, %1$@ and %2$@ are numbers. "Version 1.2 (20)" {NumberedPlaceholder="%1$@","%2$@"} -->
<string name="settings_version_about_version">"Version %1$s (%2$s)"</string>
<!-- Setting selection to send feedback {NumberedPlaceholder="Soundscape"} -->
<string name="settings_feedback_subject">"Soundscape Feedback"</string>
<!-- Prompt that is asking the user to select an email application from the list of email apps they have installed on their phone. -->
<string name="settings_feedback_choose_email_app">"Choose an email app:"</string>
<!-- Warning that informs the user that they do not have any mail apps installed. This is displayed when the user taps the button to provide us with feedback. -->
<string name="settings_feedback_no_mail_client_error">"No mail app installed"</string>
<!-- Setting title, Voice -->
<string name="settings_general_voice">"Voice"</string>
<!-- Settings title unit of measurement, Imperial (Feet) -->
<string name="settings_units_imperial">"Imperial (Feet)"</string>
<!-- Settings title unit of measurement, Metric (Meters) -->
<string name="settings_units_metric">"Metric (Meters)"</string>
<!-- Settings title, Clear stored map data -->
<string name="settings_clear_data">"Clear Stored Map Data"</string>
<!-- Settings title, About Soundscape {NumberedPlaceholder="Soundscape"} -->
<string name="settings_about_app">"About Soundscape"</string>
<!-- Settings title,General Settings -->
<string name="settings_section_general">"General Settings"</string>
<!-- Settings title,Units of Measure -->
<string name="settings_section_units">"Units of Measure"</string>
<!-- Settings title, Troubleshooting -->
<string name="settings_section_troubleshooting">"Troubleshooting"</string>
<!-- Settings title, About -->
<string name="settings_section_about">"About"</string>
<!-- Settings title, Telemetry -->
<string name="settings_section_telemetry">"Telemetry"</string>
<!-- Settings title, Share Usage Data -->
<string name="settings_section_share_usage_data">"Share Usage Data"</string>
<!-- Footer to Telemetry settings selection, help app improve by automatically sending diagnostics and data usage from the user. Personal data not collected {NumberedPlaceholder="Soundscape"} -->
<string name="settings_section_telemetry_footer">"Help Soundscape improve by automatically sending diagnostics, error reporting, and usage data. No personal data is collected."</string>
<!-- Settings title, Language -->
<string name="settings_language_screen_title">"Language"</string>
<!-- Settings title, Language and Region -->
<string name="settings_language_screen_title_2">"Language & Region"</string>
<!-- Language selection validation message, %@ is a language name. "Would you like to change the app language to English?" {NumberedPlaceholder="%@"} -->
<string name="settings_language_change_alert">"Would you like to change the app language to %s?"</string>
<!-- Language selection validation button title. %@ is a language name e.g. "Change to English" {NumberedPlaceholder="%@"} -->
<string name="settings_language_change_alert_action">"Change to %s"</string>
<!-- Language display name. %1$@ is a language name, %2$@ is the country name. e.g. "English (United Kingdom)" {NumberedPlaceholder="%1$@", "%2$@"} -->
<string name="settings_language_language_name">"%1$s (%2$s)"</string>
<!--******************************************************************************-->
<!-- MARK: Settings (Audio)-->
<!--******************************************************************************-->
<!-- The title for the screen which configures media controls (play/pause/next/etc) related settings -->
<string name="settings_audio_media_controls">"Media Controls"</string>
<!-- A title for a toggle for an audio setting which determines if the current app's audio will be mixed with others. If ON, this app will output audio which could be played at the same time as other apps that play audio, such as another music player app. -->
<string name="settings_audio_mix_with_others_title">"Enable Media Controls"</string>
<!-- The detailed description for the toggle setting "settings.audio.mix_with_others.title". The "Media Controls" refer to the iOS music controls (play, pause, next, etc.) {NumberedPlaceholder="Soundscape"} -->
<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>
<!-- The detailed description for the alert that confirms where a user wants to turn on the "Enable Media Controls" setting or not {NumberedPlaceholder="Soundscape"} -->
<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>
<!--******************************************************************************-->
<!-- MARK: Settings (Volume)-->
<!--******************************************************************************-->
<!-- Title of the slider that controls the volume level of all audio other than beacon or speech audio -->
<string name="settings_volume_other">"Sound Effects"</string>
<!--******************************************************************************-->
<!-- MARK: Settings (Voice)-->
<!--******************************************************************************-->
<!-- Preview of the voice -->
<string name="voice_action_preview">"Preview"</string>
<!-- The phrase spoken by each voice when previewing, %@ is the name of the voice being previewed -->
<string name="voice_preview">"Hello. My name is %s."</string>
<!-- Setting for the rate of speech. The speed of the text-to-speech voice. -->
<string name="voice_settings_speaking_rate">"Speaking Rate"</string>
<!-- Screen title to select a speech voice to for use. -->
<string name="voice_voices">"Voices"</string>
<!-- Prompt to approve speech rate. This is the test output for changing the text-to-speech voice speed. -->
<string name="voice_voice_rate_test">"How does this sound?"</string>
<!-- Voice name and locale, %1$@ name of voice and %2$@ is the locale, "<Jess>, <English (United Kingdom>)." {NumberedPlaceholder="%1$@","%2$@"} -->
<string name="voice_title_voice_name_and_locale">"%1$s, %2$s."</string>
<!-- Voice name and locale is selected, %1$@ name of voice %2$@ locale, "<Jess>, <English (United Kingdom)>, Selected" {NumberedPlaceholder="%1$@","%2$@"} -->
<string name="voice_title_voice_name_and_locale_selected">"%1$s, %2$s, Selected."</string>
<!-- Hint, a voice has been selected, swip up or down to preview -->
<string name="voice_voice_cell_selected_acc_hint">"This voice is currently selected. Swipe up or down to preview."</string>
<!-- Hint, double tap to use selected voice. Swipe up or down to preview -->
<string name="voice_voice_cell_use_acc_hint">"Double tap to use this voice. Swipe up or down to preview."</string>
<!--******************************************************************************-->
<!-- MARK: Settings (Apple Voice)-->
<!--******************************************************************************-->
<!-- Label for the section containing voices in other languages in the language selection table -->
<string name="voice_apple_other_languages">"Other Languages"</string>
<!-- Label for voices designated as being male -->
<string name="voice_apple_male">"Male"</string>
<!-- Label for voices designated as being female -->
<string name="voice_apple_female">"Female"</string>
<!-- Subtitle used to indicate to the user that a particular voice is the current default voice in a given locale, %@ is the name of a region, "United States (Default Voice)" -->
<string name="voice_apple_default">"%s (Default Voice)"</string>
<!-- Sample text used for previewing the available text-to-speech voices. %@ is the name of the selected voice, "This is Tom. How does this sound?", {NumberedPlaceholder="%@"} -->
<string name="voice_apple_preview">"This is %s. How does this sound?"</string>
<!-- Hint explaining that if the user double taps a voice in the list of voices, it will be selected and a preview will be played. -->
<string name="voice_apple_preview_hint">"Double tap to select and play a preview."</string>
<!-- This is the title of an alert presented to the user when they selecte a default version of a voice which has an enhanced version to inform them that they can download an enhanced version from the iOS Settings app -->
<string name="voice_settings_enhanced_available_title">"Enhanced Voice Available!"</string>
<!-- This is an alert presented to the user when they select a default version of a voice which has an enhanced version to inform them that they can download an enhanced version from the iOS Settings app, "Spoken Content" should be translated the same way it is in the iOS Settings app under Accessibility > Spoken Content, {NumberedPlaceholder="iOS"} -->
<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>
<!-- This is one of the options available to the user when they are presented with the alert described by the key ""voice.settings.enhanced_available" -->
<string name="voice_settings_enhanced_available_button">"Use Current Version"</string>
<!-- This is a warning that explains that Siri voices are not compatible with Soundscape and will not appear in the list of voices users can choose from, {NumberedPlaceholder="Siri","Soundscape"} -->
<string name="voice_apple_no_siri">"Note that Siri voices are not available to Soundscape and are not in the list below."</string>
<!--******************************************************************************-->
<!-- MARK: Settings (Beacon)-->
<!--******************************************************************************-->
<!-- Title of the settings screen for beacons. This screen allows users to configure the way the audio beacon sounds. See Terms for the definition of "beacon". -->
<string name="beacon_settings_title">"Beacon Settings"</string>
<!-- Title of a section in the beacon settings page where the user can select a style for their beacon. The various styles mainly differ in the sounds that are played for the beacon, though there are two styles that include some haptics as well. -->
<string name="beacon_settings_style">"Audio Styles"</string>
<!-- Title of a section in the beacon settings page where the user can select a haptic style for their beacon. "Haptic" refers to vibration feedback that the user can feel. -->
<string name="beacon_settings_style_haptic">"Haptic Styles"</string>
<!-- Explanatory text that tells users how haptic beacon styles differ from normal audio-only beacon styles, {NumberedPlaceholder="Soundscape"} -->
<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>
<!-- Title of a section of settings related to the departure and arrival cues. See documentation for the string 'beacon.setting.melodies' for more context on the departure and arrival cues. -->
<string name="beacon_settings_cues">"Departure and Arrival"</string>
<!-- Title of a setting that allows sounds called the "departure cue" and "arrival cue" to play when a beacon is started (e.g. the user is "departing" for the location of the beacon) and when it ends (e.g. the user has "arrived" at the location of the beacon). These sounds help to distinguish to the user when beacons start and stop. -->
<string name="beacon_settings_melodies">"Enable Departure and Arrival Cues"</string>
<!-- This text explains to users what they should be listening for when they are choosing a new beacon audio style -->
<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>
<!--******************************************************************************-->
<!-- MARK: Settings (Bluetooth Peripherals)-->
<!--******************************************************************************-->
<!-- Button label, pressing this button will cause Soundscape to disconnect from this device and not reconnect to it in the future -->
<string name="settings_bluetooth_forget">"Forget This Device"</string>
<!--******************************************************************************-->
<!-- MARK: Settings (Troubleshooting)-->
<!--******************************************************************************-->
<!-- Title of the table section that contains info about the current accuracy of the phone's GPS signal provided by Apple's Location Services feature. -->
<string name="troubleshooting_gps_status">"Location Accuracy"</string>
<!-- Preserve meters units - Do not convert. Explanation of how to interpret the location accuracy (i.e. from GPS) displayed in this section of the Troubleshooting screen (using meters for the units). {NumberedPlaceholder="Soundscape","10","20"} -->
<string name="troubleshooting_gps_status_explanation_meters">"This value is an estimate of how accurately Soundscape knows where you are located. Less than ±10 meters is good. Less than ±20 meters is OK. Anything else is poor. Location data is most accurate when outside and not under any structures."</string>
<!-- Preserve feet units - Do not convert. Explanation of how to interpret the location accuracy (i.e. from GPS) displayed in this section of the Troubleshooting screen (using feet for the units). {NumberedPlaceholder="Soundscape","30","60"} -->
<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>
<!-- Preserve meters units - Do not convert. Label containing the current GPS accuracy of the phone in meters, %@ is accuracy value, "±12 meters" {NumberedPlaceholder="%@"} -->
<string name="troubleshooting_gps_status_meters">"±%s meters"</string>
<!-- Preserve feet unit - Do not convert. Label containing the current GPS accuracy of the phone in feet, %@ is accuracy value, "±36 feet" {NumberedPlaceholder="%@"} -->
<string name="troubleshooting_gps_status_feet">"±%s feet"</string>
<!-- Label for a button that allows user to check if the app's audio is playing through their headset correctly. -->
<string name="troubleshooting_check_audio">"Check Audio"</string>
<!-- Voiceover hint that explains the action of the "Check Audio" button. -->
<string name="troubleshooting_check_audio_hint">"Double tap to check the status of the headphones you are using with Soundscape."</string>
<!-- Explanation of what the "Check Audio" button does, displayed below the button -->
<string name="troubleshooting_check_audio_explanation">"Tap this button to hear about the status of the headphones you are using with Soundscape."</string>
<!-- Label for the section of the troubleshooting page that deals with deleting the cached map data -->
<string name="troubleshooting_cache">"Map Data"</string>
<!-- VoiceOver hint that explains the action of the "Delete Stored Map Data" button -->
<string name="troubleshooting_cache_hint">"Double tap to delete and redownload stored map data."</string>
<!-- Explanation of what the "Delete Stored Map Data" button does, displayed below the button -->
<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>
<!--******************************************************************************-->
<!-- MARK: Settings (About)-->
<!--******************************************************************************-->
<!-- Settings About Title, What's New? -->
<string name="settings_about_title_whats_new">"What's New?"</string>
<!-- Settings About Title, Privacy and Cookies -->
<string name="settings_about_title_privacy">"Scottish Tech Army Privacy Statement"</string>
<!-- Settings About Title, Service Agreement -->
<string name="settings_about_title_service_agreement">"Services Agreement"</string>
<!-- Settings About Title, Third Party Notices -->
<string name="settings_about_title_third_party">"Third Party Notices"</string>
<!--******************************************************************************-->
<!-- MARK: Settings (New Feature)-->
<!--******************************************************************************-->
<!-- Settings new feature, %1$@ is the feature number out of %2$@ number of features, "<2> of <3>" {NumberedPlaceholder="%1$@", "%2$@"} -->
<string name="settings_new_feature_num_of_num">"%1$s of %2$s"</string>
<!-- Settings new feature, instruction to double tap to close announcements -->
<string name="settings_new_feature_accept_button_acc_label">"Double tap to close announcements"</string>
<!-- Settings new feature, instruction to double tap to view next update announcement -->
<string name="settings_new_feature_accept_button_acc_hint">"Double tap to view next update announcement"</string>
<!-- Settings New Feature, title Recent Updates -->
<string name="settings_new_feature_recent_updates">"Recent Updates"</string>
<!--******************************************************************************-->
<!-- MARK: - Beacon-->
<!--******************************************************************************-->
<!-- Title, Beacon. See Terms defintion of Beacon. -->
<string name="beacon_generic_name">"Beacon"</string>
<!-- Name of a beacon style. This is the name of the most recent version of the beacon audio we had in Soundscape as of the v4.1 release, so we refer to it as the "current" beacon. -->
<string name="beacon_styles_current">"Current"</string>
<!-- Name of a beacon style. This is the name of the first style of beacon audio we had in Soundscape, so we refer to it as "Original" -->
<string name="beacon_styles_original">"Original"</string>
<!-- Name of a beacon style. In this context, "flare" refers to a bright burst of light. The audio for this beacon style is bright and fun -->
<string name="beacon_styles_flare">"Flare"</string>
<!-- Name of a beacon style. In this context, "shimmer" is used as a synonym for "flare". The audio for this beacon is bright and fun (just as with the style refered to by beacon.styles.flare), but it is a bit softer than the "Flare" style. -->
<string name="beacon_styles_shimmer">"Shimmer"</string>
<!-- Name of a beacon style. This beacon style name is intended to hint at the percussive, tapping, nature of the beacon audio. -->
<string name="beacon_styles_tactile">"Tactile"</string>
<!-- Name of a beacon style. Refers to a short high pitched ringing sound that repeats in this beacon style. -->
<string name="beacon_styles_ping">"Ping"</string>
<!-- Name of a beacon style. This beacon style is based on the sound of an object being dropped on a hard floor, hence the name "Drop" is alluding to that sound. -->
<string name="beacon_styles_drop">"Drop"</string>
<!-- Name of a beacon style. This name is alluding to the radar-like nature of this beacon (hence "signal") which has an impulse which repeats over and over -->
<string name="beacon_styles_signal">"Signal"</string>
<!-- Name of a beacon style. "Signal" is used in the same way here as in the string with key 'beacon.styles.signal'. The difference here is that this version is a slower version of the beacon audio. -->
<string name="beacon_styles_signal_slow">"Signal (Slow)"</string>
<!-- Name of a beacon style. "Signal" is used in the same way here as in the string with key 'beacon.styles.signal'. The difference here is that this version is a much slower version of the beacon audio. -->
<string name="beacon_styles_signal_very_slow">"Signal (Very Slow)"</string>
<!-- Name of a beacon style. This beacon style has a similar timbre to the sound that is generated when a mallet is used to play the xylophone, hence the name "mallet". -->
<string name="beacon_styles_mallet">"Mallet"</string>
<!-- Name of a beacon style. "Mallet" is used in the same way here as in the string with key 'beacon.styles.mallet'. The difference here is that this version is a slower version of the beacon audio. -->
<string name="beacon_styles_mallet_slow">"Mallet (Slow)"</string>
<!-- Name of a beacon style. "Mallet" is used in the same way here as in the string with key 'beacon.styles.mallet'. The difference here is that this version is a much slower version of the beacon audio. -->
<string name="beacon_styles_mallet_very_slow">"Mallet (Very Slow)"</string>
<!-- Name of a beacon style. Unlike the other beacon styles, this style include haptic feedback (e.g. vibration feedback from the iPhone). The term "wand" is used to refer to a pointing device. Together, this name is intended to convey that this beacon style provides haptic feedback to the user when they hold their phone in front of them and point it around. -->
<string name="beacon_styles_haptic_wand">"Haptic Wand"</string>
<!-- Name of a beacon style. Similarly to 'beacon.styles.haptic.wand' string, the beacon style this string refers to includes haptic feedback (e.g. vibration feedback from the iPhone). The term "pulse" alludes to the fact that the haptic feedback continues to repeat (e.g. it pulses on and off) so long as the user holds their phone in front of themselves and points it around. -->
<string name="beacon_styles_haptic_pulse">"Haptic Pulse"</string>
<!-- Title, Audio Beacon -->
<string name="beacon_audio_beacon">"Audio Beacon"</string>
<!-- Notification, %@ is a location, "Beacon on <Some Place>" {NumberedPlaceholder="%@"} -->
<string name="beacon_beacon_on">"Beacon on %s"</string>
<!-- Included in the beacon UI when the distance to the beacon is not known -->
<string name="beacon_distance_unknown">"Distance unknown"</string>
<!-- Button, Remove Beacon -->
<string name="beacon_action_remove_beacon">"Remove Beacon"</string>
<!-- Notification, Double tap this button to remove current audio beacon -->
<string name="beacon_action_remove_beacon_double_tap_acc_hint">"Double tap this button to remove the current audio beacon"</string>
<!-- Button, Mute Beacon -->
<string name="beacon_action_mute_beacon">"Mute Beacon"</string>
<!-- Notification, Double tap to mute the audio beacon -->
<string name="beacon_action_mute_beacon_acc_hint">"mute the audio beacon."</string>
<!-- Button, Unmute Beacon -->
<string name="beacon_action_unmute_beacon">"Unmute Beacon"</string>
<!-- Notification, Double tap to unmute the audio beacon -->
<string name="beacon_action_unmute_beacon_acc_hint">"unmute the audio beacon."</string>
<!-- Button, Mute or Unmute Beacon -->
<string name="beacon_action_mute_unmute_beacon">"Mute or Unmute Beacon"</string>
<!-- Button, Call out Beacon -->
<string name="beacon_action_callout_beacon">"Call out Beacon"</string>
<!-- Notification, Double tap to unmute or mute the audio beacon -->
<string name="beacon_action_mute_unmute_beacon_acc_hint">"Double tap to mute or unmute the audio beacon"</string>
<!-- Title text of the button used to view the detail view -->
<string name="beacon_action_view_details">"View Details"</string>
<!-- Hint text of the button used to view the detail view -->
<string name="beacon_action_view_details_acc_hint_details">"Double tap to view additional details"</string>
<!-- Button, Beacon Distance Update -->
<string name="beacon_distance_update">"Beacon Distance Update"</string>
<!-- Notification, Beacon location nearby. -->
<string name="beacon_beacon_location_within">"Beacon within %s"</string>
<!-- Notification, Beacon location nearby. Audio beacon has been muted. -->
<string name="beacon_beacon_location_within_audio_beacon_muted">"Beacon within %s. Audio beacon has been muted"</string>
<!--******************************************************************************-->
<!-- MARK: - Preview-->
<!--******************************************************************************-->
<!-- Street Preview, View title, Street Preview is functionality that allows the user to select any location in the world to preview the area at street level in order to familiarise and build a mental map of the space. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_title">"Soundscape Street Preview"</string>
<!-- Text displayed when the current location is not known while previewing -->
<string name="preview_current_intersection_unknown_label">"Current Location Unknown"</string>
<!-- Text displaying the next intersection that the user will encounter along a selected road, "To Main St & 2nd Ave" {NumberedPlaceholder="%@"} -->
<string name="preview_next_intersection_label">"To %s"</string>
<!-- Text displayed when the user is approaching an intersection -->
<string name="preview_approaching_intersection_label">"Approaching Intersection"</string>
<!-- Label to display compass orientation, %1$@ is the heading in degrees and %2$@ is the cardinal direction, "230° SW" {NumberedPlaceholder="%1$@", "%2$@"} -->
<string name="preview_content_orientation_text_with_cardinal">"%1$s° %2$s"</string>
<!-- Label to display compass orientation without a cardinal direction, %1$@ is the heading in degrees, "230°" {NumberedPlaceholder="%1$@"} -->
<string name="preview_content_orientation_text_without_cardinal">"%1$s°"</string>
<!-- Label to display when the user is facing a road that they can travel down, %1$@ is the cardinal direction and %2$@ is the name of the road that they can travel down, "SW on Main Street" {NumberedPlaceholder="%1$@", "%2$@"} -->
<string name="preview_content_edge_text">"%1$s on %2$s"</string>
<!-- Accessibility hint for the button to select a direction of travel -->
<string name="preview_content_edge_text_accessibility_hint">"Double tap to move to the next intersection"</string>
<!-- Title for button to go to the next intersection -->
<string name="preview_go_title">"Go"</string>
<!-- Title for button to go back to the previous intersection -->
<string name="preview_go_back_title">"Previous"</string>
<!-- Accessibility hint for button to go back -->
<string name="preview_go_back_accessibility_text">"Double tap to go back to your previous intersection"</string>
<!-- Text for the "Search" button -->
<string name="preview_search_label">"Explore Nearby"</string>
<!-- Accessibility hint for the "Explore" button -->
<string name="preview_search_accessibility_hint">"Double tap to search or browse nearby places"</string>
<!-- Title for the alert displayed when ther user tries to restart the preview experience at a new location -->
<string name="preview_alert_restart_title">"Preview Already in Progress"</string>
<!-- Message for the alert displayed when ther user tries to restart the preview experience at a new location. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_alert_restart_message">"Do you want to restart Soundscape Street Preview at this location?"</string>
<!-- Button for the alert displayed when ther user tries to restart the preview experience at a new location -->
<string name="preview_alert_restart_button">"Restart"</string>
<!-- Callout that occurs when the preview experience pauses, The translation for "Street preview" should match the translation for "preview.title". {NumberedPlaceholder="Street Preview"} -->
<string name="preview_callout_paused">"Street Preview paused"</string>
<!-- Callout that occurs when the user exits the preview experience. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_callout_end">"Ending Soundscape Street Preview"</string>
<!-- Callout that occurs when users tap the button to return to the previous intersection they were at in the preview -->
<string name="preview_callout_previous">"Returning to previous intersection"</string>
<!-- Callout that occurs when the user starts preview mode at an intersection, %@ is the name of the intersection, "Starting preview at 9th Avenue North and Harrison Street" {NumberedPlaceholder="%@","Street Preview"} -->
<string name="preview_callout_start_at">"Starting Street Preview at %s"</string>
<!-- Callout that occurs when the user starts preview mode along a road, %@ is the name of the road, "Starting preview along 9th Avenue North" {NumberedPlaceholder="%@","Street Preview"} -->
<string name="preview_callout_start_along">"Starting Street Preview along %s"</string>
<!-- Callout that occurs when the user resumes a paused preview at an intersection, %@ is the name of the intersection, "Continuing preview at 9th Avenue North and Harrison Street" {NumberedPlaceholder="%@","Street Preview"} -->
<string name="preview_callout_continue_at">"Continuing Street Preview at %s"</string>
<!-- Callout that occurs when the user resumes a paused preview mode along a road, %@ is the name of the road, "Continuing preview along 9th Avenue North" {NumberedPlaceholder="%@","Street Preview"} -->
<string name="preview_callout_continue_along">"Continuing Street Preview along %s"</string>
<!-- Callout that occurs the first time the user gets to the "road finder" experience during their first use of the Street Preview experience. This is telling them to physically turn their phone so the app can tell them about the roads they are pointing the phone towards. -->
<string name="preview_callout_road_finder_instructions">"Turn your phone to preview available roads"</string>
<!-- This callout occurs the first time the user tries to tap the "Go" button when they are not pointed down a valid road. This explains that they need to point their phone down a valid road before hitting the Go button. -->
<string name="preview_callout_road_finder_error_instructions">"Turn to select a road and then press Go"</string>
<!-- Callout that occurs when a user is pointing their phone down an available road, %1$@ is the name of the road, %2$@ is the cardinal direction it moves away in, "9th Ave North, heading south" {NumberedPlaceholder="%1$@", "%2$@"} -->
<string name="preview_callout_road_finder_road">"%1$s, heading %2$s"</string>
<!-- Callout that occurs when a user is pointing their phone down an available road looking for the next intersection, %@ is the name of the next intersection in that direction, "Next intersection: 9th Avenue North and Harrison Street" {NumberedPlaceholder="%@"} -->
<string name="preview_callout_road_finder_intersection">"Next intersection: %s"</string>
<!-- Callout that occurs when a user is pointing their phone down an available road looking for the next intersection but the road loops around and returns to the current intersection (e.g. a roundabout or a "close" in the UK) -->
<string name="preview_callout_road_finder_intersection_same">"Next intersection: Circles back to current intersection"</string>
<!-- Callout that occurs when a user is pointing their phone down an available road looking for the next intersection but the road terminates in a dead end rather than another intersection -->
<string name="preview_callout_road_finder_intersection_end">"Next intersection: End of road"</string>
<!-- Callout that occurs when the user travels down a road (in preview mode) that ends without connecting to any other streets (a road with no exit) -->
<string name="preview_callout_approach_end">"Approaching end of road"</string>
<!-- Callout that occurs when the user selects a road that requires a left hand turn, %@ is the name of the street that the user is turning on {NumberedPlaceholder="%@"} -->
<string name="preview_callout_turn_left">"Turned left. Now along %s"</string>
<!-- Callout that occurs when the user selects a road that requires a right hand turn, %@ is the name of the street that the user is turning on {NumberedPlaceholder="%@"} -->
<string name="preview_callout_turn_right">"Turned right. Now along %s"</string>
<!-- Callout that occurs when the user selects to continue down the same road, %@ is the name of the street that the user is continuing along {NumberedPlaceholder="%@"} -->
<string name="preview_callout_turn_continue">"Continuing along %s"</string>
<!-- Callout that occurs when the user is currently in a roundabout and selects a road that leaves the roundabout, %@ is the name of the street that the user is turning on {NumberedPlaceholder="%@"} -->
<string name="preview_callout_turn_roundabout">"Departed roundabout. Now along %s"</string>
<!-- Title for a setting to include unnamed roads -->
<string name="preview_include_unnamed_roads_title">"Unnamed Roads"</string>
<!-- Subtitle for a setting to include unnamed roads. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_include_unnamed_roads_subtitle">"Include unnamed roads during Soundscape Street Preview"</string>
<!-- Voiceover label for a button to turn on a setting to include unnamed roads -->
<string name="preview_include_unnamed_roads_label_off">"Enable Unnamed Roads"</string>
<!-- Voiceover label for a button to turn off a setting to include unnamed roads -->
<string name="preview_include_unnamed_roads_label_on">"Disable Unnamed Roads"</string>
<!-- Voiceover hint for a button to turn on a setting to include unnamed roads. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_include_unnamed_roads_hint_off">"Double tap to include unnamed roads during Soundscape Street Preview"</string>
<!-- Voiceover hint for a button to turn off a setting to include unnamed roads. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_include_unnamed_roads_hint_on">"Double tap to exclude unnamed roads during Soundscape Street Preview"</string>
<!-- Accessibility hint for the button to end the preview tutorial -->
<string name="preview_tutorial_done_hint">"Double tap to exit the tutorial"</string>
<!-- Title for the first set of tutorial content. {NumberedPlaceholder="Soundscape Street Preview"} -->
<string name="preview_tutorial_title_1">"Welcome to Soundscape Street Preview!"</string>
<!-- First set of tutorial content -->
<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>
<!-- Title for the second set of tutorial content -->
<string name="preview_tutorial_title_2">"What’s about to happen"</string>
<!-- Second set of tutorial content, %@ is the name of the location where the preview experience is starting, Quotes written as \" -->
<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>
<!-- Title for the third set of tutorial content -->
<string name="preview_tutorial_title_3">"Continuing your exploration"</string>
<!-- Third set of tutorial content Quotes written as \" -->
<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>
<!-- Fourth set of tutorial content -->
<string name="preview_tutorial_content_4">"Enjoy and have fun!"</string>
<!--******************************************************************************-->
<!-- MARK: - Location Detail-->
<!--******************************************************************************-->
<!-- Location Details, View title -->
<string name="location_detail_title_default">"Location Details"</string>
<!-- Marker Details, View title -->
<string name="location_detail_title_marker">"Marker Details"</string>
<!-- Waypoint Details, View title -->
<string name="location_detail_title_waypoint">"Waypoint Details"</string>
<!-- Title for the action to set a beacon -->
<string name="location_detail_action_beacon">"Start Audio Beacon"</string>
<!-- Voiceover hint for the action to set a beacon -->
<string name="location_detail_action_beacon_hint">"set an audio beacon at this location"</string>
<!-- Text displayed when audio beacon action is disabled -->
<string name="location_detail_action_beacon_hint_disabled">"Setting a new audio beacon is disabled while route guidance is active"</string>
<!-- Voiceover hint for the action to save marker -->
<string name="location_detail_action_save_hint">"save this location as a marker"</string>
<!-- Voiceover hint for the action to edit marker -->
<string name="location_detail_action_edit_hint">"edit marker"</string>
<!-- Voiceover hint for the action to share -->
<string name="location_detail_action_share_hint">"share this location"</string>
<!-- Voiceover hint for the action to preview -->
<string name="location_detail_action_preview_hint">"start previewing at this location"</string>
<!-- Text displayed when street preview is disabled -->
<string name="location_detail_action_preview_hint_disabled">"Street Preview is disabled while route guidance is active"</string>
<!-- Voiceover hint for the action to get directions -->
<string name="location_detail_action_directions_hint">"Double tap to open this location in an external maps app"</string>
<!-- Default address for a location -->
<string name="location_detail_default_address">"Address unknown"</string>
<!-- Default annotation for a location -->
<string name="location_detail_default_annotation">"No marker annotation"</string>
<!-- Accessibility hint to select a location -->
<string name="location_select_hint">"Double tap to select this location"</string>
<!-- Text displayed when the location cannot be saved as a marker -->
<string name="location_detail_disabled_save">"Saving a marker at this location is currently unavailable"</string>
<!-- Text displayed when the location cannot be shared -->
<string name="location_detail_disabled_share">"Sharing this location is currently unavailable"</string>
<!-- Text displayed when no actions can be taken for a loction -->
<string name="location_detail_disabled_generic">"This location is currently unavailable"</string>
<!-- Title text displayed when the user is viewing the expanded map view -->
<string name="location_detail_map_view_title">"Selected Location"</string>
<!-- Hint text displayed when the user is viewing the expanded map view -->
<string name="location_detail_map_view_hint">"Edit to select a new location"</string>
<!-- Title text displayed when the user is selecting a location via the expanded map view -->
<string name="location_detail_map_edit_title">"Edit Location"</string>
<!-- Hint text displayed when the user is selecting a location via the expanded map view -->
<string name="location_detail_map_edit_hint">"Move the map to the correct location"</string>
<!-- Accessibility label used when the user is moving the marker location via custom Voiceover experience, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_accessibility_label">"Nudge Marker"</string>
<!-- Accessibility hint used when the user is moving the marker location via custom Voiceover experience, Here, "nudge" means moving a small distance. -->
<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>
<!-- Accessibility hint used when the user is moving the marker location via custom Voiceover experience, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_north_accessibility_hint">"Double tap to nudge marker north. Use actions to nudge in a different direction."</string>
<!-- Accessibility hint used when the user is moving the marker location via custom Voiceover experience, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_south_accessibility_hint">"Double tap to nudge marker south. Use actions to nudge in a different direction."</string>
<!-- Accessibility hint used when the user is moving the marker location via custom Voiceover experience, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_east_accessibility_hint">"Double tap to nudge marker east. Use actions to nudge in a different direction."</string>
<!-- Accessibility hint used when the user is moving the marker location via custom Voiceover experience, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_west_accessibility_hint">"Double tap to nudge marker west. Use actions to nudge in a different direction."</string>
<!-- Accessibility annoucement used to tell the user where a marker has moved to via custom Voiceover experience, %@ is a localized distance / direction string, "Nudging, 15 meters northwest of original location", Here, "nudge" means moving a small distance, {NumberedPlaceholder="%@"} -->
<string name="location_detail_map_edit_accessibility_annoucement">"Nudging, %s of original location"</string>
<!-- Accessibility action used when the user is moving the marker location via custom Voiceover experience and wants to move the marker in the direction that their phone is pointing, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_accessibility_action_compass">"Nudge In Direction of Phone"</string>
<!-- Accessibility action used when the user is moving the marker location via custom Voiceover experience and wants to move the marker north of its current location, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_accessibility_action_north">"Nudge North"</string>
<!-- Accessibility action used when the user is moving the marker location via custom Voiceover experience and wants to move the marker south of its current location, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_accessibility_action_south">"Nudge South"</string>
<!-- Accessibility action used when the user is moving the marker location via custom Voiceover experience and wants to move the marker east of its current location, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_accessibility_action_east">"Nudge East"</string>
<!-- Accessibility action used when the user is moving the marker location via custom Voiceover experience and wants to move the marker west of its current location, Here, "nudge" means moving a small distance. -->
<string name="location_detail_map_edit_accessibility_action_west">"Nudge West"</string>
<!-- Accessibility action used when the user is moving the marker location via custom Voiceover experience and wants to move the marker to the user's current location -->
<string name="location_detail_map_edit_accessibility_action_current_location">"Move to current location"</string>
<!-- Callout made when starting the audio beacon while the user is moving a marker via custom Voiceover experience, %@ is a localized distance / direction string, "Nudging, 15 meters northwest of original location", Here, "nudge" means moving a small distance, {NumberedPlaceholder="%@"} -->
<string name="location_detail_map_edit_accessibility_beacon_callout">"Starting beacon to track marker location. Nudging, %s of original location."</string>
<!-- Accessibility label for the icon which displays the number of the waypoint. %@ is the index of the waypoint. (e.g., "Waypoint 1") {NumberedPlaceholder="%@"} -->
<string name="location_detail_waypoint">"Waypoint %s"</string>
<!-- Accessibility hint for markers in a list which has already been added to a route -->
<string name="location_detail_add_waypoint_existing_hint">"remove this marker from your route."</string>
<!-- Accessibility hint for markers in a list that can be added to a list -->
<string name="location_detail_add_waypoint_new_hint">"add this marker to your route."</string>
<!-- Accessibility hint for markers in a list that can be created abd added to a list -->
<string name="location_detail_add_waypoint_marker_hint">"Double tap to create a marker and add it as a waypoint"</string>
<!--******************************************************************************-->
<!-- MARK: - Route Detail-->
<!--******************************************************************************-->
<!-- Title for the action to start playing the audio for a route -->
<string name="route_detail_action_start_route">"Start Route"</string>