Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 /*
      4 ** Copyright 2009, The Android Open Source Project
      5 **
      6 ** Licensed under the Apache License, Version 2.0 (the "License");
      7 ** you may not use this file except in compliance with the License.
      8 ** You may obtain a copy of the License at
      9 **
     10 **     http://www.apache.org/licenses/LICENSE-2.0
     11 **
     12 ** Unless required by applicable law or agreed to in writing, software
     13 ** distributed under the License is distributed on an "AS IS" BASIS,
     14 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15 ** See the License for the specific language governing permissions and
     16 ** limitations under the License.
     17 */
     18 -->
     19 
     20 <resources>
     21     <!-- Flag indicating whether Contacts app is allowed to import contacts from SDCard -->
     22     <bool name="config_allow_import_from_sdcard">true</bool>
     23     <!-- If true, all vcard files are imported from SDCard without asking a user.
     24     If not, dialog shows to let the user to select whether all vcard files are imported or not.
     25     If the user selects "not", then the application ask the user to select a file.-->
     26     <bool name="config_import_all_vcard_from_sdcard_automatically">false</bool>
     27     <!-- If true, vcard importer shows a dialog which asks the user whether the user wants
     28     to import all vcard files in SDCard or select one vcard file. If false, the dialog is
     29     skipped and the importer asks the user to choose one vcard file.
     30     If config_import_all_vcard_from_sdcard_automatically is set true, this configuration
     31     is ignored. -->
     32     <bool name="config_allow_users_select_all_vcard_import">true</bool>
     33 
     34     <!-- Flag indicating whether Contacts app is allowed to export contacts to SDCard -->
     35     <bool name="config_allow_export_to_sdcard">true</bool>
     36 
     37     <!-- Flag indicating whether Contacts app is allowed to share contacts with devices outside -->
     38     <bool name="config_allow_share_visible_contacts">true</bool>
     39 
     40     <!-- If true, enable vibration (haptic feedback) for dialer key presses.
     41          The pattern is set on a per-platform basis using config_virtualKeyVibePattern.
     42          TODO: If enough users are annoyed by this, we might eventually
     43          need to make it a user preference rather than a per-platform
     44          resource. -->
     45     <bool name="config_enable_dialer_key_vibration">true</bool>
     46 
     47     <!-- Flag indicating whether to show images in browse list -->
     48     <bool name="config_browse_list_show_images">true</bool>
     49 
     50     <!-- The type of vcard for improt. If the vcard importer cannot guess the exact type
     51     of a vCard type, the improter uses this type. -->
     52     <string name="config_import_vcard_type" translatable="false">default</string>
     53 
     54     <!-- The type of VCard for export. If you want to let the app emit vCard which is
     55     specific to some vendor (like DoCoMo), specify this type (e.g. "docomo") -->
     56     <string name="config_export_vcard_type" translatable="false">default</string>
     57 
     58     <!-- Directory in which exported VCard file is stored -->
     59     <string name="config_export_dir" translatable="false">/mnt/sdcard</string>
     60 
     61     <!-- Prefix of exported VCard file -->
     62     <string name="config_export_file_prefix" translatable="false"></string>
     63 
     64     <!-- Suffix of exported VCard file. Attached before an extension -->
     65     <string name="config_export_file_suffix" translatable="false"></string>
     66 
     67     <!-- Extension for exported VCard files -->
     68     <string name="config_export_file_extension" translatable="false">vcf</string>
     69 
     70     <!-- Minimum number of exported VCard file index -->
     71     <integer name="config_export_file_min_index">1</integer>
     72 
     73     <!-- Maximum number of exported VCard file index -->
     74     <integer name="config_export_file_max_index">99999</integer>
     75 
     76     <!-- The list (separated by ',') of extensions should be checked in addition to
     77      config_export_extension. e.g. If "aaa" is added to here and 00001.vcf and 00002.aaa
     78      exist in a target directory, 00003.vcf becomes a next file name candidate.
     79      Without this configuration, 00002.vcf becomes the candidate.-->
     80     <string name="config_export_extensions_to_consider" translatable="false"></string>
     81 
     82     <!-- If true, show an onscreen "Dial" button in the dialer.
     83          In practice this is used on all platforms even the ones with hard SEND/END
     84          keys, but for maximum flexibility it's controlled by a flag here
     85          (which can be overridden on a per-product basis.) -->
     86     <bool name="config_show_onscreen_dial_button">true</bool>
     87 
     88     <!-- If true, an option is shown in Display Options UI to choose a sort order -->
     89     <bool name="config_sort_order_user_changeable">true</bool>
     90 
     91     <!-- If true, the default sort order is primary (i.e. by given name) -->
     92     <bool name="config_default_sort_order_primary">true</bool>
     93 
     94     <!-- If true, an option is shown in Display Options UI to choose a name display order -->
     95     <bool name="config_display_order_user_changeable">true</bool>
     96 
     97     <!-- If true, the default sort order is primary (i.e. by given name) -->
     98     <bool name="config_default_display_order_primary">true</bool>
     99 
    100     <!-- If true, the order of name fields in the editor is primary (i.e. given name first) -->
    101     <bool name="config_editor_field_order_primary">true</bool>
    102 
    103     <!-- If true, phonetic name is included in the contact editor by default -->
    104     <bool name="config_editor_include_phonetic_name">false</bool>
    105 
    106     <!-- If true, Contacts uses two panes: List and Detail. If false, Details are
    107          shown in their own screens. This flag must be in sync with the layout definitions. -->
    108     <bool name="config_use_two_panes">false</bool>
    109 
    110     <!--  If true, Contacts uses two panes in the favorites view, one for starred and one for
    111           frequently contacted.  If false, only one list is shown with starred on top and frequently
    112           contacted listed below. Note: This should not be true if config_use_two_panes is
    113           false. -->
    114     <bool name="config_use_two_panes_in_favorites">false</bool>
    115 
    116     <!-- If true, the "home" icon on the action bar will be shown. -->
    117     <bool name="show_home_icon">false</bool>
    118 
    119     <!--
    120       If true, the "view updates from group" button in the action bar will be
    121       shown. Otherwise it will be part of the content on the group detail page.
    122     -->
    123     <bool name="config_show_group_action_in_action_bar">false</bool>
    124 
    125     <!-- Width of a tab in the tab carousel as a percentage of the current screen width on the
    126          contact detail page -->
    127     <item name="tab_width_screen_width_percentage" type="fraction">75%</item>
    128 
    129     <!-- Height of the tab carousel as a percentage of the current screen width on the
    130          contact detail page -->
    131     <item name="tab_height_screen_width_percentage" type="fraction">50%</item>
    132 
    133     <!-- Regular expression for prohibiting certain phone numbers in dialpad.
    134          Ignored if empty. -->
    135     <string name="config_prohibited_phone_number_regexp"></string>
    136 
    137     <!-- If true, enable the "import contacts from SIM" feature if the device
    138          has an appropriate SIM or ICC card.
    139          Setting this flag to false in a resource overlay allows you to
    140          entirely disable SIM import on a per-product basis. -->
    141     <bool name="config_allow_sim_import">true</bool>
    142 
    143 
    144     <!-- Help URL pointing to main TOC for People. This is intentionally empty because
    145          the overlay will fill this in during build time. -->
    146     <string name="help_url_people_main"></string>
    147 
    148     <!-- Help URL pointing to adding contacts in People. This is intentionally empty because
    149          the overlay will fill this in during build time. -->
    150     <string name="help_url_people_add"></string>
    151 
    152     <!-- Help URL pointing to editing contacts in People. This is intentionally empty because
    153          the overlay will fill this in during build time. -->
    154     <string name="help_url_people_edit"></string>
    155 </resources>
    156