forked from BlackyHawky/Clock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrings_old.xml
More file actions
1458 lines (1454 loc) · 95 KB
/
strings_old.xml
File metadata and controls
1458 lines (1454 loc) · 95 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"?>
<!--
Copyright (C) 2016 The Android Open Source Project
modified
SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
--><resources xmlns:tools="http://schemas.android.com/tools" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- Label shown on launcher icon -->
<!-- Label for the this application displayed on-screen when this application must be represented to the user. -->
<string name="app_label">Clock</string>
<!-- Default label to display for an alarm -->
<string name="default_label">Alarm</string>
<!-- Label title on the expanded alarm view to schedule alarm -->
<string name="schedule_alarm_title">Schedule alarm</string>
<!-- Label title on the expanded alarm view to set holiday -->
<string name="holiday_title">Holiday</string>
<string name="skip_holiday">Skip holiday</string>
<string name="daxiao_da">大小周大周</string>
<string name="daxiao_xiao">大小周小周</string>
<string name="danxiu">單休</string>
<!-- Setting labels on Set alarm screen: Vibration on or off -->
<string name="alarm_vibrate">Vibrate</string>
<!-- Setting labels on Set alarm screen: Flash on or off -->
<string name="alarm_flash">Flash</string>
<!-- Setting labels on Set alarm screen: Delete alarm once dismissed on or off -->
<string name="delete_occasional_alarm_after_use_title">Delete alarm once dismissed</string>
<!-- Title of dialog box to choose the alarm time -->
<string name="time_picker_dialog_title">Select time</string>
<!-- Title of dialog box to choose the alarm date -->
<string name="date_picker_dialog_title">Select Date</string>
<!-- Title of dialog box for editing alarm label -->
<string name="alarm_label_box_title">Alarm label</string>
<!-- Label "Default" -->
<string name="label_default">Default</string>
<!-- Label "Off" -->
<string name="label_off">Off</string>
<!-- Label "Delete" -->
<string name="delete">Delete</string>
<!-- Setting labels on Set alarm screen: Duplicate -->
<string name="duplicate">Duplicate</string>
<!-- Label "Warning" -->
<string name="warning">Warning</string>
<!-- Label "Hours" -->
<string name="label_hours">Hours</string>
<!-- Label "Minutes" -->
<string name="label_minutes">Minutes</string>
<!-- Label "Seconds" -->
<string name="label_seconds">Seconds</string>
<!-- Title of default ringtone played when an alarm triggers [CHAR LIMIT=30] -->
<string name="default_alarm_ringtone_title">Default alarm sound</string>
<!-- Title for alarm ringtone picker screen [CHAR LIMIT=30] -->
<string name="alarm_sound">Alarm sound</string>
<!-- Title for timer ringtone picker screen [CHAR LIMIT=30] -->
<string name="timer_sound">Timer sound</string>
<!-- Label for adding a new ringtone sound [CHAR LIMIT=30]-->
<string name="add_new_sound">Add new</string>
<!-- Label for adding a new ringtone sound from a folder -->
<string name="add_new_sound_subtitle">Long click to select a folder</string>
<!-- Label for removing a ringtone sound [CHAR LIMIT=30] -->
<string name="remove_sound">Remove</string>
<!-- Description of the checkmark when a ringtone is selected -->
<string name="selected">Selected</string>
<!-- Description of the menu button which opens on custom ringtones -->
<string name="more_options">More options</string>
<!-- Text that explains what happens to alarms and timers after removing the custom ringtone sound they use [CHAR LIMIT=NONE] -->
<string name="confirm_remove_custom_ringtone">Alarms and timers using this sound will play the default sound instead.</string>
<!-- Label for "Your sounds" section on ringtone selection screen [CHAR LIMIT=60] -->
<string name="your_sounds">Your sounds</string>
<!-- Label for "Device sounds" section on ringtone selection screen [CHAR LIMIT=60] -->
<string name="device_sounds">Device sounds</string>
<!-- Text that explains that the ringtone is inaccessible to the app [CHAR LIMIT=NONE] -->
<string name="custom_ringtone_lost_permissions">The sound content cannot be accessed.</string>
<!-- Title of default ringtone played when a timer expires. -->
<string name="default_timer_ringtone_title">Timer Expired</string>
<!-- Label shown when user is setting up non-repeating alarm for tomorrow -->
<string name="alarm_tomorrow">Tomorrow</string>
<!-- Label shown when user is setting up non-repeating alarm for later today -->
<string name="alarm_today">Today</string>
<!-- Label shown when user has set a non-repeating alarm for a specific day -->
<string name="alarm_scheduled_for">Scheduled for %s</string>
<!-- Button label on the alarm notification panel: Dismiss -->
<string name="alarm_alert_dismiss_text">Dismiss</string>
<!-- Button label on the alarm notification panel: Dismiss & Delete -->
<string name="alarm_alert_dismiss_and_delete_text">Dismiss & Delete</string>
<!-- Alarm Alert screen: this message is shown after an alarm rung
unattended for a number of minutes. It tells the user that
the alarm has been silenced.-->
<string name="alarm_missed_title">Missed alarm</string>
<string name="alarm_missed_text"><xliff:g id="alarm_time">%1$s</xliff:g> - <xliff:g id="alarm_label">%2$s</xliff:g></string>
<!-- The text shown after user snoozed an alerting alarm. The text will be shown
together with the number of minutes in two separate lines. For example:
Snoozed
10 min
[CHAR LIMIT=10]
-->
<string name="alarm_alert_snoozed_text">Snoozed</string>
<!-- The text shown after user snoozed an alerting alarm. The text will be shown
together with the word 'Snoozed' in two separate lines or example:
Snoozed
10 min
[CHAR LIMIT=10]
-->
<plurals name="alarm_alert_snooze_duration">
<!-- Duration for one minute -->
<item quantity="one">1 min</item>
<!-- Duration for more than one minute -->
<item quantity="other"><xliff:g example="7" id="number">%d</xliff:g> min</item>
</plurals>
<!-- The text shown after user dismissed a repeated alarm -->
<string name="alarm_alert_off_text">Alarm off</string>
<!-- The text shown after user dismissed a single alarm -->
<string name="alarm_alert_off_and_deleted_text">Alarm off and deleted</string>
<!-- Button labels on the alarm dialog: Snooze -->
<string name="alarm_alert_snooze_text">Snooze</string>
<!-- Toast that appears after Alarm is snoozed from the Alarm
dialog. Says the alarm will snooze for xxx minutes. -->
<plurals name="alarm_alert_snooze_set">
<!-- Duration for one minute -->
<item quantity="one">Snoozing for 1 minute.</item>
<!-- Duration for more than one minute -->
<item quantity="other">Snoozing for <xliff:g id="minutes">%d</xliff:g> minutes.</item>
</plurals>
<!-- Text to appear inside a notification while an alarm is snoozing. -->
<string name="alarm_alert_snooze_until">Snoozing until <xliff:g id="time">%s</xliff:g></string>
<!-- Text to appear in the notification title while an alarm is about to go off. -->
<string name="alarm_alert_predismiss_title">Upcoming alarm</string>
<!-- Text to appear in the notification title while an occasional alarm is about to go off. -->
<string name="occasional_alarm_alert_predismiss_title">Upcoming occasional alarm</string>
<!-- Text to appear in when trying to view a missed alarm that has been deleted -->
<string name="missed_alarm_has_been_deleted">Your missed alarm has been deleted</string>
<!-- 0: nothing
1: days
2: hours
3: days hours
4: minutes
5: days minutes
6: hours minutes
7: days hours minutes
-->
<skip/>
<!-- Timer notification: how long from now until timer goes off.
(Also used for timer accessibility announcements.) -->
<string name="timer_notifications_less_min">Less than a minute remaining</string>
<string name="timer_notifications_hours"><xliff:g example="2 hours" id="HOURS">%1$s</xliff:g><xliff:g example="remaining" id="REMAINING"> %3$s</xliff:g></string>
<string name="timer_notifications_minutes"><xliff:g example="2 minutes" id="MINUTES">%2$s</xliff:g><xliff:g example="remaining" id="REMAINING"> %3$s</xliff:g></string>
<string name="timer_notifications_hours_minutes"><xliff:g example="2 hours" id="HOURS">%1$s</xliff:g><xliff:g example="2 minutes" id="MINUTES"> %2$s</xliff:g> remaining</string>
<string name="timer_notifications_seconds"><xliff:g example="2 seconds" id="SECONDS">%4$s</xliff:g><xliff:g example="remaining" id="REMAINING"> %3$s</xliff:g></string>
<string name="timer_notifications_minutes_seconds"><xliff:g example="2 minutes" id="MINUTES">%2$s</xliff:g> <xliff:g example="2 seconds" id="SECONDS"> %4$s</xliff:g><xliff:g example="remaining" id="REMAINING"> %3$s</xliff:g></string>
<string name="timer_notifications_hours_seconds"><xliff:g example="2 hours" id="HOURS">%1$s</xliff:g> <xliff:g example="2 seconds" id="SECONDS"> %4$s</xliff:g><xliff:g example="remaining" id="REMAINING"> %3$s</xliff:g></string>
<string name="timer_notifications_hours_minutes_seconds"><xliff:g example="2 hours" id="HOURS">%1$s</xliff:g><xliff:g example="2 minutes" id="MINUTES"> %2$s</xliff:g><xliff:g example="2 seconds" id="SECONDS"> %4$s</xliff:g><xliff:g example="remaining" id="REMAINING"> %3$s</xliff:g></string>
<!-- Timer accessibility announcements -->
<string name="timer_accessibility_custom_time_added">%1$s minute added to timer, <xliff:g example="5 hours remaining" id="TIME">%2$s</xliff:g></string>
<!--
Verb inflection to use for single time units remaining
Ex. "1 minute remaining"
-->
<string name="timer_remaining_single">remaining</string>
<!--
Verb inflection to use for multiple time units remaining
Ex. "2 minutes remaining"
-->
<string name="timer_remaining_multiple">remaining</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 1 -->
<string name="alarm_confirmation_toast_1">Alarm set for less than 1 minute from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 2 -->
<string name="alarm_confirmation_toast_2">Alarm set for <xliff:g example="2 days" id="DAYS">%1$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 3 -->
<string name="alarm_confirmation_toast_3">Alarm set for <xliff:g example="2 hours" id="HOURS">%2$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 4 -->
<string name="alarm_confirmation_toast_4">Alarm set for <xliff:g example="2 days" id="DAYS">%1$s</xliff:g> and <xliff:g example="2 hours" id="HOURS">%2$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 5 -->
<string name="alarm_confirmation_toast_5">Alarm set for <xliff:g example="2 minutes" id="MINUTES">%3$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 6 -->
<string name="alarm_confirmation_toast_6">Alarm set for <xliff:g example="2 days" id="DAYS">%1$s</xliff:g> and <xliff:g example="2 minutes" id="MINUTES">%3$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 7 -->
<string name="alarm_confirmation_toast_7">Alarm set for <xliff:g example="2 hours" id="HOURS">%2$s</xliff:g> and <xliff:g example="2 minutes" id="MINUTES">%3$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: Describes how long from now until alarm fires - Toast 8 -->
<string name="alarm_confirmation_toast_8">Alarm set for <xliff:g example="2 days" id="DAYS">%1$s</xliff:g>, <xliff:g example="2 hours" id="HOURS">%2$s</xliff:g>, and <xliff:g example="2 minutes" id="MINUTES">%3$s</xliff:g> from now.</string>
<!-- Alarm confirmation toast: days -->
<plurals name="days">
<!-- Duration for one day -->
<item quantity="one">1 day</item>
<!-- Duration for more than one day -->
<item quantity="other"><xliff:g example="7" id="number">%s</xliff:g> days</item>
</plurals>
<!-- Alarm confirmation toast, timer notification and world clock ahead/behind: hours -->
<plurals name="hours">
<!-- Duration for one hour -->
<item quantity="one">1 hour</item>
<!-- Duration for more than one hour -->
<item quantity="other"><xliff:g example="7" id="number">%s</xliff:g> hours</item>
</plurals>
<plurals name="hours_short">
<!-- Duration for one hour [CHAR LIMIT=8] -->
<item quantity="one">1 hr</item>
<!-- Duration for more than one hour [CHAR LIMIT=8]-->
<item quantity="other"><xliff:g example="7" id="number">%s</xliff:g> hr</item>
</plurals>
<!-- Alarm confirmation toast and timer notification: minutes -->
<plurals name="minutes">
<!-- Duration for one minute -->
<item quantity="one">1 minute</item>
<!-- Duration for more than one minute -->
<item quantity="other"><xliff:g example="7" id="number">%s</xliff:g> minutes</item>
</plurals>
<plurals name="minutes_short">
<!-- Duration for one minute [CHAR LIMIT=8] -->
<item quantity="one">1 min</item>
<!-- Duration for more than one minute [CHAR LIMIT=8] -->
<item quantity="other"><xliff:g example="7" id="number">%s</xliff:g> min</item>
</plurals>
<!-- Timer accessibility announcement -->
<plurals name="seconds">
<!-- Duration for one second -->
<item quantity="one">1 second</item>
<!-- Duration for more than one minute -->
<item quantity="other"><xliff:g example="7" id="number">%s</xliff:g> seconds</item>
</plurals>
<!-- Repeat options that appear under an alarm on main Alarm Clock
screen to identify repetition schedule: special case for when
the alarm is set to repeat every day -->
<string name="every_day">Every day</string>
<!-- Repeat options that appear under an alarm on main Alarm Clock
screen to identify repetition schedule: concatenate days with
this character, i.e. "Mon, Tue, Wed" -->
<string name="day_concat">", "</string>
<!-- Message indicating the widget is being loaded. -->
<string name="loading_widget">Loading\u2026</string>
<!-- Label for analog clock widget displayed in the widget picker -->
<string name="analog_widget">Analog clock</string>
<!-- Title of the analog widget layout choice activity -->
<string name="analog_widget_choice_title">Choose your style</string>
<!-- Name of the analog widget layout without second hand -->
<string name="analog_widget_without_second_hand_title">Without the second hand</string>
<!-- Name of the analog widget layout with second hand -->
<string name="analog_widget_with_second_hand_title">With the second hand</string>
<!-- Text displayed when user wants to configure analog widget with Android version earlier than Android 12 -->
<string name="analog_widget_configuration_warning">This widget is only configurable from Android 12</string>
<!-- Label for analog clock widget displayed in the widget picker -->
<string name="analog_widget_material_you">Analog clock Material You</string>
<!-- Label for digital clock widget displayed in the widget picker -->
<string name="digital_widget">Digital clock</string>
<!-- Label for vertical digital clock widget displayed in the widget picker -->
<string name="vertical_digital_widget">Vertical digital clock</string>
<!-- Label for next alarm widget displayed in the widget picker -->
<string name="next_alarm_widget">Next alarm</string>
<!-- Label for Material You digital clock widget displayed in the widget picker -->
<string name="material_you_digital_widget">Digital clock Material You</string>
<!-- Label for Material You vertical digital clock widget displayed in the widget picker -->
<string name="material_you_vertical_digital_widget">Vertical digital clock Material You</string>
<!-- Label for Material You next alarm widget displayed in the widget picker -->
<string name="material_you_next_alarm_widget">Next alarm Material You</string>
<!-- Label for the Settings activity displayed on-screen when that activity must be represented to the user. -->
<string name="settings">Settings</string>
<!-- Message displayed at the top of the settings if one or more permissions are missing -->
<string name="settings_permission_message">One or more essential permissions are denied. Not granting them can lead to malfunctions.</string>
<!-- Summary of the message displayed at the top of the settings if one or more permissions are missing -->
<string name="settings_permission_summary">Click here to display the Permissions management page.</string>
<!-- Category title for style settings. -->
<string name="style_category_title">Style</string>
<!-- Category title for styles and colors -->
<string name="styles_and_colors_category_title">Style and colors</string>
<!-- Category title for font -->
<string name="font_category_title">Font</string>
<!-- Category title for miscellaneous settings -->
<string name="miscellaneous_category_title">Miscellaneous</string>
<!-- Category title for ringtone settings -->
<string name="ringtone_category_title">Ringtone</string>
<!-- Category title for alarm actions -->
<string name="actions_category_title">Actions</string>
<!-- Category title for standard widgets -->
<string name="standard_category_title">Standard</string>
<!-- Category title for Material You widgets -->
<string name="material_you_category_title">Material You</string>
<!-- Interface customization title in the settings -->
<string name="interface_customization_settings">Interface</string>
<!-- Interface preference summary -->
<string name="interface_customization_summary">Set style and color applied to the application</string>
<!-- Settings theme title -->
<string name="title_theme">Theme</string>
<!-- Setting title to switch to system theme -->
<string name="system_theme">System</string>
<!-- Setting title to switch to light theme -->
<string name="light_theme">Light</string>
<!-- Setting title to switch to dark theme -->
<string name="dark_theme">Dark</string>
<!-- Settings accent color title -->
<string name="title_accent_color">Accent color</string>
<!-- Settings title to enable auto night accent color -->
<string name="auto_night_accent_color_title">Apply accent color to night mode</string>
<!-- Settings day accent color title -->
<string name="day_accent_color_title">Accent color for day mode</string>
<!-- Settings night accent color title -->
<string name="night_accent_color_title">Accent color for night mode</string>
<!-- Setting title to switch to black accent color -->
<string name="black_accent_color">Black</string>
<!-- Setting title to switch to blue accent color -->
<string name="blue_accent_color">Blue</string>
<!-- Setting title to switch to blue gray accent color -->
<string name="blue_gray_accent_color">Blue Gray</string>
<!-- Setting title to switch to brown accent color -->
<string name="brown_accent_color">Brown</string>
<!-- Setting title to switch to green accent color -->
<string name="green_accent_color">Green</string>
<!-- Setting title to switch to indigo accent color -->
<string name="indigo_accent_color">Indigo</string>
<!-- Setting title to switch to orange accent color -->
<string name="orange_accent_color">Orange</string>
<!-- Setting title to switch to pink accent color -->
<string name="pink_accent_color">Pink</string>
<!-- Setting title to switch to purple accent color -->
<string name="purple_accent_color">Purple</string>
<!-- Setting title to switch to red accent color -->
<string name="red_accent_color">Red</string>
<!-- Setting title to switch to yellow accent color -->
<string name="yellow_accent_color">Yellow</string>
<!-- Settings amoled title -->
<string name="title_dark_theme_mode">Dark theme mode</string>
<!-- Setting title to switch to AMOLED dark theme mode -->
<string name="amoled_dark_theme_mode">AMOLED</string>
<!-- Setting title to display the background or not. -->
<string name="display_card_background_title">Display card backgrounds</string>
<!-- Setting summary about background display. -->
<string name="display_card_background_summary">Displays a background for some application elements (alarms, cities, timer button, etc.)</string>
<!-- Setting title to display the background border or not. -->
<string name="display_background_border_title">Display background borders</string>
<!-- Setting summary about background border display. -->
<string name="display_background_border_summary">Displays a background border for some application elements (alarms, cities, timer button, etc.)</string>
<!-- Setting title to choose the language. -->
<string name="settings_language_title">Language</string>
<!-- Setting title for changing the language to system language. -->
<string name="settings_language_system">System language</string>
<!-- Setting title for changing the language to English (US). -->
<string name="settings_language_english_us">English (US)</string>
<!-- Setting title for changing the language to French. -->
<string name="settings_language_french">French</string>
<!-- Setting title for changing the language to German. -->
<string name="settings_language_german">German</string>
<!-- Setting title for changing the language to Chinese (simplified, PRC). -->
<string name="settings_language_chinese_simplified_cn">Chinese (simplified, PRC)</string>
<!-- Setting title for changing the language to Estonian. -->
<string name="settings_language_estonian">Estonian</string>
<!-- Setting title for changing the language to Italian. -->
<string name="settings_language_italian">Italian</string>
<!-- Setting title for changing the language to Polish. -->
<string name="settings_language_polish">Polish</string>
<!-- Setting title for changing the language to Portuguese. -->
<string name="settings_language_portuguese">Portuguese</string>
<!-- Setting title for changing the language to Serbian. -->
<string name="settings_language_serbian">Serbian</string>
<!-- Setting title for changing the language to Spanish. -->
<string name="settings_language_spanish">Spanish</string>
<!-- Setting title for changing the language to Ukrainian. -->
<string name="settings_language_ukrainian">Ukrainian</string>
<!-- Setting title for changing the language to Dutch. -->
<string name="settings_language_dutch">Dutch</string>
<!-- Setting title for changing the language to Russian. -->
<string name="settings_language_russian">Russian</string>
<!-- Setting title for changing the language to Turkish. -->
<string name="settings_language_turkish">Turkish</string>
<!-- Setting title for changing the language to Korean. -->
<string name="settings_language_korean">Korean</string>
<!-- Setting title for changing the language to Czech. -->
<string name="settings_language_czech">Czech</string>
<!-- Setting title for changing the language to Chinese (traditional, Taiwan). -->
<string name="settings_language_chinese_traditional_tw">Chinese (traditional, Taiwan)</string>
<!-- Setting title for changing the tab to display when opening the application. -->
<string name="settings_tab_to_display">Tab to display when opening the application</string>
<!-- Setting title to switch to last tab used -->
<string name="last_tab_used_title">Last tab used</string>
<!-- Setting title to activate vibrations on some buttons. -->
<string name="settings_vibration_title">Enable vibrations</string>
<!-- Setting summary about vibrations. -->
<string name="settings_vibration_summary">Only some interface buttons are affected (e.g.: the timer play/pause button or switches)</string>
<!-- Setting title to display the toolbar title. -->
<string name="settings_toolbar_title">Display the title in the toolbar</string>
<!-- Setting title to change the tab title visibility. -->
<string name="settings_tab_title_visibility_title">Display the tab titles</string>
<!-- Setting title to always display tab titles. -->
<string name="tab_title_visibility_always">Always</string>
<!-- Setting title to never display tab titles. -->
<string name="tab_title_visibility_never">Never</string>
<!-- Setting title to display tab titles when selected. -->
<string name="tab_title_visibility_when_selected">When selected</string>
<!-- Setting title to display the tab indicator in the bottom navigation menu. -->
<string name="settings_tab_indicator_title">Display the tab indicator in the bottom navigation menu</string>
<!-- Setting title to enable fade transitions when switching screens. -->
<string name="settings_fade_transitions_title">Enable fade transitions when switching screens</string>
<!-- Setting title to keep the screen on. -->
<string name="settings_keep_screen_on_title">Keep the screen on</string>
<!-- Setting summary about keeping the screen on. -->
<string name="settings_keep_screen_on_summary">Note: The screen will always be on if a timer or stopwatch is running and the corresponding tab is displayed, regardless of the status of this setting</string>
<!-- Setting title for changing the snooze duration. -->
<string name="snooze_duration_title">Snooze length</string>
<!-- Setting title to enable the use of a custom volume for each alarm. -->
<string name="enable_per_alarm_volume_title">Use a custom volume for each alarm</string>
<!-- Setting summary to clarify what the "Use a custom volume for each alarm" setting implies. -->
<string name="enable_per_alarm_volume_summary">Allows setting a different volume for each alarm in the expanded alarm view</string>
<!-- Setting title for changing the notification reminder. -->
<string name="alarm_notification_reminder_title">Notification reminder</string>
<!-- Setting title for changing the notification reminder to 30 minutes before. -->
<string name="alarm_notification_reminder_30_minutes">30 minutes before</string>
<!-- Setting title for changing the notification reminder to 1 hour before. -->
<string name="alarm_notification_reminder_1_hour">1 hour before</string>
<!-- Setting title for changing the notification reminder to 2 hours before. -->
<string name="alarm_notification_reminder_2_hours">2 hours before</string>
<!-- Setting title for changing the notification reminder to 4 hours before. -->
<string name="alarm_notification_reminder_4_hours">4 hours before</string>
<!-- Setting title for changing the notification reminder to 6 hours before. -->
<string name="alarm_notification_reminder_6_hours">6 hours before</string>
<!-- Setting title for changing the notification reminder to 8 hours before. -->
<string name="alarm_notification_reminder_8_hours">8 hours before</string>
<!-- Setting title for changing the notification reminder to 10 hours before. -->
<string name="alarm_notification_reminder_10_hours">10 hours before</string>
<!-- Setting title for changing the notification reminder to 12 hours before. -->
<string name="alarm_notification_reminder_12_hours">12 hours before</string>
<!-- Setting title to enable advanced audio playback. -->
<string name="advanced_audio_playback_title">Use advanced audio playback</string>
<!-- Setting summary to clarify what the "Use advanced audio playback" setting implies -->
<string name="advanced_audio_playback_summary">Improves Bluetooth compatibility and prevents sound interruptions during repetition
\n\nNote: Some ringtones may have slight audio glitches</string>
<!-- Setting title to enable automatic routing to bluetooth devices for ringtones -->
<string name="auto_routing_to_bluetooth_device_title">Enable automatic routing of ringtones to Bluetooth devices</string>
<!-- Setting title to enable the use of system media volume. -->
<string name="system_media_volume_title">Use system media volume</string>
<!-- Setting summary about the use of system media volume. -->
<string name="system_media_volume_summary">Only works if a Bluetooth device is connected</string>
<!-- Setting title for changing the volume when a Bluetooth device is connected. -->
<string name="bluetooth_volume_title">Alarm volume for Bluetooth devices</string>
<!-- Setting title to indicate that a Bluetooth device should be connected. -->
<string name="connect_bluetooth_device_title">Connect a Bluetooth device to access this setting</string>
<!-- Setting title to indicate that a Bluetooth device should be disconnected. -->
<string name="disconnect_bluetooth_device_title">Disconnect the Bluetooth device to access this setting</string>
<!-- Setting title to enable vibrations when creating alarms -->
<string name="enable_alarm_vibrations_by_default_setting_title">Enable vibrations when creating alarms</string>
<!-- Setting title to enable vibrations when alarm is snoozed or dismissed -->
<string name="enable_snoozed_or_dismissed_alarm_vibrations_title">Enable vibrations when alarm is snoozed or dismissed</string>
<!-- Setting summary about vibrations when alarm is snoozed or dismissed -->
<string name="enable_snoozed_or_dismissed_alarm_vibrations_summary">Double vibration when alarm is snoozed and single vibration when alarm is dismissed</string>
<!-- Setting title to turn on flash when alarm is triggered -->
<string name="turn_on_back_flash_for_triggered_alarm_title">Turn on back flash when alarm is triggered</string>
<!-- Setting title to display the button for deleting single alarms in the expanded alarm view -->
<string name="enable_delete_occasional_alarm_by_default_setting_title">Enable automatic deletion of occasional alarms by default</string>
<!-- Setting title for changing the time picker style. -->
<string name="material_time_picker_style_title">Time picker style</string>
<!-- Setting title for changing the date picker style. -->
<string name="date_picker_style_title">Date picker style</string>
<!-- Setting title for changing the date picker style to calendar. -->
<string name="date_picker_style_calendar">Calendar</string>
<!-- Setting title for changing the date picker style to text. -->
<string name="date_picker_style_text">Text</string>
<!-- Setting summary to indicate that this setting can be changed for each alarm -->
<string name="alarm_settings_general_summary">This setting can be changed for each alarm in the expanded alarm view</string>
<!-- Setting title for customizing the alarm display. -->
<string name="alarm_display_customization_title">Customize alarm display</string>
<!-- Setting title for customizing the alarm title color. -->
<string name="alarm_title_color">Alarm title color</string>
<!-- Setting title for customizing the slide zone color. -->
<string name="slide_zone_color_title">Slide zone color</string>
<!-- Setting title for customizing the color of "Snooze" title. -->
<string name="snooze_title_color">Color of the \"Snooze\" title</string>
<!-- Setting title for customizing the color of the "Snooze" button. -->
<string name="snooze_button_color">Color of the \"Snooze\" button</string>
<!-- Setting title for customizing the color of "Dismiss" title. -->
<string name="dismiss_title_color">Color of the \"Dismiss\" title</string>
<!-- Setting title for customizing the color of the "Dismiss" button. -->
<string name="dismiss_button_color">Color of the \"Dismiss\" button</string>
<!-- Setting title for customizing the alarm button color. -->
<string name="alarm_button_color">Alarm button color</string>
<!-- Setting title for customizing the alarm clock font size. -->
<string name="alarm_clock_font_size">Alarm clock font size</string>
<!-- Setting title for customizing the alarm title font size. -->
<string name="alarm_title_font_size">Alarm title font size</string>
<!-- Setting title to display the ringtone title. -->
<string name="display_ringtone_title">Display ringtone title</string>
<!-- Setting title for customizing the ringtone title color. -->
<string name="ringtone_title_color">Ringtone title color</string>
<!-- Setting title for changing the crescendo duration. -->
<string name="crescendo_duration_title">Gradually increase volume</string>
<!-- Auto silence preference title -->
<string name="auto_silence_title">Silence after</string>
<!-- Auto silence summary when turned off -->
<string name="auto_silence_never">Never</string>
<!-- Auto silence summary when set at "The end of the ringtone" or for changing the auto silence.-->
<string name="auto_silence_end_of_ringtone">The end of the ringtone</string>
<!-- Setting title for changing the auto silence to 5 seconds. -->
<string name="auto_silence_5_seconds">5 seconds</string>
<!-- Setting title for changing the auto silence to 10 seconds. -->
<string name="auto_silence_10_seconds">10 seconds</string>
<!-- Setting title for changing the auto silence to 20 seconds. -->
<string name="auto_silence_20_seconds">20 seconds</string>
<!-- Setting title for changing the auto silence to 30 seconds. -->
<string name="auto_silence_30_seconds">30 seconds</string>
<!-- Setting title for changing the auto silence to 1 minute. -->
<string name="auto_silence_1_minute">1 minute</string>
<!-- Setting title for changing the snooze duration to None. -->
<string name="snooze_duration_none">None</string>
<!-- Week start day preference title. -->
<string name="week_start_title">Start week on</string>
<!-- Setting title for changing the start of the week to Saturday. -->
<string name="week_start_saturday">Saturday</string>
<!-- Setting title for changing the start of the week to Sunday. -->
<string name="week_start_sunday">Sunday</string>
<!-- Setting title for changing the start of the week to Monday. -->
<string name="week_start_monday">Monday</string>
<!-- Setting title for changing the alarm volume. -->
<string name="alarm_volume_title">Alarm volume</string>
<!-- Title for the silent ringtone. -->
<string name="silent_ringtone_title">Silent</string>
<!-- Title for random ringtone. -->
<string name="random_ringtone_title">Random ringtone</string>
<!-- Title for ringtones that cannot be located by uri. -->
<string name="unknown_ringtone_title">Unknown</string>
<!-- Text to display when alarm volume is muted. [CHAR LIMIT=50] -->
<string name="alarm_volume_muted">Alarm volume muted</string>
<!-- Text for action that presents a volume control to adjust alarm volume. [CHAR LIMIT=20] -->
<string name="unmute_alarm_volume">Unmute</string>
<!-- Text to display when system default alarm ringtone is silent. [CHAR LIMIT=50] -->
<string name="silent_default_alarm_ringtone">Default alarm ringtone is silent</string>
<!-- Text for action that shows the UI that changes the default alarm ringtone. [CHAR LIMIT=20] -->
<string name="change_setting_action">Change</string>
<!-- Text to display when do-not-disturb is blocking alarms. [CHAR LIMIT=60] -->
<string name="alarms_blocked_by_dnd">Device is set to total silence</string>
<!-- Title of the setting to enable swiping to dismiss or snooze alarms -->
<string name="swipe_action_title">Swipe to dismiss or snooze alarms</string>
<!-- Title of the setting to change hardware button behavior. This string
should be changed for each piece of hardware. [CHAR LIMIT=20] -->
<string name="volume_button_setting_title">Volume buttons</string>
<!-- Setting title for changing the button action to Snooze. -->
<string name="button_action_snooze">Snooze</string>
<!-- Setting title for changing the button action to Dismiss. -->
<string name="button_action_dismiss">Dismiss</string>
<!-- Setting title for changing the button action to Control volume. -->
<string name="button_action_control_volume">Control volume</string>
<!-- Setting title for changing the button action to Nothing. -->
<string name="button_action_nothing">Nothing</string>
<!-- Setting title for the Power button setting. -->
<string name="power_button_title">Power button</string>
<!-- Accessibility labels for Clock activity buttons -->
<skip/>
<!-- Accessibility labels for alarm buttons -->
<string name="label_description">Label</string>
<string name="ringtone_description">Ringtone</string>
<string name="add_label">Add label</string>
<!-- ActionBar strings -->
<!-- Describes the purpose of the tab button which which switches the activity to the Alarm page -->
<string name="menu_alarm">Alarm</string>
<!-- Describes the purpose of the tab button which which switches the activity to the Timer page -->
<string name="menu_timer">Timer</string>
<!-- Describes the purpose of the tab button which which switches the activity to the Clock page -->
<string name="menu_clock">Clock</string>
<!-- Describes the purpose of the tab button which which switches the activity to the Stopwatch page -->
<string name="menu_stopwatch">Stopwatch</string>
<!-- Clock view buttons strings-->
<!-- Describes the purpose of the button to start the activity to add/edit/delete alarms -->
<string name="button_alarms">Add alarm</string>
<!-- Describes the purpose of the button which provides a list of cities for the world clock settings -->
<string name="button_cities">Cities</string>
<!-- Menu item on most screens to get to more settings -->
<!-- Menu item on Cities screen to sort by GMT offset -->
<string name="menu_item_sort_by_gmt_offset">Sort by time</string>
<!-- Menu item on Cities screen to sort by alphabetical order -->
<string name="menu_item_sort_by_name">Sort by name</string>
<!-- Label for selected cities in Cities list view -->
<string name="selected_cities_label">Selected Cities</string>
<!-- Stopwatch and Timer shared strings -->
<!-- Describes the purpose of the button to resume running timer. [CHAR LIMIT=15] -->
<string name="sw_resume_button">Resume</string>
<!-- Label "Reset" -->
<string name="reset">Reset</string>
<!-- Stopwatch strings -->
<!-- Stopwatch preference summary in the settings -->
<string name="sw_settings_summary">Set actions for volume buttons</string>
<!-- Setting title to set the volume up action for the stopwatch -->
<string name="sw_volume_up_action_title">Volume up</string>
<!-- Setting title to set volume up action after long press for stopwatch -->
<string name="sw_long_press_volume_up_action_title">Volume up (after long press)</string>
<!-- Setting title to set the volume down action for the stopwatch -->
<string name="sw_volume_down_action_title">Volume down</string>
<!-- Setting title to set volume down action after long press for stopwatch -->
<string name="sw_long_press_volume_down_action_title">Volume down (after long press)</string>
<!-- Setting title to start / pause the stopwatch. -->
<string name="sw_start_pause_action">Start / Pause</string>
<!-- Describes the purpose of the button to begin running a stopwatch -->
<string name="sw_start_button">Start</string>
<!-- Describes the purpose of the button to pause a stopwatch. -->
<string name="sw_pause_button">Pause</string>
<!-- Describes the purpose of the button to record current the stopwatch value into the collection of lap times. -->
<string name="sw_lap_button">Lap</string>
<!-- Describes the purpose of the button to share the stopwatch value.
Also used as title for chooser when sharing stopwatch results. -->
<string name="sw_share_button">Share</string>
<!-- Abbreviation for temporal hours [CHAR LIMIT=1] -->
<string name="hours_label">h</string>
<!-- Abbreviation for temporal minutes [CHAR LIMIT=1] -->
<string name="minutes_label">m</string>
<!-- Abbreviation for temporal seconds [CHAR LIMIT=1] -->
<string name="seconds_label">s</string>
<!-- Accessibility description for new timer setup duration (e.g. 1 hour, 10 minutes, 30 seconds). [CHAR LIMIT=NONE] -->
<string name="timer_setup_description"><xliff:g example="1 hour" id="hours">%1$s</xliff:g>, <xliff:g example="15 minutes" id="minutes">%2$s</xliff:g>, <xliff:g example="30 seconds" id="seconds">%3$s</xliff:g></string>
<!-- Formats the lap number display. Allows for control of the symbol preceding the lap number. [CHAR LIMIT=5] -->
<string name="lap_number_single_digit"># <xliff:g id="lapNumber">%d</xliff:g></string>
<!-- Formats the lap number display. Allows for control of the symbol preceding the lap number. [CHAR LIMIT=5] -->
<string name="lap_number_double_digit"># <xliff:g id="lapNumber">%02d</xliff:g></string>
<!-- Stopwatch share strings -->
<!-- Sentence within the message created to share the total time recorded within the stopwatch -->
<string name="sw_share_main">My time is <xliff:g id="time">%s</xliff:g></string>
<!-- Header within the message created to share a list of lap times (a new line is appended to this) -->
<string name="sw_share_laps">Lap times:</string>
<!-- Label to enumerate the number of laps in the notification the user has counted -->
<string name="sw_notification_lap_number">Lap <xliff:g id="number">%d</xliff:g></string>
<!-- timer strings -->
<!-- Title of dialog box for editing timer label -->
<string name="timer_label_box_title">Timer label</string>
<!-- Title of dialog box to set a new duration to an existing timer. -->
<string name="timer_time_box_title">New timer duration</string>
<!-- Text of dialog box to edit hours to set a new duration to an existing timer. -->
<string name="timer_hours_warning_box_text">Enter a value between 0 and 24 hours</string>
<!-- Text of dialog box to edit minutes to set a new duration to an existing timer. -->
<string name="timer_minutes_warning_box_text">Enter a value between 0 and 59 minutes</string>
<!-- Text of dialog box to edit seconds to set a new duration to an existing timer. -->
<string name="timer_seconds_warning_box_text">Enter a value between 0 and 59 seconds</string>
<!-- Title of dialog box to edit button for adding time to timer. -->
<string name="timer_button_time_box_title">Minutes to add to the timer</string>
<!-- Text of dialog box to edit minutes for adding time to timer. -->
<string name="timer_button_time_minutes_warning_box_text">Enter a value between 0 and 60 minutes</string>
<!-- Text of dialog box to edit seconds for adding time to timer. -->
<string name="timer_button_time_seconds_warning_box_text">Enter a value between 0 and 59 seconds</string>
<!-- Title of dialog box to edit timers if an entered value is incorrect. -->
<string name="timer_time_warning_box_title">Incorrect value entered</string>
<!-- Describes the purpose of the button to add a new timer -->
<string name="timer_add_timer">Add Timer</string>
<!-- Describes the purpose of the button to begin or continue running a timer -->
<string name="timer_start">Start</string>
<!-- Talkback description for deleting a number. -->
<string name="timer_descriptive_delete">Delete <xliff:g id="number_string">%s</xliff:g></string>
<!-- Describes the purpose of the button increase the remaining time on a timer by x minute. -->
<string name="timer_add_custom_time_description">Add %s Minute</string>
<!-- Describes the purpose of the button increase the remaining time on a timer by x minute and x seconds. -->
<string name="timer_add_custom_time_with_seconds_description">Add %1$s Minute %2$s Seconds</string>
<!-- Like "timer_add_custom_time_description", but with 'minute' abbreviated for the notification. -->
<string name="timer_add_custom_time_for_notification">Add %s min</string>
<!-- Like "timer_add_custom_time_with_seconds_description", but with 'minute' and 'second' abbreviated for the notification. -->
<string name="timer_add_custom_time_with_seconds_for_notification">Add %1$s min %2$s s</string>
<!-- Label for adding custom time to a timer. [CHAR LIMIT=10] -->
<string name="timer_add_custom_time">+ %s</string>
<!-- Describes the purpose of the button to stop the timer. -->
<string name="timer_stop">Stop</string>
<!-- Describes the purpose of the button to stop all currently firing timers. [CHAR LIMIT=25] -->
<string name="timer_stop_all">Stop all timers</string>
<!-- Accessibility announcement when a timer is canceled. -->
<string name="timer_canceled">Timer canceled</string>
<!-- Notification content shown when a timer has completed and has no more time remaining -->
<string name="timer_times_up">Time\'s up</string>
<!--
Notification content shown when multiple timers have completed and have no more time
remaining. Arg is the number of timers. [CHAR LIMIT=25]
-->
<string name="timer_multi_times_up"><xliff:g example="2" id="NUM_TIMERS">%d</xliff:g> timers expired</string>
<!--
Notification content shown when multiple timers have been missed. Arg is the number of
timers. [CHAR LIMIT=25]
-->
<string name="timer_multi_missed"><xliff:g example="2" id="number">%d</xliff:g> timers missed</string>
<!-- Label associated with a notification for a Timer -->
<string name="timer_notification_label">Timer</string>
<!-- Label associated with a notification for a missed Timer. [CHAR LIMIT=30] -->
<!-- Label associated with a notification for a missed named Timer. [CHAR LIMIT=NONE] -->
<string name="missed_named_timer_notification_label">Missed timer: <xliff:g example="Pick up kids" id="name">%s</xliff:g></string>
<!-- Describes the purpose of the notification button to pause the timer. [CHAR LIMIT=15] -->
<string name="timer_pause">Pause</string>
<!-- Describes the purpose of the notification button to reset all running timers. [CHAR LIMIT=31] -->
<string name="timer_reset_all">Reset all timers</string>
<string name="hours_minutes_seconds"><xliff:g example="2" id="hours">%1$d</xliff:g>:<xliff:g example="3" id="minutes">%2$02d</xliff:g>:<xliff:g example="44" id="seconds">%3$02d</xliff:g></string>
<string name="minutes_seconds"><xliff:g example="3" id="minutes">%1$d</xliff:g>:<xliff:g example="44" id="seconds">%2$02d</xliff:g></string>
<string name="seconds_only" translatable="false"><xliff:g example="44" id="seconds">%1$02d</xliff:g></string>
<!-- Jocular content that user may append when sharing the lap times - Message 1 -->
<string name="jocular_content_message_1">You\'re quite the speed demon.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 2 -->
<string name="jocular_content_message_2">Enjoy the fruits of your labor.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 3 -->
<string name="jocular_content_message_3">Androids are known to be fast, but not as fast as you!</string>
<!-- Jocular content that user may append when sharing the lap times - Message 4 -->
<string name="jocular_content_message_4">Phew.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 5 -->
<string name="jocular_content_message_5">L33t times.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 6 -->
<string name="jocular_content_message_6">Such prodigious velocity.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 7 -->
<string name="jocular_content_message_7">Let\'s do the time warp again.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 8 -->
<string name="jocular_content_message_8">Just a jump to the left.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 9 -->
<string name="jocular_content_message_9">You have a palette for haste.</string>
<!-- Jocular content that user may append when sharing the lap times - Message 10 -->
<string name="jocular_content_message_10">Photonic velocity.</string>
<!-- Title with the clock on the main page displaying the user's regular timezone (shows when automatic_home_clock enabled) -->
<string name="home_label">Home</string>
<!-- Label for the Cities activity displayed on-screen when that activity must be represented to the user. -->
<string name="cities_activity_title">Cities</string>
<!-- Header in the preferences settings for the section pertaining to clocks on the main fragment -->
<string name="clock_settings">Clock</string>
<string name="clock_settings_summary">Set style, time zone and change device date and time</string>
<!-- Header for a Clock Dream Setting referring to choosing analog or digital style -->
<string name="clock_style">Style</string>
<!-- Header for a setting referring to showing seconds on the main clock -->
<string name="display_clock_seconds_pref">Display time with seconds</string>
<!-- Header for a setting referring to hiding the AM/PM part on the main clock -->
<string name="hide_clock_am_pm_pref">Hide AM/PM text</string>
<!-- Title for preference to change date & time -->
<string name="open_date_settings">Change date \u0026 time</string>
<!-- Setting title for changing the clock style to Analog. -->
<string name="clock_style_analog">Analog</string>
<!-- Setting title for changing the clock style to Analog (Material). -->
<string name="clock_style_analog_material">Analog (Material)</string>
<!-- Setting title for changing the clock style to Digital. -->
<string name="clock_style_digital">Digital</string>
<!-- Setting title for changing the clock style to Spinner. -->
<string name="clock_style_spinner">Spinner</string>
<!-- Title for an option that will automatically show a clock representing the user's regular timezone on the main fragment whenever the user leaves their regular timezone-->
<string name="automatic_home_clock">Automatic home clock</string>
<!-- Describes the functionality provided by the automatic_home_clock option -->
<string name="automatic_home_clock_summary">While traveling in an area where the time is different, add a clock for home</string>
<!-- Title in the preferences change the time zone for the user's home -->
<string name="home_time_zone">Home time zone</string>
<!-- Title in a list dialog box to pick a time zone for the user's home -->
<!--
Accessibility string read when a city checkbox is checked.
Ex. "Ann Arbor checked"
-->
<string name="city_checked"><xliff:g id="city_name">%s</xliff:g> checked</string>
<!--
Accessibility string read when a city checkbox is unchecked.
Ex. "Ann Arbor unchecked"
-->
<string name="city_unchecked"><xliff:g id="city_name">%s</xliff:g> unchecked</string>
<!-- Choices for timezones, must be kept in sync with timezone_values. CHAR LIMIT=25] -->
<string-array name="timezone_labels" tools:ignore="Typos">
<item>"Marshall Islands"</item>
<item>"Midway Island"</item>
<item>"Hawaii"</item>
<item>"Alaska"</item>
<item>"Pacific Time"</item>
<item>"Tijuana"</item>
<item>"Arizona"</item>
<item>"Chihuahua"</item>
<item>"Mountain Time"</item>
<item>"Central America"</item>
<item>"Central Time"</item>
<item>"Mexico City"</item>
<item>"Saskatchewan"</item>
<item>"Bogota"</item>
<item>"Eastern Time"</item>
<item>"Venezuela"</item>
<item>"Atlantic Time (Barbados)"</item>
<item>"Atlantic Time (Canada)"</item>
<item>"Manaus"</item>
<item>"Santiago"</item>
<item>"Newfoundland"</item>
<item>"Brasilia"</item>
<item>"Buenos Aires"</item>
<item>"Greenland"</item>
<item>"Montevideo"</item>
<item>"Mid-Atlantic"</item>
<item>"Azores"</item>
<item>"Cape Verde Islands"</item>
<item>"Casablanca"</item>
<item>"London, Dublin"</item>
<item>"Amsterdam, Berlin"</item>
<item>"Belgrade"</item>
<item>"Brussels"</item>
<item>"Sarajevo"</item>
<item>"Windhoek"</item>
<item>"W. Africa Time"</item>
<item>"Amman, Jordan"</item>
<item>"Athens, Istanbul"</item>
<item>"Beirut, Lebanon"</item>
<item>"Cairo"</item>
<item>"Helsinki"</item>
<item>"Jerusalem"</item>
<item>"Minsk"</item>
<item>"Harare"</item>
<item>"Baghdad"</item>
<item>"Moscow"</item>
<item>"Kuwait"</item>
<item>"Nairobi"</item>
<item>"Tehran"</item>
<item>"Baku"</item>
<item>"Tbilisi"</item>
<item>"Yerevan"</item>
<item>"Dubai"</item>
<item>"Kabul"</item>
<item>"Islamabad, Karachi"</item>
<item>"Ural'sk"</item>
<item>"Yekaterinburg"</item>
<item>"Kolkata"</item>
<item>"Sri Lanka"</item>
<item>"Kathmandu"</item>
<item>"Astana"</item>
<item>"Yangon"</item>
<item>"Krasnoyarsk"</item>
<item>"Bangkok"</item>
<item>"Beijing"</item>
<item>"Hong Kong"</item>
<item>"Irkutsk"</item>
<item>"Kuala Lumpur"</item>
<item>"Perth"</item>
<item>"Taipei"</item>
<item>"Seoul"</item>
<item>"Tokyo, Osaka"</item>
<item>"Yakutsk"</item>
<item>"Adelaide"</item>
<item>"Darwin"</item>
<item>"Brisbane"</item>
<item>"Hobart"</item>
<item>"Sydney, Canberra"</item>
<item>"Vladivostok"</item>
<item>"Guam"</item>
<item>"Magadan"</item>
<item>"Auckland"</item>
<item>"Fiji"</item>
<item>"Tonga"</item>
<item>"Jakarta"</item>
</string-array>
<!-- Choices for timezones, must be kept in sync with timezone_values. -->
<string-array name="timezone_values" translatable="false" tools:ignore="Typos">
<item>Pacific/Majuro</item>
<item>Pacific/Midway</item>
<item>Pacific/Honolulu</item>
<item>America/Anchorage</item>
<item>America/Los_Angeles</item>
<item>America/Tijuana</item>
<item>America/Phoenix</item>
<item>America/Chihuahua</item>
<item>America/Denver</item>
<item>America/Costa_Rica</item>
<item>America/Chicago</item>
<item>America/Mexico_City</item>
<item>America/Regina</item>
<item>America/Bogota</item>
<item>America/New_York</item>
<item>America/Caracas</item>
<item>America/Barbados</item>
<item>America/Halifax</item>
<item>America/Manaus</item>
<item>America/Santiago</item>
<item>America/St_Johns</item>
<item>America/Sao_Paulo</item>
<item>America/Argentina/Buenos_Aires</item>
<item>America/Godthab</item>
<item>America/Montevideo</item>
<item>Atlantic/South_Georgia</item>
<item>Atlantic/Azores</item>
<item>Atlantic/Cape_Verde</item>
<item>Africa/Casablanca</item>
<item>Europe/London</item>
<item>Europe/Amsterdam</item>
<item>Europe/Belgrade</item>
<item>Europe/Brussels</item>
<item>Europe/Sarajevo</item>
<item>Africa/Windhoek</item>
<item>Africa/Brazzaville</item>
<item>Asia/Amman</item>
<item>Europe/Athens</item>
<item>Asia/Beirut</item>
<item>Africa/Cairo</item>
<item>Europe/Helsinki</item>
<item>Asia/Jerusalem</item>
<item>Europe/Minsk</item>
<item>Africa/Harare</item>
<item>Asia/Baghdad</item>
<item>Europe/Moscow</item>
<item>Asia/Kuwait</item>
<item>Africa/Nairobi</item>
<item>Asia/Tehran</item>
<item>Asia/Baku</item>
<item>Asia/Tbilisi</item>
<item>Asia/Yerevan</item>
<item>Asia/Dubai</item>
<item>Asia/Kabul</item>
<item>Asia/Karachi</item>
<item>Asia/Oral</item>
<item>Asia/Yekaterinburg</item>
<item>Asia/Calcutta</item>
<item>Asia/Colombo</item>
<item>Asia/Katmandu</item>
<item>Asia/Almaty</item>
<item>Asia/Rangoon</item>
<item>Asia/Krasnoyarsk</item>
<item>Asia/Bangkok</item>
<item>Asia/Shanghai</item>
<item>Asia/Hong_Kong</item>
<item>Asia/Irkutsk</item>
<item>Asia/Kuala_Lumpur</item>
<item>Australia/Perth</item>
<item>Asia/Taipei</item>
<item>Asia/Seoul</item>
<item>Asia/Tokyo</item>
<item>Asia/Yakutsk</item>
<item>Australia/Adelaide</item>
<item>Australia/Darwin</item>
<item>Australia/Brisbane</item>
<item>Australia/Hobart</item>
<item>Australia/Sydney</item>
<item>Asia/Vladivostok</item>
<item>Pacific/Guam</item>
<item>Asia/Magadan</item>
<item>Pacific/Auckland</item>
<item>Pacific/Fiji</item>
<item>Pacific/Tongatapu</item>
<item>Asia/Jakarta</item>
</string-array>
<!-- Menu item About -->
<string name="about_title">About</string>
<!-- App slogan -->
<string name="app_slogan">100% FOSS Clock, based on AOSP</string>
<!-- Version for about screen -->
<string name="version">Version</string>
<!-- Version text [CHAR LIMIT=30] -->
<string name="version_text">Version <xliff:g id="VERSION_NUMBER" example="1.0">%1$s</xliff:g></string>
<!-- What's new features title -->
<string name="whats_new_title">What\'s new</string>
<!-- What's new dialog message in about screen -->
<string name="whats_new_dialog_message">Discover what\'s new:\n\n%s</string>
<!-- Features title -->
<string name="features_title">Main features</string>
<!-- Github repo link for about screen -->
<string name="about_github_link">View on GitHub</string>
<!-- Github dialog message in about screen -->
<string name="github_dialog_message">Visit the project GitHub page:\n\n%s</string>
<!-- Translate link for about screen -->
<string name="about_translate_link">Translate on Codeberg</string>
<!-- Translate dialog message in about screen -->
<string name="translate_dialog_message">Visit the Codeberg page:\n\n%s</string>
<!-- License for about screen -->
<string name="license">Open-source license</string>
<!-- License dialog message in about screen -->
<string name="license_dialog_message">Read the licence:\n\n%s</string>
<!-- License link for about screen -->
<string name="gnu_gpl">GNU General Public License v3.0</string>
<!-- Contributors title -->
<string name="contributors">Contributors</string>
<!-- Contributors dialog title in about screen -->
<string name="contributors_dialog_title">View profile</string>
<!-- Contributors dialog message in about screen -->
<string name="contributors_dialog_message">Visit %1$s\'s GitHub page:\n\n%2$s</string>
<!-- Credits title -->
<string name="credits">Credits</string>
<!-- About features text -->
<string name="about_dialog_message">
• Set the alarms to a specific date;
\n\n• Flip and shake action to dismiss/postpone alarm;
\n\n• Turn off/postpone the alarm with the power button or volume buttons;
\n\n• For some Snapdragon devices only, the alarm is triggered when they are switched off;
\n\t\t Unfortunately, this feature may not work on some devices despite the presence of the <i>\"com.qualcomm.qti.poweroffalarm\"</i> system app.
\n\n• Swipe to delete an alarm;
\n\n• Duplicate alarms;
\n\n• Customize alarm title;
\n\n• Customizable ringtone;
\n\n• Light, dark or system theme;
\n\n• AMOLED mode for dark theme;
\n\n• Digital or analog clock style;
\n\n• Display home time when traveling;
\n\n• Display the time in many cities around the world;
\n\n• Timer and stopwatch included;
\n\n• Possibility of sharing your stopwatch with your contacts;
\n\n• Customizable screensaver;
\n\n• Modern widgets;
\n\n• Customizable widgets;
\n\n• Support for tiles in quick settings (for Android 7+);
\n\n• Backup and restore application data (except custom ringtones);
\n\n• Material design;
\n\n• Dynamic colors for Android 12+;
</string>
<!-- Title button to reset all settings -->
<string name="reset_settings_title">Reset settings</string>
<!-- Confirmation message to reset all settings -->
<string name="reset_settings_message">Are you sure you want to reset all app settings?
\n\nNote: custom ringtones will not be reset.
</string>
<!-- Toast message when reset is complete -->
<string name="toast_message_for_reset">Reset completed</string>
<!-- Button to close a dialog where neither "ok" nor "cancel" are suitable -->
<string name="dialog_close">Close</string>
<!-- Short label for a shortcut to create a new alarm. The maximum length is ~10 characters
(longer translations may be truncated). -->
<string name="shortcut_new_alarm_short">New alarm</string>
<!-- Long label for a shortcut to create a new alarm. The maximum length is ~25 characters
(longer translations may be truncated). -->
<string name="shortcut_new_alarm_long">Create new alarm</string>
<!-- Short label for a shortcut to create a new timer. The maximum length is ~10 characters
(longer translations may be truncated). -->
<string name="shortcut_new_timer_short">New timer</string>
<!-- Long label for a shortcut to create a new timer. The maximum length is ~25 characters
(longer translations may be truncated). -->
<string name="shortcut_new_timer_long">Create new timer</string>
<!-- Short label for a shortcut to start the stopwatch. The maximum length is ~10 characters
(longer translations may be truncated). -->
<string name="shortcut_start_stopwatch_short">Start</string>
<!-- Long label for a shortcut to start the stopwatch. The maximum length is ~25 characters