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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/base/resources/xml/fxaccount_status_prefscreen.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,98 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
     1.6 +    android:key="status_screen" >
     1.7 +
     1.8 +    <PreferenceCategory
     1.9 +        android:key="signed_in_as_category"
    1.10 +        android:title="@string/fxaccount_status_signed_in_as" >
    1.11 +        <Preference
    1.12 +            android:editable="false"
    1.13 +            android:key="email"
    1.14 +            android:persistent="false"
    1.15 +            android:title="@string/fxaccount_email_hint" />
    1.16 +    </PreferenceCategory>
    1.17 +    <PreferenceCategory
    1.18 +        android:key="sync_category"
    1.19 +        android:title="@string/fxaccount_status_sync" >
    1.20 +        <Preference
    1.21 +            android:editable="false"
    1.22 +            android:icon="@drawable/fxaccount_sync_error"
    1.23 +            android:key="needs_credentials"
    1.24 +            android:layout="@layout/fxaccount_status_error_preference"
    1.25 +            android:persistent="false"
    1.26 +            android:title="@string/fxaccount_status_needs_credentials" />
    1.27 +        <Preference
    1.28 +            android:editable="false"
    1.29 +            android:icon="@drawable/fxaccount_sync_error"
    1.30 +            android:key="needs_upgrade"
    1.31 +            android:layout="@layout/fxaccount_status_error_preference"
    1.32 +            android:persistent="false"
    1.33 +            android:title="@string/fxaccount_status_needs_upgrade" />
    1.34 +        <Preference
    1.35 +            android:editable="false"
    1.36 +            android:icon="@drawable/fxaccount_sync_error"
    1.37 +            android:key="needs_verification"
    1.38 +            android:layout="@layout/fxaccount_status_error_preference"
    1.39 +            android:persistent="false"
    1.40 +            android:title="@string/fxaccount_status_needs_verification" />
    1.41 +        <Preference
    1.42 +            android:editable="false"
    1.43 +            android:icon="@drawable/fxaccount_sync_error"
    1.44 +            android:key="needs_master_sync_automatically_enabled"
    1.45 +            android:layout="@layout/fxaccount_status_error_preference"
    1.46 +            android:persistent="false"
    1.47 +            android:title="@string/fxaccount_status_needs_master_sync_automatically_enabled" />
    1.48 +        <Preference
    1.49 +            android:editable="false"
    1.50 +            android:icon="@drawable/fxaccount_sync_error"
    1.51 +            android:key="needs_account_enabled"
    1.52 +            android:layout="@layout/fxaccount_status_error_preference"
    1.53 +            android:persistent="false"
    1.54 +            android:title="@string/fxaccount_status_needs_account_enabled" />
    1.55 +
    1.56 +        <CheckBoxPreference
    1.57 +            android:key="bookmarks"
    1.58 +            android:persistent="false"
    1.59 +            android:title="@string/fxaccount_status_bookmarks" />
    1.60 +        <CheckBoxPreference
    1.61 +            android:key="history"
    1.62 +            android:persistent="false"
    1.63 +            android:title="@string/fxaccount_status_history" />
    1.64 +        <CheckBoxPreference
    1.65 +            android:key="tabs"
    1.66 +            android:persistent="false"
    1.67 +            android:title="@string/fxaccount_status_tabs" />
    1.68 +        <CheckBoxPreference
    1.69 +            android:key="passwords"
    1.70 +            android:persistent="false"
    1.71 +            android:title="@string/fxaccount_status_passwords" />
    1.72 +    </PreferenceCategory>
    1.73 +    <PreferenceCategory
    1.74 +        android:key="legal_category"
    1.75 +        android:title="@string/fxaccount_status_legal" >
    1.76 +        <Preference android:title="@string/fxaccount_status_linktos" >
    1.77 +            <intent
    1.78 +                android:action="android.intent.action.VIEW"
    1.79 +                android:data="@string/fxaccount_link_tos"
    1.80 +                android:targetClass="@string/browser_intent_class"
    1.81 +                android:targetPackage="@string/browser_intent_package" />
    1.82 +        </Preference>
    1.83 +        <Preference android:title="@string/fxaccount_status_linkprivacy" >
    1.84 +            <intent
    1.85 +                android:action="android.intent.action.VIEW"
    1.86 +                android:data="@string/fxaccount_link_pn"
    1.87 +                android:targetClass="@string/browser_intent_class"
    1.88 +                android:targetPackage="@string/browser_intent_package" />
    1.89 +        </Preference>
    1.90 +    </PreferenceCategory>
    1.91 +    <PreferenceCategory
    1.92 +        android:key="debug_category" >
    1.93 +        <Preference android:key="debug_refresh" />
    1.94 +        <Preference android:key="debug_dump" />
    1.95 +        <Preference android:key="debug_force_sync" />
    1.96 +        <Preference android:key="debug_forget_certificate" />
    1.97 +        <Preference android:key="debug_require_password" />
    1.98 +        <Preference android:key="debug_require_upgrade" />
    1.99 +    </PreferenceCategory>
   1.100 +
   1.101 +</PreferenceScreen>

mercurial