• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
18    <!-- -->
19    <!-- Label shown on launcher icon -->
20    <!-- Label for the this application displayed on-screen when this application must be represented to the user. -->
21    <string name="app_label">Clock</string>
22
23    <!-- Title for AlarmClock activity -->
24    <!-- Label for the Alarms activity displayed on-screen when that activity must be represented to the user. -->
25    <string name="alarm_list_title">Alarms</string>
26
27    <!-- Menu item on Alarm Clock screen: Add alarm -->
28    <string name="add_alarm">Add alarm</string>
29
30    <!-- Menu item on Alarm Clock screen: Desk clock -->
31    <string name="menu_desk_clock">Desk clock</string>
32
33    <!-- Menu item on Alarm Clock screen: Edit alarm -->
34    <string name="menu_edit_alarm">Edit alarm</string>
35
36    <!-- Context Menu Item on Alarm Settings screen: Delete alarm -->
37    <string name="delete_alarm">Delete alarm</string>
38
39    <!-- Context Menu Item on Alarm Settings screen: Enable alarm -->
40    <string name="enable_alarm">Turn alarm on</string>
41
42    <!-- Context Menu Item on Alarm Settings screen: Disable alarm -->
43    <string name="disable_alarm">Turn alarm off</string>
44
45    <!-- Delete alarm confirmation dialog message. -->
46    <string name="delete_alarm_confirm">Delete this alarm?</string>
47
48    <!-- Menu item on Alarm Clock screen: Show clock -->
49    <string name="show_clock">Show clock</string>
50
51    <!-- Menu item on Alarm Clock screen: Hide clock -->
52    <string name="hide_clock">Hide clock</string>
53
54    <!-- Setting label on Set alarm screen: Label -->
55    <string name="label">Label</string>
56
57    <!-- Default label to display for an alarm -->
58    <string name="default_label">Alarm</string>
59
60    <!-- Preference category on Alarm Settings screen: Set alarm -->
61    <!-- Also label for the old Alarms dialog activity displayed on-screen when that activity must be represented to the user. -->
62    <string name="set_alarm">Set alarm</string>
63
64    <!-- Setting labels on Set alarm screen: Vibration on or off -->
65    <string name="alarm_vibrate">Vibrate</string>
66
67    <!-- Setting labels on Set alarm screen: Repeat -->
68    <string name="alarm_repeat">Repeat</string>
69
70    <!-- Setting labels on Set alarm screen: Select alarm ringtone  -->
71    <string name="alert">Alarm Ringtone</string>
72
73    <!-- Label on expanded alarm edit view. -->
74    <string name="ringtone">Ringtone</string>
75
76    <!-- Setting labels on Set alarm screen: Set time  -->
77    <string name="time">Time</string>
78
79    <!-- Label shown when user is setting up non-repeating alarm for tomorrow [CHAR LIMIT=15] -->
80    <string name="alarm_tomorrow">Tomorrow</string>
81
82    <!-- Label shown when user is setting up non-repeating alarm for later today [CHAR LIMIT=15] -->
83    <string name="alarm_today">Today</string>
84
85    <!-- The text shown above the clock when alarm is alerting [CHAR LIMIT=10] -->
86    <string name="alarm_alert_wake_up">Wake up\u0021</string>
87
88    <!-- The text shown as an option to dismiss an alerting alarm [CHAR LIMIT=5] -->
89    <string name="alarm_alert_off_action_text">Off</string>
90
91    <!-- Button labels on the alarm dialog: Dismiss -->
92    <string name="alarm_alert_dismiss_text">Dismiss</string>
93
94    <!-- Button labels on the pre-dismiss alarm notifications: Dismiss now -->
95    <string name="alarm_alert_dismiss_now_text">Dismiss Now</string>
96
97    <!-- Alarm Alert screen: this message is shown after an alarm rung
98         unattended for a number of minutes.  It tells the user that
99         the alarm has been silenced.-->
100    <string name="alarm_missed_title">Missed alarm</string>
101    <string name="alarm_missed_text"><xliff:g id="alarm_time">%s</xliff:g> - <xliff:g id="alarm_label">%s</xliff:g></string>
102
103    <!-- The text shown after user snoozed an alerting alarm. The text will be shown
104         together with the number of minutes in two separate lines. For example:
105             Snoozed
106             10 min
107         [CHAR LIMIT=10]
108    -->
109    <string name="alarm_alert_snoozed_text">Snoozed</string>
110
111    <!-- The text shown after user snoozed an alerting alarm. The text will be shown
112         together with the word 'Snoozed' in two separate lines or example:
113             Snoozed
114             10 min
115         [CHAR LIMIT=10]
116    -->
117    <plurals name="alarm_alert_snooze_duration">
118        <!-- Duration for one minute -->
119        <item quantity="one">1 min</item>
120        <!-- Duration for more than one minute -->
121        <item quantity="other"><xliff:g id="number" example="7">%d</xliff:g> min</item>
122    </plurals>
123
124    <!-- The text shown after user dismissed an alerting alarm [CHAR LIMIT=15] -->
125    <string name="alarm_alert_off_text">Alarm off</string>
126
127    <!-- Button labels on the alarm dialog: Snooze -->
128    <string name="alarm_alert_snooze_text">Snooze</string>
129
130    <!-- Toast that appears after Alarm is snoozed from the Alarm
131         dialog. Says the alarm will snooze for xxx minutes.  -->
132    <plurals name="alarm_alert_snooze_set">
133        <!-- Duration for one minute -->
134        <item quantity="one">Snoozing for 1 minute.</item>
135        <!-- Duration for more than one minute -->
136        <item quantity="other">Snoozing for <xliff:g id="minutes">%d</xliff:g> minutes.</item>
137    </plurals>
138
139    <!-- Text to appear inside a notification while an alarm is snoozing. -->
140    <string name="alarm_alert_snooze_until">Snoozing until <xliff:g id="time">%s</xliff:g></string>
141
142    <!-- Text to appear in the notification title while an alarm is about to go off. -->
143    <string name="alarm_alert_predismiss_title">Upcoming alarm</string>
144
145    <!-- Text to appear in when trying to view a missed alarm that has been deleted -->
146    <string name="missed_alarm_has_been_deleted">Your missed alarm has been deleted</string>
147
148    <!-- 0: nothing
149         1: days
150         2:      hours
151         3: days hours
152         4:            minutes
153         5: days       minutes
154         6:      hours minutes
155         7: days hours minutes
156    --><skip />
157
158    <!-- Timer notification: how long from now until timer goes off. -->
159    <string-array name="timer_notifications">
160        <item>Less than a minute remaining</item>
161        <item><xliff:g id="HOURS" example="2 hours">%1$s</xliff:g> remaining</item>
162        <item><xliff:g id="MINUTES" example="2 minutes">%2$s</xliff:g> remaining</item>
163        <item><xliff:g id="HOURS" example="2 hours">%1$s</xliff:g> <xliff:g id="MINUTES" example="2 minutes">%2$s</xliff:g> remaining</item>
164    </string-array>
165
166    <!-- Alarm confirmation toast: Describes how long from now until
167         alarm fires -->
168    <string-array name="alarm_set">
169        <item>Alarm set for less than 1 minute from now.</item>
170        <item>Alarm set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item>
171        <item>Alarm set for <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g> from now.</item>
172        <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>
173        <item>Alarm set for <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item>
174        <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>
175        <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>
176        <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>
177    </string-array>
178
179    <!-- Alarm confirmation toast: singular day -->
180    <string name="day">"1 day"</string>
181
182    <!-- Alarm confirmation toast: plural days -->
183    <string name="days">"<xliff:g id="days">%s</xliff:g> days"</string>
184
185    <!-- Alarm confirmation toast: singular hour -->
186    <string name="hour">1 hour</string>
187
188    <!-- Alarm confirmation toast: plural hours -->
189    <string name="hours"><xliff:g id="hours">%s</xliff:g> hours</string>
190
191    <!-- Alarm confirmation toast: singular minute  -->
192    <string name="minute">"1 minute"</string>
193
194    <!-- Alarm confirmation toast: plural minutes  -->
195    <string name="minutes">"<xliff:g id="minutes">%s</xliff:g> minutes"</string>
196
197    <!-- Repeat options that appear under an alarm on main Alarm Clock
198         screen to identify repetition schedule: special case for when
199         the alarm is set to repeat every day -->
200    <string name="every_day">Every day</string>
201
202    <!-- Repeat options that appear under an alarm on main Alarm Clock
203         screen to identify repetition schedule: special case for when
204         the alarm is set to never repeat -->
205    <string name="never">Never</string>
206
207    <!-- Repeat options that appear under an alarm on main Alarm Clock
208         screen to identify repetition schedule: concatenate days with
209         this character, i.e. "Mon, Tue, Wed" -->
210    <string name="day_concat">", "</string>
211
212    <!-- Appears at the top of the Clock Picker screen: Tell user to
213         select a clock to display -->
214    <string name="clock_instructions">Choose a clock</string>
215
216    <!-- Label for analog clock gadget displayed on-screen when that gadget is represented to the user. -->
217    <string name="analog_gadget">Analog clock</string>
218
219    <!-- Help activity name -->
220    <string name="help">help</string>
221
222    <!-- Settings activity name -->
223    <!-- Label for the Settings activity displayed on-screen when that activity must be represented to the user. -->
224    <string name="settings">Settings</string>
225
226    <!-- Setting title for changing the snooze duration. -->
227    <string name="snooze_duration_title">Snooze length</string>
228
229    <plurals name="snooze_duration">
230        <!-- Duration for one minute -->
231        <item quantity="one">1 minute</item>
232        <!-- Duration for more than one minute -->
233        <item quantity="other"><xliff:g id="number" example="7">%d</xliff:g> minutes</item>
234    </plurals>
235
236    <plurals name="snooze_picker_label">
237        <!-- Duration for one minute -->
238        <item quantity="one">minute</item>
239        <!-- Duration for more than one minute -->
240        <item quantity="other">minutes</item>
241    </plurals>
242
243    <!-- Auto silence preference title -->
244    <string name="auto_silence_title">Silence after</string>
245
246    <!-- Auto silence summary string set based on the preference value. -->
247    <string name="auto_silence_summary"><xliff:g id="minutes">%d</xliff:g> minutes</string>
248
249    <!-- Auto silence summary when turned off -->
250    <string name="auto_silence_never">Never</string>
251
252    <!-- Entries listed in the ListPreference when invoking the auto silence
253         preference. -->
254    <string-array name="auto_silence_entries">
255      <item>5 minutes</item>
256      <item>10 minutes</item>
257      <item>15 minutes</item>
258      <item>20 minutes</item>
259      <item>25 minutes</item>
260      <item>30 minutes</item>
261      <item>Never</item>
262      </string-array>
263
264    <!-- Values that are retrieved from the ListPreference. These must match
265         the auto_silence_entries above. -->
266    <string-array name="auto_silence_values" translatable="false">
267      <item>5</item>
268      <item>10</item>
269      <item>15</item>
270      <item>20</item>
271      <item>25</item>
272      <item>30</item>
273      <item>-1</item> <!-- Off -->
274      </string-array>
275
276    <!-- Done button when editing an alarm. -->
277    <string name="done">Done</string>
278
279    <!-- Revert button when editing an alarm. -->
280    <string name="revert">Revert</string>
281
282    <!-- Delete button when editing an alarm. -->
283    <string name="delete">Delete</string>
284
285    <!-- Setting title for changing the alarm volume. -->
286    <string name="alarm_volume_title">Alarm volume</string>
287
288    <!-- Summary for the alarm preference when silent is chosen. -->
289    <string name="silent_alarm_summary">Silent</string>
290
291    <!-- Text to display in the small text of the notification -->
292    <string name="alarm_notify_text">Snooze or dismiss alarm.</string>
293
294    <!-- Text to display in the notification ticker and label -->
295    <string name="alarm_notify_snooze_label"><xliff:g id="label">%s</xliff:g> (snoozed)</string>
296
297    <!-- Text to display in the notification when the alarm has been snoozed -->
298    <string name="alarm_notify_snooze_text">Alarm set for <xliff:g id="time">%s</xliff:g>. Touch to cancel.</string>
299
300    <!-- Title of the setting to change hardware button behavior. This string
301         should be changed for each piece of hardware. [CHAR LIMIT=20] -->
302    <string name="volume_button_setting_title">Volume buttons</string>
303
304    <!-- Dialog title of the volume and power setting. -->
305    <string name="volume_button_dialog_title">Button effect</string>
306
307    <!-- Entries listed in the setting for the side-button action. -->
308    <string-array name="volume_button_setting_entries">
309      <item>Snooze</item>
310      <item>Dismiss</item>
311      <item>Do nothing</item>
312      </string-array>
313
314    <!-- Values for the side-button setting. -->
315    <string-array name="volume_button_setting_values" translatable="false">
316      <item>1</item>
317      <item>2</item>
318      <item>0</item>
319    </string-array>
320
321    <!-- Title of the ringtone setting. -->
322    <string name="default_ringtone_setting_title">Set default ringtone</string>
323
324    <!-- Accessibility labels for Clock activity buttons --><skip/>
325    <string name="alarm_button_description">Alarms</string>
326    <string name="gallery_button_description">Gallery</string>
327    <string name="music_button_description">Music</string>
328    <string name="nightmode_button_description">Dim</string>
329    <string name="home_button_description">Launcher</string>
330    <string name="desk_clock_button_description">Clock display</string>
331
332    <!-- Accessibility labels for alarm buttons -->
333    <string name="label_description">Label</string>
334    <string name="ringtone_description">Ringtone</string>
335
336    <!-- A short representation of charging information, e.g "34%" -->
337    <string name="battery_charging_level"><xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g></string>
338
339    <!-- What to show the user if the weather widget exists but fails to
340         respond. This is a sign of an error; if the weather widget is not
341         present on the device, we show nothing at all. -->
342    <string name="weather_fetch_failure">Weather information isn\'t available right now.</string>
343
344    <!-- A description for the DeskClock alarm sound playback service.
345         [CHAR LIMIT=NONE] -->
346    <string name="alarm_klaxon_service_desc">Sound playback service for alarms set in Clock.</string>
347
348    <!-- String displayed as the alert summary while loading the alert name from
349         the media player. [CHAR LIMIT=NONE] -->
350    <string name="loading_ringtone">Loading ringtone\u2026</string>
351
352    <!-- A description for the DeskClock timer sound playback service.
353         [CHAR LIMIT=NONE] -->
354    <string name="timer_ring_service_desc">Sound playback service for timers set in Clock.</string>
355
356    <!-- Label on the main screen control used to set alarm [CHAR LIMIT=30]-->
357    <string name="control_set_alarm">Set alarm</string>
358
359    <!-- Label on the main screen control used to set alarm when there is already an existing alarm [CHAR LIMIT=30]-->
360    <string name="control_set_alarm_with_existing"><xliff:g id="time">%s</xliff:g></string>
361
362    <!--  ActionBar strings -->
363    <!-- Describes the purpose of the tab button which which switches the activity to the Alarm page -->
364    <string name="menu_alarm">Alarm</string>
365    <!-- Describes the purpose of the tab button which which switches the activity to the Timer page -->
366    <string name="menu_timer">Timer</string>
367    <!-- Describes the purpose of the tab button which which switches the activity to the Clock page -->
368    <string name="menu_clock">Clock</string>
369    <!-- Describes the purpose of the tab button which which switches the activity to the Stopwatch page -->
370    <string name="menu_stopwatch">Stopwatch</string>
371
372    <!-- Clock view buttons strings-->
373    <!-- Describes the purpose of the button to start the activity to add/edit/delete alarms -->
374    <string name="button_alarms">Add alarm</string>
375    <!-- Describes the purpose of the button which provides a list of cities for the world clock settings -->
376    <string name="button_cities">Cities</string>
377    <!-- Describes the purpose of the button which pops up a menu of setting choices -->
378    <string name="button_menu">More options</string>
379    <!-- Menu item on most screens to get to more settings -->
380    <string name="menu_item_settings">Settings</string>
381    <!-- Menu item on most screens to get to the help information -->
382    <string name="menu_item_help">Help</string>
383    <!-- Menu item on clock screen to enter night mode. -->
384    <string name="menu_item_night_mode">Night mode</string>
385    <!-- Menu item on Cities screen to sort by GMT offset -->
386    <string name="menu_item_sort_by_gmt_offset">Sort by time</string>
387    <!-- Menu item on Cities screen to sort by alphabetical order -->
388    <string name="menu_item_sort_by_name">Sort by name</string>
389
390    <!-- Label for selected cities in Cities list view -->
391    <string name="selected_cities_label">Selected Cities</string>
392
393    <!-- Stop Watch strings -->
394    <!-- Describes the purpose of the button to resume running a stopwatch -->
395    <string name="sw_resume_button">Resume</string>
396    <!-- Describes the purpose of the button to begin running a stopwatch -->
397    <string name="sw_start_button">Start</string>
398    <!-- Describes the purpose of the button to pause a stopwatch. -->
399    <string name="sw_stop_button">Stop</string>
400    <!-- Describes the purpose of the button to record current the stopwatch value into the4 collection of lap times. -->
401    <string name="sw_lap_button">Lap</string>
402    <!-- Describes the purpose of the button to return the stopwatch to zero and remove the lap times. -->
403    <string name="sw_reset_button">Reset</string>
404    <!-- Describes the purpose of the button to share the stopwatch value.
405         Also used as title for chooser when sharing stopwatch results. -->
406    <string name="sw_share_button">Share</string>
407
408    <!-- Abbreviation for temporal hours [CHAR LIMIT=1] -->
409    <string name="hours_label">h</string>
410    <!-- Abbreviation for temporal minutes [CHAR LIMIT=1] -->
411    <string name="minutes_label">m</string>
412    <!-- Abbreviation for temporal seconds [CHAR LIMIT=1] -->
413    <string name="seconds_label">s</string>
414    <!-- Accessibility strings -->
415    <string name="hours_label_description">hours</string>
416    <string name="minutes_label_description">minutes</string>
417    <string name="seconds_label_description">seconds</string>
418
419    <string name="zero">0</string>
420
421    <!--  Stopwatch share strings -->
422    <!-- Sentence within the message created to share the total time recorded within the stopwatch -->
423    <string name="sw_share_main">My time is <xliff:g id="time">%s</xliff:g></string>
424    <!-- Header within the message created to share a list of lap times (a new line is appended to this) -->
425    <string name="sw_share_laps">Lap times:</string>
426    <!-- Label to enumerate the number of laps in the notification the user has counted -->
427    <string name="sw_notification_lap_number">Lap <xliff:g id="number">%d</xliff:g></string>
428    <!-- Formatted stopwatch time -->
429    <string-array name="stopwatch_format_set" translatable="false">
430        <item> <!-- <10 minutes - example "1 02.03" -->
431            <xliff:g id="M">%2$d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
432        </item>
433        <item> <!-- <1 hour - example "12 03.04" -->
434            <xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
435        </item>
436        <item> <!-- <10 hours - example "1 02 03.04" -->
437            <xliff:g id="H">%1$d</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
438        </item>
439        <item> <!-- <100 hours - example "12 03 04.05" -->
440            <xliff:g id="H">%1$02d</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
441        </item>
442        <item> <!-- <1000 hours - example "123 04 05.06" -->
443            <xliff:g id="H">%1$03d</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
444        </item>
445    </string-array>
446
447    <!-- Formatted stopwatch time for laps shared using the share button -->
448    <string-array name="shared_laps_format_set" translatable="false">
449        <item> <!-- <10 minutes - example "1 02.03" -->
450            <xliff:g id="lap">%6$d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g> &#x200E;<xliff:g id="M">%2$d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
451        </item>
452        <item> <!-- <1 hour - example "12 03.04" -->
453            <xliff:g id="lap">%6$d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
454        </item>
455        <item> <!-- <10 hours - example "1 02 03.04" -->
456            <xliff:g id="lap">%6$d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g> &#x200E;<xliff:g id="H">%1$d</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
457        </item>
458        <item> <!-- <100 hours - example "12 03 04.05" -->
459            <xliff:g id="lap">%6$d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g> &#x200E;<xliff:g id="H">%1$02d</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
460        </item>
461        <item> <!-- <1000 hours - example "123 04 05.06" -->
462            <xliff:g id="lap">%6$d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g> &#x200E;<xliff:g id="H">%1$03d</xliff:g> &#x200E;<xliff:g id="M">%2$02d</xliff:g> &#x200E;<xliff:g id="S">%3$02d</xliff:g><xliff:g id="decimal_separator">%5$c</xliff:g><xliff:g id="D">%4$02d</xliff:g>
463        </item>
464    </string-array>
465
466    <!-- Label to enumerate the number of laps the user has counted -->
467    <string-array name="sw_lap_number_set" translatable="false">
468        <item># <xliff:g id="number">%d</xliff:g></item>
469        <item># <xliff:g id="number">%02d</xliff:g></item>
470    </string-array>
471
472    <!-- Stopwatch accessibility strings -->
473    <plurals name="Nhours_description">
474        <!-- 1 hour -->
475        <item quantity="one">1 hour</item>
476        <!-- more -->
477        <item quantity="other"><xliff:g id="number" example="7">%d</xliff:g> hours</item>
478    </plurals>
479    <plurals name="Nminutes_description">
480        <!-- 1 minute -->
481        <item quantity="one">1 minute</item>
482        <!-- more -->
483        <item quantity="other"><xliff:g id="number" example="7">%d</xliff:g> minutes</item>
484    </plurals>
485    <plurals name="Nseconds_description">
486        <!-- 1 second -->
487        <item quantity="one">1 second</item>
488        <!-- more -->
489        <item quantity="other"><xliff:g id="number" example="7">%d</xliff:g> seconds</item>
490    </plurals>
491
492    <!-- timer strings -->
493    <!-- Describes the purpose of the button to add a new timer -->
494    <string name="timer_add_timer">Add Timer</string>
495    <!-- Describes the purpose of the button to begin or continue running a timer -->
496    <string name="timer_start">Start</string>
497    <!-- Describes the purpose of the button to delete a timer. -->
498    <string name="timer_delete">Delete</string>
499    <!-- Describes the purpose of the button increase the remaining time on a timer by one minute. -->
500    <string name="timer_plus_one">Add 1 Minute</string>
501    <!-- Like "timer_plus_one", but with 'minute' abbreviated for the notification. -->
502    <string name="timer_plus_1_min">Add 1 min</string>
503    <!-- Describes the purpose of the button to stop the timer. -->
504    <string name="timer_stop">Stop</string>
505    <!-- Describes the purpose of the button to stop and delete the timer. -->
506    <string name="timer_done">Done</string>
507    <!-- Describes the purpose of the button to return the timer to it's original starting value. -->
508    <string name="timer_reset">Reset</string>
509    <!-- Describes the purpose of the button to discard the current dialog values. Will also close the dialog if other time's exist -->
510    <string name="timer_cancel">Cancel</string>
511    <!-- Notification content shown when a timer has completed and has no more time remaining -->
512    <string name="timer_times_up">Time\'s up</string>
513    <!-- Label associated with a notification for a Timer -->
514    <string name="timer_notification_label">Timer</string>
515    <!-- Toast content shown when user attempts to create a new timer when there are already 4 timers -->
516    <string name="timers_max_count_reached">4 timers maximum</string>
517
518    <!-- Jocular content that user may append when sharing the lap times -->
519    <string-array name="sw_share_strings" translatable="true">
520        <item>You\'re quite the speed demon.</item>
521        <item>Enjoy the fruits of your labor.</item>
522        <item>Androids are known to be fast, but not as fast as you!</item>
523        <item>Phew.</item>
524        <item>L33t times.</item>
525        <item>Such prodigious velocity.</item>
526        <item>Let\'s do the time warp again.</item>
527        <item>Just a jump to the left.</item>
528        <item>You have a palette for haste.</item>
529        <item>Photonic velocity.</item>
530    </string-array>
531
532    <plurals name="timers_num">
533        <!-- 1 timer -->
534        <item quantity="one">1 minute</item>
535        <!-- more -->
536        <item quantity="other"><xliff:g id="number" example="7">%d</xliff:g> timers</item>
537    </plurals>
538
539    <!-- Title with the clock on the main page displaying the user's regular timezone (shows when automatic_home_clock enabled) -->
540    <string name="home_label">Home</string>
541    <!-- Label for the Cities activity displayed on-screen when that activity must be represented to the user. -->
542    <string name="cities_activity_title">Cities</string>
543
544    <!-- Settings strings -->
545    <!-- Header in the preferences settings for the section pertaining to clocks on the main fragment -->
546    <string name="clock_settings">Clock</string>
547    <!-- Header for a Clock Dream Setting referring to choosing analog or digital style -->
548    <string name="clock_style">Style</string>
549
550    <!-- Entries listed in the ListPreference when invoking the clock style
551         preference. -->
552    <string-array name="clock_style_entries">
553      <item>Analog</item>
554      <item>Digital</item>
555    </string-array>
556
557    <!-- Values that are retrieved from the ListPreference. These must match
558         the clock_style_entries above. -->
559    <string-array name="clock_style_values" translatable="false">
560      <item>analog</item>
561      <item>digital</item>
562    </string-array>
563
564    <!-- Title for an option that will automtically show a clock representing the user's regular timezone on the main fragment whenever the user leaves their regular timezone-->
565    <string name="automatic_home_clock">Automatic home clock</string>
566    <!-- Describes the functionality provided by the automatic_home_clock option -->
567    <string name="automatic_home_clock_summary">While traveling in an area where the time is different, add a clock for home</string>
568    <!-- Title in the preferences change the time zone for the user's home -->
569    <string name="home_time_zone">Home time zone</string>
570    <!-- Title in a list dialog box to pick a time zone for the user's home -->
571    <string name="home_time_zone_title">Home time zone</string>
572
573    <!-- Textual content of the button to discard the current dialog values and close the dialog -->
574    <string name="time_picker_cancel">Cancel</string>
575    <!-- Textual content of the button to update an alarm with the current dialog values -->
576    <string name="time_picker_set">OK</string>
577    <string name="time_picker_time_seperator">:</string>
578    <!--  place holder for am/pm label when it is not set -->
579    <string name="time_picker_ampm_label">--</string>
580    <!-- add 00 as minutes to the time when pressing this button -->
581    <string name="time_picker_00_label">:00</string>
582    <!-- add 30 as minutes to the time when pressing this button -->
583    <string name="time_picker_30_label">:30</string>
584
585    <!-- Choices for timezones, must be kept in sync with timezone_values. CHAR LIMIT=25] -->
586    <string-array name="timezone_labels">
587        <item>"Marshall Islands"</item>
588        <item>"Midway Island"</item>
589        <item>"Hawaii"</item>
590        <item>"Alaska"</item>
591        <item>"Pacific Time"</item>
592        <item>"Tijuana"</item>
593        <item>"Arizona"</item>
594        <item>"Chihuahua"</item>
595        <item>"Mountain Time"</item>
596        <item>"Central America"</item>
597        <item>"Central Time"</item>
598        <item>"Mexico City"</item>
599        <item>"Saskatchewan"</item>
600        <item>"Bogota"</item>
601        <item>"Eastern Time"</item>
602        <item>"Venezuela"</item>
603        <item>"Atlantic Time (Barbados)"</item>
604        <item>"Atlantic Time (Canada)"</item>
605        <item>"Manaus"</item>
606        <item>"Santiago"</item>
607        <item>"Newfoundland"</item>
608        <item>"Brasilia"</item>
609        <item>"Buenos Aires"</item>
610        <item>"Greenland"</item>
611        <item>"Montevideo"</item>
612        <item>"Mid-Atlantic"</item>
613        <item>"Azores"</item>
614        <item>"Cape Verde Islands"</item>
615        <item>"Casablanca"</item>
616        <item>"London, Dublin"</item>
617        <item>"Amsterdam, Berlin"</item>
618        <item>"Belgrade"</item>
619        <item>"Brussels"</item>
620        <item>"Sarajevo"</item>
621        <item>"Windhoek"</item>
622        <item>"W. Africa Time"</item>
623        <item>"Amman, Jordan"</item>
624        <item>"Athens, Istanbul"</item>
625        <item>"Beirut, Lebanon"</item>
626        <item>"Cairo"</item>
627        <item>"Helsinki"</item>
628        <item>"Jerusalem"</item>
629        <item>"Minsk"</item>
630        <item>"Harare"</item>
631        <item>"Baghdad"</item>
632        <item>"Moscow"</item>
633        <item>"Kuwait"</item>
634        <item>"Nairobi"</item>
635        <item>"Tehran"</item>
636        <item>"Baku"</item>
637        <item>"Tbilisi"</item>
638        <item>"Yerevan"</item>
639        <item>"Dubai"</item>
640        <item>"Kabul"</item>
641        <item>"Islamabad, Karachi"</item>
642        <item>"Ural'sk"</item>
643        <item>"Yekaterinburg"</item>
644        <item>"Kolkata"</item>
645        <item>"Sri Lanka"</item>
646        <item>"Kathmandu"</item>
647        <item>"Astana"</item>
648        <item>"Yangon"</item>
649        <item>"Krasnoyarsk"</item>
650        <item>"Bangkok"</item>
651        <item>"Beijing"</item>
652        <item>"Hong Kong"</item>
653        <item>"Irkutsk"</item>
654        <item>"Kuala Lumpur"</item>
655        <item>"Perth"</item>
656        <item>"Taipei"</item>
657        <item>"Seoul"</item>
658        <item>"Tokyo, Osaka"</item>
659        <item>"Yakutsk"</item>
660        <item>"Adelaide"</item>
661        <item>"Darwin"</item>
662        <item>"Brisbane"</item>
663        <item>"Hobart"</item>
664        <item>"Sydney, Canberra"</item>
665        <item>"Vladivostok"</item>
666        <item>"Guam"</item>
667        <item>"Magadan"</item>
668        <item>"Auckland"</item>
669        <item>"Fiji"</item>
670        <item>"Tonga"</item>
671        <item>"Jakarta"</item>
672    </string-array>
673
674    <!-- Choices for timezones, must be kept in sync with timezone_values. -->
675
676    <string-array name="timezone_values" translatable="false">
677        <item>"Pacific/Majuro"</item>
678        <item>"Pacific/Midway"</item>
679        <item>"Pacific/Honolulu"</item>
680        <item>"America/Anchorage"</item>
681        <item>"America/Los_Angeles"</item>
682        <item>"America/Tijuana"</item>
683        <item>"America/Phoenix"</item>
684        <item>"America/Chihuahua"</item>
685        <item>"America/Denver"</item>
686        <item>"America/Costa_Rica"</item>
687        <item>"America/Chicago"</item>
688        <item>"America/Mexico_City"</item>
689        <item>"America/Regina"</item>
690        <item>"America/Bogota"</item>
691        <item>"America/New_York"</item>
692        <item>"America/Caracas"</item>
693        <item>"America/Barbados"</item>
694        <item>"America/Halifax"</item>
695        <item>"America/Manaus"</item>
696        <item>"America/Santiago"</item>
697        <item>"America/St_Johns"</item>
698        <item>"America/Sao_Paulo"</item>
699        <item>"America/Argentina/Buenos_Aires"</item>
700        <item>"America/Godthab"</item>
701        <item>"America/Montevideo"</item>
702        <item>"Atlantic/South_Georgia"</item>
703        <item>"Atlantic/Azores"</item>
704        <item>"Atlantic/Cape_Verde"</item>
705        <item>"Africa/Casablanca"</item>
706        <item>"Europe/London"</item>
707        <item>"Europe/Amsterdam"</item>
708        <item>"Europe/Belgrade"</item>
709        <item>"Europe/Brussels"</item>
710        <item>"Europe/Sarajevo"</item>
711        <item>"Africa/Windhoek"</item>
712        <item>"Africa/Brazzaville"</item>
713        <item>"Asia/Amman"</item>
714        <item>"Europe/Athens"</item>
715        <item>"Asia/Beirut"</item>
716        <item>"Africa/Cairo"</item>
717        <item>"Europe/Helsinki"</item>
718        <item>"Asia/Jerusalem"</item>
719        <item>"Europe/Minsk"</item>
720        <item>"Africa/Harare"</item>
721        <item>"Asia/Baghdad"</item>
722        <item>"Europe/Moscow"</item>
723        <item>"Asia/Kuwait"</item>
724        <item>"Africa/Nairobi"</item>
725        <item>"Asia/Tehran"</item>
726        <item>"Asia/Baku"</item>
727        <item>"Asia/Tbilisi"</item>
728        <item>"Asia/Yerevan"</item>
729        <item>"Asia/Dubai"</item>
730        <item>"Asia/Kabul"</item>
731        <item>"Asia/Karachi"</item>
732        <item>"Asia/Oral"</item>
733        <item>"Asia/Yekaterinburg"</item>
734        <item>"Asia/Calcutta"</item>
735        <item>"Asia/Colombo"</item>
736        <item>"Asia/Katmandu"</item>
737        <item>"Asia/Almaty"</item>
738        <item>"Asia/Rangoon"</item>
739        <item>"Asia/Krasnoyarsk"</item>
740        <item>"Asia/Bangkok"</item>
741        <item>"Asia/Shanghai"</item>
742        <item>"Asia/Hong_Kong"</item>
743        <item>"Asia/Irkutsk"</item>
744        <item>"Asia/Kuala_Lumpur"</item>
745        <item>"Australia/Perth"</item>
746        <item>"Asia/Taipei"</item>
747        <item>"Asia/Seoul"</item>
748        <item>"Asia/Tokyo"</item>
749        <item>"Asia/Yakutsk"</item>
750        <item>"Australia/Adelaide"</item>
751        <item>"Australia/Darwin"</item>
752        <item>"Australia/Brisbane"</item>
753        <item>"Australia/Hobart"</item>
754        <item>"Australia/Sydney"</item>
755        <item>"Asia/Vladivostok"</item>
756        <item>"Pacific/Guam"</item>
757        <item>"Asia/Magadan"</item>
758        <item>"Pacific/Auckland"</item>
759        <item>"Pacific/Fiji"</item>
760        <item>"Pacific/Tongatapu"</item>
761        <item>"Asia/Jakarta"</item>
762    </string-array>
763
764     <!-- Header in the preferences settings for the section pertaining to alarms -->
765     <string name="alarm_settings">Alarms</string>
766     <string name="desk_clock_help_url" translatable="false"></string>
767     <!-- Describes the running service for the stopwatch -->
768     <string name="stopwatch_service_desc">Stopwatch service to run the notification.</string>
769     <!-- Desription for the stopped stop watch -->
770     <string name="swn_stopped">Stopped</string>
771
772    <!-- Text instruction for dismiss alarm on alarm lock screen. The dismiss button will still
773         be on the right even on RTL languages so please do not reverse this during
774         translation. -->
775    <string name="description_direction_right">Swipe right to dismiss</string>
776    <!-- Text instruction for snooze alarm on alarm lock screen. The snooze button will still
777         be on the left even on RTL languages so please do not reverse this during
778         translation. -->
779    <string name="description_direction_left">Swipe left to snooze</string>
780
781    <!-- Notification title when timer is stopped. -->
782    <string name="timer_stopped">Timer stopped</string>
783    <!-- Notification title when multiple timers are stopped. -->
784    <string name="timers_stopped"><xliff:g id="number" example="7">%d</xliff:g> timers stopped</string>
785    <!-- Notification text when multiple timers are stopped. -->
786    <string name="all_timers_stopped_notif">Touch to see your timers</string>
787    <!-- Notification title when at least one timer, of those in use, is counting down. -->
788    <string name="timers_in_use"><xliff:g id="number" example="7">%d</xliff:g> timers</string>
789    <!-- Notification text when at least one timer, of those in use, is counting down. -->
790    <string name="next_timer_notif">Next timer: <xliff:g id="time_remaining" example="2 minutes remaining">%s</xliff:g></string>
791
792    <!-- screensaver settings strings -->
793    <!-- Label for the screen saver activity displayed on-screen when that activity must be represented to the user. -->
794    <string name="screensaver_settings">Dream settings</string>
795    <!-- Title for check box to pick intensity of display diminuation during dream mode -->
796    <string name="night_mode_title">Night mode</string>
797    <!-- Describes intensity of display diminuation during dream mode -->
798    <string name="night_mode_summary">Very dim display (for dark rooms)</string>
799
800    <!-- Description of the down caret in the alarm alert screen to expand the alarm content to edit perspective. [CHAR LIMIT=NONE] -->
801    <string name="expand_alarm">Expand alarm</string>
802    <!-- Description of the up caret in the alarm alert screen to collapse the alarm content to summary perspective. [CHAR LIMIT=NONE] -->
803    <string name="collapse_alarm">Collapse alarm</string>
804
805    <!-- Description of the button to undo change to alarm -->
806    <string name="alarm_undo">undo</string>
807    <!-- Toast content when an alarm was deleted  -->
808    <string name="alarm_deleted">Alarm deleted.</string>
809    <!-- slash between date and next alarm in the clock -->
810    <string name="slash"> / </string>
811    <!-- slash between date and next alarm in the clock -->
812    <string name="world_day_of_week_label"> / <xliff:g id="label">%s</xliff:g></string>
813    <!-- Description of field showing the next alarm time in the clock page, for accessibility. -->
814    <string name="next_alarm_description">Next alarm: <xliff:g id="alarm_time" example="Wed 8:00am">%s</xliff:g></string>
815    <string name="label_unlabeled"></string>
816
817    <!-- Displays the number of alarms selected from the list of alarms. -->
818    <string name="alarms_selected"><xliff:g id="alarms">%d</xliff:g> selected</string>
819
820    <!-- message used by the talkback accessebility app to say that something was deleted -->
821    <string name="deleted_message">Deleted</string>
822
823    <!-- Alarm deletion confirmation message-->
824    <plurals name="alarm_delete_confirmation">
825        <!-- Confirmation for one alarm -->
826        <item quantity="one">Delete selected alarm?</item>
827        <!-- Confirmation more than one alarm  -->
828        <item quantity="other">Delete selected alarms?</item>
829    </plurals>
830
831    <!-- Timer deletion confirmation -->
832    <string name="timer_delete_confirmation">Delete this timer?</string>
833
834    <!-- world clock deletion confirmation -->
835    <string name="city_delete_confirmation">Remove this city?</string>
836
837    <!-- Label for digital clock gadget displayed on-screen when that gadget is represented to the user. -->
838    <string name="digital_gadget">Digital clock</string>
839
840    <!-- format strings for clocks -->
841    <string name="clock_24_hours_format" translatable="false">kk&#58;mm</string>
842    <string name="main_widget_12_hours_format" translatable="false">h&#58;mm</string>
843    <!-- Font size for AM/PM should match widget_label_font_size -->
844    <string name="wc_widget_12_hours_format" translatable="false">h&#58;mm&#8202;<b><font size="14" face="sans-serif">a</font></b></string>
845    <!-- Font size for AM/PM should match bottom_text_size -->
846    <string name="main_clock_12_hours_format" translatable="false">h&#58;mm&#8202;<b><font size="16" face="sans-serif">a</font></b></string>
847    <!-- Font size for AM/PM should match label_font_size -->
848    <string name="world_clock_12_hours_format" translatable="false">h&#58;mm&#8202;<b><font size="14" face="sans-serif">a</font></b></string>
849    <!-- Font size for AM/PM should match alarm_label_size -->
850    <string name="alarm_time_12_hours_format" translatable="false">h&#58;mm&#8202;<b><font size="24" face="sans-serif">a</font></b></string>
851
852    <!-- String for no alarms -->
853    <string name="no_alarms">No Alarms</string>
854
855    <!-- String for no alarms set [CHAR LIMIT=24] -->
856    <string name="no_alarms_set">No alarms set</string>
857
858    <!-- String for no enabled alarms in timeline view [CHAR LIMIT=30] -->
859    <string name="no_upcoming_alarms">NO UPCOMING ALARMS</string>
860</resources>
861
862