mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 09:58:57 +00:00
135 lines
5.6 KiB
XML
135 lines
5.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:key="status_screen" >
|
|
|
|
<PreferenceCategory
|
|
android:key="signed_in_as_category"
|
|
android:title="@string/fxaccount_status_signed_in_as" >
|
|
<Preference
|
|
android:editable="false"
|
|
android:key="email"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_email_hint" />
|
|
<Preference
|
|
android:editable="false"
|
|
android:key="auth_server"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_auth_server" />
|
|
</PreferenceCategory>
|
|
<PreferenceCategory
|
|
android:key="sync_category"
|
|
android:title="@string/fxaccount_status_sync" >
|
|
<Preference
|
|
android:editable="false"
|
|
android:icon="@drawable/fxaccount_sync_error"
|
|
android:key="needs_credentials"
|
|
android:layout="@layout/fxaccount_status_error_preference"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_needs_credentials" />
|
|
<Preference
|
|
android:editable="false"
|
|
android:icon="@drawable/fxaccount_sync_error"
|
|
android:key="needs_upgrade"
|
|
android:layout="@layout/fxaccount_status_error_preference"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_needs_upgrade" />
|
|
<Preference
|
|
android:editable="false"
|
|
android:icon="@drawable/fxaccount_sync_error"
|
|
android:key="needs_verification"
|
|
android:layout="@layout/fxaccount_status_error_preference"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_needs_verification" />
|
|
<Preference
|
|
android:editable="false"
|
|
android:icon="@drawable/fxaccount_sync_error"
|
|
android:key="needs_master_sync_automatically_enabled"
|
|
android:layout="@layout/fxaccount_status_error_preference"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_needs_master_sync_automatically_enabled" />
|
|
<Preference
|
|
android:editable="false"
|
|
android:icon="@drawable/fxaccount_sync_error"
|
|
android:key="needs_finish_migrating"
|
|
android:layout="@layout/fxaccount_status_error_preference"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_needs_finish_migrating" />
|
|
|
|
<Preference
|
|
android:editable="false"
|
|
android:key="sync_now"
|
|
android:defaultValue=""
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_sync_now"
|
|
android:summary="" />
|
|
|
|
<CheckBoxPreference
|
|
android:key="bookmarks"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_bookmarks" />
|
|
<CheckBoxPreference
|
|
android:key="history"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_history" />
|
|
<CheckBoxPreference
|
|
android:key="tabs"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_tabs" />
|
|
<CheckBoxPreference
|
|
android:key="passwords"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_passwords" />
|
|
|
|
<EditTextPreference
|
|
android:singleLine="true"
|
|
android:key="device_name"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_device_name" />
|
|
|
|
<Preference
|
|
android:editable="false"
|
|
android:key="sync_server"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_sync_server" />
|
|
|
|
<Preference
|
|
android:editable="false"
|
|
android:key="more"
|
|
android:persistent="false"
|
|
android:title="@string/fxaccount_status_more" />
|
|
|
|
</PreferenceCategory>
|
|
<PreferenceCategory
|
|
android:key="legal_category"
|
|
android:title="@string/fxaccount_status_legal" >
|
|
<Preference android:title="@string/fxaccount_status_linktos" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="@string/fxaccount_link_tos"
|
|
android:targetClass="@string/browser_intent_class"
|
|
android:targetPackage="@string/browser_intent_package" />
|
|
</Preference>
|
|
<Preference android:title="@string/fxaccount_status_linkprivacy" >
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="@string/fxaccount_link_pn"
|
|
android:targetClass="@string/browser_intent_class"
|
|
android:targetPackage="@string/browser_intent_package" />
|
|
</Preference>
|
|
</PreferenceCategory>
|
|
<PreferenceCategory
|
|
android:key="debug_category" >
|
|
<Preference android:key="debug_refresh" />
|
|
<Preference android:key="debug_dump" />
|
|
<Preference android:key="debug_force_sync" />
|
|
<Preference android:key="debug_invalidate_certificate" />
|
|
<Preference android:key="debug_forget_certificate" />
|
|
<Preference android:key="debug_require_password" />
|
|
<Preference android:key="debug_require_upgrade" />
|
|
<Preference android:key="debug_migrated_from_sync11" />
|
|
<Preference android:key="debug_make_account_stage" />
|
|
<Preference android:key="debug_make_account_default" />
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|