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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

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

mercurial