Home | History | Annotate | Download | only in values
      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 <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>
     19 
     20     <!-- Shared Labels. These labels are shared among the activities. -->
     21     <skip/>
     22     <!-- This is the label for the title or name of an event -->
     23     <string name="what_label">What</string>
     24     <!-- This is the label for the location of an event -->
     25     <string name="where_label">Where</string>
     26     <!-- This is the label for the time of an event [CHAR LIMIT=30] -->
     27     <string name="when_label">When</string>
     28     <!-- This is the label for the timezone of an event [CHAR LIMIT=30] -->
     29     <string name="timezone_label">Time zone</string>
     30     <!-- This is the label for the Guests/Attendees of an event -->
     31     <string name="attendees_label">Guests</string>
     32     <!-- Text to show when an event starts on the current day -->
     33     <string name="today">Today</string>
     34     <!-- Text to show when an event starts on the next day -->
     35     <string name="tomorrow">Tomorrow</string>
     36     <!-- Text for an event starting on the current day with a start and end time.
     37          For ex, "Today at 5:00pm-6:00pm" [CHAR LIMIT=NONE] -->
     38     <string name="today_at_time_fmt">"Today at <xliff:g id="time_interval">%s</xliff:g>"</string>
     39     <!-- Text for an event starting on the next day with a start and end time.
     40          For ex, "Tomorrow at 5:00pm-6:00pm" [CHAR LIMIT=NONE] -->
     41     <string name="tomorrow_at_time_fmt">"Tomorrow at <xliff:g id="time_interval">%s</xliff:g>"</string>
     42     <!-- Format string for a date and time description.  For ex:
     43          "April 19, 2012, 3:00pm - 4:00pm" [CHAR LIMIT=NONE] -->
     44     <string name="date_time_fmt">"<xliff:g id="date">%s</xliff:g>, <xliff:g id="time_interval">%s</xliff:g>"</string>
     45 
     46     <!-- Some events repeat daily, weekly, monthly, or yearly.  This is the label
     47          for all the choices about how often an event repeats (including the choice
     48          of not repeating). -->
     49     <string name="repeats_label">Repetition</string>
     50     <!-- Title of event when no explicit title is specified by the user -->
     51     <string name="no_title_label">(No title)</string>
     52 
     53     <!-- Reminder format strings -->
     54     <plurals name="Nminutes">
     55         <!-- This is the label for a 1-minute reminder. -->
     56         <item quantity="one">1 minute</item>
     57         <!-- This is the label for 2 or more minutes. The actual number of
     58              minutes is a parameter. -->
     59         <item quantity="other"><xliff:g id="count">%d</xliff:g> minutes</item>
     60     </plurals>
     61     <!-- We use the abbreviation "mins" instead of "minutes" to keep the string short.
     62          This is the number of minutes displayed for a calendar reminder.  For example,
     63          a reminder of 10 minutes would be displayed as '10 mins'.  The translation
     64          should use the shortest acceptable abbreviation to save space. -->
     65     <plurals name="Nmins">
     66         <!-- This is the label for a 1-minute reminder. -->
     67         <item quantity="one">1 min</item>
     68         <!-- This is the label for 2 or more minutes. The actual number of
     69              minutes is a parameter. -->
     70         <item quantity="other"><xliff:g id="count">%d</xliff:g> mins</item>
     71     </plurals>
     72     <!-- This is the number of hours displayed for a calendar reminder.  For example,
     73          a reminder of 1 hour would be displayed as '1 hour'.  The translation
     74          should use the shortest acceptable abbreviation of 'hour' to save space. -->
     75     <plurals name="Nhours">
     76         <!-- This is the label for a 1-hour reminder. -->
     77         <item quantity="one">1 hour</item>
     78         <!-- This is the label for a reminder of 2 or more hours. The actual number of
     79              hours is a parameter. -->
     80         <item quantity="other"><xliff:g id="count">%d</xliff:g> hours</item>
     81     </plurals>
     82     <!-- This is the number of days displayed for a calendar reminder.  For example,
     83          a reminder of 2 days would be displayed as '2 days'.  The translation
     84          should use the shortest acceptable abbreviation of 'day' to save space. -->
     85     <plurals name="Ndays">
     86         <!-- This is the label for a reminder of 1 day. -->
     87         <item quantity="one">1 day</item>
     88         <!-- This is the label for a reminder of 2 or more days. The actual number of
     89              days is a parameter. -->
     90         <item quantity="other"><xliff:g id="count">%d</xliff:g> days</item>
     91     </plurals>
     92     <!-- This is for displaying the week of the year near the date. Eg. "January, 2011 Week 1" -->
     93     <plurals name="weekN">
     94         <!-- Label for displaying week of the year for all week values [CHAR LIMIT=16] -->
     95         <item quantity="other">WEEK <xliff:g id="count">%d</xliff:g></item>
     96     </plurals>
     97 
     98     <!-- Menu items: -->
     99     <skip/>
    100     <!-- This is a label on a context menu item. Pressing this menu item to initiate
    101         syncing of your Calendar data with the server. [CHAR LIMIT=11] -->
    102     <string name="calendar_refresh"> "Refresh"</string>
    103     <!-- This is a label on a context menu item. Pressing this menu item displays the
    104          Agenda view. -->
    105 
    106     <!-- This is a label on a context menu item. Pressing this menu item displays the
    107          Day view. -->
    108     <string name="show_day_view">"Show day"</string>
    109     <!-- This is a label on a menu item. Pressing this menu item displays the
    110          Agenda view. -->
    111     <string name="agenda_view">"Agenda"</string>
    112     <!-- This is a label on a menu item. Pressing this menu item displays the
    113          Day view. -->
    114     <string name="day_view">"Day"</string>
    115     <!-- This is a label on a menu item. Pressing this menu item displays the
    116          Week view. -->
    117     <string name="week_view">"Week"</string>
    118     <!-- This is a label on a menu item. Pressing this menu item displays the
    119          Month view. -->
    120     <string name="month_view">"Month"</string>
    121     <!-- This is a label on a menu item. Pressing this menu item displays the
    122          details of an event. -->
    123     <string name="event_view">"View event"</string>
    124     <!-- This is a label on a menu item. Pressing this menu item allows the
    125          user to create a new event. -->
    126     <string name="event_create">"New event"</string>
    127     <!-- This is a label on a menu item in a popup window. Pressing this menu
    128          item allows the user to edit or change an existing event. -->
    129     <string name="event_edit">"Edit event"</string>
    130     <!-- This is a label on a menu item in a popup window. Pressing this menu
    131          item allows the user to delete an existing event. -->
    132     <string name="event_delete">"Delete event"</string>
    133     <!-- This is a label on a menu item. Pressing this menu
    134          item takes the user to the current day (today) in whatever view
    135          (Day view, Week view, Agenda view, Month view) they are currently in. -->
    136     <string name="goto_today">"Today"</string>
    137     <!-- This is a label on a menu item. Pressing this menu item allows the
    138          user to see the list of calendars that he is viewing and to then add
    139          or remove selected calendars. -->
    140 
    141     <!-- This is a label on a menu item. Pressing this menu item allows the
    142          user to view and edit his Settings (or Preferences) -->
    143     <string name="menu_preferences">"Settings"</string>
    144     <!-- This is a label on a menu item. Pressing this menu item allows the
    145          user to select the calendars to display [CHAR LIMIT=20] -->
    146     <string name="menu_select_visible_calendars">"Calendars to display"</string>
    147     <!-- This is a label on a menu item. Pressing this menu item allows the
    148          user to select the calendars to display [CHAR LIMIT=20] -->
    149     <string name="search">"Search"</string>
    150     <!-- This is a label on a menu item. Pressing this menu item hides
    151          the navigation controls on the right side. [CHAR LIMIT=20] -->
    152     <string name="hide_controls">"Hide controls"</string>
    153     <!-- This is a label on a menu item. Pressing this menu item shows the
    154          navigation controls on the right side. [CHAR LIMIT=20] -->
    155     <string name="show_controls">"Show controls"</string>
    156 
    157     <!-- Month view -->
    158     <skip/>
    159 
    160     <!-- Select Visible Calendars activity -->
    161     <skip/>
    162     <!-- Title of "My calendars" screen -->
    163     <string name="select_visible_calendars_title">"Calendars to display"</string>
    164     <!-- Synced and visible status message -->
    165 
    166     <!-- Synced but not visible status message -->
    167 
    168     <!-- not Synced or visible status message -->
    169 
    170     <!-- Synced status message displayed when the given calendar is stored/synced on the device
    171         [CHAR LIMIT=60] -->
    172     <string name="synced"> synced</string>
    173     <!-- Not synced status message displayed when the given calendar is not stored/synced on the
    174         device [CHAR LIMIT=60] -->
    175     <string name="not_synced"> not synced</string>
    176     <!-- Message displayed to user when an account with Calendars is not being auto-synced
    177         [CHAR LIMIT=120]-->
    178     <string name="acct_not_synced">This account isn\'t being synced so your calendars may
    179         not be up-to-date.</string>
    180     <!-- Label on button that takes user to the Accounts and Sync settings page [CHAR LIMIT=60] -->
    181     <string name="accounts">Accounts &amp; sync</string>
    182 
    183     <!-- Select Synced Calendars activity -->
    184     <!-- Select the set of calendars to sync [CHAR LIMIT=60] -->
    185     <string name="select_synced_calendars_title">Calendars to sync</string>
    186     <!-- Select the set of calendars to sync [CHAR LIMIT=60] -->
    187     <string name="select_synced_calendars_button">Calendars to sync</string>
    188 
    189     <!-- Event edit activity -->
    190     <skip/>
    191     <!-- The title of the screen where the user edits an event [CHAR LIMIT=17] -->
    192 
    193     <!-- Default value of What field (as a hint to the user) [CHAR LIMIT=15] -->
    194     <string name="hint_what">"Event name"</string>
    195     <!-- Default value of Where field (as a hint to the user)[CHAR LIMIT=15] -->
    196     <string name="hint_where">"Location"</string>
    197     <!-- Default value of Description field (as a hint to the user) [CHAR LIMIT=15]-->
    198     <string name="hint_description">"Description"</string>
    199     <!-- Default value of Attendees/Guests field (as a hint to the user) [CHAR LIMIT=10] -->
    200     <string name="hint_attendees">"Guests"</string>
    201     <!-- Toast message displayed when a new event is created -->
    202     <string name="creating_event">"Event created."</string>
    203     <!-- Toast message displayed when an existing event is saved after being modified -->
    204     <string name="saving_event">"Event saved."</string>
    205     <!-- Toast message displayed when a new event was not saved because it was empty [CHAR LIMIT=30] -->
    206     <string name="empty_event">"Empty event not created."</string>
    207     <!-- Toast message displayed when a new event with guests is created -->
    208     <string name="creating_event_with_guest">"Invitations will be sent."</string>
    209     <!-- Toast message displayed when an existing event with guests is saved after being modified -->
    210     <string name="saving_event_with_guest">"Updates will be sent."</string>
    211     <!-- Title of message displayed to indicate available calendars are being loaded when creating
    212          a new event -->
    213 
    214     <!-- Body of message displayed to indicate available calendars are being loaded when creating
    215          a new event -->
    216 
    217 
    218     <!-- The alert toast is not actually being displayed for some reason. -->
    219     <skip/>
    220     <!-- the title of the alert/notification activity -->
    221     <string name="alert_title">Calendar notifications</string>
    222     <!-- Notification window messages: -->
    223     <skip/>
    224 
    225     <!-- Event info/edit screen labels:-->
    226     <skip/>
    227     <!-- This is the title of the screen used to view the details of an event -->
    228     <string name="event_info_title">View event</string>
    229     <!-- This is the title of the screen used to view the details of an invitation
    230          to a meeting or event -->
    231     <string name="event_info_title_invite">Meeting invitation</string>
    232 
    233     <!-- EditEventActivity specific strings: -->
    234     <skip/>
    235     <!-- Events have a start date/time and an end date/time. The display shows
    236          the start and end times like 'From start date To end date'. This is the
    237          label before the 'end date'. -->
    238     <string name="edit_event_to_label">To</string>
    239     <!-- Events have a start date/time and an end date/time. The display shows
    240          the start and end times like 'From start date To end date'. This is the
    241          label before the 'start date'. -->
    242     <string name="edit_event_from_label">From</string>
    243     <!-- Check box label that specifies if this is an all-day event -->
    244     <string name="edit_event_all_day_label">All day</string>
    245     <!-- Label for choosing one of the calendars -->
    246     <string name="edit_event_calendar_label">Calendar</string>
    247     <!-- Menu item to show all choices [CHAR LIMIT=22]-->
    248     <string name="edit_event_show_all">Show all</string>
    249     <!-- Label for the event description -->
    250     <string name="description_label">Description</string>
    251     <!-- Label for the 'Presence' of an event, which can be either 'busy' (the default)
    252          or 'available'  [CHAR LIMIT=15] -->
    253     <string name="presence_label">Show me as</string>
    254     <!-- Label for the 'Privacy' of an event, which can be either 'private'
    255          or 'public' [CHAR LIMIT=15] -->
    256     <string name="privacy_label">Privacy</string>
    257     <!-- Label for the list of reminders for an event [CHAR LIMIT=20] -->
    258     <string name="reminders_label">Add reminder</string>
    259     <!-- Title of alert shown if the user tries to create an event and has no calendars -->
    260     <string name="no_syncable_calendars">No calendars</string>
    261     <!-- 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] -->
    262     <string name="no_calendars_found">Before you can add an event, you must add at least one Calendar account to your device and make a calendar visible. Touch Add Account to add an account (if you just added an account, wait for it to finish syncing and try again). Or touch Cancel and make sure at least one calendar is visible.</string>
    263     <!-- Body of dialog prompting the user to create an account.[CHAR LIMIT=NONE] -->
    264     <string name="create_an_account_desc">"Calendar works better with a Google Account.\n\n\u2022 Access it from any web browser\n\u2022 Back up your events securely"</string>
    265     <!-- Title of a button shown when there is no account available and the system prompt a user to add one. [CHAR LIMIT=none] -->
    266     <string name="add_account">Add account</string>
    267 
    268     <!-- View Event -->
    269     <skip/>
    270     <!-- Label for which calendar an event is part of -->
    271     <string name="view_event_calendar_label">Calendar:</string>
    272     <!-- Label for the event organizer -->
    273     <string name="view_event_organizer_label">Organizer:</string>
    274     <!-- Label for the local timezone -->
    275 
    276     <!-- Label for whether the user is attending this event. This is shown when
    277          a user is invited to a meeting or event.  The possible answers are
    278          'yes', 'no', and 'maybe' (and, initially, 'no response'). -->
    279     <string name="view_event_response_label">Attending?</string>
    280     <!-- Response for whether attending an event - accepted [CHAR LIMIT=10]-->
    281     <string name="response_yes">Yes</string>
    282     <!-- Response for whether attending an event - tentative [CHAR LIMIT=10]-->
    283     <string name="response_maybe">Maybe</string>
    284     <!-- Response for whether attending an event - declined [CHAR LIMIT=10]-->
    285     <string name="response_no">No</string>
    286     <!-- Label for emailing attendees -->
    287     <string name="email_guests_label">Email guests</string>
    288     <!-- This is shown in the popup picker when emailing attendees -->
    289     <string name="email_picker_label">Email with</string>
    290     <!-- The is shown in the email subject as the prefix appended to the event title -->
    291     <string translatable="false" name="email_subject_prefix">Re:\u0020</string>
    292 
    293     <!-- Title of the quick response item in Settings [CHAR LIMIT=18]-->
    294     <string name="quick_response_settings">Quick responses</string>
    295     <!-- Summary of the quick response item in Settings [CHAR LIMIT=80]-->
    296     <string name="quick_response_settings_summary">Edit default responses when emailing guests</string>
    297     <!-- Title of the quick response screen in Settings->Quick Response [CHAR LIMIT=19]-->
    298     <string name="quick_response_settings_title">Edit quick responses</string>
    299     <!-- Title of the quick response item in Settings [CHAR LIMIT=18]-->
    300     <string name="quick_response_settings_edit_title">Quick response</string>
    301 
    302     <!-- Title of the dialog prompting the user choose a response when emailing guests  [CHAR LIMIT=none]-->
    303     <string name="quick_response_dialog_title">Choose quick response</string>
    304     <!-- Error to user when an email program can't be found[CHAR LIMIT=none]-->
    305     <string name="quick_response_email_failed">Failed to find an email program</string>
    306     <!-- The is shown in the email subject as the prefix appended to the event title [CHAR LIMIT=none]-->
    307     <string-array name="quick_response_defaults">
    308         <item>Running just a couple of minutes late.</item>
    309         <item>Be there in about 10 minutes.</item>
    310         <item>Go ahead and start without me.</item>
    311         <item>Sorry, I can\'t make it. We\'ll have to reschedule.</item>
    312         </string-array>
    313     <!-- Option to create a custom response instead of using defaults [CHAR LIMIT=none] -->
    314     <string name="quick_response_custom_msg">Custom message\u2026</string>
    315 
    316     <!-- Event Info strings-->
    317     <!-- Time Zone Label [CHAR LIMIT=12]-->
    318 
    319     <!-- Repetition Label [CHAR LIMIT=12]-->
    320 
    321     <!-- Organizer Label [CHAR LIMIT=12]-->
    322     <string name="event_info_organizer">Organizer:</string>
    323     <!-- Reminders label [CHAR LIMIT=15]-->
    324     <string name="event_info_reminders_label">Reminders</string>
    325 
    326     <!-- Agenda View strings -->
    327     <skip/>
    328     <!-- This is shown as part of the heading at the top of a list of today's events. -->
    329     <string name="agenda_today">TODAY, <xliff:g id="date">%1$s</xliff:g></string>
    330     <!-- This is shown as part of the heading at the top of a list of today's events. -->
    331     <string name="agenda_yesterday">YESTERDAY, <xliff:g id="date">%1$s</xliff:g></string>
    332     <!-- This is shown as part of the heading at the top of a list of today's events. -->
    333     <string name="agenda_tomorrow">TOMORROW, <xliff:g id="date">%1$s</xliff:g></string>
    334     <!-- This is shown while the calendar events are being loading to the screen. -->
    335     <string name="loading">Loading\u2026</string>
    336     <!-- 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 -->
    337     <string name="show_older_events">Touch to view events before <xliff:g id="oldest_search_range">%1$s</xliff:g></string>
    338     <!-- 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 -->
    339     <string name="show_newer_events">Touch to view events after <xliff:g id="newest_search_range">%1$s</xliff:g></string>
    340 
    341     <!-- Search activity strings -->
    342     <skip/>
    343     <!-- Title of the search screen [CHAR LIMIT=30] -->
    344     <string name="search_title">Search my calendars</string>
    345 
    346     <!-- Button labels: -->
    347     <skip/>
    348     <!-- This is the title of a popup window that is displayed when the user
    349          edits a repeating event. [CHAR LIMIT=20]-->
    350     <string name="edit_event_label">"Details"</string>
    351     <!-- This is a menu button for switching into edit mode when viewing an event.
    352         [CHAR LIMIT=10] -->
    353     <string name="edit_label">"Edit"</string>
    354     <!-- The button label for deleting an event -->
    355     <string name="delete_label">"Delete"</string>
    356     <!-- A menu item for deleting an event -->
    357 
    358     <!-- The button label for saving an event -->
    359     <string name="save_label">Done</string>
    360     <!-- The button label for discarding changes to an event -->
    361     <string name="discard_label">Cancel</string>
    362 
    363     <!-- Button labels on expanded notification reminders: -->
    364     <skip/>
    365     <!-- The button label for making the reminder alarms go away temporarily.
    366          The reminder alarms will fire off again in 5 minutes. -->
    367     <string name="snooze_all_label">"Snooze all"</string>
    368     <!-- The button label for dismissing all the current reminder alarms. This
    369          causes them to disappear from the notification screen. -->
    370     <string name="dismiss_all_label">"Dismiss all"</string>
    371     <!-- The button label for making the reminder alarms go away temporarily
    372          and re-fire in 5 minutes. [CHAR LIMIT=12]-->
    373     <string name="snooze_label">"Snooze"</string>
    374 
    375     <!-- Repetition dialog options: -->
    376     <skip/>
    377     <!-- A label in a multiple-choice list for the specifying that an event does
    378          not repeat -->
    379     <string name="does_not_repeat">One-time event</string>
    380     <!-- A label in a multiple-choice list for the specifying that an event
    381          repeats daily -->
    382     <string name="daily">Daily</string>
    383     <!-- A label in a multiple-choice list for the specifying that an event
    384          repeats every weekday (Monday through Friday) -->
    385     <string name="every_weekday">"Every weekday (Mon\u2013Fri)"</string>
    386     <!-- A label in a multiple-choice list for the specifying that an event
    387          repeats weekly on some day of the week.  For example,
    388          'Weekly (every Tuesday)'. -->
    389     <string name="weekly">"Weekly (every <xliff:g id="days_of_week">%s</xliff:g>)"</string>
    390 
    391     <!-- Example: 'Monthly (every first Sunday)' -->
    392     <!--   1st parameter is an ordinal number, like 'first' -->
    393     <!--   2nd parameter is a day of the week, like 'Sunday' -->
    394     <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>
    395     <!-- The common portion of a string describing how often an event repeats,
    396          example: 'Monthly (on day 2)' -->
    397     <string name="monthly">Monthly</string>
    398     <!-- Calendar spinner item, to select that an event recurs every year. -->
    399     <string name="yearly_plain">Yearly</string>
    400     <!-- Example: "Monthly (on day 15)" -->
    401     <string name="monthly_on_day">"Monthly (on day <xliff:g id="day_of_month">%s</xliff:g>)"</string>
    402     <!-- Example: "Yearly (on April 15)" -->
    403     <string name="yearly">"Yearly (on <xliff:g id="dates">%s</xliff:g>)"</string>
    404     <!-- This is a label for telling the user that this event repeats in
    405          custom (non-standard) way from the usual repeat rates (such as daily,
    406          weekly, etc.) and that the user cannot change this on the phone
    407          (but only on the web). -->
    408     <string name="custom" product="tablet">"Custom (can\'t customize on tablet)"</string>
    409     <!-- This is a label for telling the user that this event repeats in
    410          custom (non-standard) way from the usual repeat rates (such as daily,
    411          weekly, etc.) and that the user cannot change this on the phone
    412          (but only on the web). -->
    413     <string name="custom" product="default">"Custom (can\'t customize on phone)"</string>
    414 
    415     <!-- This is a choice in a list that the user sees when he tries to modify
    416          a repeating event.  This choice says to change just this one instance
    417          of this repeating event. -->
    418     <string name="modify_event">Change only this event</string>
    419     <!-- This is a choice in a list that the user sees when he tries to modify
    420          a repeating event.  This choice says to change all occurrences of
    421          this repeating event. -->
    422     <string name="modify_all">Change all events in the series</string>
    423     <!-- This is a choice in a list that the user sees when he tries to modify
    424          a repeating event.  This choice says to change this instance and all
    425          future occurrences of this repeating event. -->
    426     <string name="modify_all_following">Change this and all future events</string>
    427 
    428     <!-- Dialogs -->
    429 
    430     <!-- This is a label on the dialog for creating a new event. [CHAR LIMIT=30] -->
    431     <string name="new_event_dialog_label">"New event"</string>
    432     <!-- This is the button to create a new event in a dialog window. [CHAR LIMIT=30] -->
    433     <string name="new_event_dialog_option">"New event"</string>
    434     <!-- Confirmation dialog message -->
    435     <skip/>
    436     <!-- This is a confirmation message in a popup dialog that appears when the
    437          user has asked to delete an event. The user still has a chance to cancel
    438          this operation. -->
    439     <string name="delete_this_event_title">Delete this event?</string>
    440     <!-- This is a confirmation message in a popup dialog that appears when the
    441          user has asked to delete an event that is recurring. The user still has a chance to cancel
    442          this operation. -->
    443     <string name="delete_recurring_event_title">Delete <xliff:g id="eventtitle">%s</xliff:g>?</string>
    444     <!-- This is the title of a popup dialog that asks for confirmation before
    445          changing the response to an invitation. -->
    446     <string name="change_response_title">Change response</string>
    447 
    448     <!-- This the title of a menu for General Preferences.
    449          Pressing the menu item lets user to view and edit his general settings
    450          (or preferences) [CHAR LIMIT=30] -->
    451     <string name="menu_general_preferences">General settings</string>
    452 
    453     <!-- This the title of a menu for "About Calendar" Preferences.
    454          Pressing the menu item lets user to view the current settings
    455          [CHAR LIMIT=30] -->
    456     <string name="menu_about_preferences">About Calendar</string>
    457 
    458     <!-- This is the title of the screen for setting user preferences. -->
    459     <string name="preferences_title">"Settings"</string>
    460     <!-- This is the title of a section in the Settings screen for settings
    461          related to viewing calendar events -->
    462     <string name="preferences_general_title">Calendar view setting</string>
    463     <!-- This is the title of a section in the Settings screen for settings
    464          related to reminders for calendar events -->
    465     <string name="preferences_reminder_title">Reminder settings</string>
    466     <!-- Settings check box label to hide events that the user has declined to attend -->
    467     <string name="preferences_hide_declined_title">Hide declined events</string>
    468     <!-- Settings week start label to start week on specific day-->
    469     <string name="preferences_week_start_day_title">Week starts on</string>
    470     <!-- Title of popup for week start day setting-->
    471     <string name="preferences_week_start_day_dialog">Week starts on</string>
    472     <!-- DO NOT TRANSLATE -->
    473     <string name="preferences_week_start_day_default">-1</string>
    474     <!-- Title of the settings item to clear the recent search history [CHAR LIMIT=40] -->
    475     <string name="preferences_clear_search_history_title">Clear search history</string>
    476     <!-- Summary of the settings item to clear the recent search history [CHAR LIMIT=70]-->
    477     <string name="preferences_clear_search_history_summary">Remove all the searches you\'ve performed</string>
    478     <!-- Message to show in a toast when the history is cleared [CHAR LIMIT=40] -->
    479     <string name="search_history_cleared">Search history cleared.</string>
    480     <!-- Settings check box label to enable or disable notifications -->
    481     <string name="preferences_alerts_title">Notifications</string>
    482     <!-- Settings dialog label that specifies when the phone should vibrate -->
    483     <string name="preferences_alerts_vibrateWhen_title">Vibrate</string>
    484     <!-- Title of ringtone selector dialog -->
    485     <string name="preferences_alerts_ringtone_title">Choose ringtone</string>
    486     <!-- Title of check box label to enable or disable pop-up notifications -->
    487     <string name="preferences_alerts_popup_title">Pop-up notification</string>
    488     <!-- List item label for setting the default number of reminder minutes -->
    489     <string name="preferences_default_reminder_title">Default reminder time</string>
    490     <!-- Title of dialog for setting the default number of reminder minutes -->
    491     <string name="preferences_default_reminder_dialog">Default reminder time</string>
    492     <!-- Default value for the number of reminder minutes -->
    493     <string name="preferences_default_reminder_default">10</string>
    494     <!-- Settings check box label to keep Calendar in a fixed 'home' time zone [CHAR LIMIT = 18] -->
    495     <string name="preferences_use_home_tz_title">Use home time zone</string>
    496     <!-- Settings description of what setting Calendar to use a fixed 'home' time
    497         zone does [CHAR LIMIT = 60]-->
    498     <string name="preferences_use_home_tz_descrip">Displays calendars and event times in your home time zone when traveling</string>
    499     <!-- Settings title for selecting a 'home' time zone to display Calendar in [CHAR LIMIT = 18] -->
    500     <string name="preferences_home_tz_title">Home time zone</string>
    501     <!-- DO NOT TRANSLATE -->
    502     <string name="preferences_home_tz_default">America/Los_Angeles</string>
    503 
    504     <!-- Title of the settings item to show week number in week view [CHAR LIMIT=40] -->
    505     <string name="preferences_show_week_num_title">Show week number</string>
    506 
    507     <!-- This is the title of a section in the Settings screen for "About" this application -->
    508     <string name="preferences_about_title">About</string>
    509     <!-- Build version of the application -->
    510     <string name="preferences_build_version">Build version</string>
    511 
    512     <!-- The vibrate notification modes -->
    513     <string-array name="prefEntries_alerts_vibrateWhen">
    514         <!-- Always -->
    515         <item>Always</item>
    516         <!-- Only when the phone is in Silent mode -->
    517         <item>Only when silent</item>
    518         <!-- Never -->
    519         <item>Never</item>
    520     </string-array>
    521 
    522     <!-- The default vibrateWhen value, when none is set -->
    523     <string translatable="false" name="prefDefault_alerts_vibrateWhen">never</string>
    524     <!-- The value to use then migrating from old versions for a true vibrate setting -->
    525     <string translatable="false" name="prefDefault_alerts_vibrate_true">always</string>
    526     <!-- The value to use then migrating from old versions for a false vibrate setting -->
    527     <string translatable="false" name="prefDefault_alerts_vibrate_false">never</string>
    528 
    529     <!-- The vibrateWhen values -->
    530     <string-array translatable="false" name="prefValues_alerts_vibrateWhen">
    531         <item>always</item>
    532         <item>silent</item>
    533         <item>never</item>
    534     </string-array>
    535 
    536     <!-- Dialog title for the Vibrate dialog -->
    537     <string name="prefDialogTitle_vibrateWhen">Vibrate</string>
    538 
    539     <!-- Widget -->
    540     <skip/>
    541     <!-- Title for calendar gadget when displayed in list of all other gadgets -->
    542     <string name="gadget_title">Calendar</string>
    543 
    544     <!-- Shown in month view next to event icon when additional events exist for that day, but no
    545         room remaining -->
    546     <plurals name="month_more_events">
    547         <!-- additional events message for 1 event, the quotes force a literal interpretation of the
    548             string [CHAR LIMIT = 10] -->
    549         <item quantity="one">"+1"</item>
    550         <!-- additional events message for multiple events [CHAR LIMIT = 10] -->
    551         <item quantity="other">+<xliff:g id="number">%d</xliff:g></item>
    552     </plurals>
    553 
    554     <!-- Caption to show on gadget when there are no upcoming calendar events -->
    555     <string name="gadget_no_events">No upcoming calendar events</string>
    556 
    557     <!-- Text to show on gadget when an event is currently in progress -->
    558 
    559 
    560     <!-- Text to show on gadget when an all-day event is in progress -->
    561 
    562 
    563     <!-- DO NOT TRANSLATE -->
    564     <string name="tardis">TARDIS</string>
    565 
    566     <!-- Send a copy of the database to developers for debugging [CHAR LIMIT="NONE"] -->
    567     <string name="copy_db">Send database</string>
    568 
    569     <!-- Displayed in email address autocomplete list when searching for contacts
    570          in corporate directories. Example:  "Searching bigcompany.com..." [CHAR LIMIT=64] -->
    571     <string name="directory_searching_fmt">Searching <xliff:g id="domain">%s</xliff:g>\u2026</string>
    572 
    573     <!-- Accessibility Events -->
    574     <!-- Strings that describes actions for buttons without text -->
    575     <!-- Create a new calendar event [CHAR LIMIT = NONE]-->
    576 
    577     <!-- Remove a name of an attendee from a calendar event [CHAR LIMIT = NONE]-->
    578     <string name="accessibility_remove_attendee">Remove attendee</string>
    579     <!-- Pick a starting date for a new event [CHAR LIMIT = NONE]-->
    580     <string name="accessibility_pick_start_date">Start date</string>
    581     <!-- Pick a starting time for a new event [CHAR LIMIT = NONE]-->
    582     <string name="accessibility_pick_start_time">Start time</string>
    583     <!-- Pick the ending date for a new event [CHAR LIMIT = NONE]-->
    584     <string name="accessibility_pick_end_date">End date</string>
    585     <!-- Pick the ending time for a new event[CHAR LIMIT = NONE]-->
    586     <string name="accessibility_pick_end_time">End time</string>
    587     <!-- Select a time zone for a new event [CHAR LIMIT = NONE]-->
    588     <string name="accessibility_pick_time_zone">Time zone</string>
    589     <!-- Add a reminder to an event [CHAR LIMIT = NONE]-->
    590     <string name="accessibility_add_reminder">Add reminder</string>
    591     <!-- Remove a reminder from an event [CHAR LIMIT = NONE]-->
    592     <string name="accessibility_remove_reminder">Remove reminder</string>
    593     <!-- Add a new attendee to an event [CHAR LIMIT = NONE]-->
    594     <string name="accessibility_add_attendee">Add attendee</string>
    595     <!-- Choose if to sync/unsync this calendar with its server [CHAR LIMIT = NONE]-->
    596     <string name="accessibility_sync_cal">Sync calendar</string>
    597     <!-- Mark this event as an "all day event" [CHAR LIMIT = NONE]-->
    598     <string name="accessibility_all_day">All day event</string>
    599     <!-- Refresh the data in the calendar [CHAR LIMIT = NONE]-->
    600 
    601     <!-- Choose the type of repetition for the event (daily, weekly, etc.[CHAR LIMIT = NONE]-->
    602     <string name="accessibility_repeats">Repetition</string>
    603     <!-- Set the time for the reminder[CHAR LIMIT = NONE]-->
    604     <string name="accessibility_reminder_time">Reminder time</string>
    605     <!-- Set the type of the reminder (popup/email/sms)[CHAR LIMIT = NONE]-->
    606     <string name="accessibility_reminder_type">Reminder type</string>
    607     <!-- Select the way you are visible for the event (busy/free) [CHAR LIMIT = NONE]-->
    608     <string name="accessibility_reminder_showmeas">Show me as</string>
    609     <!-- Set the event as private/public/default [CHAR LIMIT = NONE]-->
    610     <string name="accessibility_reminder_privacy">Privacy</string>
    611     <!-- Calendar notification [CHAR LIMIT = NONE]-->
    612     <string name="acessibility_cal_notification">Calendar Notification</string>
    613     <!-- Calendar notification snooze button [CHAR LIMIT = NONE]-->
    614     <string name="acessibility_snooze_notification">Snooze Notification</string>
    615 
    616     <!-- A "new event" hint for the user when selecting a specific hour in the day view [CHAR LIMIT = 30]-->
    617     <string name="day_view_new_event_hint">+ New event</string>
    618 
    619     <!--
    620       Source: A value for announcing the current event index (example: "Event 2 of 6").
    621       Description: This is spoken to the user. [CHAR LIMIT="NONE"]
    622     -->
    623     <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>
    624 
    625         <!-- number of events in the notification bar -->
    626     <plurals name="Nevents">
    627         <!-- This is the label for a 1 event. -->
    628         <item quantity="one">1 event</item>
    629         <!-- This is the label for 2 or more events. -->
    630         <item quantity="other"><xliff:g id="count">%d</xliff:g> events</item>
    631     </plurals>
    632 
    633     <!-- number of remaining events for an alert digest in the notification bar [CHAR LIMIT = 30] -->
    634     <plurals name="N_remaining_events">
    635         <!-- This is the label for 1 event. -->
    636         <item quantity="one">+1 event</item>
    637         <!-- This is the label for 2 or more events. -->
    638         <item quantity="other">+<xliff:g id="count">%d</xliff:g> events</item>
    639     </plurals>
    640 
    641     <!-- Description of the selected marker for accessibility support [CHAR LIMIT = NONE]-->
    642     <string name="acessibility_selected_marker_description">Selected event</string>
    643 
    644     <!-- Tell user not to check a checkbox [CHAR LIMIT=30] -->
    645     <string name="do_not_check">Do NOT check -></string>
    646 </resources>
    647