summaryrefslogtreecommitdiffstats
path: root/res/values/strings.xml
blob: 86686f8f154c2519fd0743d759110cb041e80225 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2016 The Android Open Source Project

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  -->

<resources
    xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"
    xmlns:tools="http://schemas.android.com/tools">

    <!-- 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>

    <!-- Setting label on Set alarm screen: Label -->
    <string name="label">Label</string>

    <!-- Default label to display for an alarm -->
    <string name="default_label">Alarm</string>

    <!-- Setting labels on Set alarm screen: Vibration on or off -->
    <string name="alarm_vibrate">Vibrate</string>

    <!-- Setting labels on Set alarm screen: Repeat -->
    <string name="alarm_repeat">Repeat</string>

    <!-- Setting labels on Set alarm screen: Delete [CHAR LIMIT=15] -->
    <string name="delete">Delete</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 removing a ringtone sound [CHAR LIMIT=30] -->
    <string name="remove_sound">Remove</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 [CHAR LIMIT=15] -->
    <string name="alarm_tomorrow">Tomorrow</string>

    <!-- Label shown when user is setting up non-repeating alarm for later today [CHAR LIMIT=15] -->
    <string name="alarm_today">Today</string>

    <!-- Button labels on the alarm dialog: Dismiss -->
    <string name="alarm_alert_dismiss_text">Dismiss</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">%s</xliff:g> - <xliff:g id="alarm_label">%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 id="number" example="7">%d</xliff:g> min</item>
    </plurals>

    <!-- The text shown after user dismissed an alerting alarm [CHAR LIMIT=15] -->
    <string name="alarm_alert_off_text">Alarm off</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 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 id="HOURS" example="2 hours">%1$s</xliff:g><xliff:g id="REMAINING" example="remaining"> %3$s</xliff:g></string>
    <string name="timer_notifications_minutes"><xliff:g id="MINUTES" example="2 minutes">%2$s</xliff:g><xliff:g id="REMAINING" example="remaining"> %3$s</xliff:g></string>
    <string name="timer_notifications_hours_minutes"><xliff:g id="HOURS" example="2 hours">%1$s</xliff:g><xliff:g id="MINUTES" example="2 minutes"> %2$s</xliff:g> remaining</string>
    <string name="timer_notifications_seconds"><xliff:g id="SECONDS" example="2 seconds">%4$s</xliff:g><xliff:g id="REMAINING" example="remaining"> %3$s</xliff:g></string>
    <string name="timer_notifications_minutes_seconds"><xliff:g id="MINUTES" example="2 minutes">%2$s</xliff:g> <xliff:g id="SECONDS" example="2 seconds"> %4$s</xliff:g><xliff:g id="REMAINING" example="remaining"> %3$s</xliff:g></string>
    <string name="timer_notifications_hours_seconds"><xliff:g id="HOURS" example="2 hours">%1$s</xliff:g> <xliff:g id="SECONDS" example="2 seconds"> %4$s</xliff:g><xliff:g id="REMAINING" example="remaining"> %3$s</xliff:g></string>
    <string name="timer_notifications_hours_minutes_seconds"><xliff:g id="HOURS" example="2 hours">%1$s</xliff:g><xliff:g id="MINUTES" example="2 minutes"> %2$s</xliff:g><xliff:g id="SECONDS" example="2 seconds"> %4$s</xliff:g><xliff:g id="REMAINING" example="remaining"> %3$s</xliff:g></string>

    <!-- Timer accessibility announcements -->
    <string name="timer_accessibility_one_minute_added">One minute added to timer, <xliff:g id="TIME" example="5 hours remaining">%1$s</xliff:g></string>
    <string name="timer_accessibility_stopped">Timer paused, <xliff:g id="TIME" example="5 hours remaining">%1$s</xliff:g></string>
    <string name="timer_accessibility_started">Timer running, <xliff:g id="TIME" example="5 hours remaining">%1$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 -->
    <string-array name="alarm_set">
        <item>Alarm set for less than 1 minute from now.</item>
        <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item>
        <item>Alarm set for <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g> from now.</item>
        <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> and <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g> from now.</item>
        <item>Alarm set for <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item>
        <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> and <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item>
        <item>Alarm set for <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g> and <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item>
        <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g>, <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g>, and <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item>
    </string-array>

    <!-- 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 id="number" example="7">%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 id="number" example="7">%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 id="number" example="7">%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 id="number" example="7">%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 id="number" example="7">%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 id="number" example="7">%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 gadget displayed in the widget picker. [CHAR LIMIT=18] -->
    <string name="analog_gadget">Analog clock</string>

    <!-- Label for digital clock gadget displayed in the widget picker. [CHAR LIMIT=18] -->
    <string name="digital_gadget">Digital clock</string>

    <!-- Settings activity name -->
    <!-- Label for the Settings activity displayed on-screen when that activity must be represented to the user. -->
    <string name="settings">Settings</string>

    <!-- Setting title for changing the snooze duration. -->
    <string name="snooze_duration_title">Snooze length</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 string set based on the preference value. -->
    <plurals name="auto_silence_summary">
        <!-- Duration for one minute -->
        <item quantity="one">1 minute</item>
        <!-- Duration for more than one minute -->
        <item quantity="other"><xliff:g id="formatted_number" example="7">%s</xliff:g> minutes</item>
    </plurals>


    <!-- Auto silence summary when turned off -->
    <string name="auto_silence_never">Never</string>

    <!-- Entries listed in the ListPreference when invoking the auto silence
         preference. -->
    <string-array name="auto_silence_entries">
        <item>1 minute</item>
        <item>5 minutes</item>
        <item>10 minutes</item>
        <item>15 minutes</item>
        <item>20 minutes</item>
        <item>25 minutes</item>
        <item>Never</item>
    </string-array>

    <!-- Values that are retrieved from the ListPreference. These must match
         the auto_silence_entries above. -->
    <string-array name="auto_silence_values" translatable="false">
        <item>1</item>
        <item>5</item>
        <item>10</item>
        <item>15</item>
        <item>20</item>
        <item>25</item>
        <item>-1</item> <!-- Off -->
    </string-array>

    <!-- Entries listed in the ListPreference when invoking gradually increase
     volume preferences. -->
    <string-array name="crescendo_entries">
        <item>Off</item>
        <item>5 seconds</item>
        <item>10 seconds</item>
        <item>15 seconds</item>
        <item>20 seconds</item>
        <item>25 seconds</item>
        <item>30 seconds</item>
        <item>35 seconds</item>
        <item>40 seconds</item>
        <item>45 seconds</item>
        <item>50 seconds</item>
        <item>55 seconds</item>
        <item>60 seconds</item>
    </string-array>

    <!-- Values that are retrieved from the ListPreference. These must match
         the crescendo_entries above. -->
    <string-array name="crescendo_values" translatable="false">
        <item>0</item>
        <item>5</item>
        <item>10</item>
        <item>15</item>
        <item>20</item>
        <item>25</item>
        <item>30</item>
        <item>35</item>
        <item>40</item>
        <item>45</item>
        <item>50</item>
        <item>55</item>
        <item>60</item>
    </string-array>

    <!-- Entries listed in the ListPreference when invoking the snooze duration preference -->
    <string-array name="snooze_duration_entries">
        <item>1 minute</item>
        <item>2 minutes</item>
        <item>3 minutes</item>
        <item>4 minutes</item>
        <item>5 minutes</item>
        <item>6 minutes</item>
        <item>7 minutes</item>
        <item>8 minutes</item>
        <item>9 minutes</item>
        <item>10 minutes</item>
        <item>11 minutes</item>
        <item>12 minutes</item>
        <item>13 minutes</item>
        <item>14 minutes</item>
        <item>15 minutes</item>
        <item>16 minutes</item>
        <item>17 minutes</item>
        <item>18 minutes</item>
        <item>19 minutes</item>
        <item>20 minutes</item>
        <item>21 minutes</item>
        <item>22 minutes</item>
        <item>23 minutes</item>
        <item>24 minutes</item>
        <item>25 minutes</item>
        <item>26 minutes</item>
        <item>27 minutes</item>
        <item>28 minutes</item>
        <item>29 minutes</item>
        <item>30 minutes</item>
    </string-array>

    <!-- Values that are retrieved from the ListPreference. These must match
         the snooze_duration_entries above. -->
    <string-array name="snooze_duration_values" translatable="false">
        <item>1</item>
        <item>2</item>
        <item>3</item>
        <item>4</item>
        <item>5</item>
        <item>6</item>
        <item>7</item>
        <item>8</item>
        <item>9</item>
        <item>10</item>
        <item>11</item>
        <item>12</item>
        <item>13</item>
        <item>14</item>
        <item>15</item>
        <item>16</item>
        <item>17</item>
        <item>18</item>
        <item>19</item>
        <item>20</item>
        <item>21</item>
        <item>22</item>
        <item>23</item>
        <item>24</item>
        <item>25</item>
        <item>26</item>
        <item>27</item>
        <item>28</item>
        <item>29</item>
        <item>30</item>
    </string-array>

    <!-- Week start day preference title. -->
    <string name="week_start_title">Start week on</string>

    <!-- Entries listed in ListPreference for start day. -->
    <string-array name="week_start_entries">
        <item>Saturday</item>
        <item>Sunday</item>
        <item>Monday</item>
    </string-array>

    <!-- Values for ListPreference for start day of week. -->
    <string-array name="week_start_values" translatable="false">
        <item>7</item> <!-- Calendar.SATURDAY -->
        <item>1</item> <!-- Calendar.SUNDAY -->
        <item>2</item> <!-- Calendar.MONDAY -->
    </string-array>

    <!-- 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 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 app notifications are blocked. [CHAR LIMIT=50] -->
    <string name="app_notifications_blocked">Clock notifications are blocked</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 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>

    <!-- Entries listed in the setting for the side-button action. -->
    <string-array name="volume_button_setting_entries">
        <item>Snooze</item>
        <item>Dismiss</item>
        <item>Control volume</item>
    </string-array>

    <!-- Values for the side-button setting. -->
    <string-array name="volume_button_setting_values" translatable="false">
        <item>1</item>
        <item>2</item>
        <item>0</item>
    </string-array>

    <!-- Accessibility labels for Clock activity buttons -->
    <skip />

    <!-- Accessibility labels for alarm buttons -->
    <string name="label_description">Label</string>
    <string name="ringtone_description">Ringtone</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 -->
    <string name="menu_item_settings">Settings</string>
    <!-- Menu item on most screens to get to the help information -->
    <string name="menu_item_help">Help</string>
    <!-- Menu item on clock screen to enter screen saver. -->
    <string name="menu_item_night_mode">Screen saver</string>
    <!-- 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>
    <!--
        Describes the purpose of the button
            for stopwatch: return stopwatch to zero and remove the lap times.
            for timer: return timer to originally set duration.
        [CHAR LIMIT=15]
    -->
    <string name="sw_reset_button">Reset</string>

    <!-- Stopwatch strings -->
    <!-- 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 id="hours" example="1 hour">%1$s</xliff:g>, <xliff:g id="minutes" example="15 minutes">%2$s</xliff:g>, <xliff:g id="seconds" example="30 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 -->
    <!-- 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>
    <!-- Describes the purpose of the button to delete a timer. -->
    <string name="timer_delete">Delete</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 one minute. -->
    <string name="timer_plus_one">Add 1 Minute</string>
    <!-- Label for adding one minute to a timer. [CHAR LIMIT=10] -->
    <string name="timer_add_minute">+ 1:00</string>
    <!-- Like "timer_plus_one", but with 'minute' abbreviated for the notification. -->
    <string name="timer_plus_1_min">Add 1 min</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>
    <!-- Describes the purpose of the button to return the timer to it's original starting value. -->
    <string name="timer_reset">Reset</string>
    <!-- Describes the purpose of the button to discard the current dialog values. Will also close the dialog if other time's exist -->
    <string name="timer_cancel">Cancel</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 id="NUM_TIMERS" example="2">%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 id="number" example="2">%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] -->
    <string name="missed_timer_notification_label">Missed timer</string>
    <!-- Label associated with a notification for a missed named Timer. [CHAR LIMIT=NONE] -->
    <string name="missed_named_timer_notification_label">Missed timer: <xliff:g id="name" example="Pick up kids">%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 id="hours" example="2">%d</xliff:g>:<xliff:g id="minutes" example="3">%02d</xliff:g>:<xliff:g id="seconds" example="44">%02d</xliff:g></string>
    <string name="minutes_seconds"><xliff:g id="minutes" example="3">%d</xliff:g>:<xliff:g id="seconds" example="44">%02d</xliff:g></string>
    <string name="seconds"><xliff:g id="seconds" example="44">%d</xliff:g></string>

    <!-- Jocular content that user may append when sharing the lap times -->
    <string-array name="sw_share_strings" translatable="true">
        <item>You\'re quite the speed demon.</item>
        <item>Enjoy the fruits of your labor.</item>
        <item>Androids are known to be fast, but not as fast as you!</item>
        <item>Phew.</item>
        <item>L33t times.</item>
        <item>Such prodigious velocity.</item>
        <item>Let\'s do the time warp again.</item>
        <item>Just a jump to the left.</item>
        <item>You have a palette for haste.</item>
        <item>Photonic velocity.</item>
    </string-array>

    <!-- 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>

    <!-- Settings strings -->
    <!-- Header in the preferences settings for the section pertaining to clocks on the main fragment -->
    <string name="clock_settings">Clock</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>

    <!-- Title for preference to change date & time -->
    <string name="open_date_settings">Change date \u0026 time</string>

    <!-- Entries listed in the ListPreference when invoking the clock style
         preference. -->
    <string-array name="clock_style_entries">
        <item>Analog</item>
        <item>Digital</item>
    </string-array>

    <!-- Values that are retrieved from the ListPreference. These must match
         the clock_style_entries above. -->
    <string-array name="clock_style_values" translatable="false">
        <item>analog</item>
        <item>digital</item>
    </string-array>

    <!-- 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 -->
    <string name="home_time_zone_title">Home time zone</string>

    <!--
        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>

    <!-- 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
         (longer translations may be truncated). -->
    <string name="shortcut_start_stopwatch_long">Start stopwatch</string>
    <!-- Short label for a shortcut to pause the stopwatch. The maximum length is ~10 characters
         (longer translations may be truncated). -->
    <string name="shortcut_pause_stopwatch_short">Pause</string>
    <!-- Long label for a shortcut to pause the stopwatch. The maximum length is ~25 characters
         (longer translations may be truncated). -->
    <string name="shortcut_pause_stopwatch_long">Pause stopwatch</string>
    <!-- Short label for a shortcut to start the screensaver. The maximum length is ~10 characters
         (longer translations may be truncated). -->
    <string name="shortcut_start_screensaver_short">Screen saver</string>
    <!-- Long label for a shortcut to start the screensaver. The maximum length is ~25 characters
         (longer translations may be truncated). -->
    <string name="shortcut_start_screensaver_long">Start screen saver</string>

    <!-- Header in the preferences settings for the section pertaining to alarms -->
    <string name="alarm_settings">Alarms</string>
    <!-- Describes the service that processes actions originating from timer notifications. -->
    <string name="timer_service_desc">Processes actions from timer notifications.</string>
    <!-- Describes the service that processes actions originating from stopwatch notifications. -->
    <string name="stopwatch_service_desc">Processes actions from stopwatch notifications.</string>
    <!-- Description for the paused stop watch -->
    <string name="swn_paused">Paused</string>

    <!-- Text instruction for dismiss alarm on alarm lock screen. The dismiss button will still
         be on the right even on RTL languages so please do not reverse this during
         translation. -->
    <string name="description_direction_right">Swipe right to dismiss</string>
    <!-- Text instruction for snooze alarm on alarm lock screen. The snooze button will still
         be on the left even on RTL languages so please do not reverse this during
         translation. -->
    <string name="description_direction_left">Swipe left to snooze</string>
    <!-- Text instruction for alarm icon on alarm lock screen. The snooze button will still
         be on the left even on RTL languages so please do not reverse this during
         translation. -->
    <string name="description_direction_both">Swipe left to snooze or right to dismiss</string>

    <!-- Header in the preferences settings for the section pertaining to timers. -->
    <string name="timer_settings">Timers</string>
    <!-- Description for timer vibration. -->
    <string name="timer_vibrate_title">Timer vibrate</string>

    <!-- Notification title when timer is paused. [CHAR LIMIT=25] -->
    <string name="timer_paused">Timer paused</string>
    <!-- Notification title when multiple timers are paused. [CHAR LIMIT = 30] -->
    <string name="timers_stopped"><xliff:g id="number" example="7">%d</xliff:g> timers paused</string>
    <!-- Notification text when multiple timers are paused. -->
    <string name="all_timers_stopped_notif">Tap to see your timers</string>
    <!-- Notification title when at least one timer, of those in use, is counting down. -->
    <string name="timers_in_use"><xliff:g id="number" example="7">%d</xliff:g> timers</string>
    <!-- Notification text when at least one timer, of those in use, is counting down. -->
    <string name="next_timer_notif">Next timer: <xliff:g id="time_remaining" example="2 minutes remaining">%s</xliff:g></string>

    <!-- screensaver settings strings -->
    <!-- Title for the screen saver settings activity. -->
    <string name="screensaver_settings">Screen saver settings</string>
    <!-- Title for check box to pick intensity of display diminuation during screen saver -->
    <string name="night_mode_title">Night mode</string>
    <!-- Describes intensity of display diminuation during screen saver -->
    <string name="night_mode_summary">Very dim display (for dark rooms)</string>

    <!-- Description of the down caret in the alarm alert screen to expand the alarm content to edit perspective. [CHAR LIMIT=NONE] -->
    <string name="expand_alarm">Expand alarm</string>
    <!-- Description of the up caret in the alarm alert screen to collapse the alarm content to summary perspective. [CHAR LIMIT=NONE] -->
    <string name="collapse_alarm">Collapse alarm</string>

    <!-- Description of the button to undo change to alarm -->
    <string name="alarm_undo">undo</string>
    <!-- Toast content when an alarm was deleted  -->
    <string name="alarm_deleted">Alarm deleted</string>

    <!-- slash between date and next alarm in the clock: used for the DigitalAppWidget -->
    <string name="world_day_of_week_label"> / <xliff:g id="label">%s</xliff:g></string>

    <!-- Number of hours or minutes the world city is ahead of the current city [CHAR LIMIT=NONE] -->
    <string name="world_time_ahead"><xliff:g id="time" example="6 hours">%1$s</xliff:g> ahead</string>
    <!-- Number of hours or minutes the world city is behind the current city [CHAR LIMIT=NONE] -->
    <string name="world_time_behind"><xliff:g id="time" example="4 hours">%1$s</xliff:g> behind</string>
    <!-- Number of hours and minutes the world city is ahead of the current city [CHAR LIMIT=NONE] -->
    <string name="world_hours_minutes_ahead"><xliff:g id="hours" example="6 hr">%1$s</xliff:g> <xliff:g id="minutes" example="30 min">%2$s</xliff:g> ahead</string>
    <!-- Number of hours and minutes the world city is behind the current city [CHAR LIMIT=NONE] -->
    <string name="world_hours_minutes_behind"><xliff:g id="hours" example="4 hr">%1$s</xliff:g> <xliff:g id="minutes" example="30 min">%2$s</xliff:g> behind</string>
    <!-- The time and day the world city is ahead of the current city [CHAR LIMIT=NONE] -->
    <string name="world_hours_tomorrow">Tomorrow, <xliff:g id="time" example="6 hours ahead">%1$s</xliff:g></string>
    <!-- Number of hours the world city is behind the current city [CHAR LIMIT=NONE] -->
    <string name="world_hours_yesterday">Yesterday, <xliff:g id="time" example="4 hours behind">%1$s</xliff:g></string>
    <!-- The time in a world city is the day after the time in the current city (used in landscape) [CHAR LIMIT=NONE] -->
    <string name="world_tomorrow">Tomorrow</string>
    <!-- The time in a world city is the day before the time in the current city (used in landscape) [CHAR LIMIT=NONE] -->
    <string name="world_yesterday">Yesterday</string>

    <!-- Description of field showing the next alarm time in the clock page, for accessibility. -->
    <string name="next_alarm_description">Next alarm: <xliff:g id="alarm_time" example="Wed 8:00am">%s</xliff:g></string>

    <!-- String for no alarms -->
    <string name="no_alarms">No Alarms</string>

    <!-- String that represents that invalid time for an alarm was specified, e.g. 23:00am
     or 27:68pm.
    First %d represents hour, second %d represents minutes, %s represents am/pm,
    If no am/pm is passed in (e.g. the locale uses 24h time) only hour and minute are printed.
    [CHAR LIMIT=NONE]
    -->
    <string name="invalid_time">Invalid time <xliff:g id="invalid_hour" example="25">%1$d</xliff:g>:<xliff:g id="invalid_minutes" example="63">%2$d</xliff:g> <xliff:g id="invalid_ampm" example="PM">%3$s</xliff:g></string>

    <!-- String that represents that no alarm has been specified for a requested hour:minutes.
    This happens when a user sends a voice command 'dismiss my alarm at 3:00pm' but they have no
    alarms specified for that time. %s represents the time of the alarm.
    [CHAR LIMIT=NONE]
    -->
    <string name="no_alarm_at">No alarm at <xliff:g id="alarm_time_hour" example="14">%1$d</xliff:g>:<xliff:g id="alarm_time_minutes" example="23">%2$d</xliff:g></string>

    <!-- String that represents that the user doesn't have any alarms scheduled. This happens when
    a user sends a voice command 'dismiss next alarm' or 'dismiss all of my alarms' but they have
    no alarms scheduled in the app.
    [CHAR LIMIT=NONE]
    -->
    <string name="no_scheduled_alarms">No scheduled alarms</string>

    <!-- String that represents that the user specified that they want to select an alarm to
    dismiss by specifying a 'label' but they didn't specify any labels.
    [CHAR LIMIT=NONE]
    -->
    <string name="no_label_specified">No label specified</string>

    <!-- String that represents that no alarm has been specified for a requested label.
    This happens when a user sends a voice command 'dismiss my alarm with label pick up kids'
     but they have no alarms with that label.
    [CHAR LIMIT=NONE]
    -->
    <string name="no_alarms_with_label">No alarms contain the label</string>

    <!-- String that represents that the user has sent a voice command 'dismiss my alarm at 3pm' when
    there was no alarm scheduled for that time (they might have had an alarm for 3pm on the list
    but it was disabled).
    [CHAR LIMIT=NONE]
    -->
    <string name="no_alarm_scheduled_for_this_time">No alarm scheduled for this time</string>

    <!-- String that represents that the user has dismissed an alarm through a voice action.
    %s represents alarm time, e.g. 14:20
    [CHAR LIMIT=NONE]
    -->
    <string name="alarm_is_dismissed"><xliff:g id="alarm_time" example="14:20">%s</xliff:g> alarm dismissed</string>

    <!-- String that represents that the user has dismissed an alarm through a voice action.
    %s represents alarm time, e.g. 14:20
    [CHAR LIMIT=NONE]
    -->
    <string name="alarm_is_set">Alarm is set for <xliff:g id="alarm_time" example="14:20">%s</xliff:g></string>

    <!-- String that represents that the user has successfully created a timer through a voice action.
    [CHAR LIMIT=NONE]
    -->
    <string name="timer_created">Timer created</string>

    <!-- String that represents that the user has successfully reset a timer through a voice action
    that was marked as deleteAfterUse and was thus deleted instead.
    [CHAR LIMIT=NONE]
    -->
    <string name="timer_deleted">Timer deleted</string>

    <!-- String that represents that the user attempted to start a timer through a voice action
    but specified invalid length.
    [CHAR LIMIT=NONE]
    -->
    <string name="invalid_timer_length">Invalid timer length</string>

    <!-- String that represents that the user attempted to dismiss an alarm that is more than
    24 hours away
    %s represents the time of the alarm (e.g. 15:39)
    [CHAR LIMIT=NONE]
    -->
    <string name="alarm_cant_be_dismissed_still_more_than_24_hours_away"><xliff:g id="alarm_time" example="14:20">%s</xliff:g> alarm can\'t be dismissed yet, still more than 24 hours away</string>

    <!-- String that shows up in the action bar for the Picker Activity
         where a use gets to pick which alarm to dismiss
   [CHAR LIMIT=NONE]
   -->
    <string name="dismiss_alarm">Dismiss alarm</string>

    <!-- String that represents that further action is needed from the user in case their
    voice command was ambiguous or there are more than 1 alarms that match their request.
    The user needs to choose an alarm they want to dismiss through the UI
   [CHAR LIMIT=NONE]
   -->
    <string name="pick_alarm_to_dismiss">Pick which alarm to dismiss</string>

    <!-- String that represents that the user doesn't have any alarms firing at the moment.
    [CHAR LIMIT=NONE]
    -->
    <string name="no_firing_alarms">No firing alarms</string>

    <!-- String that represents that the user has snoozed an alarm through a voice action for 10
    minutes.
    %s represents alarm time, e.g. 14:20
    [CHAR LIMIT=NONE]
    -->
    <string name="alarm_is_snoozed"><xliff:g id="alarm_time" example="14:20">%s</xliff:g> alarm snoozed for 10 minutes</string>

    <!-- The user visible name of the stopwatch channel. -->
    <string name="stopwatch_channel_name">Stopwatch</string>
    <!-- The user visible name of the timers channel. -->
    <string name="timer_channel_name">Timers</string>
    <!-- The user visible name of the alarms channel. -->
    <string name="alarm_channel_name">Alarms</string>
</resources>