strings.xml revision d644b0df14ae6e204369b3454d16976fba32f15c
1<?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
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
18    <!-- This is the label underneath the icon for Calendar -->
19    <string name="app_label">Calendar</string>
20    <string name="app_aio_label">Calendar AllInOne</string>
21
22    <!-- Shared Labels. These labels are shared among the activities. -->
23    <skip />
24    <!-- This is the label for the title or name of an event -->
25    <string name="what_label">What</string>
26    <!-- This is the label for the location of an event -->
27    <string name="where_label">Where</string>
28    <!-- This is the label for the timezone of an event [CHAR LIMIT=30] -->
29    <string name="timezone_label">Timezone</string>
30    <!-- 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>
34
35    <!-- 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 -->
40    <string name="no_title_label">(No title)</string>
41
42    <!-- 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>
81
82    <!-- Menu items: -->
83    <skip />
84    <!-- This is a label on a context menu item. Pressing this menu item to initiate
85        syncing of your Calendar data with the server. [CHAR LIMIT=11] -->
86    <string name="calendar_refresh"> "Refresh"</string>
87    <!-- This is a label on a context menu item. Pressing this menu item displays the
88         Agenda view. -->
89    <string name="show_agenda_view">"Show agenda"</string>
90    <!-- This is a label on a context menu item. Pressing this menu item displays the
91         Day view. -->
92    <string name="show_day_view">"Show day"</string>
93    <!-- This is a label on a menu item. Pressing this menu item displays the
94         Agenda view. -->
95    <string name="agenda_view">"Agenda"</string>
96    <!-- This is a label on a menu item. Pressing this menu item displays the
97         Day view. -->
98    <string name="day_view">"Day"</string>
99    <!-- This is a label on a menu item. Pressing this menu item displays the
100         Week view. -->
101    <string name="week_view">"Week"</string>
102    <!-- This is a label on a menu item. Pressing this menu item displays the
103         Month view. -->
104    <string name="month_view">"Month"</string>
105    <!-- This is a label on a menu item. Pressing this menu item displays the
106         details of an event. -->
107    <string name="event_view">"View event"</string>
108    <!-- This is a label on a menu item. Pressing this menu item allows the
109         user to create a new event. -->
110    <string name="event_create">"New event"</string>
111    <!-- This is a label on a menu item in a popup window. Pressing this menu
112         item allows the user to edit or change an existing event. -->
113    <string name="event_edit">"Edit event"</string>
114    <!-- This is a label on a menu item in a popup window. Pressing this menu
115         item allows the user to delete an existing event. -->
116    <string name="event_delete">"Delete event"</string>
117    <!-- This is a label on a menu item. Pressing this menu
118         item takes the user to the current day (today) in whatever view
119         (Day view, Week view, Agenda view, Month view) they are currently in. -->
120    <string name="goto_today">"Today"</string>
121    <!-- This is a label on a menu item. Pressing this menu item allows the
122         user to see the list of calendars that he is viewing and to then add
123         or remove selected calendars. -->
124    <string name="menu_select_calendars">"Calendars"</string>
125    <!-- This is a label on a menu item. Pressing this menu item allows the
126         user to view and edit his Settings (or Preferences) -->
127    <string name="menu_preferences">"Settings"</string>
128    <!-- This is a label on a menu item. Pressing this menu item allows the
129         user to search their events. [CHAR LIMIT=11]-->
130    <string name="search">"Search"</string>
131
132    <!-- Month view -->
133    <skip />
134    <!-- This string is used in a popup window when there are more events than
135         can be displayed so it displays the events that it can and then displays
136         this line so that the user knows how many more events there are that
137         could not be displayed.  For example, if there are 6 events but we can
138         only display 4 events then we will display the first 4 events and then
139         show 'plus 2 more' to indicate that there are two more events that we
140         could not display because of lack of room. -->
141    <string name="plus_N_more">"(plus <xliff:g id="more_count">%d</xliff:g> more \u2026)"</string>
142
143    <!-- Select Calendars activity -->
144    <skip />
145    <!-- Title of "My calendars" screen -->
146    <string name="calendars_title">"Calendars"</string>
147    <!-- Synced and visible status message -->
148    <string name="synced_visible">synced, visible</string>
149    <!-- Synced but not visible status message -->
150    <string name="synced_not_visible">synced, not visible</string>
151    <!-- not Synced or visible status message -->
152    <string name="not_synced_not_visible">not synced, not visible</string>
153    <!-- Synced status message displayed when the given calendar is stored/synced on the device
154        [CHAR LIMIT=60] -->
155    <string name="synced"> synced</string>
156    <!-- Not synced status message displayed when the given calendar is not stored/synced on the
157        device [CHAR LIMIT=60] -->
158    <string name="not_synced"> not synced</string>
159    <!-- Message displayed to user when an account with Calendars is not being auto-synced
160        [CHAR LIMIT=120]-->
161    <string name="acct_not_synced">This account is not being synced and your calendars may
162        not update correctly.</string>
163    <!-- Label on button that takes user to the Accounts and Sync settings page [CHAR LIMIT=60] -->
164    <string name="accounts">Accounts &amp; sync</string>
165
166    <!-- Event edit activity -->
167    <skip />
168    <!-- The title of the screen where the user edits an event -->
169    <string name="event_edit_title">"Event details"</string>
170    <!-- Default value of What field (as a hint to the user) -->
171    <string name="hint_what">"Event name"</string>
172    <!-- Default value of Where field (as a hint to the user) -->
173    <string name="hint_where">"Event location"</string>
174    <!-- Default value of Description field (as a hint to the user) -->
175    <string name="hint_description">"Event description"</string>
176    <!-- Default value of Attendees/Guests field (as a hint to the user) -->
177    <string name="hint_attendees">"Email addresses"</string>
178    <!-- Toast message displayed when a new event is created -->
179    <string name="creating_event">"Event created"</string>
180    <!-- Toast message displayed when an existing event is saved after being modified -->
181    <string name="saving_event">"Event saved"</string>
182    <!-- Title of message displayed to indicate available calendars are being loaded when creating
183         a new event -->
184    <string name="loading_calendars_title">"Loading calendars"</string>
185    <!-- Body of message displayed to indicate available calendars are being loaded when creating
186         a new event -->
187    <string name="loading_calendars_message">"Loading calendars\u2026"</string>
188
189    <!-- The alert toast is not actually being displayed for some reason. -->
190    <skip />
191    <!-- the title of the alert/notification activity -->
192    <string name="alert_title">Calendar notifications</string>
193    <!-- Notification window messages: -->
194    <skip />
195    <!-- This shows the number of additional reminders that were missed. This
196         is the singular case so it displays '1 more reminder' -->
197    <string name="alert_missed_events_single">(<xliff:g id="reminder_count">%s</xliff:g> more reminder)</string>
198    <!-- This shows the number of additional reminders that were missed.  For example,
199         if there were two additional reminders then this would show
200         '2 more reminders' -->
201    <string name="alert_missed_events_multiple">(<xliff:g id="reminder_count">%s</xliff:g> more reminders)</string>
202
203    <!-- Event info/edit screen labels:-->
204    <skip />
205    <!-- This is the title of the screen used to view the details of an event -->
206    <string name="event_info_title">View event</string>
207    <!-- This is the title of the screen used to view the details of an invitation
208         to a meeting or event -->
209    <string name="event_info_title_invite">Meeting invitation</string>
210    <!-- Menu item to allow the user to add a reminder to an event -->
211    <string name="add_new_reminder">Add reminder</string>
212
213    <!-- EditEventActivity specific strings: -->
214    <skip />
215    <!-- Events have a start date/time and an end date/time. The display shows
216         the start and end times like 'From start date To end date'. This is the
217         label before the 'end date'. -->
218    <string name="edit_event_to_label">To</string>
219    <!-- Events have a start date/time and an end date/time. The display shows
220         the start and end times like 'From start date To end date'. This is the
221         label before the 'start date'. -->
222    <string name="edit_event_from_label">From</string>
223    <!-- Check box label that specifies if this is an all-day event -->
224    <string name="edit_event_all_day_label">All day</string>
225    <!-- Label for choosing one of the calendars -->
226    <string name="edit_event_calendar_label">Calendar</string>
227    <!-- Menu item to show extra options that are used less often -->
228    <string name="edit_event_show_extra_options">Show extra options</string>
229    <!-- Menu item to hide extra options that are used less often -->
230    <string name="edit_event_hide_extra_options">Hide extra options</string>
231    <!-- Menu item to show all choices [CHAR LIMIT=22]-->
232    <string name="edit_event_show_all">Show all</string>
233    <!-- Label for the event description -->
234    <string name="description_label">Description</string>
235    <!-- Label for the 'Presence' of an event, which can be either 'busy' (the default)
236         or 'available' -->
237    <string name="presence_label">Show me as</string>
238    <!-- Label for the 'Privacy' of an event, which can be either 'private'
239         or 'public' -->
240    <string name="privacy_label">Privacy</string>
241    <!-- Label for the list of reminders for an event -->
242    <string name="reminders_label">Reminders</string>
243    <!-- Title of alert shown if the user tries to create an event and has no calendars -->
244    <string name="no_syncable_calendars">No calendars</string>
245    <!-- 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=120] -->
246    <string name="no_calendars_found">Before you can add an event, you must add at least one Calendar account to the device. Touch \u0022Add account\u0022 to add an account. Or if you just added an account, wait for it to finish syncing and try again.</string>
247    <!-- Title of a button shown when there is no account available and the system prompt a user to add one. [CHAR LIMIT=none] -->
248    <string name="add_account">Add account</string>
249    <!-- Label for adding guests to an event [CHAR LIMIT=32]-->
250    <string name="add_guests_label">Add guests</string>
251
252    <!-- View Event -->
253    <skip />
254    <!-- Label for which calendar an event is part of -->
255    <string name="view_event_calendar_label">Calendar:</string>
256    <!-- Label for the event organizer -->
257    <string name="view_event_organizer_label">Organizer:</string>
258    <!-- Label for the local timezone -->
259    <string name="view_event_timezone_label">Local time zone:</string>
260    <!-- Label for whether the user is attending this event. This is shown when
261         a user is invited to a meeting or event.  The possible answers are
262         'yes', 'no', and 'maybe' (and, initially, 'no response'). -->
263    <string name="view_event_response_label">Attending?</string>
264
265    <!-- Agenda View strings -->
266    <skip />
267    <!-- This is shown as part of the heading at the top of a list of today's events. -->
268    <string name="agenda_today">Today, <xliff:g id="date">%1$s</xliff:g></string>
269    <!-- This is shown while the calendar events are being loading to the screen. -->
270    <string name="loading">Loading\u2026</string>
271    <!-- This is shown at the top of the agenda view showing the range of events shown. -->
272    <string name="show_older_events">Touch to view events before <xliff:g id="oldest_search_range">%1$s</xliff:g></string>
273    <!-- This is shown at the bottom of the agenda view showing the range of events shown. -->
274    <string name="show_newer_events">Touch to view events after <xliff:g id="newest_search_range">%1$s</xliff:g></string>
275
276    <!-- Search activity strings -->
277    <skip />
278    <!-- Title of the search screen [CHAR LIMIT=30] -->
279    <string name="search_title">Search my calendars</string>
280
281    <!-- ICS Import activity -->
282    <skip />
283    <!-- This is a abbreviation for 'Number of events' and is a label next to
284         an input for the user to enter the number of events to import. -->
285    <string name="num_events">"Num events"</string>
286
287    <!-- Button labels: -->
288    <skip />
289    <!-- This is the title of a popup window that is displayed when the user
290         edits a repeating event. [CHAR LIMIT=20]-->
291    <string name="edit_event_label">"Open event"</string>
292    <!-- The button label for deleting an event -->
293    <string name="delete_label">"Delete"</string>
294    <!-- A menu item for deleting an event -->
295    <string name="delete_event_label">"Delete event"</string>
296    <!-- The button label for saving an event -->
297    <string name="save_label">Done</string>
298    <!-- The button label for discarding changes to an event -->
299    <string name="discard_label">Cancel</string>
300    <!-- The button label for importing events from another source to the phone -->
301    <string name="import_label">"Import"</string>
302
303    <!-- Button labels on expanded notification reminders: -->
304    <skip />
305    <!-- The button label for making the reminder alarms go away temporarily.
306         The reminder alarms will fire off again in 5 minutes. -->
307    <string name="snooze_all_label">"Snooze all"</string>
308    <!-- The button label for dismissing all the current reminder alarms. This
309         causes them to disappear from the notification screen. -->
310    <string name="dismiss_all_label">"Dismiss all"</string>
311
312    <!-- Repetition dialog options: -->
313    <skip />
314    <!-- A label in a multiple-choice list for the specifying that an event does
315         not repeat -->
316    <string name="does_not_repeat">One-time event</string>
317    <!-- A label in a multiple-choice list for the specifying that an event
318         repeats daily -->
319    <string name="daily">Daily</string>
320    <!-- A label in a multiple-choice list for the specifying that an event
321         repeats every weekday (Monday through Friday) -->
322    <string name="every_weekday">"Every weekday (Mon\u2013Fri)"</string>
323    <!-- A label in a multiple-choice list for the specifying that an event
324         repeats weekly on some day of the week.  For example,
325         'Weekly (every Tuesday)'. -->
326    <string name="weekly">"Weekly (every <xliff:g id="days_of_week">%s</xliff:g>)"</string>
327
328    <!-- Example: 'Monthly (every first Sunday)' -->
329    <!--   1st parameter is an ordinal number, like 'first' -->
330    <!--   2nd parameter is a day of the week, like 'Sunday' -->
331    <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>
332    <!-- The common portion of a string describing how often an event repeats,
333         example: 'Monthly (on day 2)' -->
334    <string name="monthly">Monthly</string>
335    <!-- Calendar spinner item, to select that an event recurs every year. -->
336    <string name="yearly_plain">Yearly</string>
337    <!-- Example: "Monthly (on day 15)" -->
338    <string name="monthly_on_day">"Monthly (on day <xliff:g id="day_of_month">%s</xliff:g>)"</string>
339    <!-- Example: "Yearly (on April 15)" -->
340    <string name="yearly">"Yearly (on <xliff:g id="dates">%s</xliff:g>)"</string>
341    <!-- This is a label for telling the user that this event repeats in
342         custom (non-standard) way from the usual repeat rates (such as daily,
343         weekly, etc.) and that the user cannot change this on the phone
344         (but only on the web). -->
345    <string name="custom">"Custom\u2026 (cannot customize on phone)"</string>
346
347    <!-- This is a choice in a list that the user sees when he tries to modify
348         a repeating event.  This choice says to change just this one instance
349         of this repeating event. -->
350    <string name="modify_event">Change only this event.</string>
351    <!-- This is a choice in a list that the user sees when he tries to modify
352         a repeating event.  This choice says to change all occurrences of
353         this repeating event. -->
354    <string name="modify_all">Change all events in the series.</string>
355    <!-- This is a choice in a list that the user sees when he tries to modify
356         a repeating event.  This choice says to change this instance and all
357         future occurrences of this repeating event. -->
358    <string name="modify_all_following">Change this and all future events.</string>
359
360    <!-- Dialogs -->
361
362    <!-- Confirmation dialog message -->
363    <skip />
364    <!-- This is a confirmation message in a popup dialog that appears when the
365         user has asked to delete an event. The user still has a chance to cancel
366         this operation. -->
367    <string name="delete_this_event_title">This event will be deleted.</string>
368    <!-- This is the title of a popup dialog that asks for confirmation before
369         deleting an event. -->
370    <string name="delete_title">Delete</string>
371    <!-- This is the title of a popup dialog that asks for confirmation before
372         changing the response to an invitation. -->
373    <string name="change_response_title">Change response</string>
374
375    <!-- This the title of a menu for General Preferences.
376         Pressing the menu item lets user to view and edit his general settings
377         (or preferences) [CHAR LIMIT=30] -->
378    <string name="menu_general_preferences">General Preferences</string>
379
380    <!-- This the title of a menu for "About Calendar" Preferences.
381         Pressing the menu item lets user to view the current settings
382         [CHAR LIMIT=30] -->
383    <string name="menu_about_preferences">About calendar</string>
384
385    <!-- This is the title of the screen for setting user preferences. -->
386    <string name="preferences_title">"Settings"</string>
387    <!-- This is the title of a section in the Settings screen for settings
388         related to viewing calendar events -->
389    <string name="preferences_general_title">Calendar view setting</string>
390    <!-- This is the title of a section in the Settings screen for settings
391         related to reminders for calendar events -->
392    <string name="preferences_reminder_title">Reminder settings</string>
393    <!-- Settings check box label to hide events that the user has declined to attend -->
394    <string name="preferences_hide_declined_title">Hide declined events</string>
395    <!-- Settings week start label to start week on specific day-->
396    <string name="preferences_week_start_day_title">Week starts on</string>
397    <!-- Title of popup for week start day setting-->
398    <string name="preferences_week_start_day_dialog">Week starts on</string>
399    <!-- DO NOT TRANSLATE -->
400    <string name="preferences_week_start_day_default">-1</string>
401    <!-- Title of the settings item to clear the recent search history [CHAR LIMIT=40] -->
402    <string name="preferences_clear_search_history_title">Clear search history</string>
403    <!-- Summary of the settings item to clear the recent search history [CHAR LIMIT=70]-->
404    <string name="preferences_clear_search_history_summary">Remove all the searches you have performed</string>
405    <!-- Message to show in a toast when the history is cleared [CHAR LIMIT=40] -->
406    <string name="search_history_cleared">Search history cleared</string>
407    <!-- Settings check box label to enable or disable notifications -->
408    <string name="preferences_alerts_title">Notifications</string>
409    <!-- Settings dialog label that specifies when the phone should vibrate -->
410    <string name="preferences_alerts_vibrateWhen_title">Vibrate</string>
411    <!-- Settings screen, setting summary text -->
412    <string name="preferences_alerts_vibrateWhen_summary">Also vibrate for reminders</string>
413    <!-- Title of ringtone selector dialog -->
414    <string name="preferences_alerts_ringtone_title">Select ringtone</string>
415    <!-- Title of check box label to enable or disable pop-up notifications -->
416    <string name="preferences_alerts_popup_title">Pop-up notification</string>
417    <!-- List item label for setting the default number of reminder minutes -->
418    <string name="preferences_default_reminder_title">Default reminder time</string>
419    <!-- Title of dialog for setting the default number of reminder minutes -->
420    <string name="preferences_default_reminder_dialog">Default reminder time</string>
421    <!-- Default value for the number of reminder minutes -->
422    <string name="preferences_default_reminder_default">10</string>
423    <!-- Settings check box label to keep Calendar in a fixed 'home' time zone [CHAR LIMIT = 18] -->
424    <string name="preferences_use_home_tz_title">Use home time zone</string>
425    <!-- Settings description of what setting Calendar to use a fixed 'home' time
426        zone does [CHAR LIMIT = 60]-->
427    <string name="preferences_use_home_tz_descrip">Displays calendars and event times in your home time zone when traveling</string>
428    <!-- Settings title for selecting a 'home' time zone to display Calendar in [CHAR LIMIT = 18] -->
429    <string name="preferences_home_tz_title">Home time zone</string>
430    <!-- DO NOT TRANSLATE -->
431    <string name="preferences_home_tz_default">America/Los_Angeles</string>
432
433    <!-- Title of the settings item to show week number in week view [CHAR LIMIT=40] -->
434    <string name="preferences_show_week_num_title">Show week number</string>
435
436    <!-- This is the title of a section in the Settings screen for "About" this application -->
437    <string name="preferences_about_title">About</string>
438    <!-- Build version of the application -->
439    <string name="preferences_build_version">Build version</string>
440
441    <!-- The vibrate notification modes -->
442    <string-array name="prefEntries_alerts_vibrateWhen">
443        <!-- Always -->
444        <item>Always</item>
445        <!-- Only when the phone is in Silent mode -->
446        <item>Only when silent</item>
447        <!-- Never -->
448        <item>Never</item>
449    </string-array>
450
451    <!-- The default vibrateWhen value, when none is set -->
452    <string translatable="false" name="prefDefault_alerts_vibrateWhen">never</string>
453    <!-- The value to use then migrating from old versions for a true vibrate setting -->
454    <string translatable="false" name="prefDefault_alerts_vibrate_true">always</string>
455    <!-- The value to use then migrating from old versions for a false vibrate setting -->
456    <string translatable="false" name="prefDefault_alerts_vibrate_false">never</string>
457
458    <!-- The vibrateWhen values -->
459    <string-array translatable="false" name="prefValues_alerts_vibrateWhen">
460        <item>always</item>
461        <item>silent</item>
462        <item>never</item>
463    </string-array>
464
465    <!-- Dialog title for the Vibrate dialog -->
466    <string name="prefDialogTitle_vibrateWhen">Vibrate</string>
467
468    <!-- Widget -->
469    <skip />
470    <!-- Title for calendar gadget when displayed in list of all other gadgets -->
471    <string name="gadget_title">Calendar</string>
472
473    <!-- Shown in gadget when additional events are available for display, but no room remaining -->
474    <plurals name="gadget_more_events">
475        <!-- additional events message for 1 event -->
476        <item quantity="one">1 more event</item>
477        <!-- additional events message for multiple events -->
478        <item quantity="other"><xliff:g id="number">%d</xliff:g> more events</item>
479    </plurals>
480
481    <!-- Caption to show on gadget when there are no upcoming calendar events -->
482    <string name="gadget_no_events">No upcoming calendar events</string>
483
484    <!-- Text to show on gadget when an event starts on the next day -->
485    <string name="tomorrow">Tomorrow</string>
486
487    <!-- Text to show on gadget when an event is currently in progress -->
488    <string name="in_progress">in progress</string>
489
490    <!-- Text to show on gadget when an all-day event is in progress -->
491    <string name="today">Today</string>
492
493    <!-- Displayed in email address autocomplete list when searching for contacts
494         in corporate directories. Example:  "Searching bigcompany.com..." [CHAR LIMIT=64] -->
495    <string name="directory_searching_fmt">Searching <xliff:g id="domain">%s</xliff:g>\u2026</string>
496
497</resources>
498