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 
    212     <!-- Toast message displayed responding to an event from an email as accepted
    213      [CHAR LIMIT=50] -->
    214     <string name="rsvp_accepted">"Responded yes."</string>
    215     <!-- Toast message displayed responding to an event from an email as tentative
    216      [CHAR LIMIT=50] -->
    217     <string name="rsvp_tentative">"Responded maybe."</string>
    218     <!-- Toast message displayed responding to an event from an email as declined
    219      [CHAR LIMIT=50] -->
    220     <string name="rsvp_declined">"Responded no."</string>
    221 
    222 
    223     <!-- Title of message displayed to indicate available calendars are being loaded when creating
    224          a new event -->
    225 
    226     <!-- Body of message displayed to indicate available calendars are being loaded when creating
    227          a new event -->
    228 
    229 
    230     <!-- Create event dialog -->
    231     <skip/>
    232     <!-- Create event dialog save button [CHAR LIMIT=10] -->
    233     <string name="create_event_dialog_save">Save</string>
    234 
    235     <!-- The alert toast is not actually being displayed for some reason. -->
    236     <skip/>
    237     <!-- the title of the alert/notification activity -->
    238     <string name="alert_title">Calendar notifications</string>
    239     <!-- Notification window messages: -->
    240     <skip/>
    241 
    242     <!-- Event info/edit screen labels:-->
    243     <skip/>
    244     <!-- This is the title of the screen used to view the details of an event -->
    245     <string name="event_info_title">View event</string>
    246     <!-- This is the title of the screen used to view the details of an invitation
    247          to a meeting or event -->
    248     <string name="event_info_title_invite">Meeting invitation</string>
    249 
    250     <!-- EditEventActivity specific strings: -->
    251     <skip/>
    252     <!-- Events have a start date/time and an end date/time. The display shows
    253          the start and end times like 'From start date To end date'. This is the
    254          label before the 'end date'. -->
    255     <string name="edit_event_to_label">To</string>
    256     <!-- Events have a start date/time and an end date/time. The display shows
    257          the start and end times like 'From start date To end date'. This is the
    258          label before the 'start date'. -->
    259     <string name="edit_event_from_label">From</string>
    260     <!-- Check box label that specifies if this is an all-day event -->
    261     <string name="edit_event_all_day_label">All day</string>
    262     <!-- Label for choosing one of the calendars -->
    263     <string name="edit_event_calendar_label">Calendar</string>
    264     <!-- Menu item to show all choices [CHAR LIMIT=22]-->
    265     <string name="edit_event_show_all">Show all</string>
    266     <!-- Label for the event description -->
    267     <string name="description_label">Description</string>
    268     <!-- Label for the 'Presence' of an event, which can be either 'busy' (the default)
    269          or 'available'  [CHAR LIMIT=15] -->
    270     <string name="presence_label">Show me as</string>
    271     <!-- Label for the 'Privacy' of an event, which can be either 'private'
    272          or 'public' [CHAR LIMIT=15] -->
    273     <string name="privacy_label">Privacy</string>
    274     <!-- Label for the list of reminders for an event [CHAR LIMIT=20] -->
    275     <string name="reminders_label">Add reminder</string>
    276     <!-- Title of alert shown if the user tries to create an event and has no calendars -->
    277     <string name="no_syncable_calendars">No calendars</string>
    278     <!-- 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] -->
    279     <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>
    280     <!-- Body of dialog prompting the user to create an account.[CHAR LIMIT=NONE] -->
    281     <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>
    282     <!-- Title of a button shown when there is no account available and the system prompt a user to add one. [CHAR LIMIT=none] -->
    283     <string name="add_account">Add account</string>
    284 
    285     <!-- View Event -->
    286     <skip/>
    287     <!-- Label for which calendar an event is part of -->
    288     <string name="view_event_calendar_label">Calendar:</string>
    289     <!-- Label for the event organizer -->
    290     <string name="view_event_organizer_label">Organizer:</string>
    291     <!-- Label for the local timezone -->
    292 
    293     <!-- Label for showing event color picker -->
    294     <string name="choose_event_color_label">Choose event color</string>
    295     <!-- Title for event color picker dialog -->
    296     <string name="event_color_picker_dialog_title">Event Color</string>
    297     <!-- Label for button which sets event color to default calendar color -->
    298     <string name="event_color_set_to_default">Set to default calendar color</string>
    299 
    300     <!-- Title for calendar color picker dialog -->
    301     <string name="calendar_color_picker_dialog_title">Calendar Color</string>
    302     <!-- Description for calendar color squares, which bring up the color picker. -->
    303     <string name="calendar_square_color_picker_description">Color picker</string>
    304 
    305     <!-- Label for whether the user is attending this event. This is shown when
    306          a user is invited to a meeting or event.  The possible answers are
    307          'yes', 'no', and 'maybe' (and, initially, 'no response'). -->
    308     <string name="view_event_response_label">Attending?</string>
    309     <!-- Response for whether attending an event - accepted [CHAR LIMIT=10]-->
    310     <string name="response_yes">Yes</string>
    311     <!-- Response for whether attending an event - tentative [CHAR LIMIT=10]-->
    312     <string name="response_maybe">Maybe</string>
    313     <!-- Response for whether attending an event - declined [CHAR LIMIT=10]-->
    314     <string name="response_no">No</string>
    315     <!-- Label for emailing attendees -->
    316     <string name="email_guests_label">Email guests</string>
    317     <!-- Label for emailing the organizer (when there are no attendees) -->
    318     <string name="email_organizer_label">Email organizer</string>
    319     <!-- This is shown in the popup picker when emailing attendees -->
    320     <string name="email_picker_label">Email with</string>
    321     <!-- The is shown in the email subject as the prefix appended to the event title -->
    322     <string translatable="false" name="email_subject_prefix">Re:\u0020</string>
    323     <!-- Toast message displayed when the event id was not found LIMIT=30] -->
    324     <string name="event_not_found">"Event not found."</string>
    325 
    326     <!-- Notification label for getting a map of the location. -->
    327     <string name="map_label">Map</string>
    328     <!-- Notification label for calling a phone number in the location. -->
    329     <string name="call_label">Call</string>
    330 
    331     <!-- Title of the quick response item in Settings [CHAR LIMIT=18]-->
    332     <string name="quick_response_settings">Quick responses</string>
    333     <!-- Summary of the quick response item in Settings [CHAR LIMIT=80]-->
    334     <string name="quick_response_settings_summary">Edit default responses when emailing guests</string>
    335     <!-- Title of the quick response screen in Settings->Quick Response [CHAR LIMIT=27]-->
    336     <string name="quick_response_settings_title">Edit quick responses</string>
    337     <!-- Title of the quick response item in Settings [CHAR LIMIT=18]-->
    338     <string name="quick_response_settings_edit_title">Quick response</string>
    339 
    340     <!-- Title of the dialog prompting the user choose a response when emailing guests  [CHAR LIMIT=none]-->
    341     <string name="quick_response_dialog_title">Choose quick response</string>
    342     <!-- Error to user when an email program can't be found[CHAR LIMIT=none]-->
    343     <string name="quick_response_email_failed">Failed to find an email program</string>
    344     <!-- The is shown in the email subject as the prefix appended to the event title [CHAR LIMIT=none]-->
    345     <string-array name="quick_response_defaults">
    346         <item>Running just a couple of minutes late.</item>
    347         <item>Be there in about 10 minutes.</item>
    348         <item>Go ahead and start without me.</item>
    349         <item>Sorry, I can\'t make it. We\'ll have to reschedule.</item>
    350         </string-array>
    351     <!-- Option to create a custom response instead of using defaults [CHAR LIMIT=none] -->
    352     <string name="quick_response_custom_msg">Write your own\u2026</string>
    353 
    354     <!-- Event Info strings-->
    355     <!-- Time Zone Label [CHAR LIMIT=12]-->
    356 
    357     <!-- Repetition Label [CHAR LIMIT=12]-->
    358 
    359     <!-- Organizer Label [CHAR LIMIT=12]-->
    360     <string name="event_info_organizer">Organizer:</string>
    361     <!-- Reminders label [CHAR LIMIT=15]-->
    362     <string name="event_info_reminders_label">Reminders</string>
    363 
    364     <!-- Agenda View strings -->
    365     <skip/>
    366     <!-- This is shown as part of the heading at the top of a list of today's events. -->
    367     <string name="agenda_today">TODAY, <xliff:g id="date">%1$s</xliff:g></string>
    368     <!-- This is shown as part of the heading at the top of a list of today's events. -->
    369     <string name="agenda_yesterday">YESTERDAY, <xliff:g id="date">%1$s</xliff:g></string>
    370     <!-- This is shown as part of the heading at the top of a list of today's events. -->
    371     <string name="agenda_tomorrow">TOMORROW, <xliff:g id="date">%1$s</xliff:g></string>
    372     <!-- This is shown while the calendar events are being loading to the screen. -->
    373     <string name="loading">Loading\u2026</string>
    374     <!-- 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 -->
    375     <string name="show_older_events">Touch to view events before <xliff:g id="oldest_search_range">%1$s</xliff:g></string>
    376     <!-- 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 -->
    377     <string name="show_newer_events">Touch to view events after <xliff:g id="newest_search_range">%1$s</xliff:g></string>
    378 
    379     <!-- Search activity strings -->
    380     <skip/>
    381     <!-- Title of the search screen [CHAR LIMIT=30] -->
    382     <string name="search_title">Search my calendars</string>
    383 
    384     <!-- Button labels: -->
    385     <skip/>
    386     <!-- This is the title of a popup window that is displayed when the user
    387          edits a repeating event. [CHAR LIMIT=20]-->
    388     <string name="edit_event_label">"Details"</string>
    389     <!-- This is a menu button for switching into edit mode when viewing an event.
    390         [CHAR LIMIT=10] -->
    391     <string name="edit_label">"Edit"</string>
    392     <!-- The button label for deleting an event -->
    393     <string name="delete_label">"Delete"</string>
    394     <!-- A menu item for deleting an event -->
    395 
    396     <!-- The button label for saving an event -->
    397     <string name="save_label">Done</string>
    398     <!-- The button label for discarding changes to an event -->
    399     <string name="discard_label">Cancel</string>
    400 
    401     <!-- Button labels on expanded notification reminders: -->
    402     <skip/>
    403     <!-- The button label for making the reminder alarms go away temporarily.
    404          The reminder alarms will fire off again in 5 minutes. -->
    405     <string name="snooze_all_label">"Snooze all"</string>
    406     <!-- The button label for dismissing all the current reminder alarms. This
    407          causes them to disappear from the notification screen. -->
    408     <string name="dismiss_all_label">"Dismiss all"</string>
    409     <!-- The button label for making the reminder alarms go away temporarily
    410          and re-fire in 5 minutes. [CHAR LIMIT=12]-->
    411     <string name="snooze_label">"Snooze"</string>
    412 
    413     <!-- Repetition dialog options: -->
    414     <skip/>
    415     <!-- A label in a multiple-choice list for the specifying that an event does
    416          not repeat -->
    417     <string name="does_not_repeat">One-time event</string>
    418     <!-- Part of a description of an repeating event. This part states the date when a repeating
    419          event ends. The part before the semi-colon describes how it repeats.
    420          e.g. Every 2 weeks; until 1/1/2030 [CHAR LIMIT=21] -->
    421     <string name="endByDate">; until <xliff:g id="date">%s</xliff:g></string>
    422     <!-- Part of a description of an repeating event. This part how many times the event repeats.
    423          The part before the semi-colon describes how it repeats.
    424          e.g. Every 2 weeks; for 15 times [CHAR LIMIT=15] -->
    425     <plurals name="endByCount">
    426         <item quantity="one">; for one time</item>
    427         <item quantity="other">; for <xliff:g id="number">%d</xliff:g> times</item>
    428     </plurals>
    429     <!-- A description for an event that repeats daily. For example, Every 2 days [CHAR LIMIT=15]-->
    430     <plurals name="daily">
    431         <item quantity="one">Daily</item>
    432         <item quantity="other">Every <xliff:g id="number">%d</xliff:g> days</item>
    433     </plurals>
    434     <!-- A label in a multiple-choice list for the specifying that an event
    435          repeats every weekday (Monday through Friday) -->
    436     <string name="every_weekday">"Every weekday (Mon\u2013Fri)"</string>
    437     <!-- A description for an event that repeats weekly on some day of the week. For example,
    438          'Weekly on Tuesday' or Every 2 weeks on Monday, Tuesday.  [CHAR LIMIT=25]-->
    439     <plurals name="weekly">
    440         <item quantity="one">Weekly on <xliff:g id="days_of_week">%2$s</xliff:g></item>
    441         <item quantity="other">Every <xliff:g id="number">%1$d</xliff:g> weeks on <xliff:g id="days_of_week">%2$s</xliff:g></item>
    442     </plurals>
    443 
    444     <!-- The common portion of a string describing how often an event repeats,
    445          example: 'Monthly (on day 2)' -->
    446     <string name="monthly">Monthly</string>
    447     <!-- Calendar spinner item, to select that an event recurs every year. -->
    448     <string name="yearly_plain">Yearly</string>
    449     <!-- Example: "Monthly (on day 15)" -->
    450     <string name="monthly_on_day">"Monthly (on day <xliff:g id="day_of_month">%s</xliff:g>)"</string>
    451     <!-- Example: "Yearly (on April 15)" -->
    452     <string name="yearly">"Yearly (on <xliff:g id="dates">%s</xliff:g>)"</string>
    453     <!-- This is a label for telling the user that this event repeats in
    454          custom (non-standard) way from the usual repeat rates (such as daily,
    455          weekly, etc.) and that the user cannot change this on the phone
    456          (but only on the web). -->
    457     <string name="custom" product="tablet">"Custom (can\'t customize on tablet)"</string>
    458     <!-- This is a label for telling the user that this event repeats in
    459          custom (non-standard) way from the usual repeat rates (such as daily,
    460          weekly, etc.) and that the user cannot change this on the phone
    461          (but only on the web). -->
    462     <string name="custom" product="default">"Custom (can\'t customize on phone)"</string>
    463 
    464     <!-- This is a choice in a list that the user sees when he tries to modify
    465          a repeating event.  This choice says to change just this one instance
    466          of this repeating event. -->
    467     <string name="modify_event">Change only this event</string>
    468     <!-- This is a choice in a list that the user sees when he tries to modify
    469          a repeating event.  This choice says to change all occurrences of
    470          this repeating event. -->
    471     <string name="modify_all">Change all events in the series</string>
    472     <!-- This is a choice in a list that the user sees when he tries to modify
    473          a repeating event.  This choice says to change this instance and all
    474          future occurrences of this repeating event. -->
    475     <string name="modify_all_following">Change this and all future events</string>
    476 
    477     <!-- Dialogs -->
    478 
    479     <!-- This is a label on the dialog for creating a new event. [CHAR LIMIT=30] -->
    480     <string name="new_event_dialog_label">"New event"</string>
    481     <!-- This is the button to create a new event in a dialog window. [CHAR LIMIT=30] -->
    482     <string name="new_event_dialog_option">"New event"</string>
    483     <!-- Confirmation dialog message -->
    484     <skip/>
    485     <!-- This is a confirmation message in a popup dialog that appears when the
    486          user has asked to delete an event. The user still has a chance to cancel
    487          this operation. -->
    488     <string name="delete_this_event_title">Delete this event?</string>
    489     <!-- This is a confirmation message in a popup dialog that appears when the
    490          user has asked to delete an event that is recurring. The user still has a chance to cancel
    491          this operation. -->
    492     <string name="delete_recurring_event_title">Delete <xliff:g id="eventtitle">%s</xliff:g>?</string>
    493     <!-- This is the title of a popup dialog that asks for confirmation before
    494          changing the response to an invitation. -->
    495     <string name="change_response_title">Change response</string>
    496 
    497     <!-- This the title of a menu for General Preferences.
    498          Pressing the menu item lets user to view and edit his general settings
    499          (or preferences) [CHAR LIMIT=30] -->
    500     <string name="menu_general_preferences">General settings</string>
    501 
    502     <!-- This the title of a menu for "About Calendar" Preferences.
    503          Pressing the menu item lets user to view the current settings
    504          [CHAR LIMIT=30] -->
    505     <string name="menu_about_preferences">About Calendar</string>
    506 
    507     <!-- This is the title of the screen for setting user preferences. -->
    508     <string name="preferences_title">"Settings"</string>
    509     <!-- This is the title of a section in the Settings screen for settings
    510          related to viewing calendar events -->
    511     <string name="preferences_general_title">Calendar view setting</string>
    512     <!-- This is the title of a section in the Settings screen for settings
    513          related to reminders for calendar events -->
    514     <string name="preferences_reminder_title">Notifications \u0026 reminders</string>
    515     <!-- Settings check box label to hide events that the user has declined to attend -->
    516     <string name="preferences_hide_declined_title">Hide declined events</string>
    517     <!-- Settings week start label to start week on specific day-->
    518     <string name="preferences_week_start_day_title">Week starts on</string>
    519     <!-- Title of popup for week start day setting-->
    520     <string name="preferences_week_start_day_dialog">Week starts on</string>
    521     <!-- DO NOT TRANSLATE -->
    522     <string name="preferences_week_start_day_default">-1</string>
    523     <!-- Title of the settings item to clear the recent search history [CHAR LIMIT=40] -->
    524     <string name="preferences_clear_search_history_title">Clear search history</string>
    525     <!-- Summary of the settings item to clear the recent search history [CHAR LIMIT=70]-->
    526     <string name="preferences_clear_search_history_summary">Remove all the searches you\'ve performed</string>
    527     <!-- Message to show in a toast when the history is cleared [CHAR LIMIT=40] -->
    528     <string name="search_history_cleared">Search history cleared.</string>
    529     <!-- Settings check box label to enable or disable notifications -->
    530     <string name="preferences_alerts_title">Notifications</string>
    531     <!-- Settings dialog label that specifies when the phone should vibrate -->
    532     <string name="preferences_alerts_vibrateWhen_title">Vibrate</string>
    533     <!-- The old value for enabling vibration. used only for migrating -->
    534     <string translatable="false" name="prefDefault_alerts_vibrate_true">always</string>
    535     <!-- Title of ringtone selector dialog -->
    536     <string name="preferences_alerts_ringtone_title">Sound</string>
    537     <!-- Title of check box label to enable or disable pop-up notifications -->
    538     <string name="preferences_alerts_popup_title">Pop-up notification</string>
    539     <!-- List item label for setting the default number of reminder minutes -->
    540     <string name="preferences_default_reminder_title">Default reminder time</string>
    541     <!-- Title of dialog for setting the default number of reminder minutes -->
    542     <string name="preferences_default_reminder_dialog">Default reminder time</string>
    543     <!-- Default value for the number of reminder minutes -->
    544     <string name="preferences_default_reminder_default">10</string>
    545     <!-- Settings check box label to keep Calendar in a fixed 'home' time zone [CHAR LIMIT = 18] -->
    546     <string name="preferences_use_home_tz_title">Use home time zone</string>
    547     <!-- Settings description of what setting Calendar to use a fixed 'home' time
    548         zone does [CHAR LIMIT = 60]-->
    549     <string name="preferences_use_home_tz_descrip">Displays calendars and event times in your home time zone when traveling</string>
    550     <!-- Settings title for selecting a 'home' time zone to display Calendar in [CHAR LIMIT = 18] -->
    551     <string name="preferences_home_tz_title">Home time zone</string>
    552     <!-- DO NOT TRANSLATE -->
    553     <string name="preferences_home_tz_default">America/Los_Angeles</string>
    554 
    555     <!-- Title of the settings item to show week number in week view [CHAR LIMIT=40] -->
    556     <string name="preferences_show_week_num_title">Show week number</string>
    557 
    558     <!-- This is the title of a section in the Settings screen for "About" this application -->
    559     <string name="preferences_about_title">About</string>
    560     <!-- Build version of the application -->
    561     <string name="preferences_build_version">Build version</string>
    562 
    563     <!-- Widget -->
    564     <skip/>
    565     <!-- Title for calendar gadget when displayed in list of all other gadgets -->
    566     <string name="gadget_title">Calendar</string>
    567 
    568     <!-- Shown in month view next to event icon when additional events exist for that day, but no
    569         room remaining -->
    570     <plurals name="month_more_events">
    571         <!-- additional events message for 1 event, the quotes force a literal interpretation of the
    572             string [CHAR LIMIT = 10] -->
    573         <item quantity="one">"+1"</item>
    574         <!-- additional events message for multiple events [CHAR LIMIT = 10] -->
    575         <item quantity="other">+<xliff:g id="number">%d</xliff:g></item>
    576     </plurals>
    577 
    578     <!-- Caption to show on gadget when there are no upcoming calendar events -->
    579     <string name="gadget_no_events">No upcoming calendar events</string>
    580 
    581     <!-- Text to show on gadget when an event is currently in progress -->
    582 
    583 
    584     <!-- Text to show on gadget when an all-day event is in progress -->
    585 
    586 
    587     <!-- DO NOT TRANSLATE -->
    588     <string name="tardis">TARDIS</string>
    589 
    590     <!-- Experimental settings [CHAR LIMIT = 30]-->
    591     <string name="preferences_experimental_category">Experimental</string>
    592 
    593     <!-- Reminders settings [CHAR LIMIT = 30]-->
    594     <string name="preferences_reminders_category">Reminders</string>
    595     <!-- Preference label for when to skip reminders [CHAR LIMIT = 25] -->
    596     <string name="preferences_reminders_responded_label">Skip Reminders</string>
    597     <!-- Dialog title for when to skip reminders [CHAR LIMIT = 25] -->
    598     <string name="preferences_reminders_responded_dialog">Skip Reminders</string>
    599     <!-- Preference label for quiet hours [CHAR LIMIT = 25]-->
    600     <string name="preferences_reminders_quiet_hours_label">Quiet hours</string>
    601     <!-- Preference description for quiet hours [CHAR LIMIT = NONE]-->
    602     <string name="preferences_reminders_quiet_hours_description">Silence event reminders during specified time.</string>
    603     <!-- Preference label for quiet hours start time [CHAR LIMIT = 25]-->
    604     <string name="preferences_reminders_quiet_hours_start">Quiet hours start time</string>
    605     <!-- Preference label for quiet hours end time [CHAR LIMIT = 25]-->
    606     <string name="preferences_reminders_quiet_hours_end">Quiet hours end time</string>
    607 
    608     <!-- Preferences used for debugging purposes [CHAR LIMIT = 30]-->
    609     <string name="preferences_debug_category">Debugging</string>
    610 
    611     <!-- Send a copy of the database to developers for debugging [CHAR LIMIT="NONE"] -->
    612     <string name="copy_db">Send database</string>
    613 
    614     <!-- Displayed in email address autocomplete list when searching for contacts
    615          in corporate directories. Example:  "Searching bigcompany.com..." [CHAR LIMIT=64] -->
    616     <string name="directory_searching_fmt">Searching <xliff:g id="domain">%s</xliff:g>\u2026</string>
    617 
    618     <!-- Accessibility Events -->
    619     <!-- Strings that describes actions for buttons without text -->
    620     <!-- Create a new calendar event [CHAR LIMIT = NONE]-->
    621 
    622     <!-- Remove a name of an attendee from a calendar event [CHAR LIMIT = NONE]-->
    623     <string name="accessibility_remove_attendee">Remove attendee</string>
    624     <!-- Pick a starting date for a new event [CHAR LIMIT = NONE]-->
    625     <string name="accessibility_pick_start_date">Start date</string>
    626     <!-- Pick a starting time for a new event [CHAR LIMIT = NONE]-->
    627     <string name="accessibility_pick_start_time">Start time</string>
    628     <!-- Pick the ending date for a new event [CHAR LIMIT = NONE]-->
    629     <string name="accessibility_pick_end_date">End date</string>
    630     <!-- Pick the ending time for a new event[CHAR LIMIT = NONE]-->
    631     <string name="accessibility_pick_end_time">End time</string>
    632     <!-- Select a time zone for a new event [CHAR LIMIT = NONE]-->
    633     <string name="accessibility_pick_time_zone">Time zone</string>
    634     <!-- Select a time zone for a new event [CHAR LIMIT = NONE]-->
    635     <string name="accessibility_pick_recurrence">Repeat event</string>
    636     <!-- Add a reminder to an event [CHAR LIMIT = NONE]-->
    637     <string name="accessibility_add_reminder">Add reminder</string>
    638     <!-- Remove a reminder from an event [CHAR LIMIT = NONE]-->
    639     <string name="accessibility_remove_reminder">Remove reminder</string>
    640     <!-- Add a new attendee to an event [CHAR LIMIT = NONE]-->
    641     <string name="accessibility_add_attendee">Add attendee</string>
    642     <!-- Choose if to sync/unsync this calendar with its server [CHAR LIMIT = NONE]-->
    643     <string name="accessibility_sync_cal">Sync calendar</string>
    644     <!-- Mark this event as an "all day event" [CHAR LIMIT = NONE]-->
    645     <string name="accessibility_all_day">All day event</string>
    646     <!-- Refresh the data in the calendar [CHAR LIMIT = NONE]-->
    647 
    648     <!-- Choose the type of repetition for the event (daily, weekly, etc.[CHAR LIMIT = NONE]-->
    649     <string name="accessibility_repeats">Repetition</string>
    650     <!-- Set the time for the reminder[CHAR LIMIT = NONE]-->
    651     <string name="accessibility_reminder_time">Reminder time</string>
    652     <!-- Set the type of the reminder (popup/email/sms)[CHAR LIMIT = NONE]-->
    653     <string name="accessibility_reminder_type">Reminder type</string>
    654     <!-- Select the way you are visible for the event (busy/free) [CHAR LIMIT = NONE]-->
    655     <string name="accessibility_reminder_showmeas">Show me as</string>
    656     <!-- Set the event as private/public/default [CHAR LIMIT = NONE]-->
    657     <string name="accessibility_reminder_privacy">Privacy</string>
    658     <!-- Calendar notification [CHAR LIMIT = NONE]-->
    659     <string name="acessibility_cal_notification">Calendar Notification</string>
    660     <!-- Calendar notification snooze button [CHAR LIMIT = NONE]-->
    661     <string name="acessibility_snooze_notification">Snooze Notification</string>
    662     <!-- Calendar notification email button [CHAR LIMIT = NONE]-->
    663     <string name="accessibility_email_notification">Email guests</string>
    664 
    665     <!-- A "new event" hint for the user when selecting a specific hour in the day view [CHAR LIMIT = 30]-->
    666     <string name="day_view_new_event_hint">+ New event</string>
    667 
    668     <!--
    669       Source: A value for announcing the current event index (example: "Event 2 of 6").
    670       Description: This is spoken to the user. [CHAR LIMIT="NONE"]
    671     -->
    672     <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>
    673 
    674         <!-- number of events in the notification bar -->
    675     <plurals name="Nevents">
    676         <!-- This is the label for a 1 event. -->
    677         <item quantity="one">1 event</item>
    678         <!-- This is the label for 2 or more events. -->
    679         <item quantity="other"><xliff:g id="count">%d</xliff:g> events</item>
    680     </plurals>
    681 
    682     <!-- number of remaining events for an alert digest in the notification bar [CHAR LIMIT = 30] -->
    683     <plurals name="N_remaining_events">
    684         <!-- This is the label for 1 event. -->
    685         <item quantity="one">+1 event</item>
    686         <!-- This is the label for 2 or more events. -->
    687         <item quantity="other">+<xliff:g id="count">%d</xliff:g> events</item>
    688     </plurals>
    689 
    690     <!-- Description of the selected marker for accessibility support [CHAR LIMIT = NONE]-->
    691     <string name="acessibility_selected_marker_description">Selected event</string>
    692 
    693     <!-- Tell user not to check a checkbox [CHAR LIMIT=30] -->
    694     <string name="do_not_check">Do NOT check -></string>
    695 
    696     <!-- Dialog title for recurrence picker for configuring a repeating event[CHAR LIMIT=20] -->
    697     <string name="recurrence_dialog_title">Repeat</string>
    698     <!-- Dialog title for recurrence picker when one-time event is selected [CHAR LIMIT=20] -->
    699     <string name="recurrence_dialog_title_never">Never repeats</string>
    700 
    701     <!-- Strings to describe how frequently to repeat an event (e.g. every 5 days) -->
    702     <plurals name="recurrence_interval_daily">
    703         <!-- Singular form [CHAR LIMIT=30] -->
    704         <item quantity="one">Every <xliff:g id="count">%d</xliff:g> day</item>
    705         <!-- Plural form [CHAR LIMIT=30] -->
    706         <item quantity="other">Every <xliff:g id="count">%d</xliff:g> days</item>
    707     </plurals>
    708     <!-- Strings to describe how frequently to repeat an event (e.g. every 5 weeks) -->
    709     <plurals name="recurrence_interval_weekly">
    710         <!-- Singular form [CHAR LIMIT=30] -->
    711         <item quantity="one">Every <xliff:g id="count">%d</xliff:g> week</item>
    712         <!-- Plural form [CHAR LIMIT=30] -->
    713         <item quantity="other">Every <xliff:g id="count">%d</xliff:g> weeks</item>
    714     </plurals>
    715     <!-- Strings to describe how frequently to repeat an event (e.g. every 5 months) -->
    716     <plurals name="recurrence_interval_monthly">
    717         <!-- Singular form [CHAR LIMIT=30] -->
    718         <item quantity="one">Every <xliff:g id="count">%d</xliff:g> month</item>
    719         <!-- Plural form [CHAR LIMIT=30] -->
    720         <item quantity="other">Every <xliff:g id="count">%d</xliff:g> months</item>
    721     </plurals>
    722     <!-- Strings to describe how frequently to repeat an event (e.g. every 5 years) -->
    723     <plurals name="recurrence_interval_yearly">
    724         <!-- Singular form [CHAR LIMIT=30] -->
    725         <item quantity="one">Every <xliff:g id="count">%d</xliff:g> year</item>
    726         <!-- Plural form [CHAR LIMIT=30] -->
    727         <item quantity="other">Every <xliff:g id="count">%d</xliff:g> years</item>
    728     </plurals>
    729 
    730     <!-- Repeat an monthly event on the same day of every month [CHAR LIMIT=20] -->
    731     <string name="recurrence_month_pattern_by_day">on the same day each month</string>
    732 
    733     <!-- Specifies that a repeating event to repeat forever (based on the defined frequency) instead of ending at a future date[CHAR LIMIT=20] -->
    734     <string name="recurrence_end_continously">Forever</string>
    735     <!-- Specifies that a repeating event to repeat until a certain date[CHAR LIMIT=25] -->
    736     <string name="recurrence_end_date_label">Until a date</string>
    737     <!-- Specifies that a repeating event to repeat until a certain date[CHAR LIMIT=20] -->
    738     <string name="recurrence_end_date">Until <xliff:g id="date">%s</xliff:g></string>
    739     <!-- Specifies that a repeating event to repeat for a number of times. A repeating event can repeat forever, repeat in a certain frequency until a certain date, or repeat for a number of times. e.g. repeat 10 times and stop. This string is for the last case [CHAR LIMIT=25] -->
    740     <string name="recurrence_end_count_label">For a number of events</string>
    741 
    742     <!-- Specifies that a repeating event should repeat for a certain number of iterations. [CHAR LIMIT=20]-->
    743     <plurals name="recurrence_end_count">
    744         <item quantity="one">For <xliff:g id="event_count">%d</xliff:g> event</item>
    745         <item quantity="other">For <xliff:g id="event_count">%d</xliff:g> events</item>
    746     </plurals>
    747 
    748     <!-- Description of the selected marker for accessibility support [CHAR LIMIT = NONE]-->
    749     <string name="acessibility_recurrence_choose_end_date_description">change end date</string>
    750 
    751     <!-- Do Not Translate.  Sender identity for global notification synchronization. -->
    752     <string name="notification_sender_id"></string>
    753 </resources>
    754