blob: db94670be2b5231c262ef9555dc8de1300f183a1 [file] [log] [blame]
The Android Open Source Project146de362009-03-03 19:32:18 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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
Erikac6a81d2010-01-26 15:42:15 -08007
The Android Open Source Project146de362009-03-03 19:32:18 -08008 http://www.apache.org/licenses/LICENSE-2.0
Erikac6a81d2010-01-26 15:42:15 -08009
The Android Open Source Project146de362009-03-03 19:32:18 -080010 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-->
The Android Open Source Project146de362009-03-03 19:32:18 -080016<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
17 <!-- This is the label underneath the icon for Calendar -->
18 <string name="app_label">Calendar</string>
The Android Open Source Project146de362009-03-03 19:32:18 -080019
20 <!-- Shared Labels. These labels are shared among the activities. -->
RoboErik1e3cc282011-07-29 15:49:54 -070021 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -080022 <!-- This is the label for the title or name of an event -->
23 <string name="what_label">What</string>
The Android Open Source Project146de362009-03-03 19:32:18 -080024 <!-- This is the label for the location of an event -->
25 <string name="where_label">Where</string>
Michael Chan24ee3362010-11-01 19:06:01 -070026 <!-- This is the label for the time of an event [CHAR LIMIT=30] -->
27 <string name="when_label">When</string>
Mason Tang4c8871b2010-08-10 10:17:43 -070028 <!-- This is the label for the timezone of an event [CHAR LIMIT=30] -->
Erik259b8f92011-01-12 14:01:12 -080029 <string name="timezone_label">Time zone</string>
Michael Chan47f3f702009-07-23 16:01:07 -070030 <!-- This is the label for the Guests/Attendees of an event -->
31 <string name="attendees_label">Guests</string>
Sara Ting75f53662012-04-09 15:37:10 -070032 <!-- Text to show when an event starts on the current day -->
33 <string name="today">Today</string>
34 <!-- Text to show when an event starts on the next day -->
35 <string name="tomorrow">Tomorrow</string>
Sara Ting4e926272012-04-19 10:41:56 -070036 <!-- Text for an event starting on the current day with a start and end time.
37 For ex, "Today at 5:00pm-6:00pm" [CHAR LIMIT=NONE] -->
38 <string name="today_at_time_fmt">"Today at <xliff:g id="time_interval">%s</xliff:g>"</string>
39 <!-- Text for an event starting on the next day with a start and end time.
40 For ex, "Tomorrow at 5:00pm-6:00pm" [CHAR LIMIT=NONE] -->
41 <string name="tomorrow_at_time_fmt">"Tomorrow at <xliff:g id="time_interval">%s</xliff:g>"</string>
42 <!-- Format string for a date and time description. For ex:
43 "April 19, 2012, 3:00pm - 4:00pm" [CHAR LIMIT=NONE] -->
44 <string name="date_time_fmt">"<xliff:g id="date">%s</xliff:g>, <xliff:g id="time_interval">%s</xliff:g>"</string>
Erikac6a81d2010-01-26 15:42:15 -080045
The Android Open Source Project146de362009-03-03 19:32:18 -080046 <!-- Some events repeat daily, weekly, monthly, or yearly. This is the label
47 for all the choices about how often an event repeats (including the choice
48 of not repeating). -->
49 <string name="repeats_label">Repetition</string>
50 <!-- Title of event when no explicit title is specified by the user -->
Michael Chan4778fdb2010-02-09 12:05:21 -080051 <string name="no_title_label">(No title)</string>
Erikac6a81d2010-01-26 15:42:15 -080052
The Android Open Source Project146de362009-03-03 19:32:18 -080053 <!-- Reminder format strings -->
54 <plurals name="Nminutes">
55 <!-- This is the label for a 1-minute reminder. -->
56 <item quantity="one">1 minute</item>
57 <!-- This is the label for 2 or more minutes. The actual number of
58 minutes is a parameter. -->
59 <item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
60 </plurals>
61 <!-- We use the abbreviation "mins" instead of "minutes" to keep the string short.
62 This is the number of minutes displayed for a calendar reminder. For example,
63 a reminder of 10 minutes would be displayed as '10 mins'. The translation
64 should use the shortest acceptable abbreviation to save space. -->
65 <plurals name="Nmins">
66 <!-- This is the label for a 1-minute reminder. -->
67 <item quantity="one">1 min</item>
68 <!-- This is the label for 2 or more minutes. The actual number of
69 minutes is a parameter. -->
70 <item quantity="other"><xliff:g id="count">%d</xliff:g> mins</item>
71 </plurals>
72 <!-- This is the number of hours displayed for a calendar reminder. For example,
73 a reminder of 1 hour would be displayed as '1 hour'. The translation
74 should use the shortest acceptable abbreviation of 'hour' to save space. -->
75 <plurals name="Nhours">
76 <!-- This is the label for a 1-hour reminder. -->
77 <item quantity="one">1 hour</item>
78 <!-- This is the label for a reminder of 2 or more hours. The actual number of
79 hours is a parameter. -->
80 <item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
81 </plurals>
82 <!-- This is the number of days displayed for a calendar reminder. For example,
83 a reminder of 2 days would be displayed as '2 days'. The translation
84 should use the shortest acceptable abbreviation of 'day' to save space. -->
85 <plurals name="Ndays">
86 <!-- This is the label for a reminder of 1 day. -->
87 <item quantity="one">1 day</item>
88 <!-- This is the label for a reminder of 2 or more days. The actual number of
89 days is a parameter. -->
90 <item quantity="other"><xliff:g id="count">%d</xliff:g> days</item>
91 </plurals>
RoboErik14e82b42011-07-19 09:46:39 -070092 <!-- This is for displaying the week of the year near the date. Eg. "January, 2011 Week 1" -->
93 <plurals name="weekN">
94 <!-- Label for displaying week of the year for all week values [CHAR LIMIT=16] -->
95 <item quantity="other">WEEK <xliff:g id="count">%d</xliff:g></item>
96 </plurals>
Erikac6a81d2010-01-26 15:42:15 -080097
The Android Open Source Project146de362009-03-03 19:32:18 -080098 <!-- Menu items: -->
RoboErik1e3cc282011-07-29 15:49:54 -070099 <skip/>
Michael Chan3e387782010-07-26 10:33:10 -0700100 <!-- This is a label on a context menu item. Pressing this menu item to initiate
Mason Tang480b2282010-08-13 15:32:03 -0700101 syncing of your Calendar data with the server. [CHAR LIMIT=11] -->
Michael Chan3937bc72010-07-30 11:14:11 -0700102 <string name="calendar_refresh"> "Refresh"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800103 <!-- This is a label on a context menu item. Pressing this menu item displays the
104 Agenda view. -->
Michael Chan5d894062011-08-12 17:07:49 -0700105
The Android Open Source Project146de362009-03-03 19:32:18 -0800106 <!-- This is a label on a context menu item. Pressing this menu item displays the
107 Day view. -->
108 <string name="show_day_view">"Show day"</string>
109 <!-- This is a label on a menu item. Pressing this menu item displays the
110 Agenda view. -->
111 <string name="agenda_view">"Agenda"</string>
112 <!-- This is a label on a menu item. Pressing this menu item displays the
113 Day view. -->
114 <string name="day_view">"Day"</string>
115 <!-- This is a label on a menu item. Pressing this menu item displays the
116 Week view. -->
117 <string name="week_view">"Week"</string>
118 <!-- This is a label on a menu item. Pressing this menu item displays the
119 Month view. -->
120 <string name="month_view">"Month"</string>
121 <!-- This is a label on a menu item. Pressing this menu item displays the
122 details of an event. -->
123 <string name="event_view">"View event"</string>
124 <!-- This is a label on a menu item. Pressing this menu item allows the
125 user to create a new event. -->
126 <string name="event_create">"New event"</string>
127 <!-- This is a label on a menu item in a popup window. Pressing this menu
128 item allows the user to edit or change an existing event. -->
129 <string name="event_edit">"Edit event"</string>
130 <!-- This is a label on a menu item in a popup window. Pressing this menu
131 item allows the user to delete an existing event. -->
132 <string name="event_delete">"Delete event"</string>
133 <!-- This is a label on a menu item. Pressing this menu
134 item takes the user to the current day (today) in whatever view
135 (Day view, Week view, Agenda view, Month view) they are currently in. -->
136 <string name="goto_today">"Today"</string>
137 <!-- This is a label on a menu item. Pressing this menu item allows the
138 user to see the list of calendars that he is viewing and to then add
139 or remove selected calendars. -->
Michael Chan5d894062011-08-12 17:07:49 -0700140
The Android Open Source Project146de362009-03-03 19:32:18 -0800141 <!-- This is a label on a menu item. Pressing this menu item allows the
142 user to view and edit his Settings (or Preferences) -->
143 <string name="menu_preferences">"Settings"</string>
Mason Tang9138ce82010-06-28 11:08:46 -0700144 <!-- This is a label on a menu item. Pressing this menu item allows the
Michael Chan082ab482011-10-17 14:31:03 -0700145 user to select the calendars to display [CHAR LIMIT=20] -->
Michael Chan2aeb8d92011-07-10 13:32:09 -0700146 <string name="menu_select_visible_calendars">"Calendars to display"</string>
147 <!-- This is a label on a menu item. Pressing this menu item allows the
Michael Chan082ab482011-10-17 14:31:03 -0700148 user to select the calendars to display [CHAR LIMIT=20] -->
Mason Tang9138ce82010-06-28 11:08:46 -0700149 <string name="search">"Search"</string>
RoboErikde20d762011-02-08 17:52:25 -0800150 <!-- This is a label on a menu item. Pressing this menu item hides
151 the navigation controls on the right side. [CHAR LIMIT=20] -->
152 <string name="hide_controls">"Hide controls"</string>
153 <!-- This is a label on a menu item. Pressing this menu item shows the
154 navigation controls on the right side. [CHAR LIMIT=20] -->
155 <string name="show_controls">"Show controls"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800156
157 <!-- Month view -->
RoboErik1e3cc282011-07-29 15:49:54 -0700158 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800159
Michael Chan2aeb8d92011-07-10 13:32:09 -0700160 <!-- Select Visible Calendars activity -->
RoboErik1e3cc282011-07-29 15:49:54 -0700161 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800162 <!-- Title of "My calendars" screen -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700163 <string name="select_visible_calendars_title">"Calendars to display"</string>
Erikac6a81d2010-01-26 15:42:15 -0800164 <!-- Synced and visible status message -->
Michael Chan5d894062011-08-12 17:07:49 -0700165
Erikac6a81d2010-01-26 15:42:15 -0800166 <!-- Synced but not visible status message -->
Michael Chan5d894062011-08-12 17:07:49 -0700167
Erikac6a81d2010-01-26 15:42:15 -0800168 <!-- not Synced or visible status message -->
Michael Chan5d894062011-08-12 17:07:49 -0700169
Erik6b858fc2010-09-15 18:59:04 -0700170 <!-- Synced status message displayed when the given calendar is stored/synced on the device
171 [CHAR LIMIT=60] -->
172 <string name="synced"> synced</string>
173 <!-- Not synced status message displayed when the given calendar is not stored/synced on the
174 device [CHAR LIMIT=60] -->
175 <string name="not_synced"> not synced</string>
176 <!-- Message displayed to user when an account with Calendars is not being auto-synced
177 [CHAR LIMIT=120]-->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700178 <string name="acct_not_synced">This account isn\'t being synced so your calendars may
179 not be up-to-date.</string>
Erik6b858fc2010-09-15 18:59:04 -0700180 <!-- Label on button that takes user to the Accounts and Sync settings page [CHAR LIMIT=60] -->
181 <string name="accounts">Accounts &amp; sync</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800182
Michael Chan2aeb8d92011-07-10 13:32:09 -0700183 <!-- Select Synced Calendars activity -->
184 <!-- Select the set of calendars to sync [CHAR LIMIT=60] -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700185 <string name="select_synced_calendars_title">Calendars to sync</string>
Michael Chan2aeb8d92011-07-10 13:32:09 -0700186 <!-- Select the set of calendars to sync [CHAR LIMIT=60] -->
187 <string name="select_synced_calendars_button">Calendars to sync</string>
188
The Android Open Source Project146de362009-03-03 19:32:18 -0800189 <!-- Event edit activity -->
RoboErik1e3cc282011-07-29 15:49:54 -0700190 <skip/>
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700191 <!-- The title of the screen where the user edits an event [CHAR LIMIT=17] -->
Michael Chan5d894062011-08-12 17:07:49 -0700192
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700193 <!-- Default value of What field (as a hint to the user) [CHAR LIMIT=15] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800194 <string name="hint_what">"Event name"</string>
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700195 <!-- Default value of Where field (as a hint to the user)[CHAR LIMIT=15] -->
196 <string name="hint_where">"Location"</string>
197 <!-- Default value of Description field (as a hint to the user) [CHAR LIMIT=15]-->
198 <string name="hint_description">"Description"</string>
199 <!-- Default value of Attendees/Guests field (as a hint to the user) [CHAR LIMIT=10] -->
200 <string name="hint_attendees">"Guests"</string>
Erika9125f62010-03-02 10:46:05 -0800201 <!-- Toast message displayed when a new event is created -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700202 <string name="creating_event">"Event created."</string>
Erika9125f62010-03-02 10:46:05 -0800203 <!-- Toast message displayed when an existing event is saved after being modified -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700204 <string name="saving_event">"Event saved."</string>
RoboErik2bd5cc02011-07-28 14:19:54 -0700205 <!-- Toast message displayed when a new event was not saved because it was empty [CHAR LIMIT=30] -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700206 <string name="empty_event">"Empty event not created."</string>
Michael Chanea8ebdb2011-02-28 19:04:00 -0800207 <!-- Toast message displayed when a new event with guests is created -->
Michael Chan3b9d1fc2012-04-03 16:11:51 -0700208 <string name="creating_event_with_guest">"Invitations will be sent."</string>
Michael Chanea8ebdb2011-02-28 19:04:00 -0800209 <!-- Toast message displayed when an existing event with guests is saved after being modified -->
Michael Chan3b9d1fc2012-04-03 16:11:51 -0700210 <string name="saving_event_with_guest">"Updates will be sent."</string>
Erika9125f62010-03-02 10:46:05 -0800211 <!-- Title of message displayed to indicate available calendars are being loaded when creating
212 a new event -->
Michael Chan5d894062011-08-12 17:07:49 -0700213
Erika9125f62010-03-02 10:46:05 -0800214 <!-- Body of message displayed to indicate available calendars are being loaded when creating
215 a new event -->
Michael Chan5d894062011-08-12 17:07:49 -0700216
The Android Open Source Project146de362009-03-03 19:32:18 -0800217
218 <!-- The alert toast is not actually being displayed for some reason. -->
RoboErik1e3cc282011-07-29 15:49:54 -0700219 <skip/>
The Android Open Source Project7abd8562009-03-05 14:34:37 -0800220 <!-- the title of the alert/notification activity -->
221 <string name="alert_title">Calendar notifications</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800222 <!-- Notification window messages: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700223 <skip/>
Erikac6a81d2010-01-26 15:42:15 -0800224
The Android Open Source Project146de362009-03-03 19:32:18 -0800225 <!-- Event info/edit screen labels:-->
RoboErik1e3cc282011-07-29 15:49:54 -0700226 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800227 <!-- This is the title of the screen used to view the details of an event -->
228 <string name="event_info_title">View event</string>
229 <!-- This is the title of the screen used to view the details of an invitation
230 to a meeting or event -->
231 <string name="event_info_title_invite">Meeting invitation</string>
Erikac6a81d2010-01-26 15:42:15 -0800232
The Android Open Source Project146de362009-03-03 19:32:18 -0800233 <!-- EditEventActivity specific strings: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700234 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800235 <!-- Events have a start date/time and an end date/time. The display shows
236 the start and end times like 'From start date To end date'. This is the
237 label before the 'end date'. -->
238 <string name="edit_event_to_label">To</string>
239 <!-- Events have a start date/time and an end date/time. The display shows
240 the start and end times like 'From start date To end date'. This is the
241 label before the 'start date'. -->
242 <string name="edit_event_from_label">From</string>
243 <!-- Check box label that specifies if this is an all-day event -->
244 <string name="edit_event_all_day_label">All day</string>
245 <!-- Label for choosing one of the calendars -->
246 <string name="edit_event_calendar_label">Calendar</string>
Mason Tang480b2282010-08-13 15:32:03 -0700247 <!-- Menu item to show all choices [CHAR LIMIT=22]-->
248 <string name="edit_event_show_all">Show all</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800249 <!-- Label for the event description -->
250 <string name="description_label">Description</string>
251 <!-- Label for the 'Presence' of an event, which can be either 'busy' (the default)
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700252 or 'available' [CHAR LIMIT=15] -->
Michael Chan782e3892009-09-09 13:14:58 -0700253 <string name="presence_label">Show me as</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800254 <!-- Label for the 'Privacy' of an event, which can be either 'private'
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700255 or 'public' [CHAR LIMIT=15] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800256 <string name="privacy_label">Privacy</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700257 <!-- Label for the list of reminders for an event [CHAR LIMIT=20] -->
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700258 <string name="reminders_label">Add reminder</string>
Erika9125f62010-03-02 10:46:05 -0800259 <!-- Title of alert shown if the user tries to create an event and has no calendars -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800260 <string name="no_syncable_calendars">No calendars</string>
Michael Chan9d1d0d62011-02-24 11:19:13 -0800261 <!-- Body of alert shown if the user tries to create an event and has no calendars. Users can start adding an account here. [CHAR LIMIT=NONE] -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700262 <string name="no_calendars_found">Before you can add an event, you must add at least one Calendar account to your device and make a calendar visible. Touch Add Account to add an account (if you just added an account, wait for it to finish syncing and try again). Or touch Cancel and make sure at least one calendar is visible.</string>
Michael Chan69e09e82011-09-02 16:09:21 -0700263 <!-- Body of dialog prompting the user to create an account.[CHAR LIMIT=NONE] -->
264 <string name="create_an_account_desc">"Calendar works better with a Google Account.\n\n\u2022 Access it from any web browser\n\u2022 Back up your events securely"</string>
Daisuke Miyakawa464f3502010-09-21 22:12:55 -0700265 <!-- Title of a button shown when there is no account available and the system prompt a user to add one. [CHAR LIMIT=none] -->
266 <string name="add_account">Add account</string>
Erikac6a81d2010-01-26 15:42:15 -0800267
The Android Open Source Project146de362009-03-03 19:32:18 -0800268 <!-- View Event -->
RoboErik1e3cc282011-07-29 15:49:54 -0700269 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800270 <!-- Label for which calendar an event is part of -->
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700271 <string name="view_event_calendar_label">Calendar:</string>
Michael Chan0b695022009-08-30 23:28:46 -0700272 <!-- Label for the event organizer -->
Erikc058e612009-12-15 17:19:48 -0800273 <string name="view_event_organizer_label">Organizer:</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800274 <!-- Label for the local timezone -->
Michael Chan5d894062011-08-12 17:07:49 -0700275
The Android Open Source Project146de362009-03-03 19:32:18 -0800276 <!-- Label for whether the user is attending this event. This is shown when
277 a user is invited to a meeting or event. The possible answers are
278 'yes', 'no', and 'maybe' (and, initially, 'no response'). -->
279 <string name="view_event_response_label">Attending?</string>
Michael Chanf92f46b2010-10-27 18:59:05 -0700280 <!-- Response for whether attending an event - accepted [CHAR LIMIT=10]-->
281 <string name="response_yes">Yes</string>
282 <!-- Response for whether attending an event - tentative [CHAR LIMIT=10]-->
283 <string name="response_maybe">Maybe</string>
284 <!-- Response for whether attending an event - declined [CHAR LIMIT=10]-->
285 <string name="response_no">No</string>
Sara Ting42896f72012-03-15 15:24:36 -0700286 <!-- Label for emailing attendees -->
Sara Tingcb5f5682012-04-04 22:52:20 -0700287 <string name="email_guests_label">Email guests</string>
Sara Ting42896f72012-03-15 15:24:36 -0700288 <!-- This is shown in the popup picker when emailing attendees -->
289 <string name="email_picker_label">Email with</string>
290 <!-- The is shown in the email subject as the prefix appended to the event title -->
291 <string translatable="false" name="email_subject_prefix">Re: </string>
Erikac6a81d2010-01-26 15:42:15 -0800292
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700293 <!-- Event Info strings-->
294 <!-- Time Zone Label [CHAR LIMIT=12]-->
Michael Chan5d894062011-08-12 17:07:49 -0700295
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700296 <!-- Repetition Label [CHAR LIMIT=12]-->
Michael Chan5d894062011-08-12 17:07:49 -0700297
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700298 <!-- Organizer Label [CHAR LIMIT=12]-->
299 <string name="event_info_organizer">Organizer:</string>
Isaac Katzenelsonc0624ee2011-06-03 09:24:27 -0700300 <!-- More label in description button [CHAR LIMIT=6]-->
301 <string name="event_info_desc_more">More</string>
302 <!-- Less label in description button [CHAR LIMIT=6]-->
303 <string name="event_info_desc_less">Less</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700304 <!-- Reminders label [CHAR LIMIT=15]-->
305 <string name="event_info_reminders_label">Reminders</string>
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700306
The Android Open Source Project146de362009-03-03 19:32:18 -0800307 <!-- Agenda View strings -->
RoboErik1e3cc282011-07-29 15:49:54 -0700308 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800309 <!-- This is shown as part of the heading at the top of a list of today's events. -->
Isaac Katzenelson980d5302011-06-21 18:35:00 -0700310 <string name="agenda_today">TODAY, <xliff:g id="date">%1$s</xliff:g></string>
311 <!-- This is shown as part of the heading at the top of a list of today's events. -->
312 <string name="agenda_yesterday">YESTERDAY, <xliff:g id="date">%1$s</xliff:g></string>
313 <!-- This is shown as part of the heading at the top of a list of today's events. -->
Isaac Katzenelson604c3642011-07-01 11:13:20 -0700314 <string name="agenda_tomorrow">TOMORROW, <xliff:g id="date">%1$s</xliff:g></string>
Michael Chan13850932009-06-30 15:35:34 -0700315 <!-- This is shown while the calendar events are being loading to the screen. -->
316 <string name="loading">Loading\u2026</string>
Michael Chand5ade7d2010-11-22 11:16:37 -0800317 <!-- This is shown at the top of the agenda view showing the beginning of the searched range. If the user taps on this string and Calendar will find events older than what is visible and display them to the user -->
Michael Chande6f72a2010-09-28 22:12:05 -0700318 <string name="show_older_events">Touch to view events before <xliff:g id="oldest_search_range">%1$s</xliff:g></string>
Michael Chand5ade7d2010-11-22 11:16:37 -0800319 <!-- This is shown at the bottom of the agenda view showing the end of the searched range. If the user taps on this string and Calendar will find events later/newer than what is visible and display them to the user -->
Michael Chande6f72a2010-09-28 22:12:05 -0700320 <string name="show_newer_events">Touch to view events after <xliff:g id="newest_search_range">%1$s</xliff:g></string>
Erikac6a81d2010-01-26 15:42:15 -0800321
Mason Tang9138ce82010-06-28 11:08:46 -0700322 <!-- Search activity strings -->
RoboErik1e3cc282011-07-29 15:49:54 -0700323 <skip/>
Mason Tang480b2282010-08-13 15:32:03 -0700324 <!-- Title of the search screen [CHAR LIMIT=30] -->
Mason Tang9138ce82010-06-28 11:08:46 -0700325 <string name="search_title">Search my calendars</string>
326
The Android Open Source Project146de362009-03-03 19:32:18 -0800327 <!-- Button labels: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700328 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800329 <!-- This is the title of a popup window that is displayed when the user
Michael Chan352e1a22010-09-28 05:15:08 -0700330 edits a repeating event. [CHAR LIMIT=20]-->
Michael Chan88d9c002010-11-01 15:53:31 -0700331 <string name="edit_event_label">"Details"</string>
Erikc07a57f2010-12-01 10:45:48 -0800332 <!-- This is a menu button for switching into edit mode when viewing an event.
333 [CHAR LIMIT=10] -->
334 <string name="edit_label">"Edit"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800335 <!-- The button label for deleting an event -->
336 <string name="delete_label">"Delete"</string>
337 <!-- A menu item for deleting an event -->
Michael Chan5d894062011-08-12 17:07:49 -0700338
The Android Open Source Project146de362009-03-03 19:32:18 -0800339 <!-- The button label for saving an event -->
Michael Chan92c5ef02009-03-25 15:33:56 -0700340 <string name="save_label">Done</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800341 <!-- The button label for discarding changes to an event -->
Erikc343fbc2010-09-01 14:08:23 -0700342 <string name="discard_label">Cancel</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800343
344 <!-- Button labels on expanded notification reminders: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700345 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800346 <!-- The button label for making the reminder alarms go away temporarily.
347 The reminder alarms will fire off again in 5 minutes. -->
348 <string name="snooze_all_label">"Snooze all"</string>
349 <!-- The button label for dismissing all the current reminder alarms. This
350 causes them to disappear from the notification screen. -->
351 <string name="dismiss_all_label">"Dismiss all"</string>
352
353 <!-- Repetition dialog options: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700354 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800355 <!-- A label in a multiple-choice list for the specifying that an event does
356 not repeat -->
357 <string name="does_not_repeat">One-time event</string>
358 <!-- A label in a multiple-choice list for the specifying that an event
359 repeats daily -->
360 <string name="daily">Daily</string>
361 <!-- A label in a multiple-choice list for the specifying that an event
362 repeats every weekday (Monday through Friday) -->
363 <string name="every_weekday">"Every weekday (Mon\u2013Fri)"</string>
364 <!-- A label in a multiple-choice list for the specifying that an event
365 repeats weekly on some day of the week. For example,
366 'Weekly (every Tuesday)'. -->
367 <string name="weekly">"Weekly (every <xliff:g id="days_of_week">%s</xliff:g>)"</string>
368
369 <!-- Example: 'Monthly (every first Sunday)' -->
370 <!-- 1st parameter is an ordinal number, like 'first' -->
371 <!-- 2nd parameter is a day of the week, like 'Sunday' -->
Erikac6a81d2010-01-26 15:42:15 -0800372 <string name="monthly_on_day_count">"Monthly (every <xliff:g id="ordinal_number">%1$s</xliff:g> <xliff:g id="day_of_week">%2$s</xliff:g>)"</string>
Erika9125f62010-03-02 10:46:05 -0800373 <!-- The common portion of a string describing how often an event repeats,
374 example: 'Monthly (on day 2)' -->
Ken Shirriff5442a162010-02-26 16:06:04 -0800375 <string name="monthly">Monthly</string>
376 <!-- Calendar spinner item, to select that an event recurs every year. -->
377 <string name="yearly_plain">Yearly</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800378 <!-- Example: "Monthly (on day 15)" -->
379 <string name="monthly_on_day">"Monthly (on day <xliff:g id="day_of_month">%s</xliff:g>)"</string>
380 <!-- Example: "Yearly (on April 15)" -->
381 <string name="yearly">"Yearly (on <xliff:g id="dates">%s</xliff:g>)"</string>
Erikac6a81d2010-01-26 15:42:15 -0800382 <!-- This is a label for telling the user that this event repeats in
The Android Open Source Project146de362009-03-03 19:32:18 -0800383 custom (non-standard) way from the usual repeat rates (such as daily,
384 weekly, etc.) and that the user cannot change this on the phone
385 (but only on the web). -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700386 <string name="custom" product="tablet">"Custom (can\'t customize on tablet)"</string>
Eric Fischera9e8f532010-11-03 16:47:41 -0700387 <!-- This is a label for telling the user that this event repeats in
388 custom (non-standard) way from the usual repeat rates (such as daily,
389 weekly, etc.) and that the user cannot change this on the phone
390 (but only on the web). -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700391 <string name="custom" product="default">"Custom (can\'t customize on phone)"</string>
Erikac6a81d2010-01-26 15:42:15 -0800392
The Android Open Source Project146de362009-03-03 19:32:18 -0800393 <!-- This is a choice in a list that the user sees when he tries to modify
394 a repeating event. This choice says to change just this one instance
395 of this repeating event. -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700396 <string name="modify_event">Change only this event</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800397 <!-- This is a choice in a list that the user sees when he tries to modify
398 a repeating event. This choice says to change all occurrences of
399 this repeating event. -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700400 <string name="modify_all">Change all events in the series</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800401 <!-- This is a choice in a list that the user sees when he tries to modify
402 a repeating event. This choice says to change this instance and all
403 future occurrences of this repeating event. -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700404 <string name="modify_all_following">Change this and all future events</string>
Erikac6a81d2010-01-26 15:42:15 -0800405
The Android Open Source Project146de362009-03-03 19:32:18 -0800406 <!-- Dialogs -->
Erikac6a81d2010-01-26 15:42:15 -0800407
RoboErik20b6fb52011-07-25 14:20:54 -0700408 <!-- This is a label on the dialog for creating a new event. [CHAR LIMIT=30] -->
409 <string name="new_event_dialog_label">"New event"</string>
410 <!-- This is the button to create a new event in a dialog window. [CHAR LIMIT=30] -->
411 <string name="new_event_dialog_option">"New event"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800412 <!-- Confirmation dialog message -->
RoboErik1e3cc282011-07-29 15:49:54 -0700413 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800414 <!-- This is a confirmation message in a popup dialog that appears when the
415 user has asked to delete an event. The user still has a chance to cancel
416 this operation. -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700417 <string name="delete_this_event_title">Delete this event?</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800418 <!-- This is the title of a popup dialog that asks for confirmation before
The Android Open Source Project146de362009-03-03 19:32:18 -0800419 changing the response to an invitation. -->
420 <string name="change_response_title">Change response</string>
421
Daisuke Miyakawa4b441bd2010-09-16 14:55:36 -0700422 <!-- This the title of a menu for General Preferences.
423 Pressing the menu item lets user to view and edit his general settings
424 (or preferences) [CHAR LIMIT=30] -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700425 <string name="menu_general_preferences">General settings</string>
Daisuke Miyakawa4b441bd2010-09-16 14:55:36 -0700426
Daisuke Miyakawa4ad63022010-09-17 13:57:35 -0700427 <!-- This the title of a menu for "About Calendar" Preferences.
428 Pressing the menu item lets user to view the current settings
429 [CHAR LIMIT=30] -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700430 <string name="menu_about_preferences">About Calendar</string>
Daisuke Miyakawa4ad63022010-09-17 13:57:35 -0700431
The Android Open Source Project146de362009-03-03 19:32:18 -0800432 <!-- This is the title of the screen for setting user preferences. -->
433 <string name="preferences_title">"Settings"</string>
434 <!-- This is the title of a section in the Settings screen for settings
435 related to viewing calendar events -->
436 <string name="preferences_general_title">Calendar view setting</string>
437 <!-- This is the title of a section in the Settings screen for settings
438 related to reminders for calendar events -->
Mason Tangcca9ecb2010-07-16 15:07:47 -0700439 <string name="preferences_reminder_title">Reminder settings</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800440 <!-- Settings check box label to hide events that the user has declined to attend -->
441 <string name="preferences_hide_declined_title">Hide declined events</string>
Mason Tang8e3d4302010-07-12 17:39:30 -0700442 <!-- Settings week start label to start week on specific day-->
443 <string name="preferences_week_start_day_title">Week starts on</string>
444 <!-- Title of popup for week start day setting-->
445 <string name="preferences_week_start_day_dialog">Week starts on</string>
446 <!-- DO NOT TRANSLATE -->
447 <string name="preferences_week_start_day_default">-1</string>
Mason Tang3a0e67b2010-08-23 16:59:30 -0700448 <!-- Title of the settings item to clear the recent search history [CHAR LIMIT=40] -->
449 <string name="preferences_clear_search_history_title">Clear search history</string>
450 <!-- Summary of the settings item to clear the recent search history [CHAR LIMIT=70]-->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700451 <string name="preferences_clear_search_history_summary">Remove all the searches you\'ve performed</string>
Mason Tang3a0e67b2010-08-23 16:59:30 -0700452 <!-- Message to show in a toast when the history is cleared [CHAR LIMIT=40] -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700453 <string name="search_history_cleared">Search history cleared.</string>
Mason Tangcca9ecb2010-07-16 15:07:47 -0700454 <!-- Settings check box label to enable or disable notifications -->
455 <string name="preferences_alerts_title">Notifications</string>
Jim Shuma1fec2202010-03-17 11:54:54 -0700456 <!-- Settings dialog label that specifies when the phone should vibrate -->
457 <string name="preferences_alerts_vibrateWhen_title">Vibrate</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800458 <!-- Title of ringtone selector dialog -->
Claudia de Veauxfd63efe2011-10-12 14:33:25 -0700459 <string name="preferences_alerts_ringtone_title">Choose ringtone</string>
Mason Tangcca9ecb2010-07-16 15:07:47 -0700460 <!-- Title of check box label to enable or disable pop-up notifications -->
461 <string name="preferences_alerts_popup_title">Pop-up notification</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800462 <!-- List item label for setting the default number of reminder minutes -->
Roy West214dbb42009-09-20 17:33:41 -0700463 <string name="preferences_default_reminder_title">Default reminder time</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800464 <!-- Title of dialog for setting the default number of reminder minutes -->
465 <string name="preferences_default_reminder_dialog">Default reminder time</string>
466 <!-- Default value for the number of reminder minutes -->
467 <string name="preferences_default_reminder_default">10</string>
Erikc497d7d2010-09-07 16:36:39 -0700468 <!-- Settings check box label to keep Calendar in a fixed 'home' time zone [CHAR LIMIT = 18] -->
469 <string name="preferences_use_home_tz_title">Use home time zone</string>
470 <!-- Settings description of what setting Calendar to use a fixed 'home' time
471 zone does [CHAR LIMIT = 60]-->
472 <string name="preferences_use_home_tz_descrip">Displays calendars and event times in your home time zone when traveling</string>
473 <!-- Settings title for selecting a 'home' time zone to display Calendar in [CHAR LIMIT = 18] -->
474 <string name="preferences_home_tz_title">Home time zone</string>
475 <!-- DO NOT TRANSLATE -->
476 <string name="preferences_home_tz_default">America/Los_Angeles</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800477
Daisuke Miyakawad644b0d2010-10-21 15:45:12 -0700478 <!-- Title of the settings item to show week number in week view [CHAR LIMIT=40] -->
479 <string name="preferences_show_week_num_title">Show week number</string>
480
Michael Chan8bb13b82010-03-01 22:22:48 -0800481 <!-- This is the title of a section in the Settings screen for "About" this application -->
482 <string name="preferences_about_title">About</string>
483 <!-- Build version of the application -->
484 <string name="preferences_build_version">Build version</string>
Jim Shuma1fec2202010-03-17 11:54:54 -0700485
486 <!-- The vibrate notification modes -->
487 <string-array name="prefEntries_alerts_vibrateWhen">
488 <!-- Always -->
489 <item>Always</item>
490 <!-- Only when the phone is in Silent mode -->
491 <item>Only when silent</item>
492 <!-- Never -->
493 <item>Never</item>
494 </string-array>
495
496 <!-- The default vibrateWhen value, when none is set -->
497 <string translatable="false" name="prefDefault_alerts_vibrateWhen">never</string>
498 <!-- The value to use then migrating from old versions for a true vibrate setting -->
499 <string translatable="false" name="prefDefault_alerts_vibrate_true">always</string>
500 <!-- The value to use then migrating from old versions for a false vibrate setting -->
501 <string translatable="false" name="prefDefault_alerts_vibrate_false">never</string>
502
503 <!-- The vibrateWhen values -->
504 <string-array translatable="false" name="prefValues_alerts_vibrateWhen">
505 <item>always</item>
506 <item>silent</item>
507 <item>never</item>
508 </string-array>
509
510 <!-- Dialog title for the Vibrate dialog -->
511 <string name="prefDialogTitle_vibrateWhen">Vibrate</string>
512
Mason Tangbb3f08a2010-06-22 17:03:54 -0700513 <!-- Widget -->
RoboErik1e3cc282011-07-29 15:49:54 -0700514 <skip/>
Mason Tangbb3f08a2010-06-22 17:03:54 -0700515 <!-- Title for calendar gadget when displayed in list of all other gadgets -->
516 <string name="gadget_title">Calendar</string>
517
Erik40bcd102010-11-16 15:46:40 -0800518 <!-- Shown in month view next to event icon when additional events exist for that day, but no
519 room remaining -->
520 <plurals name="month_more_events">
521 <!-- additional events message for 1 event, the quotes force a literal interpretation of the
522 string [CHAR LIMIT = 10] -->
523 <item quantity="one">"+1"</item>
524 <!-- additional events message for multiple events [CHAR LIMIT = 10] -->
525 <item quantity="other">+<xliff:g id="number">%d</xliff:g></item>
526 </plurals>
527
Mason Tangbb3f08a2010-06-22 17:03:54 -0700528 <!-- Caption to show on gadget when there are no upcoming calendar events -->
529 <string name="gadget_no_events">No upcoming calendar events</string>
530
Mason Tangbb3f08a2010-06-22 17:03:54 -0700531 <!-- Text to show on gadget when an event is currently in progress -->
Michael Chan5d894062011-08-12 17:07:49 -0700532
Mason Tangbb3f08a2010-06-22 17:03:54 -0700533
534 <!-- Text to show on gadget when an all-day event is in progress -->
Michael Chan5d894062011-08-12 17:07:49 -0700535
Mason Tangbb3f08a2010-06-22 17:03:54 -0700536
Erikca478672011-01-19 20:02:47 -0800537 <!-- DO NOT TRANSLATE -->
538 <string name="tardis">TARDIS</string>
539
Michael Chanc03aab42011-04-21 15:59:29 -0700540 <!-- Send a copy of the database to developers for debugging [CHAR LIMIT="NONE"] -->
541 <string name="copy_db">Send database</string>
542
Dmitri Plotnikovee212202010-08-27 17:58:19 -0700543 <!-- Displayed in email address autocomplete list when searching for contacts
544 in corporate directories. Example: "Searching bigcompany.com..." [CHAR LIMIT=64] -->
545 <string name="directory_searching_fmt">Searching <xliff:g id="domain">%s</xliff:g>\u2026</string>
Mason Tangbb3f08a2010-06-22 17:03:54 -0700546
Erik259b8f92011-01-12 14:01:12 -0800547 <!-- Accessibility Events -->
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700548 <!-- Strings that describes actions for buttons without text -->
549 <!-- Create a new calendar event [CHAR LIMIT = NONE]-->
Michael Chan5d894062011-08-12 17:07:49 -0700550
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700551 <!-- Remove a name of an attendee from a calendar event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700552 <string name="accessibility_remove_attendee">Remove attendee</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700553 <!-- Pick a starting date for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700554 <string name="accessibility_pick_start_date">Start date</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700555 <!-- Pick a starting time for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700556 <string name="accessibility_pick_start_time">Start time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700557 <!-- Pick the ending date for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700558 <string name="accessibility_pick_end_date">End date</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700559 <!-- Pick the ending time for a new event[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700560 <string name="accessibility_pick_end_time">End time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700561 <!-- Select a time zone for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700562 <string name="accessibility_pick_time_zone">Time zone</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700563 <!-- Add a reminder to an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700564 <string name="accessibility_add_reminder">Add reminder</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700565 <!-- Remove a reminder from an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700566 <string name="accessibility_remove_reminder">Remove reminder</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700567 <!-- Add a new attendee to an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700568 <string name="accessibility_add_attendee">Add attendee</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700569 <!-- Choose if to sync/unsync this calendar with its server [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700570 <string name="accessibility_sync_cal">Sync calendar</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700571 <!-- Mark this event as an "all day event" [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700572 <string name="accessibility_all_day">All day event</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700573 <!-- Refresh the data in the calendar [CHAR LIMIT = NONE]-->
Michael Chan5d894062011-08-12 17:07:49 -0700574
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700575 <!-- Choose the type of repetition for the event (daily, weekly, etc.[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700576 <string name="accessibility_repeats">Repetition</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700577 <!-- Set the time for the reminder[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700578 <string name="accessibility_reminder_time">Reminder time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700579 <!-- Set the type of the reminder (popup/email/sms)[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700580 <string name="accessibility_reminder_type">Reminder type</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700581 <!-- Select the way you are visible for the event (busy/free) [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700582 <string name="accessibility_reminder_showmeas">Show me as</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700583 <!-- Set the event as private/public/default [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700584 <string name="accessibility_reminder_privacy">Privacy</string>
Isaac Katzenelson98819072012-03-01 15:58:30 -0800585 <!-- Calendar notification [CHAR LIMIT = NONE]-->
586 <string name="acessibility_cal_notification">Calendar Notification</string>
587 <!-- Calendar notification snooze button [CHAR LIMIT = NONE]-->
588 <string name="acessibility_snooze_notification">Snooze Notification</string>
Erik259b8f92011-01-12 14:01:12 -0800589
Isaac Katzenelsonba25b7c2011-09-27 15:07:46 -0700590 <!-- A "new event" hint for the user when selecting a specific hour in the day view [CHAR LIMIT = 30]-->
591 <string name="day_view_new_event_hint">+ New event</string>
592
Erik259b8f92011-01-12 14:01:12 -0800593 <!--
594 Source: A value for announcing the current event index (example: "Event 2 of 6").
595 Description: This is spoken to the user. [CHAR LIMIT="NONE"]
596 -->
597 <string name="template_announce_item_index">Event <xliff:g id="item_index">%1$s</xliff:g> of <xliff:g id="item_count">%2$s</xliff:g>.</string>
598
Isaac Katzenelson98819072012-03-01 15:58:30 -0800599 <!-- number of events in the notification bar -->
600 <plurals name="Nevents">
601 <!-- This is the label for a 1 event. -->
602 <item quantity="one">1 event</item>
603 <!-- This is the label for 2 or more events. -->
604 <item quantity="other"><xliff:g id="count">%d</xliff:g> events</item>
605 </plurals>
Sara Ting4e954452012-04-27 17:27:35 -0700606
607 <!-- number of remaining events for an alert in the notification bar [CHAR LIMIT = 30] -->
608 <plurals name="N_more_events">
609 <!-- This is the label for 1 event. -->
610 <item quantity="one">+1 event</item>
611 <!-- This is the label for 2 or more events. -->
612 <item quantity="other">+<xliff:g id="count">%d</xliff:g> events</item>
613 </plurals>
614
Isaac Katzenelsonf558e022012-03-07 15:41:11 -0800615 <!-- Description of the selected marker for accessibility support [CHAR LIMIT = NONE]-->
616 <string name="acessibility_selected_marker_description">Selected event</string>
Michael Chan83f9b422012-04-16 12:39:45 -0700617
618 <!-- Tell user not to check a checkbox [CHAR LIMIT=30] -->
619 <string name="do_not_check">Do NOT check -></string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800620</resources>