Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   ~ Copyright (C) 2012 The Android Open Source Project
      4   ~
      5   ~ Licensed under the Apache License, Version 2.0 (the "License");
      6   ~ you may not use this file except in compliance with the License.
      7   ~ You may obtain a copy of the License at
      8   ~
      9   ~      http://www.apache.org/licenses/LICENSE-2.0
     10   ~
     11   ~ Unless required by applicable law or agreed to in writing, software
     12   ~ distributed under the License is distributed on an "AS IS" BASIS,
     13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14   ~ See the License for the specific language governing permissions and
     15   ~ limitations under the License
     16   -->
     17 
     18 
     19 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
     20 
     21   <!-- Application name used in Settings/Apps. Default label for activities
     22        that don't specify a label. -->
     23   <string name="applicationLabel">Phone</string>
     24 
     25   <!-- Title for the activity that dials the phone, when launched directly into the dialpad -->
     26   <string name="launcherDialpadActivityLabel">Phone Keypad</string>
     27   <!-- The description text for the dialer tab.
     28 
     29   Note: AccessibilityServices use this attribute to announce what the view represents.
     30   This is especially valuable for views without textual representation like ImageView.
     31 
     32   [CHAR LIMIT=NONE] -->
     33   <string name="dialerIconLabel">Phone</string>
     34 
     35   <!-- The description text for the call log tab.
     36 
     37   Note: AccessibilityServices use this attribute to announce what the view represents.
     38   This is especially valuable for views without textual representation like ImageView.
     39 
     40   [CHAR LIMIT=NONE] -->
     41   <string name="callHistoryIconLabel">Call history</string>
     42 
     43   <!-- Text for a menu item to report a call as having been incorrectly identified. [CHAR LIMIT=48] -->
     44   <string name="action_report_number">Report inaccurate number</string>
     45 
     46   <!-- Option displayed in context menu to copy long pressed phone number. [CHAR LIMIT=48] -->
     47   <string name="action_copy_number_text">Copy number</string>
     48 
     49   <!-- Option displayed in context menu to copy long pressed voicemail transcription. [CHAR LIMIT=48] -->
     50   <string name="copy_transcript_text">Copy transcription</string>
     51 
     52   <!-- Label for action to block a number. [CHAR LIMIT=48] -->
     53   <string name="action_block_number">Block number</string>
     54 
     55   <!-- Label for action to unblock a number [CHAR LIMIT=48]-->
     56   <string name="action_unblock_number">Unblock number</string>
     57 
     58   <!-- Label for action to edit a number before calling it. [CHAR LIMIT=48] -->
     59   <string name="action_edit_number_before_call">Edit number before call</string>
     60 
     61   <!-- Menu item used to remove all calls from the call log -->
     62   <string name="call_log_delete_all">Clear call history</string>
     63 
     64   <!-- Menu item used to delete a voicemail. [CHAR LIMIT=30] -->
     65   <string name="call_log_trash_voicemail">Delete voicemail</string>
     66 
     67   <!-- Text for snackbar to undo a voicemail delete. [CHAR LIMIT=30] -->
     68   <string name="snackbar_voicemail_deleted">Voicemail deleted</string>
     69 
     70   <!-- Text for undo button in snackbar for voicemail deletion. [CHAR LIMIT=10] -->
     71   <string name="snackbar_voicemail_deleted_undo">UNDO</string>
     72 
     73   <!-- Title of the confirmation dialog for clearing the call log. [CHAR LIMIT=37]  -->
     74   <string name="clearCallLogConfirmation_title">Clear call history?</string>
     75 
     76   <!-- Confirmation dialog for clearing the call log. [CHAR LIMIT=NONE]  -->
     77   <string name="clearCallLogConfirmation">This will delete all calls from your history</string>
     78 
     79   <!-- Title of the "Clearing call log" progress-dialog [CHAR LIMIT=35] -->
     80   <string name="clearCallLogProgress_title">Clearing call history\u2026</string>
     81 
     82   <!-- Title used for the activity for placing a call. This name appears
     83        in activity disambig dialogs -->
     84   <string name="userCallActivityLabel" product="default">Phone</string>
     85 
     86   <!-- Notification strings -->
     87   <!-- Missed call notification label, used when there's exactly one missed call -->
     88   <string name="notification_missedCallTitle">Missed call</string>
     89   <!-- Missed call notification label, used when there's exactly one missed call from work contact -->
     90   <string name="notification_missedWorkCallTitle">Missed work call</string>
     91   <!-- Missed call notification label, used when there are two or more missed calls -->
     92   <string name="notification_missedCallsTitle">Missed calls</string>
     93   <!-- Missed call notification message used when there are multiple missed calls -->
     94   <string name="notification_missedCallsMsg"><xliff:g id="num_missed_calls">%d</xliff:g> missed calls</string>
     95   <!-- Message for "call back" Action, which is displayed in the missed call notificaiton.
     96        The user will be able to call back to the person or the phone number.
     97        [CHAR LIMIT=18] -->
     98   <string name="notification_missedCall_call_back">Call back</string>
     99   <!-- Message for "reply via sms" action, which is displayed in the missed call notification.
    100        The user will be able to send text messages using the phone number.
    101        [CHAR LIMIT=18] -->
    102   <string name="notification_missedCall_message">Message</string>
    103   <!-- Hardcoded number used for restricted incoming phone numbers. -->
    104   <string name="handle_restricted" translatable="false">RESTRICTED</string>
    105   <!-- Format for a post call message. (ex. John Doe: Give me a call when you're free.) -->
    106   <string name="post_call_notification_message"><xliff:g id="name">%1$s</xliff:g>: <xliff:g id="message">%2$s</xliff:g></string>
    107 
    108   <!-- Message displayed in the "Voicemail" notification item, allowing the user
    109        to dial the indicated number. -->
    110   <string name="notification_voicemail_text_format">Dial <xliff:g id="voicemail_number">%s</xliff:g></string>
    111   <!-- Message displayed in the "Voicemail" notification item,
    112        indicating that there's no voicemail number available -->
    113   <string name="notification_voicemail_no_vm_number">Voicemail number unknown</string>
    114   <!-- Title of the notification of new voicemails. [CHAR LIMIT=30] -->
    115   <plurals name="notification_voicemail_title">
    116     <item quantity="one">Voicemail</item>
    117         <item quantity="other">
    118             <xliff:g id="count">%1$d</xliff:g>
    119             Voicemails
    120         </item>
    121   </plurals>
    122 
    123   <!-- Used in the notification of a new voicemail for the action to play the voicemail. -->
    124   <string name="notification_action_voicemail_play">Play</string>
    125 
    126   <!-- Used to build a list of names or phone numbers, to indicate the callers who left
    127        voicemails.
    128        The first argument may be one or more callers, the most recent ones.
    129        The second argument is an additional callers.
    130        This string is used to build a list of callers.
    131 
    132        [CHAR LIMIT=10]
    133    -->
    134     <string name="notification_voicemail_callers_list"><xliff:g id="newer_callers">%1$s</xliff:g>,
    135         <xliff:g id="older_caller">%2$s</xliff:g>
    136     </string>
    137 
    138   <!-- Text used in the ticker to notify the user of the latest voicemail. [CHAR LIMIT=30] -->
    139     <string name="notification_new_voicemail_ticker">New voicemail from
    140         <xliff:g id="caller">%1$s</xliff:g>
    141     </string>
    142 
    143   <!-- Message to show when there is an error playing back the voicemail. [CHAR LIMIT=40] -->
    144   <string name="voicemail_playback_error">Couldn\'t play voicemail</string>
    145 
    146   <!-- Message to display whilst we are waiting for the content to be fetched. [CHAR LIMIT=40] -->
    147   <string name="voicemail_fetching_content">Loading voicemail\u2026</string>
    148 
    149   <!-- Message to display whilst we are waiting for the content to be archived. [CHAR LIMIT=40] -->
    150   <string name="voicemail_archiving_content">Archiving voicemail\u2026</string>
    151 
    152   <!-- Message to display if we fail to get content within a suitable time period. [CHAR LIMIT=40] -->
    153   <string name="voicemail_fetching_timout">Couldn\'t load voicemail</string>
    154 
    155   <!-- The header to show that call log is only showing voicemail calls. [CHAR LIMIT=40] -->
    156   <string name="call_log_voicemail_header">Calls with voicemail only</string>
    157 
    158   <!-- The header to show that call log is only showing incoming calls. [CHAR LIMIT=40] -->
    159   <string name="call_log_incoming_header">Incoming calls only</string>
    160 
    161   <!-- The header to show that call log is only showing outgoing calls. [CHAR LIMIT=40] -->
    162   <string name="call_log_outgoing_header">Outgoing calls only</string>
    163 
    164   <!-- The header to show that call log is only showing missed calls. [CHAR LIMIT=40] -->
    165   <string name="call_log_missed_header">Missed calls only</string>
    166 
    167   <!-- The counter for calls in a group and the date of the latest call as shown in the call log [CHAR LIMIT=15] -->
    168     <string name="call_log_item_count_and_date">(<xliff:g id="count">%1$d</xliff:g>)
    169         <xliff:g id="date">%2$s</xliff:g>
    170     </string>
    171 
    172   <!-- String describing the Search ImageButton
    173 
    174        Used by AccessibilityService to announce the purpose of the button.
    175        [CHAR LIMIT=NONE]
    176   -->
    177   <string name="description_search_button">search</string>
    178 
    179   <!-- String describing the Dial ImageButton
    180 
    181        Used by AccessibilityService to announce the purpose of the button.
    182   -->
    183   <string name="description_dial_button">dial</string>
    184 
    185   <!-- String describing the digits text box containing the number to dial.
    186 
    187        Used by AccessibilityService to announce the purpose of the view.
    188   -->
    189   <string name="description_digits_edittext">number to dial</string>
    190 
    191   <!-- String describing the button in the voicemail playback to start/stop playback.
    192 
    193        Used by AccessibilityService to announce the purpose of the view.
    194   -->
    195   <string name="description_playback_start_stop">Play or stop playback</string>
    196 
    197   <!-- String describing the button in the voicemail playback to switch on/off speakerphone.
    198 
    199        Used by AccessibilityService to announce the purpose of the view.
    200   -->
    201   <string name="description_playback_speakerphone">Switch on or off speakerphone</string>
    202 
    203   <!-- String describing the seekbar in the voicemail playback to seek playback position.
    204 
    205        Used by AccessibilityService to announce the purpose of the view.
    206   -->
    207   <string name="description_playback_seek">Seek playback position</string>
    208 
    209   <!-- String describing the button in the voicemail playback to decrease playback rate.
    210 
    211        Used by AccessibilityService to announce the purpose of the view.
    212   -->
    213   <string name="description_rate_decrease">Decrease playback rate</string>
    214 
    215   <!-- String describing the button in the voicemail playback to increase playback rate.
    216 
    217        Used by AccessibilityService to announce the purpose of the view.
    218   -->
    219   <string name="description_rate_increase">Increase playback rate</string>
    220 
    221   <!-- Content description for the fake action menu button that brings up the call history
    222        activity -->
    223   <string name="action_menu_call_history_description">Call history</string>
    224 
    225   <!-- Content description for the fake action menu overflow button.
    226        This should be same as the description for the real action menu
    227        overflow button available in ActionBar.
    228        [CHAR LIMIT=NONE] -->
    229   <string msgid="2295659037509008453" name="action_menu_overflow_description">More options</string>
    230 
    231   <!-- Content description for the button that displays the dialpad
    232        [CHAR LIMIT=NONE] -->
    233   <string name="action_menu_dialpad_button">key pad</string>
    234 
    235   <!-- Menu item used to show only outgoing in the call log. [CHAR LIMIT=30] -->
    236   <string name="menu_show_outgoing_only">Show outgoing only</string>
    237 
    238   <!-- Menu item used to show only incoming in the call log. [CHAR LIMIT=30] -->
    239   <string name="menu_show_incoming_only">Show incoming only</string>
    240 
    241   <!-- Menu item used to show only missed in the call log. [CHAR LIMIT=30] -->
    242   <string name="menu_show_missed_only">Show missed only</string>
    243 
    244   <!-- Menu item used to show only voicemails in the call log. [CHAR LIMIT=30] -->
    245   <string name="menu_show_voicemails_only">Show voicemails only</string>
    246 
    247   <!-- Menu item used to show all calls in the call log. [CHAR LIMIT=30] -->
    248   <string name="menu_show_all_calls">Show all calls</string>
    249 
    250   <!-- Menu items for dialpad options as part of Pause and Wait ftr [CHAR LIMIT=30] -->
    251   <string name="add_2sec_pause">Add 2-sec pause</string>
    252   <string name="add_wait">Add wait</string>
    253 
    254   <!-- Label for the dialer app setting page [CHAR LIMIT=30]-->
    255   <string name="dialer_settings_label">Settings</string>
    256 
    257   <!-- Label for the simulator submenu. This is used to show actions that are useful for development
    258        and testing. [CHAR LIMIT=30]-->
    259   <string name="simulator_submenu_label">Simulator</string>
    260 
    261   <!-- Menu item to display all contacts [CHAR LIMIT=30] -->
    262   <string name="menu_allContacts">All contacts</string>
    263 
    264   <!-- Item label: jump to the in-call DTMF dialpad.
    265        (Part of a list of options shown in the dialer when another call
    266        is already in progress.) -->
    267   <string name="dialer_useDtmfDialpad">Use touch tone keypad</string>
    268 
    269   <!-- Item label: jump to the in-call UI.
    270        (Part of a list of options shown in the dialer when another call
    271        is already in progress.) -->
    272   <string name="dialer_returnToInCallScreen">Return to call in progress</string>
    273 
    274   <!-- Item label: use the Dialer's keypad to add another call.
    275        (Part of a list of options shown in the dialer when another call
    276        is already in progress.) -->
    277   <string name="dialer_addAnotherCall">Add call</string>
    278 
    279   <!-- Description for incoming calls going to voice mail vs. not -->
    280   <string name="actionIncomingCall">Incoming calls</string>
    281 
    282   <!-- String describing the icon in the call log used to play a voicemail.
    283 
    284       Note: AccessibilityServices use this attribute to announce what the view represents.
    285             This is especially valuable for views without textual representation like ImageView.
    286   -->
    287   <string name="description_call_log_play_button">Play voicemail</string>
    288 
    289   <!-- String describing the button to view the contact for the current number.
    290 
    291       Note: AccessibilityServices use this attribute to announce what the view represents.
    292             This is especially valuable for views without textual representation like ImageView.
    293   -->
    294   <string name="description_view_contact">View contact <xliff:g id="name">%1$s</xliff:g></string>
    295 
    296   <!-- String describing the button to call a number or contact.
    297 
    298       Note: AccessibilityServices use this attribute to announce what the view represents.
    299             This is especially valuable for views without textual representation like ImageView.
    300   -->
    301   <string name="description_call">Call <xliff:g id="name">%1$s</xliff:g></string>
    302 
    303   <!-- String describing the button to access the contact details for a name or number.
    304 
    305       Note: AccessibilityServices use this attribute to announce what the view represents.
    306             This is especially valuable for views without textual representation like ImageView.
    307   -->
    308   <string name="description_contact_details">Contact details for <xliff:g id="nameOrNumber">%1$s</xliff:g></string>
    309 
    310   <!-- String describing the button to access the contact details for a name or number when the
    311        when the number is a suspected spam.
    312 
    313       Note: AccessibilityServices use this attribute to announce what the view represents.
    314             This is especially valuable for views without textual representation like ImageView.
    315   -->
    316   <string name="description_spam_contact_details">Contact details for suspected spam caller <xliff:g id="nameOrNumber">%1$s</xliff:g></string>
    317 
    318   <!-- String indicating the number of calls to/from a caller in the call log.
    319 
    320   Note: AccessibilityServices use this attribute to announce what the view represents.
    321         This is especially valuable for views without textual representation like ImageView.
    322   -->
    323   <string name="description_num_calls"><xliff:g id="numberOfCalls">%1$s</xliff:g> calls.</string>
    324 
    325   <!-- String indicating a call log entry had video capabilities.
    326 
    327   Note: AccessibilityServices use this attribute to announce what the view represents.
    328         This is especially valuable for views without textual representation like ImageView.
    329         [CHAR LIMIT=NONE]
    330   -->
    331   <string name="description_video_call">Video call.</string>
    332 
    333   <!-- String describing the button to SMS a number or contact.
    334 
    335       Note: AccessibilityServices use this attribute to announce what the view represents.
    336             This is especially valuable for views without textual representation like ImageView.
    337             [CHAR LIMIT=NONE]
    338   -->
    339   <string name="description_send_text_message">Send SMS to <xliff:g id="name">%1$s</xliff:g></string>
    340 
    341   <!-- String describing the icon in the call log used to represent an unheard voicemail left to
    342        the user.
    343 
    344       Note: AccessibilityServices use this attribute to announce what the view represents.
    345             This is especially valuable for views without textual representation like ImageView.
    346             [CHAR LIMIT=NONE]
    347   -->
    348   <string name="description_call_log_unheard_voicemail">Unheard voicemail</string>
    349 
    350   <!-- String describing the icon used to start a voice search -->
    351   <string name="description_start_voice_search">Start voice search</string>
    352 
    353   <!-- Menu item used to call a contact, containing the number of the contact to call -->
    354   <string name="menu_callNumber">Call <xliff:g id="number">%s</xliff:g></string>
    355 
    356   <!-- String used for displaying calls to the voicemail number in the call log -->
    357   <string name="voicemail">Voicemail</string>
    358 
    359   <!-- A nicely formatted call duration displayed when viewing call details for duration less than 1 minute. For example "28 sec" -->
    360   <string name="callDetailsShortDurationFormat"><xliff:g example="28" id="seconds">%s</xliff:g> sec</string>
    361 
    362   <!-- A nicely formatted call duration displayed when viewing call details. For example "42 min 28 sec" -->
    363   <string name="callDetailsDurationFormat"><xliff:g example="42" id="minutes">%s</xliff:g> min <xliff:g example="28" id="seconds">%s</xliff:g> sec</string>
    364 
    365   <string name="voicemailMultiSelectVoicemail">voicemail</string>
    366   <string name="voicemailMultiSelectVoicemails">voicemails</string>
    367   <string name="voicemailMultiSelectDeleteConfirm">Yes</string>
    368   <string name="voicemailMultiSelectDeleteCancel">No</string>
    369   <string name="voicemailMultiSelectDialogTitle">Delete selected <xliff:g id="voicemailorvoicemails">%1$s</xliff:g>?</string>
    370 
    371   <!-- The string 'Today'. This value is used in the voicemailCallLogDateTimeFormat rather than an
    372        explicit date string, e.g. Jul 25, 2014, in the event that a voicemail was created on the
    373        current day -->
    374   <string name="voicemailCallLogToday">@string/call_log_header_today</string>
    375 
    376   <!-- A format string used for displaying the date and time for a voicemail call log. For example: Jul 25, 2014 at 2:49 PM
    377        The date will be replaced by 'Today' for voicemails created on the current day. For example: Today at 2:49 PM -->
    378   <string name="voicemailCallLogDateTimeFormat"><xliff:g example="Jul 25, 2014" id="date">%1$s</xliff:g> at <xliff:g example="2:49 PM" id="time">%2$s</xliff:g></string>
    379 
    380   <!-- Format for duration of voicemails which are displayed when viewing voicemail logs. For example "01:22" -->
    381   <string name="voicemailDurationFormat"><xliff:g example="10" id="minutes">%1$02d</xliff:g>:<xliff:g example="20" id="seconds">%2$02d</xliff:g></string>
    382 
    383   <!-- A format string used for displaying the date, time and duration for a voicemail call log. For example: Jul 25, 2014 at 2:49 PM  00:34 -->
    384   <string name="voicemailCallLogDateTimeFormatWithDuration"><xliff:g example="Jul 25, 2014 at 2:49PM" id="dateAndTime">%1$s</xliff:g> \u2022 <xliff:g example="01:22" id="duration">%2$s</xliff:g></string>
    385 
    386   <!-- Dialog message which is shown when the user tries to make a phone call
    387        to prohibited phone numbers [CHAR LIMIT=NONE] -->
    388   <string msgid="4313552620858880999" name="dialog_phone_call_prohibited_message">Can\'t call this number</string>
    389 
    390   <!-- Dialog message which is shown when the user tries to check voicemail
    391        while the system isn't ready for the access. [CHAR LIMIT=NONE] -->
    392   <string name="dialog_voicemail_not_ready_message">To set up voicemail, go to Menu &gt; Settings.</string>
    393 
    394   <!-- Dialog message which is shown when the user tries to check voicemail
    395        while the system is in airplane mode. The user cannot access to
    396        voicemail service in Airplane mode. [CHAR LIMI=NONE] -->
    397   <string name="dialog_voicemail_airplane_mode_message">To call voicemail, first turn off Airplane mode.</string>
    398 
    399   <!-- Message that appears in the favorites tab of the Phone app when the contact list has not fully loaded yet (below the favorite and frequent contacts) [CHAR LIMIT=20] -->
    400   <string name="contact_list_loading">Loading\u2026</string>
    401 
    402   <!-- The title of a dialog that displays the IMEI of the phone -->
    403   <string name="imei">IMEI</string>
    404 
    405   <!-- The title of a dialog that displays the MEID of the CDMA phone -->
    406   <string name="meid">MEID</string>
    407 
    408   <!-- Dialog text displayed when loading a phone number from the SIM card for speed dial -->
    409   <string name="simContacts_emptyLoading">Loading from SIM card\u2026</string>
    410 
    411   <!-- Dialog title displayed when loading a phone number from the SIM card for speed dial -->
    412   <string name="simContacts_title">SIM card contacts</string>
    413 
    414   <!-- Message displayed when there is no application available to handle the add contact menu option. [CHAR LIMIT=NONE] -->
    415   <string name="add_contact_not_available">No contacts app available</string>
    416 
    417   <!-- Message displayed when there is no application available to handle voice search. [CHAR LIMIT=NONE] -->
    418   <string name="voice_search_not_available">Voice search not available</string>
    419 
    420   <!-- Message displayed when the Phone application has been disabled and a phone call cannot
    421        be made. [CHAR LIMIT=NONE] -->
    422   <string name="call_not_available">Cannot make a phone call because the Phone application has been disabled.</string>
    423 
    424   <!-- Hint displayed in dialer search box when there is no query that is currently typed.
    425        [CHAR LIMIT=30] -->
    426   <string name="dialer_hint_find_contact">Search contacts</string>
    427 
    428   <!-- Hint displayed in add blocked number search box when there is no query typed.
    429        [CHAR LIMIT=45] -->
    430   <string name="block_number_search_hint">Add number or search contacts</string>
    431 
    432   <!-- String resource for the font-family to use for the call log activity's title -->
    433   <string name="call_log_activity_title_font_family" translatable="false">sans-serif-light</string>
    434 
    435   <!-- String resource for the font-family to use for the full call history footer -->
    436   <string name="view_full_call_history_font_family" translatable="false">sans-serif</string>
    437 
    438   <!-- Text displayed when the call log is empty. -->
    439   <string name="call_log_all_empty">Your call history is empty</string>
    440 
    441   <!-- Label of the button displayed when the call history is empty. Allows the user to make a call. -->
    442   <string name="call_log_all_empty_action">Make a call</string>
    443 
    444   <!-- Text displayed when the list of missed calls is empty -->
    445   <string name="call_log_missed_empty">You have no missed calls.</string>
    446 
    447   <!-- Text displayed when the list of voicemails is empty -->
    448   <string name="call_log_voicemail_empty">Your voicemail inbox is empty.</string>
    449 
    450   <!--  Menu option to show favorite contacts only -->
    451   <string name="show_favorites_only">Show favorites only</string>
    452 
    453   <!--  Title of activity that displays a list of all calls -->
    454   <string name="call_log_activity_title">Call History</string>
    455 
    456   <!-- Title for the call log tab containing the list of all voicemails and calls
    457        [CHAR LIMIT=30] -->
    458   <string name="call_log_all_title">All</string>
    459 
    460   <!-- Title for the call log tab containing the list of all missed calls only
    461        [CHAR LIMIT=30] -->
    462   <string name="call_log_missed_title">Missed</string>
    463 
    464   <!-- Title for the call log tab containing the list of all voicemail calls only
    465        [CHAR LIMIT=30] -->
    466   <string name="call_log_voicemail_title">Voicemail</string>
    467 
    468   <!-- Accessibility text for the tab showing recent and favorite contacts who can be called.
    469        [CHAR LIMIT=40] -->
    470   <string name="tab_speed_dial">Speed dial</string>
    471 
    472   <!-- Accessibility text for the tab showing the call history. [CHAR LIMIT=40] -->
    473   <string name="tab_history">Call History</string>
    474 
    475   <!-- Accessibility text for the tab showing the user's contacts. [CHAR LIMIT=40] -->
    476   <string name="tab_all_contacts">Contacts</string>
    477 
    478   <!-- Accessibility text for the tab showing the user's voicemails. [CHAR LIMIT=40] -->
    479   <string name="tab_voicemail">Voicemail</string>
    480 
    481   <!--  Text displayed when user swipes out a favorite contact -->
    482   <string name="favorite_hidden">Removed from favorites</string>
    483   <!--  Text displayed for the undo button to undo removing a favorite contact -->
    484   <string name="favorite_hidden_undo">Undo</string>
    485 
    486   <!-- Shortcut item used to call a number directly from search -->
    487     <string name="search_shortcut_call_number">Call
    488         <xliff:g id="number">%s</xliff:g>
    489     </string>
    490 
    491   <!-- Shortcut item used to add a number directly to a new contact from search.
    492        [CHAR LIMIT=25] -->
    493   <string name="search_shortcut_create_new_contact">Create new contact</string>
    494 
    495   <!-- Shortcut item used to add a number to an existing contact directly from search.
    496        [CHAR LIMIT=25] -->
    497   <string name="search_shortcut_add_to_contact">Add to a contact</string>
    498 
    499   <!-- Shortcut item used to send a text message directly from search. [CHAR LIMIT=25] -->
    500   <string name="search_shortcut_send_sms_message">Send SMS</string>
    501 
    502   <!-- Shortcut item used to make a video call directly from search. [CHAR LIMIT=25] -->
    503   <string name="search_shortcut_make_video_call">Make video call</string>
    504 
    505   <!-- Shortcut item used to block a number directly from search. [CHAR LIMIT=25] -->
    506   <string name="search_shortcut_block_number">Block number</string>
    507 
    508   <!-- Number of missed calls shown on call card [CHAR LIMIT=40] -->
    509   <string name="num_missed_calls"><xliff:g id="number">%s</xliff:g> new missed calls</string>
    510 
    511   <!-- Shown when there are no speed dial favorites. -->
    512   <string name="speed_dial_empty">No one is on your speed dial yet</string>
    513 
    514   <!-- Shown as an action when there are no speed dial favorites -->
    515   <string name="speed_dial_empty_add_favorite_action">Add a favorite</string>
    516 
    517   <!-- Shown when there are no contacts in the all contacts list. -->
    518   <string name="all_contacts_empty">You don\'t have any contacts yet</string>
    519 
    520   <!-- Shown as an action when the all contacts list is empty -->
    521   <string name="all_contacts_empty_add_contact_action">Add a contact</string>
    522 
    523   <!-- Shows up as a tooltip to provide a hint to the user that the profile pic in a contact
    524        card can be tapped to bring up a list of all numbers, or long pressed to start reordering
    525        [CHAR LIMIT=NONE]
    526   -->
    527   <string name="contact_tooltip">Touch image to see all numbers or touch &amp; hold to reorder</string>
    528 
    529   <!-- Remove button that shows up when contact is long-pressed. [CHAR LIMIT=NONE] -->
    530   <string name="remove_contact">Remove</string>
    531 
    532   <!-- Button text for the "video call" displayed underneath an entry in the call log.
    533        Tapping causes a video call to be placed to the caller represented by the call log entry.
    534        [CHAR LIMIT=30] -->
    535   <string name="call_log_action_video_call">Video call</string>
    536 
    537   <!-- Button text for a button displayed underneath an entry in the call log, which opens up a
    538        messaging app to send a SMS to the number represented by the call log entry.
    539        [CHAR LIMIT=30] -->
    540   <string name="call_log_action_send_message">Send a message</string>
    541 
    542   <!-- Button text for the button displayed underneath an entry in the call log.
    543        Tapping navigates the user to the call details screen where the user can view details for
    544        the call log entry. [CHAR LIMIT=30] -->
    545   <string name="call_log_action_details">Call details</string>
    546 
    547   <!-- Button text for the button displayed underneath an entry in the call log.
    548        Tapping opens dialog to share voicemail archive with other apps. [CHAR LIMIT=30] -->
    549   <string name="call_log_action_share_voicemail">Send to &#8230;</string>
    550 
    551   <!-- Button text for the button displayed underneath an entry in the call log, which when
    552        tapped triggers a return call to the named user. [CHAR LIMIT=30] -->
    553     <string name="call_log_action_call">
    554         Call <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    555     </string>
    556 
    557   <!-- String describing an incoming missed call entry in the call log.
    558        Note: AccessibilityServices uses this attribute to announce what the view represents.
    559        [CHAR LIMIT=NONE] -->
    560   <string name="description_incoming_missed_call">Missed call from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>, <xliff:g example="Mobile" id="typeOrLocation">^2</xliff:g>, <xliff:g example="2 min ago" id="timeOfCall">^3</xliff:g>, <xliff:g example="on SIM 1" id="phoneAccount">^4</xliff:g>.</string>
    561 
    562   <!-- String describing an incoming answered call entry in the call log.
    563        Note: AccessibilityServices uses this attribute to announce what the view represents.
    564        [CHAR LIMIT=NONE] -->
    565   <string name="description_incoming_answered_call">Answered call from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>, <xliff:g example="Mobile" id="typeOrLocation">^2</xliff:g>, <xliff:g example="2 min ago" id="timeOfCall">^3</xliff:g>, <xliff:g example="on SIM 1" id="phoneAccount">^4</xliff:g>.</string>
    566 
    567   <!-- String describing an "unread" voicemail entry in the voicemails tab.
    568        Note: AccessibilityServices use this attribute to announce what the view represents.
    569        [CHAR LIMIT=NONE] -->
    570   <string name="description_unread_voicemail">Unread voicemail from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>, <xliff:g example="Mobile" id="typeOrLocation">^2</xliff:g>, <xliff:g example="2 min ago" id="timeOfCall">^3</xliff:g>, <xliff:g example="on SIM 1" id="phoneAccount">^4</xliff:g>.</string>
    571 
    572   <!-- String describing a "read" voicemail entry in the voicemails tab.
    573    Note: AccessibilityServices use this attribute to announce what the view represents.
    574    [CHAR LIMIT=NONE] -->
    575   <string name="description_read_voicemail">Voicemail from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>, <xliff:g example="Mobile" id="typeOrLocation">^2</xliff:g>, <xliff:g example="2 min ago" id="timeOfCall">^3</xliff:g>, <xliff:g example="on SIM 1" id="phoneAccount">^4</xliff:g>.</string>
    576 
    577   <!-- String describing an outgoing call entry in the call log.
    578        Note: AccessibilityServices uses this attribute to announce what the view represents.
    579        [CHAR LIMIT=NONE] -->
    580   <string name="description_outgoing_call">Call to <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>, <xliff:g example="Mobile" id="typeOrLocation">^2</xliff:g>, <xliff:g example="2 min ago" id="timeOfCall">^3</xliff:g>, <xliff:g example="on SIM 1" id="phoneAccount">^4</xliff:g>.</string>
    581 
    582   <!-- TextView text item showing the secondary line number the call was received via.
    583        [CHAR LIMIT=NONE]-->
    584   <string name="call_log_via_number">via <xliff:g example="(555) 555-5555" id="number">%1$s</xliff:g></string>
    585 
    586   <!-- The order of the PhoneAccount and via number that a call was received on,
    587        if both are visible.
    588        [CHAR LIMIT=NONE]-->
    589   <string name="call_log_via_number_phone_account"><xliff:g example="SIM 1" id="phoneAccount">%1$s</xliff:g> via <xliff:g example="(555) 555-5555" id="number">%2$s</xliff:g></string>
    590 
    591   <!-- String describing the "call" action for an entry in the call log.  The call back
    592        action triggers a return call to the named user.
    593        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    594        [CHAR LIMIT=NONE] -->
    595     <string name="description_call_action">
    596         Call <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    597     </string>
    598 
    599   <!-- String describing the "video call" action for an entry in the call log.  The video call
    600        action triggers a return video call to the named person/number.
    601        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    602        [CHAR LIMIT=NONE] -->
    603     <string name="description_video_call_action">
    604         Video call <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>.
    605     </string>
    606 
    607   <!-- String describing the "listen" action for an entry in the call log.  The listen
    608        action is shown for call log entries representing a voicemail message and this button
    609        triggers playing back the voicemail.
    610        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    611        [CHAR LIMIT=NONE] -->
    612     <string name="description_voicemail_action">
    613         Listen to voicemail from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    614     </string>
    615 
    616   <!-- String describing the "play voicemail" action for an entry in the call log.
    617        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    618        [CHAR LIMIT=NONE] -->
    619     <string name="description_voicemail_play">
    620         Play voicemail from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    621     </string>
    622 
    623   <!-- String describing the "pause voicemail" action for an entry in the call log.
    624        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    625        [CHAR LIMIT=NONE] -->
    626     <string name="description_voicemail_pause">
    627         Pause voicemail from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    628     </string>
    629 
    630 
    631   <!-- String describing the "delete voicemail" action for an entry in the call log.
    632        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    633        [CHAR LIMIT=NONE] -->
    634     <string name="description_voicemail_delete">
    635         Delete voicemail from <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    636     </string>
    637 
    638   <!-- String describing the number of new voicemails, displayed as a number badge on a tab.
    639        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    640        [CHAR LIMIT=NONE] -->
    641   <plurals name="description_voicemail_unread">
    642     <item quantity="one"><xliff:g id="count">%d</xliff:g> new voicemail</item>
    643     <item quantity="other"><xliff:g id="count">%d</xliff:g> new voicemails</item>
    644   </plurals>
    645 
    646   <!-- Description for the "create new contact" action for an entry in the call log. This action
    647        opens a screen for creating a new contact for this name or number. [CHAR LIMIT=NONE] -->
    648     <string name="description_create_new_contact_action">
    649         Create contact for <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    650     </string>
    651 
    652   <!-- Description for the "add to existing contact" action for an entry in the call log. This
    653        action opens a screen for adding this name or number to an existing contact.
    654        [CHAR LIMIT=NONE] -->
    655     <string name="description_add_to_existing_contact_action">
    656         Add <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g> to existing contact
    657     </string>
    658 
    659   <!-- String describing the "details" action for an entry in the call log.  The details action
    660        displays the call details screen for an entry in the call log.  This shows the calls to
    661        and from the specified number associated with the call log entry.
    662        [CHAR LIMIT=NONE] -->
    663     <string name="description_details_action">
    664         Call details for <xliff:g example="John Smith" id="nameOrNumber">^1</xliff:g>
    665     </string>
    666 
    667   <!-- Toast message which appears when a call log entry is deleted.
    668        [CHAR LIMIT=NONE] -->
    669   <string name="toast_entry_removed">Deleted from call history</string>
    670 
    671   <!-- String used as a header in the call log above calls which occurred today.
    672        [CHAR LIMIT=65] -->
    673   <string name="call_log_header_today">Today</string>
    674 
    675   <!-- String used as a header in the call log above calls which occurred yesterday.
    676        [CHAR LIMIT=65] -->
    677   <string name="call_log_header_yesterday">Yesterday</string>
    678 
    679   <!-- String used as a header in the call log above calls which occurred two days or more ago.
    680        [CHAR LIMIT=65] -->
    681   <string name="call_log_header_other">Older</string>
    682 
    683   <!-- String a header on the call details screen.  Appears above the list calls to or from a
    684        particular number.
    685        [CHAR LIMIT=65] -->
    686   <string name="call_detail_list_header">Calls list</string>
    687 
    688   <!-- String describing the "speaker on" button on the playback control used to listen to a
    689        voicemail message.  When speaker is on, playback of the voicemail will occur through the
    690        phone speaker.
    691        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    692        [CHAR LIMIT=NONE] -->
    693   <string name="voicemail_speaker_on">Turn speaker on.</string>
    694 
    695   <!-- String describing the "speaker off" button on the playback control used to listen to a
    696        voicemail message.  When speaker is off, playback of the voicemail will occur through the
    697        phone earpiece.
    698        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    699        [CHAR LIMIT=NONE] -->
    700   <string name="voicemail_speaker_off">Turn speaker off.</string>
    701 
    702   <!-- String describing the "play faster" button in the playback control used to listen to a
    703        voicemail message.  Speeds up playback of the voicemail message.
    704        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    705        [CHAR LIMIT=NONE] -->
    706   <string name="voicemail_play_faster">Play faster.</string>
    707 
    708   <!-- String describing the "play slower" button in the playback control used to listen to a
    709        voicemail message.  Slows down playback of the voicemail message.
    710        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    711        [CHAR LIMIT=NONE] -->
    712   <string name="voicemail_play_slower">Play slower.</string>
    713 
    714   <!-- String describing the "play/pause" button in the playback control used to listen to a
    715        voicemail message.  Starts playback or pauses ongoing playback.
    716        Note: AccessibilityServices uses this attribute to announce the purpose of the button.
    717        [CHAR LIMIT=NONE] -->
    718   <string name="voicemail_play_start_pause">Start or pause playback.</string>
    719 
    720   <!-- Dialer settings related strings-->
    721 
    722   <!-- Title for "Display options" category, which controls how contacts are shown.
    723        [CHAR LIMIT=40] -->
    724   <string name="display_options_title">Display options</string>
    725 
    726   <!-- Title for the "Sounds and vibration" settings control settings related to ringtones,
    727        dialpad tones, and vibration for incoming calls. [CHAR LIMIT=40] -->
    728   <string name="sounds_and_vibration_title">Sounds and vibration</string>
    729 
    730   <!-- Title for "Accessibility" category, which controls settings such as TTY mode and hearing
    731        aid compatability. [CHAR LIMIT=40] -->
    732   <string name="accessibility_settings_title">Accessibility</string>
    733 
    734   <!-- Setting option name to pick ringtone (a list dialog comes up). [CHAR LIMIT=30] -->
    735   <string name="ringtone_title">Phone ringtone</string>
    736 
    737   <!-- Setting option name to enable or disable vibration when ringing the phone.
    738        [CHAR LIMIT=30] -->
    739   <string name="vibrate_on_ring_title">"Also vibrate for calls</string>
    740 
    741   <!-- Setting option name to enable or disable DTMF tone sound [CHAR LIMIT=30] -->
    742   <string name="dtmf_tone_enable_title">Keypad tones</string>
    743   <!-- Label for setting to adjust the length of DTMF tone sounds. [CHAR LIMIT=40] -->
    744   <string name="dtmf_tone_length_title">Keypad tone length</string>
    745   <!-- Options displayed for the length of DTMF tone sounds. [CHAR LIMIT=40] -->
    746   <string-array name="dtmf_tone_length_entries">
    747     <item>Normal</item>
    748     <item>Long</item>
    749   </string-array>
    750   <string-array name="dtmf_tone_length_entry_values" translatable="false">
    751     <item>0</item>
    752     <item>1</item>
    753   </string-array>
    754 
    755   <!-- Title of settings screen for managing the "Respond via SMS" feature. [CHAR LIMIT=30] -->
    756   <string name="respond_via_sms_setting_title">Quick responses</string>
    757 
    758   <!-- Label for the call settings section [CHAR LIMIT=30] -->
    759   <string name="call_settings_label">Calls</string>
    760 
    761   <!-- Label for the blocked numbers settings section [CHAR LIMIT=30] -->
    762   <string name="manage_blocked_numbers_label">Call blocking</string>
    763 
    764   <!-- Label for the voicemail settings section [CHAR LIMIT=30] -->
    765   <string name="voicemail_settings_label">Voicemail</string>
    766 
    767   <!-- Title for the preference screen to select which SIM to change voicemail settings for [CHAR LIMIT=30] -->
    768   <string name="voicemail_settings_select_sim_title">Select SIM for voicemail settings</string>
    769 
    770   <!-- Label for a section describing that call blocking is temporarily disabled because an
    771        emergency call was made. [CHAR LIMIT=50] -->
    772     <string name="blocked_numbers_disabled_emergency_header_label">
    773         Call blocking temporarily off
    774     </string>
    775 
    776   <!-- Description that call blocking is temporarily disabled because the user called an
    777        emergency number, and explains that call blocking will be re-enabled after a buffer
    778        period has passed. [CHAR LIMIT=NONE] -->
    779     <string name="blocked_numbers_disabled_emergency_desc">
    780         Call blocking has been disabled because you contacted emergency services from this phone
    781         within the last 48 hours. It will be automatically reenabled once the 48 hour period
    782         expires.
    783     </string>
    784 
    785   <!-- Label for fragment to import numbers from contacts marked as send to voicemail.
    786        [CHAR_LIMIT=30] -->
    787   <string name="import_send_to_voicemail_numbers_label">Import numbers</string>
    788 
    789   <!-- Text informing the user they have previously marked contacts to be sent to voicemail.
    790        This will be followed by two buttons, 1) to view who is marked to be sent to voicemail
    791        and 2) importing these settings to Dialer's block list. [CHAR LIMIT=NONE] -->
    792     <string name="blocked_call_settings_import_description">
    793         You previously marked some callers to be automatically sent to voicemail via other apps.
    794     </string>
    795 
    796   <!-- Label for button to view numbers of contacts previous marked to be sent to voicemail.
    797        [CHAR_LIMIT=20] -->
    798   <string name="blocked_call_settings_view_numbers_button">View Numbers</string>
    799 
    800   <!-- Label for button to import settings for sending contacts to voicemail into Dialer's block
    801        list. [CHAR_LIMIT=20] -->
    802   <string name="blocked_call_settings_import_button">Import</string>
    803 
    804   <!-- String describing the delete icon on a blocked number list item.
    805       When tapped, it will show a dialog confirming the unblocking of the number.
    806       [CHAR LIMIT=NONE]-->
    807   <string name="description_blocked_number_list_delete">Unblock number</string>
    808 
    809   <!-- Button to bring up UI to add a number to the blocked call list. [CHAR LIMIT=40] -->
    810   <string name="addBlockedNumber">Add number</string>
    811 
    812   <!-- Footer message of number blocking screen with visual voicemail active.
    813       [CHAR LIMIT=NONE] -->
    814     <string name="block_number_footer_message_vvm">
    815         Calls from these numbers will be blocked and voicemails will be automatically deleted.
    816     </string>
    817 
    818   <!-- Footer message of number blocking screen with no visual voicemail.
    819        [CHAR LIMIT=NONE] -->
    820     <string name="block_number_footer_message_no_vvm">
    821          Calls from these numbers will be blocked, but they may still be able to leave you voicemails.
    822     </string>
    823 
    824   <!-- Heading for the block list in the "Spam and blocked cal)ls" settings. [CHAR LIMIT=64] -->
    825   <string name="block_list">Blocked numbers</string>
    826 
    827   <!-- Error message shown when user tries to add a number to the block list that was already
    828       blocked. [CHAR LIMIT=64] -->
    829     <string name="alreadyBlocked"><xliff:g example="(555) 555-5555" id="number">%1$s</xliff:g>
    830         is already blocked.</string>
    831 
    832   <!-- Label for the phone account settings [CHAR LIMIT=30] -->
    833   <string name="phone_account_settings_label">Calling accounts</string>
    834 
    835   <!-- Internal key for ringtone preference. -->
    836   <string name="ringtone_preference_key" translatable="false">button_ringtone_key</string>
    837   <!-- Internal key for vibrate when ringing preference. -->
    838   <string name="vibrate_on_preference_key" translatable="false">button_vibrate_on_ring</string>
    839   <!-- Internal key for vibrate when ringing preference. -->
    840   <string name="play_dtmf_preference_key" translatable="false">button_play_dtmf_tone</string>
    841   <!-- Internal key for DTMF tone length preference. -->
    842   <string name="dtmf_tone_length_preference_key" translatable="false">button_dtmf_settings</string>
    843 
    844   <!-- The label of the button used to turn on a single permission [CHAR LIMIT=30]-->
    845   <string name="permission_single_turn_on">Turn on</string>
    846 
    847   <!--  The label of the button used to turn on multiple permissions [CHAR LIMIT=30]-->
    848   <string name="permission_multiple_turn_on">Set permissions</string>
    849 
    850   <!-- Shown as a prompt to turn on the contacts permission to enable speed dial [CHAR LIMIT=NONE]-->
    851   <string name="permission_no_speeddial">To enable speed dial, turn on the Contacts permission.</string>
    852 
    853   <!-- Shown as a prompt to turn on the phone permission to enable the call log [CHAR LIMIT=NONE]-->
    854   <string name="permission_no_calllog">To see your call log, turn on the Phone permission.</string>
    855 
    856   <!-- Shown as a prompt to turn on the contacts permission to show all contacts [CHAR LIMIT=NONE]-->
    857   <string name="permission_no_contacts">To see your contacts, turn on the Contacts permission.</string>
    858 
    859   <!-- Shown as a prompt to turn on the phone permission to show voicemails [CHAR LIMIT=NONE]-->
    860   <string name="permission_no_voicemail">To access your voicemail, turn on the Phone permission.</string>
    861 
    862   <!-- Shown as a prompt to turn on contacts permissions to allow contact search [CHAR LIMIT=NONE]-->
    863   <string name="permission_no_search">To search your contacts, turn on the Contacts permissions.</string>
    864 
    865   <!-- Shown as a prompt to turn on the phone permission to allow a call to be placed [CHAR LIMIT=NONE]-->
    866   <string name="permission_place_call">To place a call, turn on the Phone permission.</string>
    867 
    868   <!-- Shown as a message that notifies the user that the Phone app cannot write to system settings, which is why the system settings app is being launched directly instead. [CHAR LIMIT=NONE]-->
    869   <string name="toast_cannot_write_system_settings">Phone app does not have permission to write to system settings.</string>
    870 
    871   <!-- Label under the name of a blocked number in the call log. [CHAR LIMIT=15] -->
    872   <string name="blocked_number_call_log_label">Blocked</string>
    873 
    874   <!-- Button text for a button displayed underneath an entry in the call log, which marks the
    875            phone number represented by the call log entry as a Spam number.
    876            [CHAR LIMIT=30] -->
    877   <string name="call_log_action_block_report_number">Block/report spam</string>
    878 
    879   <!-- Button text for a button displayed underneath an entry in the call log, which marks the
    880        phone number represented by the call log entry as a Spam number.
    881        [CHAR LIMIT=30] -->
    882   <string name="call_log_action_block_number">Block number</string>
    883 
    884   <!-- Button text for a button displayed underneath an entry in the call log, which removes the
    885        phone number represented by the call log entry from the Spam numbers list.
    886        [CHAR LIMIT=30] -->
    887   <string name="call_log_action_remove_spam">Not spam</string>
    888 
    889   <!-- Button text for a button displayed underneath an entry in the call log, which removes the
    890        phone number represented by the call log entry from the blacklisted numbers.
    891        [CHAR LIMIT=30] -->
    892   <string name="call_log_action_unblock_number">Unblock number</string>
    893 
    894   <!-- Label under the name of a spam number in the call log. [CHAR LIMIT=15] -->
    895   <string name="spam_number_call_log_label">Spam</string>
    896 
    897   <!-- Shown as a message that notifies the user enriched calling isn't working -->
    898   <string name="call_composer_connection_failed"><xliff:g id="name">%1$s</xliff:g> is offline and can\'t be reached</string>
    899 
    900   <!-- Label for setting that shows more information about the Phone app [CHAR LIMIT=30] -->
    901   <string name="about_phone_label">About</string>
    902 
    903 </resources>
    904