blob: a6ed5933455a8eb495e09adce6901368d135d51e [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>
32 <!-- This is the label for the Guest Responses and count of an event e.g. Yes (3) -->
33 <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 -080034
The Android Open Source Project146de362009-03-03 19:32:18 -080035 <!-- Some events repeat daily, weekly, monthly, or yearly. This is the label
36 for all the choices about how often an event repeats (including the choice
37 of not repeating). -->
38 <string name="repeats_label">Repetition</string>
39 <!-- Title of event when no explicit title is specified by the user -->
Michael Chan4778fdb2010-02-09 12:05:21 -080040 <string name="no_title_label">(No title)</string>
Erikac6a81d2010-01-26 15:42:15 -080041
The Android Open Source Project146de362009-03-03 19:32:18 -080042 <!-- Reminder format strings -->
43 <plurals name="Nminutes">
44 <!-- This is the label for a 1-minute reminder. -->
45 <item quantity="one">1 minute</item>
46 <!-- This is the label for 2 or more minutes. The actual number of
47 minutes is a parameter. -->
48 <item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
49 </plurals>
50 <!-- We use the abbreviation "mins" instead of "minutes" to keep the string short.
51 This is the number of minutes displayed for a calendar reminder. For example,
52 a reminder of 10 minutes would be displayed as '10 mins'. The translation
53 should use the shortest acceptable abbreviation to save space. -->
54 <plurals name="Nmins">
55 <!-- This is the label for a 1-minute reminder. -->
56 <item quantity="one">1 min</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> mins</item>
60 </plurals>
61 <!-- This is the number of hours displayed for a calendar reminder. For example,
62 a reminder of 1 hour would be displayed as '1 hour'. The translation
63 should use the shortest acceptable abbreviation of 'hour' to save space. -->
64 <plurals name="Nhours">
65 <!-- This is the label for a 1-hour reminder. -->
66 <item quantity="one">1 hour</item>
67 <!-- This is the label for a reminder of 2 or more hours. The actual number of
68 hours is a parameter. -->
69 <item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
70 </plurals>
71 <!-- This is the number of days displayed for a calendar reminder. For example,
72 a reminder of 2 days would be displayed as '2 days'. The translation
73 should use the shortest acceptable abbreviation of 'day' to save space. -->
74 <plurals name="Ndays">
75 <!-- This is the label for a reminder of 1 day. -->
76 <item quantity="one">1 day</item>
77 <!-- This is the label for a reminder of 2 or more days. The actual number of
78 days is a parameter. -->
79 <item quantity="other"><xliff:g id="count">%d</xliff:g> days</item>
80 </plurals>
RoboErik14e82b42011-07-19 09:46:39 -070081 <!-- This is for displaying the week of the year near the date. Eg. "January, 2011 Week 1" -->
82 <plurals name="weekN">
83 <!-- Label for displaying week of the year for all week values [CHAR LIMIT=16] -->
84 <item quantity="other">WEEK <xliff:g id="count">%d</xliff:g></item>
85 </plurals>
Erikac6a81d2010-01-26 15:42:15 -080086
The Android Open Source Project146de362009-03-03 19:32:18 -080087 <!-- Menu items: -->
RoboErik1e3cc282011-07-29 15:49:54 -070088 <skip/>
Michael Chan3e387782010-07-26 10:33:10 -070089 <!-- This is a label on a context menu item. Pressing this menu item to initiate
Mason Tang480b2282010-08-13 15:32:03 -070090 syncing of your Calendar data with the server. [CHAR LIMIT=11] -->
Michael Chan3937bc72010-07-30 11:14:11 -070091 <string name="calendar_refresh"> "Refresh"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -080092 <!-- This is a label on a context menu item. Pressing this menu item displays the
93 Agenda view. -->
RoboErik1e3cc282011-07-29 15:49:54 -070094
The Android Open Source Project146de362009-03-03 19:32:18 -080095 <!-- This is a label on a context menu item. Pressing this menu item displays the
96 Day view. -->
97 <string name="show_day_view">"Show day"</string>
98 <!-- This is a label on a menu item. Pressing this menu item displays the
99 Agenda view. -->
100 <string name="agenda_view">"Agenda"</string>
101 <!-- This is a label on a menu item. Pressing this menu item displays the
102 Day view. -->
103 <string name="day_view">"Day"</string>
104 <!-- This is a label on a menu item. Pressing this menu item displays the
105 Week view. -->
106 <string name="week_view">"Week"</string>
107 <!-- This is a label on a menu item. Pressing this menu item displays the
108 Month view. -->
109 <string name="month_view">"Month"</string>
110 <!-- This is a label on a menu item. Pressing this menu item displays the
111 details of an event. -->
112 <string name="event_view">"View event"</string>
113 <!-- This is a label on a menu item. Pressing this menu item allows the
114 user to create a new event. -->
115 <string name="event_create">"New event"</string>
116 <!-- This is a label on a menu item in a popup window. Pressing this menu
117 item allows the user to edit or change an existing event. -->
118 <string name="event_edit">"Edit event"</string>
119 <!-- This is a label on a menu item in a popup window. Pressing this menu
120 item allows the user to delete an existing event. -->
121 <string name="event_delete">"Delete event"</string>
122 <!-- This is a label on a menu item. Pressing this menu
123 item takes the user to the current day (today) in whatever view
124 (Day view, Week view, Agenda view, Month view) they are currently in. -->
125 <string name="goto_today">"Today"</string>
126 <!-- This is a label on a menu item. Pressing this menu item allows the
127 user to see the list of calendars that he is viewing and to then add
128 or remove selected calendars. -->
RoboErik1e3cc282011-07-29 15:49:54 -0700129
The Android Open Source Project146de362009-03-03 19:32:18 -0800130 <!-- This is a label on a menu item. Pressing this menu item allows the
131 user to view and edit his Settings (or Preferences) -->
132 <string name="menu_preferences">"Settings"</string>
Mason Tang9138ce82010-06-28 11:08:46 -0700133 <!-- This is a label on a menu item. Pressing this menu item allows the
Michael Chan2aeb8d92011-07-10 13:32:09 -0700134 user to select the calendars to display [CHAR LIMIT=11] -->
135 <string name="menu_select_visible_calendars">"Calendars to display"</string>
136 <!-- This is a label on a menu item. Pressing this menu item allows the
137 user to select the calendars to display [CHAR LIMIT=11] -->
Mason Tang9138ce82010-06-28 11:08:46 -0700138 <string name="search">"Search"</string>
RoboErikde20d762011-02-08 17:52:25 -0800139 <!-- This is a label on a menu item. Pressing this menu item hides
140 the navigation controls on the right side. [CHAR LIMIT=20] -->
141 <string name="hide_controls">"Hide controls"</string>
142 <!-- This is a label on a menu item. Pressing this menu item shows the
143 navigation controls on the right side. [CHAR LIMIT=20] -->
144 <string name="show_controls">"Show controls"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800145
146 <!-- Month view -->
RoboErik1e3cc282011-07-29 15:49:54 -0700147 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800148
Michael Chan2aeb8d92011-07-10 13:32:09 -0700149 <!-- Select Visible Calendars activity -->
RoboErik1e3cc282011-07-29 15:49:54 -0700150 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800151 <!-- Title of "My calendars" screen -->
Michael Chan2aeb8d92011-07-10 13:32:09 -0700152 <string name="select_visible_calendars_title">"Calendars to Display"</string>
Erikac6a81d2010-01-26 15:42:15 -0800153 <!-- Synced and visible status message -->
RoboErik1e3cc282011-07-29 15:49:54 -0700154
Erikac6a81d2010-01-26 15:42:15 -0800155 <!-- Synced but not visible status message -->
RoboErik1e3cc282011-07-29 15:49:54 -0700156
Erikac6a81d2010-01-26 15:42:15 -0800157 <!-- not Synced or visible status message -->
RoboErik1e3cc282011-07-29 15:49:54 -0700158
Erik6b858fc2010-09-15 18:59:04 -0700159 <!-- Synced status message displayed when the given calendar is stored/synced on the device
160 [CHAR LIMIT=60] -->
161 <string name="synced"> synced</string>
162 <!-- Not synced status message displayed when the given calendar is not stored/synced on the
163 device [CHAR LIMIT=60] -->
164 <string name="not_synced"> not synced</string>
165 <!-- Message displayed to user when an account with Calendars is not being auto-synced
166 [CHAR LIMIT=120]-->
167 <string name="acct_not_synced">This account is not being synced and your calendars may
Michael Chan88d9c002010-11-01 15:53:31 -0700168 not be up to date.</string>
Erik6b858fc2010-09-15 18:59:04 -0700169 <!-- Label on button that takes user to the Accounts and Sync settings page [CHAR LIMIT=60] -->
170 <string name="accounts">Accounts &amp; sync</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800171
Michael Chan2aeb8d92011-07-10 13:32:09 -0700172 <!-- Select Synced Calendars activity -->
173 <!-- Select the set of calendars to sync [CHAR LIMIT=60] -->
174 <string name="select_synced_calendars_title">Calendars to Sync</string>
175 <!-- Select the set of calendars to sync [CHAR LIMIT=60] -->
176 <string name="select_synced_calendars_button">Calendars to sync</string>
177
The Android Open Source Project146de362009-03-03 19:32:18 -0800178 <!-- Event edit activity -->
RoboErik1e3cc282011-07-29 15:49:54 -0700179 <skip/>
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700180 <!-- The title of the screen where the user edits an event [CHAR LIMIT=17] -->
RoboErik1e3cc282011-07-29 15:49:54 -0700181
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700182 <!-- Default value of What field (as a hint to the user) [CHAR LIMIT=15] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800183 <string name="hint_what">"Event name"</string>
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700184 <!-- Default value of Where field (as a hint to the user)[CHAR LIMIT=15] -->
185 <string name="hint_where">"Location"</string>
186 <!-- Default value of Description field (as a hint to the user) [CHAR LIMIT=15]-->
187 <string name="hint_description">"Description"</string>
188 <!-- Default value of Attendees/Guests field (as a hint to the user) [CHAR LIMIT=10] -->
189 <string name="hint_attendees">"Guests"</string>
Erika9125f62010-03-02 10:46:05 -0800190 <!-- Toast message displayed when a new event is created -->
191 <string name="creating_event">"Event created"</string>
192 <!-- Toast message displayed when an existing event is saved after being modified -->
193 <string name="saving_event">"Event saved"</string>
RoboErik2bd5cc02011-07-28 14:19:54 -0700194 <!-- Toast message displayed when a new event was not saved because it was empty [CHAR LIMIT=30] -->
195 <string name="empty_event">"Empty event not created"</string>
Michael Chanea8ebdb2011-02-28 19:04:00 -0800196 <!-- Toast message displayed when a new event with guests is created -->
197 <string name="creating_event_with_guest">"Invitations sent"</string>
198 <!-- Toast message displayed when an existing event with guests is saved after being modified -->
199 <string name="saving_event_with_guest">"Updates sent"</string>
Erika9125f62010-03-02 10:46:05 -0800200 <!-- Title of message displayed to indicate available calendars are being loaded when creating
201 a new event -->
RoboErik1e3cc282011-07-29 15:49:54 -0700202
Erika9125f62010-03-02 10:46:05 -0800203 <!-- Body of message displayed to indicate available calendars are being loaded when creating
204 a new event -->
RoboErik1e3cc282011-07-29 15:49:54 -0700205
The Android Open Source Project146de362009-03-03 19:32:18 -0800206
207 <!-- The alert toast is not actually being displayed for some reason. -->
RoboErik1e3cc282011-07-29 15:49:54 -0700208 <skip/>
The Android Open Source Project7abd8562009-03-05 14:34:37 -0800209 <!-- the title of the alert/notification activity -->
210 <string name="alert_title">Calendar notifications</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800211 <!-- Notification window messages: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700212 <skip/>
Erikac6a81d2010-01-26 15:42:15 -0800213
The Android Open Source Project146de362009-03-03 19:32:18 -0800214 <!-- Event info/edit screen labels:-->
RoboErik1e3cc282011-07-29 15:49:54 -0700215 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800216 <!-- This is the title of the screen used to view the details of an event -->
217 <string name="event_info_title">View event</string>
218 <!-- This is the title of the screen used to view the details of an invitation
219 to a meeting or event -->
220 <string name="event_info_title_invite">Meeting invitation</string>
Erikac6a81d2010-01-26 15:42:15 -0800221
The Android Open Source Project146de362009-03-03 19:32:18 -0800222 <!-- EditEventActivity specific strings: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700223 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800224 <!-- Events have a start date/time and an end date/time. The display shows
225 the start and end times like 'From start date To end date'. This is the
226 label before the 'end date'. -->
227 <string name="edit_event_to_label">To</string>
228 <!-- Events have a start date/time and an end date/time. The display shows
229 the start and end times like 'From start date To end date'. This is the
230 label before the 'start date'. -->
231 <string name="edit_event_from_label">From</string>
232 <!-- Check box label that specifies if this is an all-day event -->
233 <string name="edit_event_all_day_label">All day</string>
234 <!-- Label for choosing one of the calendars -->
235 <string name="edit_event_calendar_label">Calendar</string>
Mason Tang480b2282010-08-13 15:32:03 -0700236 <!-- Menu item to show all choices [CHAR LIMIT=22]-->
237 <string name="edit_event_show_all">Show all</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800238 <!-- Label for the event description -->
239 <string name="description_label">Description</string>
240 <!-- Label for the 'Presence' of an event, which can be either 'busy' (the default)
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700241 or 'available' [CHAR LIMIT=15] -->
Michael Chan782e3892009-09-09 13:14:58 -0700242 <string name="presence_label">Show me as</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800243 <!-- Label for the 'Privacy' of an event, which can be either 'private'
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700244 or 'public' [CHAR LIMIT=15] -->
The Android Open Source Project146de362009-03-03 19:32:18 -0800245 <string name="privacy_label">Privacy</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700246 <!-- Label for the list of reminders for an event [CHAR LIMIT=20] -->
Isaac Katzenelson016d5762011-05-23 16:05:51 -0700247 <string name="reminders_label">Add reminder</string>
Erika9125f62010-03-02 10:46:05 -0800248 <!-- 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 -0800249 <string name="no_syncable_calendars">No calendars</string>
Michael Chan9d1d0d62011-02-24 11:19:13 -0800250 <!-- 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] -->
251 <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 -0700252 <!-- Title of a button shown when there is no account available and the system prompt a user to add one. [CHAR LIMIT=none] -->
253 <string name="add_account">Add account</string>
Michael Chan352e1a22010-09-28 05:15:08 -0700254 <!-- Label for adding guests to an event [CHAR LIMIT=32]-->
255 <string name="add_guests_label">Add guests</string>
Erikf457b752011-06-07 17:31:45 -0700256 <!-- DO NOT TRANSLATE the domain to use for auto-completing email addresses-->
257 <string name="google_email_domain">gmail.com</string>
Erikac6a81d2010-01-26 15:42:15 -0800258
The Android Open Source Project146de362009-03-03 19:32:18 -0800259 <!-- View Event -->
RoboErik1e3cc282011-07-29 15:49:54 -0700260 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800261 <!-- Label for which calendar an event is part of -->
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700262 <string name="view_event_calendar_label">Calendar:</string>
Michael Chan0b695022009-08-30 23:28:46 -0700263 <!-- Label for the event organizer -->
Erikc058e612009-12-15 17:19:48 -0800264 <string name="view_event_organizer_label">Organizer:</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800265 <!-- Label for the local timezone -->
RoboErik1e3cc282011-07-29 15:49:54 -0700266
The Android Open Source Project146de362009-03-03 19:32:18 -0800267 <!-- Label for whether the user is attending this event. This is shown when
268 a user is invited to a meeting or event. The possible answers are
269 'yes', 'no', and 'maybe' (and, initially, 'no response'). -->
270 <string name="view_event_response_label">Attending?</string>
Michael Chanf92f46b2010-10-27 18:59:05 -0700271 <!-- Response for whether attending an event - accepted [CHAR LIMIT=10]-->
272 <string name="response_yes">Yes</string>
273 <!-- Response for whether attending an event - tentative [CHAR LIMIT=10]-->
274 <string name="response_maybe">Maybe</string>
275 <!-- Response for whether attending an event - declined [CHAR LIMIT=10]-->
276 <string name="response_no">No</string>
Erikac6a81d2010-01-26 15:42:15 -0800277
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700278 <!-- Event Info strings-->
279 <!-- Time Zone Label [CHAR LIMIT=12]-->
RoboErik1e3cc282011-07-29 15:49:54 -0700280
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700281 <!-- Repetition Label [CHAR LIMIT=12]-->
RoboErik1e3cc282011-07-29 15:49:54 -0700282
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700283 <!-- Organizer Label [CHAR LIMIT=12]-->
284 <string name="event_info_organizer">Organizer:</string>
Isaac Katzenelsonc0624ee2011-06-03 09:24:27 -0700285 <!-- More label in description button [CHAR LIMIT=6]-->
286 <string name="event_info_desc_more">More</string>
287 <!-- Less label in description button [CHAR LIMIT=6]-->
288 <string name="event_info_desc_less">Less</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700289 <!-- Reminders label [CHAR LIMIT=15]-->
290 <string name="event_info_reminders_label">Reminders</string>
Isaac Katzenelsonf6f79772011-06-02 16:29:18 -0700291
The Android Open Source Project146de362009-03-03 19:32:18 -0800292 <!-- Agenda View strings -->
RoboErik1e3cc282011-07-29 15:49:54 -0700293 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800294 <!-- 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 -0700295 <string name="agenda_today">TODAY, <xliff:g id="date">%1$s</xliff:g></string>
296 <!-- This is shown as part of the heading at the top of a list of today's events. -->
297 <string name="agenda_yesterday">YESTERDAY, <xliff:g id="date">%1$s</xliff:g></string>
298 <!-- 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 -0700299 <string name="agenda_tomorrow">TOMORROW, <xliff:g id="date">%1$s</xliff:g></string>
Michael Chan13850932009-06-30 15:35:34 -0700300 <!-- This is shown while the calendar events are being loading to the screen. -->
301 <string name="loading">Loading\u2026</string>
Michael Chand5ade7d2010-11-22 11:16:37 -0800302 <!-- 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 -0700303 <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 -0800304 <!-- 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 -0700305 <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 -0800306
Mason Tang9138ce82010-06-28 11:08:46 -0700307 <!-- Search activity strings -->
RoboErik1e3cc282011-07-29 15:49:54 -0700308 <skip/>
Mason Tang480b2282010-08-13 15:32:03 -0700309 <!-- Title of the search screen [CHAR LIMIT=30] -->
Mason Tang9138ce82010-06-28 11:08:46 -0700310 <string name="search_title">Search my calendars</string>
311
The Android Open Source Project146de362009-03-03 19:32:18 -0800312 <!-- ICS Import activity -->
RoboErik1e3cc282011-07-29 15:49:54 -0700313 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800314 <!-- This is a abbreviation for 'Number of events' and is a label next to
315 an input for the user to enter the number of events to import. -->
316 <string name="num_events">"Num events"</string>
317
318 <!-- Button labels: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700319 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800320 <!-- This is the title of a popup window that is displayed when the user
Michael Chan352e1a22010-09-28 05:15:08 -0700321 edits a repeating event. [CHAR LIMIT=20]-->
Michael Chan88d9c002010-11-01 15:53:31 -0700322 <string name="edit_event_label">"Details"</string>
Erikc07a57f2010-12-01 10:45:48 -0800323 <!-- This is a menu button for switching into edit mode when viewing an event.
324 [CHAR LIMIT=10] -->
325 <string name="edit_label">"Edit"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800326 <!-- The button label for deleting an event -->
327 <string name="delete_label">"Delete"</string>
328 <!-- A menu item for deleting an event -->
RoboErik1e3cc282011-07-29 15:49:54 -0700329
The Android Open Source Project146de362009-03-03 19:32:18 -0800330 <!-- The button label for saving an event -->
Michael Chan92c5ef02009-03-25 15:33:56 -0700331 <string name="save_label">Done</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800332 <!-- The button label for discarding changes to an event -->
Erikc343fbc2010-09-01 14:08:23 -0700333 <string name="discard_label">Cancel</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800334 <!-- The button label for importing events from another source to the phone -->
335 <string name="import_label">"Import"</string>
336
337 <!-- Button labels on expanded notification reminders: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700338 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800339 <!-- The button label for making the reminder alarms go away temporarily.
340 The reminder alarms will fire off again in 5 minutes. -->
341 <string name="snooze_all_label">"Snooze all"</string>
342 <!-- The button label for dismissing all the current reminder alarms. This
343 causes them to disappear from the notification screen. -->
344 <string name="dismiss_all_label">"Dismiss all"</string>
345
346 <!-- Repetition dialog options: -->
RoboErik1e3cc282011-07-29 15:49:54 -0700347 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800348 <!-- A label in a multiple-choice list for the specifying that an event does
349 not repeat -->
350 <string name="does_not_repeat">One-time event</string>
351 <!-- A label in a multiple-choice list for the specifying that an event
352 repeats daily -->
353 <string name="daily">Daily</string>
354 <!-- A label in a multiple-choice list for the specifying that an event
355 repeats every weekday (Monday through Friday) -->
356 <string name="every_weekday">"Every weekday (Mon\u2013Fri)"</string>
357 <!-- A label in a multiple-choice list for the specifying that an event
358 repeats weekly on some day of the week. For example,
359 'Weekly (every Tuesday)'. -->
360 <string name="weekly">"Weekly (every <xliff:g id="days_of_week">%s</xliff:g>)"</string>
361
362 <!-- Example: 'Monthly (every first Sunday)' -->
363 <!-- 1st parameter is an ordinal number, like 'first' -->
364 <!-- 2nd parameter is a day of the week, like 'Sunday' -->
Erikac6a81d2010-01-26 15:42:15 -0800365 <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 -0800366 <!-- The common portion of a string describing how often an event repeats,
367 example: 'Monthly (on day 2)' -->
Ken Shirriff5442a162010-02-26 16:06:04 -0800368 <string name="monthly">Monthly</string>
369 <!-- Calendar spinner item, to select that an event recurs every year. -->
370 <string name="yearly_plain">Yearly</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800371 <!-- Example: "Monthly (on day 15)" -->
372 <string name="monthly_on_day">"Monthly (on day <xliff:g id="day_of_month">%s</xliff:g>)"</string>
373 <!-- Example: "Yearly (on April 15)" -->
374 <string name="yearly">"Yearly (on <xliff:g id="dates">%s</xliff:g>)"</string>
Erikac6a81d2010-01-26 15:42:15 -0800375 <!-- This is a label for telling the user that this event repeats in
The Android Open Source Project146de362009-03-03 19:32:18 -0800376 custom (non-standard) way from the usual repeat rates (such as daily,
377 weekly, etc.) and that the user cannot change this on the phone
378 (but only on the web). -->
Eric Fischera9e8f532010-11-03 16:47:41 -0700379 <string name="custom" product="tablet">"Custom\u2026 (cannot customize on tablet)"</string>
380 <!-- This is a label for telling the user that this event repeats in
381 custom (non-standard) way from the usual repeat rates (such as daily,
382 weekly, etc.) and that the user cannot change this on the phone
383 (but only on the web). -->
384 <string name="custom" product="default">"Custom\u2026 (cannot customize on phone)"</string>
Erikac6a81d2010-01-26 15:42:15 -0800385
The Android Open Source Project146de362009-03-03 19:32:18 -0800386 <!-- This is a choice in a list that the user sees when he tries to modify
387 a repeating event. This choice says to change just this one instance
388 of this repeating event. -->
389 <string name="modify_event">Change only this event.</string>
390 <!-- This is a choice in a list that the user sees when he tries to modify
391 a repeating event. This choice says to change all occurrences of
392 this repeating event. -->
393 <string name="modify_all">Change all events in the series.</string>
394 <!-- This is a choice in a list that the user sees when he tries to modify
395 a repeating event. This choice says to change this instance and all
396 future occurrences of this repeating event. -->
397 <string name="modify_all_following">Change this and all future events.</string>
Erikac6a81d2010-01-26 15:42:15 -0800398
The Android Open Source Project146de362009-03-03 19:32:18 -0800399 <!-- Dialogs -->
Erikac6a81d2010-01-26 15:42:15 -0800400
RoboErik20b6fb52011-07-25 14:20:54 -0700401 <!-- This is a label on the dialog for creating a new event. [CHAR LIMIT=30] -->
402 <string name="new_event_dialog_label">"New event"</string>
403 <!-- This is the button to create a new event in a dialog window. [CHAR LIMIT=30] -->
404 <string name="new_event_dialog_option">"New event"</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800405 <!-- Confirmation dialog message -->
RoboErik1e3cc282011-07-29 15:49:54 -0700406 <skip/>
The Android Open Source Project146de362009-03-03 19:32:18 -0800407 <!-- This is a confirmation message in a popup dialog that appears when the
408 user has asked to delete an event. The user still has a chance to cancel
409 this operation. -->
410 <string name="delete_this_event_title">This event will be deleted.</string>
411 <!-- This is the title of a popup dialog that asks for confirmation before
412 deleting an event. -->
413 <string name="delete_title">Delete</string>
414 <!-- This is the title of a popup dialog that asks for confirmation before
415 changing the response to an invitation. -->
416 <string name="change_response_title">Change response</string>
417
Daisuke Miyakawa4b441bd2010-09-16 14:55:36 -0700418 <!-- This the title of a menu for General Preferences.
419 Pressing the menu item lets user to view and edit his general settings
420 (or preferences) [CHAR LIMIT=30] -->
421 <string name="menu_general_preferences">General Preferences</string>
422
Daisuke Miyakawa4ad63022010-09-17 13:57:35 -0700423 <!-- This the title of a menu for "About Calendar" Preferences.
424 Pressing the menu item lets user to view the current settings
425 [CHAR LIMIT=30] -->
426 <string name="menu_about_preferences">About calendar</string>
427
The Android Open Source Project146de362009-03-03 19:32:18 -0800428 <!-- This is the title of the screen for setting user preferences. -->
429 <string name="preferences_title">"Settings"</string>
430 <!-- This is the title of a section in the Settings screen for settings
431 related to viewing calendar events -->
432 <string name="preferences_general_title">Calendar view setting</string>
433 <!-- This is the title of a section in the Settings screen for settings
434 related to reminders for calendar events -->
Mason Tangcca9ecb2010-07-16 15:07:47 -0700435 <string name="preferences_reminder_title">Reminder settings</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800436 <!-- Settings check box label to hide events that the user has declined to attend -->
437 <string name="preferences_hide_declined_title">Hide declined events</string>
Mason Tang8e3d4302010-07-12 17:39:30 -0700438 <!-- Settings week start label to start week on specific day-->
439 <string name="preferences_week_start_day_title">Week starts on</string>
440 <!-- Title of popup for week start day setting-->
441 <string name="preferences_week_start_day_dialog">Week starts on</string>
442 <!-- DO NOT TRANSLATE -->
443 <string name="preferences_week_start_day_default">-1</string>
Mason Tang3a0e67b2010-08-23 16:59:30 -0700444 <!-- Title of the settings item to clear the recent search history [CHAR LIMIT=40] -->
445 <string name="preferences_clear_search_history_title">Clear search history</string>
446 <!-- Summary of the settings item to clear the recent search history [CHAR LIMIT=70]-->
447 <string name="preferences_clear_search_history_summary">Remove all the searches you have performed</string>
448 <!-- Message to show in a toast when the history is cleared [CHAR LIMIT=40] -->
449 <string name="search_history_cleared">Search history cleared</string>
Mason Tangcca9ecb2010-07-16 15:07:47 -0700450 <!-- Settings check box label to enable or disable notifications -->
451 <string name="preferences_alerts_title">Notifications</string>
Jim Shuma1fec2202010-03-17 11:54:54 -0700452 <!-- Settings dialog label that specifies when the phone should vibrate -->
453 <string name="preferences_alerts_vibrateWhen_title">Vibrate</string>
454 <!-- Settings screen, setting summary text -->
455 <string name="preferences_alerts_vibrateWhen_summary">Also vibrate for reminders</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800456 <!-- Title of ringtone selector dialog -->
457 <string name="preferences_alerts_ringtone_title">Select ringtone</string>
Mason Tangcca9ecb2010-07-16 15:07:47 -0700458 <!-- Title of check box label to enable or disable pop-up notifications -->
459 <string name="preferences_alerts_popup_title">Pop-up notification</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800460 <!-- List item label for setting the default number of reminder minutes -->
Roy West214dbb42009-09-20 17:33:41 -0700461 <string name="preferences_default_reminder_title">Default reminder time</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800462 <!-- Title of dialog for setting the default number of reminder minutes -->
463 <string name="preferences_default_reminder_dialog">Default reminder time</string>
464 <!-- Default value for the number of reminder minutes -->
465 <string name="preferences_default_reminder_default">10</string>
Erikc497d7d2010-09-07 16:36:39 -0700466 <!-- Settings check box label to keep Calendar in a fixed 'home' time zone [CHAR LIMIT = 18] -->
467 <string name="preferences_use_home_tz_title">Use home time zone</string>
468 <!-- Settings description of what setting Calendar to use a fixed 'home' time
469 zone does [CHAR LIMIT = 60]-->
470 <string name="preferences_use_home_tz_descrip">Displays calendars and event times in your home time zone when traveling</string>
471 <!-- Settings title for selecting a 'home' time zone to display Calendar in [CHAR LIMIT = 18] -->
472 <string name="preferences_home_tz_title">Home time zone</string>
473 <!-- DO NOT TRANSLATE -->
474 <string name="preferences_home_tz_default">America/Los_Angeles</string>
The Android Open Source Project146de362009-03-03 19:32:18 -0800475
Daisuke Miyakawad644b0d2010-10-21 15:45:12 -0700476 <!-- Title of the settings item to show week number in week view [CHAR LIMIT=40] -->
477 <string name="preferences_show_week_num_title">Show week number</string>
478
Michael Chan8bb13b82010-03-01 22:22:48 -0800479 <!-- This is the title of a section in the Settings screen for "About" this application -->
480 <string name="preferences_about_title">About</string>
481 <!-- Build version of the application -->
482 <string name="preferences_build_version">Build version</string>
Jim Shuma1fec2202010-03-17 11:54:54 -0700483
484 <!-- The vibrate notification modes -->
485 <string-array name="prefEntries_alerts_vibrateWhen">
486 <!-- Always -->
487 <item>Always</item>
488 <!-- Only when the phone is in Silent mode -->
489 <item>Only when silent</item>
490 <!-- Never -->
491 <item>Never</item>
492 </string-array>
493
494 <!-- The default vibrateWhen value, when none is set -->
495 <string translatable="false" name="prefDefault_alerts_vibrateWhen">never</string>
496 <!-- The value to use then migrating from old versions for a true vibrate setting -->
497 <string translatable="false" name="prefDefault_alerts_vibrate_true">always</string>
498 <!-- The value to use then migrating from old versions for a false vibrate setting -->
499 <string translatable="false" name="prefDefault_alerts_vibrate_false">never</string>
500
501 <!-- The vibrateWhen values -->
502 <string-array translatable="false" name="prefValues_alerts_vibrateWhen">
503 <item>always</item>
504 <item>silent</item>
505 <item>never</item>
506 </string-array>
507
508 <!-- Dialog title for the Vibrate dialog -->
509 <string name="prefDialogTitle_vibrateWhen">Vibrate</string>
510
Mason Tangbb3f08a2010-06-22 17:03:54 -0700511 <!-- Widget -->
RoboErik1e3cc282011-07-29 15:49:54 -0700512 <skip/>
Mason Tangbb3f08a2010-06-22 17:03:54 -0700513 <!-- Title for calendar gadget when displayed in list of all other gadgets -->
514 <string name="gadget_title">Calendar</string>
515
Erik40bcd102010-11-16 15:46:40 -0800516 <!-- Shown in month view next to event icon when additional events exist for that day, but no
517 room remaining -->
518 <plurals name="month_more_events">
519 <!-- additional events message for 1 event, the quotes force a literal interpretation of the
520 string [CHAR LIMIT = 10] -->
521 <item quantity="one">"+1"</item>
522 <!-- additional events message for multiple events [CHAR LIMIT = 10] -->
523 <item quantity="other">+<xliff:g id="number">%d</xliff:g></item>
524 </plurals>
525
Mason Tangbb3f08a2010-06-22 17:03:54 -0700526 <!-- Caption to show on gadget when there are no upcoming calendar events -->
527 <string name="gadget_no_events">No upcoming calendar events</string>
528
529 <!-- Text to show on gadget when an event starts on the next day -->
530 <string name="tomorrow">Tomorrow</string>
531
532 <!-- Text to show on gadget when an event is currently in progress -->
RoboErik1e3cc282011-07-29 15:49:54 -0700533
Mason Tangbb3f08a2010-06-22 17:03:54 -0700534
535 <!-- Text to show on gadget when an all-day event is in progress -->
RoboErik1e3cc282011-07-29 15:49:54 -0700536
Mason Tangbb3f08a2010-06-22 17:03:54 -0700537
Erikca478672011-01-19 20:02:47 -0800538 <!-- DO NOT TRANSLATE -->
539 <string name="tardis">TARDIS</string>
540
Michael Chanc03aab42011-04-21 15:59:29 -0700541 <!-- Send a copy of the database to developers for debugging [CHAR LIMIT="NONE"] -->
542 <string name="copy_db">Send database</string>
543
Dmitri Plotnikovee212202010-08-27 17:58:19 -0700544 <!-- Displayed in email address autocomplete list when searching for contacts
545 in corporate directories. Example: "Searching bigcompany.com..." [CHAR LIMIT=64] -->
546 <string name="directory_searching_fmt">Searching <xliff:g id="domain">%s</xliff:g>\u2026</string>
Mason Tangbb3f08a2010-06-22 17:03:54 -0700547
Erik259b8f92011-01-12 14:01:12 -0800548 <!-- Accessibility Events -->
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700549 <!-- Strings that describes actions for buttons without text -->
550 <!-- Create a new calendar event [CHAR LIMIT = NONE]-->
RoboErik1e3cc282011-07-29 15:49:54 -0700551
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700552 <!-- Remove a name of an attendee from a calendar event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700553 <string name="accessibility_remove_attendee">Remove attendee</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700554 <!-- Pick a starting date for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700555 <string name="accessibility_pick_start_date">Start date</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700556 <!-- Pick a starting time for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700557 <string name="accessibility_pick_start_time">Start time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700558 <!-- Pick the ending date for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700559 <string name="accessibility_pick_end_date">End date</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700560 <!-- Pick the ending time for a new event[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700561 <string name="accessibility_pick_end_time">End time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700562 <!-- Select a time zone for a new event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700563 <string name="accessibility_pick_time_zone">Time zone</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700564 <!-- Add a reminder to an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700565 <string name="accessibility_add_reminder">Add reminder</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700566 <!-- Remove a reminder from an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700567 <string name="accessibility_remove_reminder">Remove reminder</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700568 <!-- Add a new attendee to an event [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700569 <string name="accessibility_add_attendee">Add attendee</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700570 <!-- Choose if to sync/unsync this calendar with its server [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700571 <string name="accessibility_sync_cal">Sync calendar</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700572 <!-- Mark this event as an "all day event" [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700573 <string name="accessibility_all_day">All day event</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700574 <!-- Refresh the data in the calendar [CHAR LIMIT = NONE]-->
RoboErik1e3cc282011-07-29 15:49:54 -0700575
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700576 <!-- Choose the type of repetition for the event (daily, weekly, etc.[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700577 <string name="accessibility_repeats">Repetition</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700578 <!-- Set the time for the reminder[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700579 <string name="accessibility_reminder_time">Reminder time</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700580 <!-- Set the type of the reminder (popup/email/sms)[CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700581 <string name="accessibility_reminder_type">Reminder type</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700582 <!-- Select the way you are visible for the event (busy/free) [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700583 <string name="accessibility_reminder_showmeas">Show me as</string>
Isaac Katzenelsond40e2282011-06-10 12:34:59 -0700584 <!-- Set the event as private/public/default [CHAR LIMIT = NONE]-->
Isaac Katzenelson9ceed1f2011-06-08 17:26:26 -0700585 <string name="accessibility_reminder_privacy">Privacy</string>
Erik259b8f92011-01-12 14:01:12 -0800586
587 <!--
588 Source: A value for announcing the current event index (example: "Event 2 of 6").
589 Description: This is spoken to the user. [CHAR LIMIT="NONE"]
590 -->
591 <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>
592
The Android Open Source Project146de362009-03-03 19:32:18 -0800593</resources>