Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2010 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <!-- Array resources for the Phone app. -->
     18 <resources>
     19     <string-array translatable="false" name="transport_types">
     20         <item>UDP</item>
     21         <item>TCP</item>
     22     </string-array>
     23 
     24     <string-array translatable="true" name="sip_call_options_entries">
     25         <item>@string/sip_call_options_entry_1</item>
     26         <item>@string/sip_call_options_entry_2</item>
     27         <item>@string/sip_call_options_entry_3</item>
     28     </string-array>
     29 
     30     <string-array translatable="true" name="sip_call_options_wifi_only_entries">
     31         <item>@string/sip_call_options_wifi_only_entry_1</item>
     32         <item>@string/sip_call_options_entry_2</item>
     33         <item>@string/sip_call_options_entry_3</item>
     34     </string-array>
     35 
     36     <string-array translatable="false" name="sip_call_options_values">
     37         <item>@string/sip_always</item>
     38         <item>@string/sip_address_only</item>
     39         <item>@string/sip_ask_me_each_time</item>
     40     </string-array>
     41 
     42     <string-array translatable="false" name="phone_type_values">
     43         <item>@string/pstn_phone</item>
     44         <item>@string/internet_phone</item>
     45     </string-array>
     46 
     47     <string-array translatable="true" name="sip_send_keepalive_options">
     48         <item>@string/sip_system_decide</item>
     49         <item>@string/sip_always_send_keepalive</item>
     50     </string-array>
     51 
     52     <!-- "Target" resources for the GlowPadView widget used for incoming calls;
     53          see InCallTouchUi.showIncomingCallWidget() and incall_touch_ui.xml.  -->
     54 
     55     <!-- For most incoming calls the GlowPadView widget provides 3 choices:
     56          - Answer (drag right)
     57          - Reject (drag left)
     58          - Respond via SMS (drag up) -->
     59     <array name="incoming_call_widget_3way_targets">
     60         <item>@drawable/ic_lockscreen_answer</item>
     61         <item>@drawable/ic_lockscreen_text</item>
     62         <item>@drawable/ic_lockscreen_decline</item>
     63         <item>@null</item>"
     64     </array>
     65     <array name="incoming_call_widget_3way_target_descriptions">
     66         <item>@string/description_target_answer</item>
     67         <item>@string/description_target_send_sms</item>
     68         <item>@string/description_target_decline</item>
     69         <item>@null</item>"
     70     </array>
     71     <array name="incoming_call_widget_3way_direction_descriptions">
     72         <item>@*android:string/description_direction_right</item>
     73         <item>@*android:string/description_direction_up</item>
     74         <item>@*android:string/description_direction_left</item>
     75         <item>@null</item>
     76     </array>
     77 
     78     <!-- But in some cases "Respond via SMS" isn't available, so there are
     79          only 2 choices:
     80          - Answer (drag right)
     81          - Reject (drag left) -->
     82     <array name="incoming_call_widget_2way_targets">
     83         <item>@drawable/ic_lockscreen_answer</item>
     84         <item>@null</item>
     85         <item>@drawable/ic_lockscreen_decline</item>
     86         <item>@null</item>"
     87     </array>
     88     <array name="incoming_call_widget_2way_target_descriptions">
     89         <item>@string/description_target_answer</item>
     90         <item>@null</item>
     91         <item>@string/description_target_decline</item>
     92         <item>@null</item>"
     93     </array>
     94     <array name="incoming_call_widget_2way_direction_descriptions">
     95         <item>@*android:string/description_direction_right</item>
     96         <item>@null</item>
     97         <item>@*android:string/description_direction_left</item>
     98         <item>@null</item>
     99     </array>
    100 
    101 </resources>
    102