OSDN Git Service

6781ca9cb0acd7bc034dea29d21d103db4680de9
[android-x86/packages-apps-DeskClock.git] / res / values / strings.xml
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     <string name="app_label">Alarm Clock</string>
21
22     <!-- Title for AlarmClock activity -->
23     <string name="alarm_list_title">Alarms</string>
24
25     <!-- Menu item on Alarm Clock screen: Add alarm -->
26     <string name="add_alarm">Add alarm</string>
27
28     <!-- Context Menu Item on Alarm Settings screen: Delete alarm -->
29     <string name="delete_alarm">Delete alarm</string>
30
31     <!-- Context Menu Item on Alarm Settings screen: Enable alarm -->
32     <string name="enable_alarm">Enable alarm</string>
33
34     <!-- Context Menu Item on Alarm Settings screen: Disable alarm -->
35     <string name="disable_alarm">Disable alarm</string>
36
37     <!-- Delete alarm confirmation dialog message. -->
38     <string name="delete_alarm_confirm">This alarm will be deleted.</string>
39
40     <!-- Menu item on Alarm Clock screen: Show clock -->
41     <string name="show_clock">Show clock</string>
42
43     <!-- Menu item on Alarm Clock screen: Hide clock -->
44     <string name="hide_clock">Hide clock</string>
45
46     <!-- Setting label on Set alarm screen: Label -->
47     <string name="label">Label</string>
48
49     <!-- Default label to display for an alarm -->
50     <string name="default_label">Alarm</string>
51
52     <!-- Preference category on Alarm Settings screen: Set alarm -->
53     <string name="set_alarm">Set alarm</string>
54
55     <!-- Setting labels on Set alarm screen: Vibration on or off -->
56     <string name="alarm_vibrate">Vibrate</string>
57
58     <!-- Setting labels on Set alarm screen: Repeat -->
59     <string name="alarm_repeat">Repeat</string>
60
61     <!-- Setting labels on Set alarm screen: Select alarm ringtone  -->
62     <string name="alert">Ringtone</string>
63
64     <!-- Setting labels on Set alarm screen: Set time  -->
65     <string name="time">Time</string>
66
67     <!-- Button labels on the alarm dialog: Dismiss -->
68     <string name="alarm_alert_dismiss_text">Dismiss</string>
69
70     <!-- Alarm Alert screen: this message is shown after an alarm rung
71          unattended for a number of minutes.  It tells the user that
72          the alarm has been silenced.-->
73     <string name="alarm_alert_alert_silenced">Alarm silenced after <xliff:g id="minutes">%d</xliff:g> minutes</string>
74
75     <!-- Button labels on the alarm dialog: Snooze -->
76     <string name="alarm_alert_snooze_text">Snooze</string>
77
78     <!-- Toast that appears after Alarm is snoozed from the Alarm
79          dialog. Says the alarm will snooze for xxx minutes.  -->
80     <string name="alarm_alert_snooze_set">Snoozing for <xliff:g id="minutes">%d</xliff:g> minutes.</string>
81
82     <!-- 0: nothing
83          1: days
84          2:      hours
85          3: days hours
86          4:            minutes
87          5: days       minutes
88          6:      hours minutes
89          7: days hours minutes
90     --><skip />
91
92     <!-- Alarm confirmation toast: Describes how long from now until
93          alarm fires -->
94     <string-array name="alarm_set">
95         <item>This alarm is set for less than 1 minute from now.</item>
96         <item>This alarm is set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item>
97         <item>This alarm is set for <xliff:g id="HOURS" example="2 hours">%2$s</xliff:g> from now.</item>
98         <item>This alarm is 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>
99         <item>This alarm is set for <xliff:g id="MINUTES" example="2 minutes">%3$s</xliff:g> from now.</item>
100         <item>This alarm is 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>
101         <item>This alarm is 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>
102         <item>This alarm is 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>
103     </string-array>
104
105     <!-- Alarm confirmation toast: singular day -->
106     <string name="day">"1 day"</string>
107
108     <!-- Alarm confirmation toast: plural days -->
109     <string name="days">"<xliff:g id="days">%s</xliff:g> days"</string>
110
111     <!-- Alarm confirmation toast: singular hour -->
112     <string name="hour">1 hour</string>
113
114     <!-- Alarm confirmation toast: plural hours -->
115     <string name="hours"><xliff:g id="hours">%s</xliff:g> hours</string>
116
117     <!-- Alarm confirmation toast: singular minute  -->
118     <string name="minute">"1 minute"</string>
119
120     <!-- Alarm confirmation toast: plural minutes  -->
121     <string name="minutes">"<xliff:g id="minutes">%s</xliff:g> minutes"</string>
122
123     <!-- Repeat options that appear under an alarm on main Alarm Clock
124          screen to identify repetition schedule: special case for when
125          the alarm is set to repeat every day -->
126     <string name="every_day">every day</string>
127
128     <!-- Repeat options that appear under an alarm on main Alarm Clock
129          screen to identify repetition schedule: special case for when
130          the alarm is set to never repeat -->
131     <string name="never">Never</string>
132
133     <!-- Repeat options that appear under an alarm on main Alarm Clock
134          screen to identify repetition schedule: concatenate days with
135          this character, i.e. "Mon, Tue, Wed" -->
136     <string name="day_concat">", "</string>
137
138     <!-- Appears at the top of the Clock Picker screen: Tell user to
139          select a clock to display -->
140     <string name="clock_instructions">Select a clock to display.</string>
141
142     <!-- Label for analog clock gadget, shown in list of all gadgets -->
143     <string name="analog_gadget">Analog clock</string>
144
145     <!-- Menu item title for general Alarm Clock Settings -->
146     <string name="settings">Settings</string>
147
148     <!-- Setting title for whether the alarm should play in silent mode.
149          Usually, silent mode only affects the ringer, but this setting
150          will make the alarms respect silent mode too. -->
151     <string name="alarm_in_silent_mode_title">Alarm in silent mode</string>
152
153     <!-- Setting summary for whether the alarm should play in silent mode. -->
154     <string name="alarm_in_silent_mode_summary">Play alarm even when the phone is in silent mode</string>
155
156     <!-- Setting title for changing the snooze duration. -->
157     <string name="snooze_duration_title">Snooze duration</string>
158
159     <!-- Entries listed in the ListPreference when invoking the snooze duration
160          preference. -->
161     <string-array name="snooze_duration_entries">
162       <item>5 minutes</item>
163       <item>10 minutes</item>
164       <item>15 minutes</item>
165       <item>20 minutes</item>
166       <item>25 minutes</item>
167       <item>30 minutes</item>
168     </string-array>
169
170     <!-- Values that are retrieved from the ListPreference. These must match
171          the snooze_duration_entries above. -->
172     <string-array name="snooze_duration_values">
173       <item>5</item>
174       <item>10</item>
175       <item>15</item>
176       <item>20</item>
177       <item>25</item>
178       <item>30</item>
179     </string-array>
180
181     <!-- Done button when editing an alarm. -->
182     <string name="done">Done</string>
183
184     <!-- Revert button when editing an alarm. -->
185     <string name="revert">Revert</string>
186
187     <!-- Setting title for changing the alarm volume. -->
188     <string name="alarm_volume_title">Alarm volume</string>
189
190     <!-- Setting summary for changing the alarm volume. -->
191     <string name="alarm_volume_summary">Set the volume of alarms</string>
192
193     <!-- Summary for the alarm preference when silent is chosen. -->
194     <string name="silent_alarm_summary">Silent</string>
195
196     <!-- Text to display in the small text of the notification -->
197     <string name="alarm_notify_text">Select to snooze or dismiss this alarm.</string>
198
199     <!-- Text to display in the notification ticker and label -->
200     <string name="alarm_notify_snooze_label"><xliff:g id="label">%s</xliff:g> (snoozed)</string>
201
202     <!-- Text to display in the notification when the alarm has been snoozed -->
203     <string name="alarm_notify_snooze_text">Alarm set for <xliff:g id="time">%s</xliff:g>. Select to cancel.</string>
204
205     <!-- Title of the setting to change the volume/camera button behavior. -->
206     <string name="volume_button_setting_title">Side button behavior</string>
207
208     <!-- The summary of the side button setting. -->
209     <string name="volume_button_setting_summary">Set the desired behavior of the side buttons when pressed during an alarm</string>
210
211     <!-- Entries listed in the setting for the side-button action. -->
212     <string-array name="volume_button_setting_entries">
213       <item>None</item>
214       <item>Snooze</item>
215       <item>Dismiss</item>
216     </string-array>
217
218     <!-- Values for the side-button setting. -->
219     <string-array name="volume_button_setting_values">
220       <item>0</item>
221       <item>1</item>
222       <item>2</item>
223     </string-array>
224
225     <!-- Placeholders --><skip/>
226     <string name="alarm_button_title_placeholder">Alarms</string>
227     <string name="gallery_button_title_placeholder">Gallery</string>
228     <string name="music_button_title_placeholder">Music</string>
229     <string name="nightmode_button_title_placeholder">Dim</string>
230     <string name="home_button_title_placeholder">Launcher</string>
231
232     <!-- A short representation of charging information, e.g "34%" -->
233     <string name="battery_charging_level"><xliff:g id="number">%d</xliff:g><xliff:g id="percent">%%</xliff:g></string>
234 </resources>
235
236