Files
arcanechat-android/res/xml/preferences_advanced.xml
T
2019-10-29 21:12:47 +01:00

71 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/autocrypt">
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="true"
android:key="pref_prefer_e2ee"
android:title="@string/autocrypt_prefer_e2ee"/>
<Preference android:key="pref_send_autocrypt_setup_message"
android:title="@string/autocrypt_send_asm_title"
android:summary="@string/autocrypt_explain"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_imap_folder_handling">
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="true"
android:key="pref_inbox_watch"
android:title="@string/pref_watch_inbox_folder"/>
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="true"
android:key="pref_sentbox_watch"
android:title="@string/pref_watch_sent_folder"/>
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="true"
android:key="pref_mvbox_watch"
android:title="@string/pref_watch_mvbox_folder"/>
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="true"
android:key="pref_bcc_self"
android:title="@string/pref_send_copy_to_self"/>
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="true"
android:key="pref_mvbox_move"
android:title="@string/pref_auto_folder_moves"
android:summary="@string/pref_auto_folder_moves_explain"/>
</PreferenceCategory>
<PreferenceCategory android:title="Experimental features">
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
android:defaultValue="false"
android:key="pref_location_streaming_enabled"
android:title="On-demand location streaming"/>
<Preference android:key="pref_empty_server_folders"
android:title="@string/pref_empty_server_title" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_other">
<Preference android:key="pref_manage_keys"
android:title="@string/pref_manage_keys"/>
<Preference android:key="pref_view_log"
android:title="@string/pref_view_log"/>
</PreferenceCategory>
</PreferenceScreen>