blob: f5bda3e9832bc5f631977833f76e704be3e63913 [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-->
16
17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
18 <!-- This is the label underneath the icon for Calendar -->
19 <string name="app_label">Calendar</string>
The Android Open Source Project146de362009-03-03 19:32:18 -080020
21 <!-- Shared Labels. These labels are shared among the activities. -->
22 <skip />
23 <!-- This is the label for the title or name of an event -->
24 <string name="what_label">What</string>
The Android Open Source Project146de362009-03-03 19:32:18 -080025 <!-- This is the label for the location of an event -->
26 <string name="where_label">Where</string>
Michael Chan24ee3362010-11-01 19:06:01 -070027 <!-- This is the label for the time of an event [CHAR LIMIT=30] -->
28 <string name="when_label">When</string>
Mason Tang4c8871b2010-08-10 10:17:43 -070029 <!-- This is the label for the timezone of an event [CHAR LIMIT=30] -->
Erik259b8f92011-01-12 14:01:12 -080030 <string name="timezone_label">Time zone</string>
Michael Chan47f3f702009-07-23 16:01:07 -070031 <!-- This is the label for the Guests/Attendees of an event -->
32 <string name="attendees_label">Guests</string>
33 <!-- This is the label for the Guest Responses and count of an event e.g. Yes (3) -->
34 <string name="response_label">"<xliff:g id="response_type">%s</xliff:g> (<xliff:g id="guest_count">%d</xliff:g>)"</string>
Erikac6a81d2010-01-26 15:42:15 -080035
The Android Open Source Project146de362009-03-03 19:32:18 -080036 <!-- Some events repeat daily, weekly, monthly, or yearly. This is the label
37 for all the choices about how often an event repeats (including the choice
38 of not repeating). -->
39 <string name="repeats_label">Repetition</string>
40 <!-- Title of event when no explicit title is specified by the user -->
Michael Chan4778fdb2010-02-09 12:05:21 -080041 <string name="no_title_label">(No title)</string>
Erikac6a81d2010-01-26 15:42:15 -080042
The Android Open Source Project146de362009-03-03 19:32:18 -080043 <!-- Reminder format strings -->
44 <plurals name="Nminutes">
45 <!-- This is the label for a 1-minute reminder. -->
46 <item quantity="one">1 minute</item>
47 <!-- This is the label for 2 or more minutes. The actual number of
48 minutes is a parameter. -->
49 <item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
50 </plurals>
51 <!-- We use the abbreviation "mins" instead of "minutes" to keep the string short.
52 This is the number of minutes displayed for a calendar reminder. For example,
53 a reminder of 10 minutes would be displayed as '10 mins'. The translation
54 should use the shortest acceptable abbreviation to save space. -->
55 <plurals name="Nmins">
56 <!-- This is the label for a 1-minute reminder. -->
57 <item quantity="one">1 min</item>
58 <!-- This is the label for 2 or more minutes. The actual number of
59 minutes is a parameter. -->
60 <item quantity="other"><xliff:g id="count">%d</xliff:g> mins</item>
61 </plurals>
62 <!-- This is the number of hours displayed for a calendar reminder. For example,
63 a reminder of 1 hour would be displayed as '1 hour'. The translation
64 should use the shortest acceptable abbreviation of 'hour' to save space. -->
65 <plurals name="Nhours">
66 <!-- This is the label for a 1-hour reminder. -->
67 <item quantity="one">1 hour</item>
68 <!-- This is the label for a reminder of 2 or more hours. The actual number of
69 hours is a parameter. -->
70 <item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
71 </plurals>
72 <!-- This is the number of days displayed for a calendar reminder. For example,
73 a reminder of 2 days would be displayed as '2 days'. The translation
74 should use the shortest acceptable abbreviation of 'day' to save space. -->
75 <plurals name="Ndays">
76 <!-- This is the label for a reminder of 1 day. -->
77 <item quantity="one">1 day</item>
78 <!-- This is the label for a reminder of 2 or more days. The actual number of
79 days is a parameter. -->
80 <item quantity="other"><xliff:g id="count">%d</xliff:g> days</item>
81 </plurals>
Erikac6a81d2010-01-26 15:42:15 -080082
The Android Open Source Project146de362009-03-03 19:32:18 -080083 <!-- Menu items: -->
84 <skip />
Michael Chan3e387782010-07-26 10:33:10 -070085 <!-- This is a label on a context menu item. Pressing this menu item to initiate
Mason Tang480b2282010-08-13 15:32:03 -070086 syncing of your Calendar data with the server. [CHAR LIMIT=11] -->
Michael Chan3937bc72010-07-30 11:14:11 -070087 <string name="calendar_refresh"> "Refresh"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -080088 <!-- This is a label on a context menu item. Pressing this menu item displays the
89 Agenda view. -->
90 <string name="show_agenda_view">"Show agenda"</string>
91 <!-- This is a label on a context menu item. Pressing this menu item displays the
92 Day view. -->
93 <string name="show_day_view">"Show day"</string>
94 <!-- This is a label on a menu item. Pressing this menu item displays the
95 Agenda view. -->
96 <string name="agenda_view">"Agenda"</string>
97 <!-- This is a label on a menu item. Pressing this menu item displays the
98 Day view. -->
99 <string name="day_view">"Day"</string>
100 <!-- This is a label on a menu item. Pressing this menu item displays the
101 Week view. -->
102 <string name="week_view">"Week"</string>
103 <!-- This is a label on a menu item. Pressing this menu item displays the
104 Month view. -->
105 <string name="month_view">"Month"</string>
106 <!-- This is a label on a menu item. Pressing this menu item displays the
107 details of an event. -->
108 <string name="event_view">"View event"</string>
109 <!-- This is a label on a menu item. Pressing this menu item allows the
110 user to create a new event. -->
111 <string name="event_create">"New event"</string>
112 <!-- This is a label on a menu item in a popup window. Pressing this menu
113 item allows the user to edit or change an existing event. -->
114 <string name="event_edit">"Edit event"</string>
115 <!-- This is a label on a menu item in a popup window. Pressing this menu
116 item allows the user to delete an existing event. -->
117 <string name="event_delete">"Delete event"</string>
118 <!-- This is a label on a menu item. Pressing this menu
119 item takes the user to the current day (today) in whatever view
120 (Day view, Week view, Agenda view, Month view) they are currently in. -->
121 <string name="goto_today">"Today"</string>
122 <!-- This is a label on a menu item. Pressing this menu item allows the
123 user to see the list of calendars that he is viewing and to then add
124 or remove selected calendars. -->
Erik9b633c92010-02-08 12:57:03 -0800125 <string name="menu_select_calendars">"Calendars"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800126 <!-- This is a label on a menu item. Pressing this menu item allows the
127 user to view and edit his Settings (or Preferences) -->
128 <string name="menu_preferences">"Settings"</string>
Mason Tang9138ce82010-06-28 11:08:46 -0700129 <!-- This is a label on a menu item. Pressing this menu item allows the
Mason Tang480b2282010-08-13 15:32:03 -0700130 user to search their events. [CHAR LIMIT=11]-->
Mason Tang9138ce82010-06-28 11:08:46 -0700131 <string name="search">"Search"</string>
RoboErikde20d762011-02-08 17:52:25 -0800132 <!-- This is a label on a menu item. Pressing this menu item hides
133 the navigation controls on the right side. [CHAR LIMIT=20] -->
134 <string name="hide_controls">"Hide controls"</string>
135 <!-- This is a label on a menu item. Pressing this menu item shows the
136 navigation controls on the right side. [CHAR LIMIT=20] -->
137 <string name="show_controls">"Show controls"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800138
139 <!-- Month view -->
140 <skip />
The Android Open Source Project146de362009-03-03 19:32:18 -0800141
142 <!-- Select Calendars activity -->
143 <skip />
144 <!-- Title of "My calendars" screen -->
Erik9b633c92010-02-08 12:57:03 -0800145 <string name="calendars_title">"Calendars"</string>
Erikac6a81d2010-01-26 15:42:15 -0800146 <!-- Synced and visible status message -->
147 <string name="synced_visible">synced, visible</string>
148 <!-- Synced but not visible status message -->
149 <string name="synced_not_visible">synced, not visible</string>
150 <!-- not Synced or visible status message -->
151 <string name="not_synced_not_visible">not synced, not visible</string>
Erik6b858fc2010-09-15 18:59:04 -0700152 <!-- Synced status message displayed when the given calendar is stored/synced on the device
153 [CHAR LIMIT=60] -->
154 <string name="synced"> synced</string>
155 <!-- Not synced status message displayed when the given calendar is not stored/synced on the
156 device [CHAR LIMIT=60] -->
157 <string name="not_synced"> not synced</string>
158 <!-- Message displayed to user when an account with Calendars is not being auto-synced
159 [CHAR LIMIT=120]-->
160 <string name="acct_not_synced">This account is not being synced and your calendars may
Michael Chan88d9c002010-11-01 15:53:31 -0700161 not be up to date.</string>
Erik6b858fc2010-09-15 18:59:04 -0700162 <!-- Label on button that takes user to the Accounts and Sync settings page [CHAR LIMIT=60] -->
163 <string name="accounts">Accounts &amp; sync</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800164
165 <!-- Event edit activity -->
166 <skip />
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700167 <!-- The title of the screen where the user edits an event [CHAR LIMIT=17] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800168 <string name="event_edit_title">"Event details"</string>
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700169 <!-- Default value of What field (as a hint to the user) [CHAR LIMIT=15] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800170 <string name="hint_what">"Event name"</string>
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700171 <!-- Default value of Where field (as a hint to the user)[CHAR LIMIT=15] -->
172 <string name="hint_where">"Location"</string>
173 <!-- Default value of Description field (as a hint to the user) [CHAR LIMIT=15]-->
174 <string name="hint_description">"Description"</string>
175 <!-- Default value of Attendees/Guests field (as a hint to the user) [CHAR LIMIT=10] -->
176 <string name="hint_attendees">"Guests"</string>
Erika9125f62010-03-02 10:46:05 -0800177 <!-- Toast message displayed when a new event is created -->
178 <string name="creating_event">"Event created"</string>
179 <!-- Toast message displayed when an existing event is saved after being modified -->
180 <string name="saving_event">"Event saved"</string>
Michael Chanea8ebdb2011-02-28 19:04:00 -0800181 <!-- Toast message displayed when a new event with guests is created -->
182 <string name="creating_event_with_guest">"Invitations sent"</string>
183 <!-- Toast message displayed when an existing event with guests is saved after being modified -->
184 <string name="saving_event_with_guest">"Updates sent"</string>
Erika9125f62010-03-02 10:46:05 -0800185 <!-- Title of message displayed to indicate available calendars are being loaded when creating
186 a new event -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800187 <string name="loading_calendars_title">"Loading calendars"</string>
Erika9125f62010-03-02 10:46:05 -0800188 <!-- Body of message displayed to indicate available calendars are being loaded when creating
189 a new event -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800190 <string name="loading_calendars_message">"Loading calendars\u2026"</string>
191
192 <!-- The alert toast is not actually being displayed for some reason. -->
193 <skip />
The Android Open Source Project7abd8562009-03-05 14:34:37 -0800194 <!-- the title of the alert/notification activity -->
195 <string name="alert_title">Calendar notifications</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800196 <!-- Notification window messages: -->
197 <skip />
Erikac6a81d2010-01-26 15:42:15 -0800198
The Android Open Source Project146de362009-03-03 19:32:18 -0800199 <!-- Event info/edit screen labels:-->
200 <skip />
201 <!-- This is the title of the screen used to view the details of an event -->
202 <string name="event_info_title">View event</string>
203 <!-- This is the title of the screen used to view the details of an invitation
204 to a meeting or event -->
205 <string name="event_info_title_invite">Meeting invitation</string>
Erikac6a81d2010-01-26 15:42:15 -0800206
The Android Open Source Project146de362009-03-03 19:32:18 -0800207 <!-- EditEventActivity specific strings: -->
208 <skip />
209 <!-- Events have a start date/time and an end date/time. The display shows
210 the start and end times like 'From start date To end date'. This is the
211 label before the 'end date'. -->
212 <string name="edit_event_to_label">To</string>
213 <!-- Events have a start date/time and an end date/time. The display shows
214 the start and end times like 'From start date To end date'. This is the
215 label before the 'start date'. -->
216 <string name="edit_event_from_label">From</string>
217 <!-- Check box label that specifies if this is an all-day event -->
218 <string name="edit_event_all_day_label">All day</string>
219 <!-- Label for choosing one of the calendars -->
220 <string name="edit_event_calendar_label">Calendar</string>
Mason Tang480b2282010-08-13 15:32:03 -0700221 <!-- Menu item to show all choices [CHAR LIMIT=22]-->
222 <string name="edit_event_show_all">Show all</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800223 <!-- Label for the event description -->
224 <string name="description_label">Description</string>
225 <!-- Label for the 'Presence' of an event, which can be either 'busy' (the default)
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700226 or 'available' [CHAR LIMIT=15] -->
Michael Chan782e3892009-09-09 13:14:58 -0700227 <string name="presence_label">Show me as</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800228 <!-- Label for the 'Privacy' of an event, which can be either 'private'
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700229 or 'public' [CHAR LIMIT=15] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800230 <string name="privacy_label">Privacy</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700231 <!-- Label for the list of reminders for an event [CHAR LIMIT=20] -->
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700232 <string name="reminders_label">Add reminder</string>
Erika9125f62010-03-02 10:46:05 -0800233 <!-- 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 -0800234 <string name="no_syncable_calendars">No calendars</string>
Michael Chan9d1d0d62011-02-24 11:19:13 -0800235 <!-- 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] -->
236 <string name="no_calendars_found">Before you can add an event, you must add at least one Calendar account to the device and make a calendar visible. Touch \u0022Add account\u0022 to add an account (if you just added an account, wait for it to finish syncing and try again). Or touch Cancel and ensure that at least one calendar is visible.</string>
Daisuke Miyakawa464f3502010-09-21 22:12:55 -0700237 <!-- Title of a button shown when there is no account available and the system prompt a user to add one. [CHAR LIMIT=none] -->
238 <string name="add_account">Add account</string>
Michael Chan352e1a22010-09-28 05:15:08 -0700239 <!-- Label for adding guests to an event [CHAR LIMIT=32]-->
240 <string name="add_guests_label">Add guests</string>
Erikf457b752011-06-07 17:31:45 -0700241 <!-- DO NOT TRANSLATE the domain to use for auto-completing email addresses-->
242 <string name="google_email_domain">gmail.com</string>
Erikac6a81d2010-01-26 15:42:15 -0800243
The Android Open Source Project146de362009-03-03 19:32:18 -0800244 <!-- View Event -->
245 <skip />
246 <!-- Label for which calendar an event is part of -->
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700247 <string name="view_event_calendar_label">Calendar:</string>
Michael Chan0b695022009-08-30 23:28:46 -0700248 <!-- Label for the event organizer -->
Erikc058e612009-12-15 17:19:48 -0800249 <string name="view_event_organizer_label">Organizer:</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800250 <!-- Label for the local timezone -->
Erikc058e612009-12-15 17:19:48 -0800251 <string name="view_event_timezone_label">Local time zone:</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800252 <!-- Label for whether the user is attending this event. This is shown when
253 a user is invited to a meeting or event. The possible answers are
254 'yes', 'no', and 'maybe' (and, initially, 'no response'). -->
255 <string name="view_event_response_label">Attending?</string>
Michael Chanf92f46b2010-10-27 18:59:05 -0700256 <!-- Response for whether attending an event - accepted [CHAR LIMIT=10]-->
257 <string name="response_yes">Yes</string>
258 <!-- Response for whether attending an event - tentative [CHAR LIMIT=10]-->
259 <string name="response_maybe">Maybe</string>
260 <!-- Response for whether attending an event - declined [CHAR LIMIT=10]-->
261 <string name="response_no">No</string>
Erikac6a81d2010-01-26 15:42:15 -0800262
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700263 <!-- Event Info strings-->
264 <!-- Time Zone Label [CHAR LIMIT=12]-->
265 <string name="event_info_timezone">TimeZone:</string>
266 <!-- Repetition Label [CHAR LIMIT=12]-->
267 <string name="event_info_repetition">Repetition:</string>
268 <!-- Organizer Label [CHAR LIMIT=12]-->
269 <string name="event_info_organizer">Organizer:</string>
Isaac Katzenelsonc0624ee2011-06-03 09:24:27 -0700270 <!-- More label in description button [CHAR LIMIT=6]-->
271 <string name="event_info_desc_more">More</string>
272 <!-- Less label in description button [CHAR LIMIT=6]-->
273 <string name="event_info_desc_less">Less</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700274 <!-- Reminders label [CHAR LIMIT=15]-->
275 <string name="event_info_reminders_label">Reminders</string>
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700276
The Android Open Source Project146de362009-03-03 19:32:18 -0800277 <!-- Agenda View strings -->
278 <skip />
279 <!-- 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 -0700280 <string name="agenda_today">TODAY, <xliff:g id="date">%1$s</xliff:g></string>
281 <!-- This is shown as part of the heading at the top of a list of today's events. -->
282 <string name="agenda_yesterday">YESTERDAY, <xliff:g id="date">%1$s</xliff:g></string>
283 <!-- This is shown as part of the heading at the top of a list of today's events. -->
284 <string name="agenda_tomorrow">TOMMOROW, <xliff:g id="date">%1$s</xliff:g></string>
Michael Chan13850932009-06-30 15:35:34 -0700285 <!-- This is shown while the calendar events are being loading to the screen. -->
286 <string name="loading">Loading\u2026</string>
Michael Chand5ade7d2010-11-22 11:16:37 -0800287 <!-- 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 -0700288 <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 -0800289 <!-- 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 -0700290 <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 -0800291
Mason Tang9138ce82010-06-28 11:08:46 -0700292 <!-- Search activity strings -->
293 <skip />
Mason Tang480b2282010-08-13 15:32:03 -0700294 <!-- Title of the search screen [CHAR LIMIT=30] -->
Mason Tang9138ce82010-06-28 11:08:46 -0700295 <string name="search_title">Search my calendars</string>
296
The Android Open Source Project146de362009-03-03 19:32:18 -0800297 <!-- ICS Import activity -->
298 <skip />
299 <!-- This is a abbreviation for 'Number of events' and is a label next to
300 an input for the user to enter the number of events to import. -->
301 <string name="num_events">"Num events"</string>
302
303 <!-- Button labels: -->
304 <skip />
305 <!-- This is the title of a popup window that is displayed when the user
Michael Chan352e1a22010-09-28 05:15:08 -0700306 edits a repeating event. [CHAR LIMIT=20]-->
Michael Chan88d9c002010-11-01 15:53:31 -0700307 <string name="edit_event_label">"Details"</string>
Erikc07a57f2010-12-01 10:45:48 -0800308 <!-- This is a menu button for switching into edit mode when viewing an event.
309 [CHAR LIMIT=10] -->
310 <string name="edit_label">"Edit"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800311 <!-- The button label for deleting an event -->
312 <string name="delete_label">"Delete"</string>
313 <!-- A menu item for deleting an event -->
314 <string name="delete_event_label">"Delete event"</string>
315 <!-- The button label for saving an event -->
Michael Chan92c5ef02009-03-25 15:33:56 -0700316 <string name="save_label">Done</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800317 <!-- The button label for discarding changes to an event -->
Erikc343fbc2010-09-01 14:08:23 -0700318 <string name="discard_label">Cancel</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800319 <!-- The button label for importing events from another source to the phone -->
320 <string name="import_label">"Import"</string>
321
322 <!-- Button labels on expanded notification reminders: -->
323 <skip />
324 <!-- The button label for making the reminder alarms go away temporarily.
325 The reminder alarms will fire off again in 5 minutes. -->
326 <string name="snooze_all_label">"Snooze all"</string>
327 <!-- The button label for dismissing all the current reminder alarms. This
328 causes them to disappear from the notification screen. -->
329 <string name="dismiss_all_label">"Dismiss all"</string>
330
331 <!-- Repetition dialog options: -->
332 <skip />
333 <!-- A label in a multiple-choice list for the specifying that an event does
334 not repeat -->
335 <string name="does_not_repeat">One-time event</string>
336 <!-- A label in a multiple-choice list for the specifying that an event
337 repeats daily -->
338 <string name="daily">Daily</string>
339 <!-- A label in a multiple-choice list for the specifying that an event
340 repeats every weekday (Monday through Friday) -->
341 <string name="every_weekday">"Every weekday (Mon\u2013Fri)"</string>
342 <!-- A label in a multiple-choice list for the specifying that an event
343 repeats weekly on some day of the week. For example,
344 'Weekly (every Tuesday)'. -->
345 <string name="weekly">"Weekly (every <xliff:g id="days_of_week">%s</xliff:g>)"</string>
346
347 <!-- Example: 'Monthly (every first Sunday)' -->
348 <!-- 1st parameter is an ordinal number, like 'first' -->
349 <!-- 2nd parameter is a day of the week, like 'Sunday' -->
Erikac6a81d2010-01-26 15:42:15 -0800350 <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 -0800351 <!-- The common portion of a string describing how often an event repeats,
352 example: 'Monthly (on day 2)' -->
Ken Shirriff5442a162010-02-26 16:06:04 -0800353 <string name="monthly">Monthly</string>
354 <!-- Calendar spinner item, to select that an event recurs every year. -->
355 <string name="yearly_plain">Yearly</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800356 <!-- Example: "Monthly (on day 15)" -->
357 <string name="monthly_on_day">"Monthly (on day <xliff:g id="day_of_month">%s</xliff:g>)"</string>
358 <!-- Example: "Yearly (on April 15)" -->
359 <string name="yearly">"Yearly (on <xliff:g id="dates">%s</xliff:g>)"</string>
Erikac6a81d2010-01-26 15:42:15 -0800360 <!-- This is a label for telling the user that this event repeats in
The Android Open Source Project146de362009-03-03 19:32:18 -0800361 custom (non-standard) way from the usual repeat rates (such as daily,
362 weekly, etc.) and that the user cannot change this on the phone
363 (but only on the web). -->
Eric Fischera9e8f532010-11-03 16:47:41 -0700364 <string name="custom" product="tablet">"Custom\u2026 (cannot customize on tablet)"</string>
365 <!-- This is a label for telling the user that this event repeats in
366 custom (non-standard) way from the usual repeat rates (such as daily,
367 weekly, etc.) and that the user cannot change this on the phone
368 (but only on the web). -->
369 <string name="custom" product="default">"Custom\u2026 (cannot customize on phone)"</string>
Erikac6a81d2010-01-26 15:42:15 -0800370
The Android Open Source Project146de362009-03-03 19:32:18 -0800371 <!-- This is a choice in a list that the user sees when he tries to modify
372 a repeating event. This choice says to change just this one instance
373 of this repeating event. -->
374 <string name="modify_event">Change only this event.</string>
375 <!-- This is a choice in a list that the user sees when he tries to modify
376 a repeating event. This choice says to change all occurrences of
377 this repeating event. -->
378 <string name="modify_all">Change all events in the series.</string>
379 <!-- This is a choice in a list that the user sees when he tries to modify
380 a repeating event. This choice says to change this instance and all
381 future occurrences of this repeating event. -->
382 <string name="modify_all_following">Change this and all future events.</string>
Erikac6a81d2010-01-26 15:42:15 -0800383
The Android Open Source Project146de362009-03-03 19:32:18 -0800384 <!-- Dialogs -->
Erikac6a81d2010-01-26 15:42:15 -0800385
The Android Open Source Project146de362009-03-03 19:32:18 -0800386 <!-- Confirmation dialog message -->
387 <skip />
388 <!-- This is a confirmation message in a popup dialog that appears when the
389 user has asked to delete an event. The user still has a chance to cancel
390 this operation. -->
391 <string name="delete_this_event_title">This event will be deleted.</string>
392 <!-- This is the title of a popup dialog that asks for confirmation before
393 deleting an event. -->
394 <string name="delete_title">Delete</string>
395 <!-- This is the title of a popup dialog that asks for confirmation before
396 changing the response to an invitation. -->
397 <string name="change_response_title">Change response</string>
398
Daisuke Miyakawa4b441bd2010-09-16 14:55:36 -0700399 <!-- This the title of a menu for General Preferences.
400 Pressing the menu item lets user to view and edit his general settings
401 (or preferences) [CHAR LIMIT=30] -->
402 <string name="menu_general_preferences">General Preferences</string>
403
Daisuke Miyakawa4ad63022010-09-17 13:57:35 -0700404 <!-- This the title of a menu for "About Calendar" Preferences.
405 Pressing the menu item lets user to view the current settings
406 [CHAR LIMIT=30] -->
407 <string name="menu_about_preferences">About calendar</string>
408
The Android Open Source Project146de362009-03-03 19:32:18 -0800409 <!-- This is the title of the screen for setting user preferences. -->
410 <string name="preferences_title">"Settings"</string>
411 <!-- This is the title of a section in the Settings screen for settings
412 related to viewing calendar events -->
413 <string name="preferences_general_title">Calendar view setting</string>
414 <!-- This is the title of a section in the Settings screen for settings
415 related to reminders for calendar events -->
Mason Tangcca9ecb2010-07-16 15:07:47 -0700416 <string name="preferences_reminder_title">Reminder settings</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800417 <!-- Settings check box label to hide events that the user has declined to attend -->
418 <string name="preferences_hide_declined_title">Hide declined events</string>
Mason Tang8e3d4302010-07-12 17:39:30 -0700419 <!-- Settings week start label to start week on specific day-->
420 <string name="preferences_week_start_day_title">Week starts on</string>
421 <!-- Title of popup for week start day setting-->
422 <string name="preferences_week_start_day_dialog">Week starts on</string>
423 <!-- DO NOT TRANSLATE -->
424 <string name="preferences_week_start_day_default">-1</string>
Mason Tang3a0e67b2010-08-23 16:59:30 -0700425 <!-- Title of the settings item to clear the recent search history [CHAR LIMIT=40] -->
426 <string name="preferences_clear_search_history_title">Clear search history</string>
427 <!-- Summary of the settings item to clear the recent search history [CHAR LIMIT=70]-->
428 <string name="preferences_clear_search_history_summary">Remove all the searches you have performed</string>
429 <!-- Message to show in a toast when the history is cleared [CHAR LIMIT=40] -->
430 <string name="search_history_cleared">Search history cleared</string>
Mason Tangcca9ecb2010-07-16 15:07:47 -0700431 <!-- Settings check box label to enable or disable notifications -->
432 <string name="preferences_alerts_title">Notifications</string>
Jim Shuma1fec2202010-03-17 11:54:54 -0700433 <!-- Settings dialog label that specifies when the phone should vibrate -->
434 <string name="preferences_alerts_vibrateWhen_title">Vibrate</string>
435 <!-- Settings screen, setting summary text -->
436 <string name="preferences_alerts_vibrateWhen_summary">Also vibrate for reminders</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800437 <!-- Title of ringtone selector dialog -->
438 <string name="preferences_alerts_ringtone_title">Select ringtone</string>
Mason Tangcca9ecb2010-07-16 15:07:47 -0700439 <!-- Title of check box label to enable or disable pop-up notifications -->
440 <string name="preferences_alerts_popup_title">Pop-up notification</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800441 <!-- List item label for setting the default number of reminder minutes -->
Roy West214dbb42009-09-20 17:33:41 -0700442 <string name="preferences_default_reminder_title">Default reminder time</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800443 <!-- Title of dialog for setting the default number of reminder minutes -->
444 <string name="preferences_default_reminder_dialog">Default reminder time</string>
445 <!-- Default value for the number of reminder minutes -->
446 <string name="preferences_default_reminder_default">10</string>
Erikc497d7d2010-09-07 16:36:39 -0700447 <!-- Settings check box label to keep Calendar in a fixed 'home' time zone [CHAR LIMIT = 18] -->
448 <string name="preferences_use_home_tz_title">Use home time zone</string>
449 <!-- Settings description of what setting Calendar to use a fixed 'home' time
450 zone does [CHAR LIMIT = 60]-->
451 <string name="preferences_use_home_tz_descrip">Displays calendars and event times in your home time zone when traveling</string>
452 <!-- Settings title for selecting a 'home' time zone to display Calendar in [CHAR LIMIT = 18] -->
453 <string name="preferences_home_tz_title">Home time zone</string>
454 <!-- DO NOT TRANSLATE -->
455 <string name="preferences_home_tz_default">America/Los_Angeles</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800456
Daisuke Miyakawad644b0d2010-10-21 15:45:12 -0700457 <!-- Title of the settings item to show week number in week view [CHAR LIMIT=40] -->
458 <string name="preferences_show_week_num_title">Show week number</string>
459
Michael Chan8bb13b82010-03-01 22:22:48 -0800460 <!-- This is the title of a section in the Settings screen for "About" this application -->
461 <string name="preferences_about_title">About</string>
462 <!-- Build version of the application -->
463 <string name="preferences_build_version">Build version</string>
Jim Shuma1fec2202010-03-17 11:54:54 -0700464
465 <!-- The vibrate notification modes -->
466 <string-array name="prefEntries_alerts_vibrateWhen">
467 <!-- Always -->
468 <item>Always</item>
469 <!-- Only when the phone is in Silent mode -->
470 <item>Only when silent</item>
471 <!-- Never -->
472 <item>Never</item>
473 </string-array>
474
475 <!-- The default vibrateWhen value, when none is set -->
476 <string translatable="false" name="prefDefault_alerts_vibrateWhen">never</string>
477 <!-- The value to use then migrating from old versions for a true vibrate setting -->
478 <string translatable="false" name="prefDefault_alerts_vibrate_true">always</string>
479 <!-- The value to use then migrating from old versions for a false vibrate setting -->
480 <string translatable="false" name="prefDefault_alerts_vibrate_false">never</string>
481
482 <!-- The vibrateWhen values -->
483 <string-array translatable="false" name="prefValues_alerts_vibrateWhen">
484 <item>always</item>
485 <item>silent</item>
486 <item>never</item>
487 </string-array>
488
489 <!-- Dialog title for the Vibrate dialog -->
490 <string name="prefDialogTitle_vibrateWhen">Vibrate</string>
491
Mason Tangbb3f08a2010-06-22 17:03:54 -0700492 <!-- Widget -->
493 <skip />
494 <!-- Title for calendar gadget when displayed in list of all other gadgets -->
495 <string name="gadget_title">Calendar</string>
496
Erik40bcd102010-11-16 15:46:40 -0800497 <!-- Shown in month view next to event icon when additional events exist for that day, but no
498 room remaining -->
499 <plurals name="month_more_events">
500 <!-- additional events message for 1 event, the quotes force a literal interpretation of the
501 string [CHAR LIMIT = 10] -->
502 <item quantity="one">"+1"</item>
503 <!-- additional events message for multiple events [CHAR LIMIT = 10] -->
504 <item quantity="other">+<xliff:g id="number">%d</xliff:g></item>
505 </plurals>
506
Mason Tangbb3f08a2010-06-22 17:03:54 -0700507 <!-- Caption to show on gadget when there are no upcoming calendar events -->
508 <string name="gadget_no_events">No upcoming calendar events</string>
509
510 <!-- Text to show on gadget when an event starts on the next day -->
511 <string name="tomorrow">Tomorrow</string>
512
513 <!-- Text to show on gadget when an event is currently in progress -->
514 <string name="in_progress">in progress</string>
515
516 <!-- Text to show on gadget when an all-day event is in progress -->
517 <string name="today">Today</string>
518
Erikca478672011-01-19 20:02:47 -0800519 <!-- DO NOT TRANSLATE -->
520 <string name="tardis">TARDIS</string>
521
Michael Chanc03aab42011-04-21 15:59:29 -0700522 <!-- Send a copy of the database to developers for debugging [CHAR LIMIT="NONE"] -->
523 <string name="copy_db">Send database</string>
524
Dmitri Plotnikovee212202010-08-27 17:58:19 -0700525 <!-- Displayed in email address autocomplete list when searching for contacts
526 in corporate directories. Example: "Searching bigcompany.com..." [CHAR LIMIT=64] -->
527 <string name="directory_searching_fmt">Searching <xliff:g id="domain">%s</xliff:g>\u2026</string>
Mason Tangbb3f08a2010-06-22 17:03:54 -0700528
Erik259b8f92011-01-12 14:01:12 -0800529 <!-- Accessibility Events -->
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700530 <!-- Strings that describes actions for buttons without text -->
531 <!-- Create a new calendar event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700532 <string name="accessibility_new_event">New event</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700533 <!-- Remove a name of an attendee from a calendar event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700534 <string name="accessibility_remove_attendee">Remove attendee</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700535 <!-- Pick a starting date for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700536 <string name="accessibility_pick_start_date">Start date</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700537 <!-- Pick a starting time for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700538 <string name="accessibility_pick_start_time">Start time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700539 <!-- Pick the ending date for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700540 <string name="accessibility_pick_end_date">End date</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700541 <!-- Pick the ending time for a new event[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700542 <string name="accessibility_pick_end_time">End time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700543 <!-- Select a time zone for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700544 <string name="accessibility_pick_time_zone">Time zone</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700545 <!-- Add a reminder to an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700546 <string name="accessibility_add_reminder">Add reminder</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700547 <!-- Remove a reminder from an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700548 <string name="accessibility_remove_reminder">Remove reminder</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700549 <!-- Add a new attendee to an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700550 <string name="accessibility_add_attendee">Add attendee</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700551 <!-- Choose if to sync/unsync this calendar with its server [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700552 <string name="accessibility_sync_cal">Sync calendar</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700553 <!-- Mark this event as an "all day event" [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700554 <string name="accessibility_all_day">All day event</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700555 <!-- Refresh the data in the calendar [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700556 <string name="accessibility_refresh">Refresh</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700557 <!-- Choose the type of repetition for the event (daily, weekly, etc.[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700558 <string name="accessibility_repeats">Repetition</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700559 <!-- Set the time for the reminder[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700560 <string name="accessibility_reminder_time">Reminder time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700561 <!-- Set the type of the reminder (popup/email/sms)[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700562 <string name="accessibility_reminder_type">Reminder type</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700563 <!-- Select the way you are visible for the event (busy/free) [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700564 <string name="accessibility_reminder_showmeas">Show me as</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700565 <!-- Set the event as private/public/default [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700566 <string name="accessibility_reminder_privacy">Privacy</string>
Erik259b8f92011-01-12 14:01:12 -0800567
568 <!--
569 Source: A value for announcing the current event index (example: "Event 2 of 6").
570 Description: This is spoken to the user. [CHAR LIMIT="NONE"]
571 -->
572 <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>
573
The Android Open Source Project146de362009-03-03 19:32:18 -0800574</resources>