mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
83 lines
3.3 KiB
XML
83 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<PreferenceCategory android:title="@string/autocrypt">
|
|
|
|
<Preference android:key="pref_send_autocrypt_setup_message"
|
|
android:title="@string/autocrypt_send_asm_title"/>
|
|
|
|
<org.thoughtcrime.securesms.components.SwitchPreferenceCompat
|
|
android:defaultValue="true"
|
|
android:key="pref_prefer_e2ee"
|
|
android:title="@string/autocrypt_prefer_e2ee"/>
|
|
|
|
</PreferenceCategory>
|
|
<PreferenceCategory android:layout="@layout/preference_divider_explain_autocrypt"/>
|
|
|
|
<PreferenceCategory android:title="@string/pref_email_interaction_title">
|
|
|
|
<org.thoughtcrime.securesms.preferences.widgets.ListPreferenceWithSummary
|
|
android:key="pref_show_emails"
|
|
android:title="@string/pref_show_emails"
|
|
android:dependency="pref_show_emails"
|
|
android:entries="@array/pref_show_emails_entries"
|
|
android:entryValues="@array/pref_show_emails_values" />
|
|
|
|
</PreferenceCategory>
|
|
<PreferenceCategory android:layout="@layout/preference_divider" />
|
|
|
|
<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_mvbox_move"
|
|
android:title="@string/pref_auto_folder_moves"
|
|
android:summary="@string/pref_auto_folder_moves_explain"/>
|
|
|
|
</PreferenceCategory>
|
|
<PreferenceCategory android:layout="@layout/preference_divider" />
|
|
|
|
|
|
<PreferenceCategory android:title="Experimental features">
|
|
|
|
<org.thoughtcrime.securesms.preferences.widgets.ListPreferenceWithSummary
|
|
android:key="pref_compression"
|
|
android:title="Outgoing image quality"
|
|
android:dependency="pref_compression"
|
|
android:entries="@array/pref_compression_entries"
|
|
android:entryValues="@array/pref_compression_values"
|
|
android:defaultValue="0" />
|
|
|
|
</PreferenceCategory>
|
|
<PreferenceCategory android:layout="@layout/preference_divider" />
|
|
|
|
|
|
<PreferenceCategory android:title="@string/pref_other">
|
|
<Preference android:key="pref_backup"
|
|
android:title="@string/pref_backup"
|
|
android:summary="@string/pref_backup_explain"/>
|
|
|
|
<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>
|