mobile/android/base/resources/xml/fxaccount_status_prefscreen.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:key="status_screen" >
     5     <PreferenceCategory
     6         android:key="signed_in_as_category"
     7         android:title="@string/fxaccount_status_signed_in_as" >
     8         <Preference
     9             android:editable="false"
    10             android:key="email"
    11             android:persistent="false"
    12             android:title="@string/fxaccount_email_hint" />
    13     </PreferenceCategory>
    14     <PreferenceCategory
    15         android:key="sync_category"
    16         android:title="@string/fxaccount_status_sync" >
    17         <Preference
    18             android:editable="false"
    19             android:icon="@drawable/fxaccount_sync_error"
    20             android:key="needs_credentials"
    21             android:layout="@layout/fxaccount_status_error_preference"
    22             android:persistent="false"
    23             android:title="@string/fxaccount_status_needs_credentials" />
    24         <Preference
    25             android:editable="false"
    26             android:icon="@drawable/fxaccount_sync_error"
    27             android:key="needs_upgrade"
    28             android:layout="@layout/fxaccount_status_error_preference"
    29             android:persistent="false"
    30             android:title="@string/fxaccount_status_needs_upgrade" />
    31         <Preference
    32             android:editable="false"
    33             android:icon="@drawable/fxaccount_sync_error"
    34             android:key="needs_verification"
    35             android:layout="@layout/fxaccount_status_error_preference"
    36             android:persistent="false"
    37             android:title="@string/fxaccount_status_needs_verification" />
    38         <Preference
    39             android:editable="false"
    40             android:icon="@drawable/fxaccount_sync_error"
    41             android:key="needs_master_sync_automatically_enabled"
    42             android:layout="@layout/fxaccount_status_error_preference"
    43             android:persistent="false"
    44             android:title="@string/fxaccount_status_needs_master_sync_automatically_enabled" />
    45         <Preference
    46             android:editable="false"
    47             android:icon="@drawable/fxaccount_sync_error"
    48             android:key="needs_account_enabled"
    49             android:layout="@layout/fxaccount_status_error_preference"
    50             android:persistent="false"
    51             android:title="@string/fxaccount_status_needs_account_enabled" />
    53         <CheckBoxPreference
    54             android:key="bookmarks"
    55             android:persistent="false"
    56             android:title="@string/fxaccount_status_bookmarks" />
    57         <CheckBoxPreference
    58             android:key="history"
    59             android:persistent="false"
    60             android:title="@string/fxaccount_status_history" />
    61         <CheckBoxPreference
    62             android:key="tabs"
    63             android:persistent="false"
    64             android:title="@string/fxaccount_status_tabs" />
    65         <CheckBoxPreference
    66             android:key="passwords"
    67             android:persistent="false"
    68             android:title="@string/fxaccount_status_passwords" />
    69     </PreferenceCategory>
    70     <PreferenceCategory
    71         android:key="legal_category"
    72         android:title="@string/fxaccount_status_legal" >
    73         <Preference android:title="@string/fxaccount_status_linktos" >
    74             <intent
    75                 android:action="android.intent.action.VIEW"
    76                 android:data="@string/fxaccount_link_tos"
    77                 android:targetClass="@string/browser_intent_class"
    78                 android:targetPackage="@string/browser_intent_package" />
    79         </Preference>
    80         <Preference android:title="@string/fxaccount_status_linkprivacy" >
    81             <intent
    82                 android:action="android.intent.action.VIEW"
    83                 android:data="@string/fxaccount_link_pn"
    84                 android:targetClass="@string/browser_intent_class"
    85                 android:targetPackage="@string/browser_intent_package" />
    86         </Preference>
    87     </PreferenceCategory>
    88     <PreferenceCategory
    89         android:key="debug_category" >
    90         <Preference android:key="debug_refresh" />
    91         <Preference android:key="debug_dump" />
    92         <Preference android:key="debug_force_sync" />
    93         <Preference android:key="debug_forget_certificate" />
    94         <Preference android:key="debug_require_password" />
    95         <Preference android:key="debug_require_upgrade" />
    96     </PreferenceCategory>
    98 </PreferenceScreen>

mercurial