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