Android-Password-Store/app/src/main/res/xml/preference.xml

93 lines
3.9 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_git_title">
<Preference
android:key="git_server_info"
android:title="@string/pref_edit_server_info" />
<Preference
android:key="ssh_key"
android:title="@string/pref_ssh_title" />
2015-07-15 04:42:55 +02:00
<Preference
android:key="ssh_keygen"
android:title="@string/pref_ssh_keygen_title" />
<Preference
android:key="ssh_see_key"
android:title="@string/pref_ssh_see_key_title" />
<Preference
android:key="git_delete_repo"
android:summary="Deletes local repository"
android:title="@string/pref_git_delete_repo" />
<CheckBoxPreference
android:key="git_external"
android:summary="Use an external password repository"
android:title="External repository" />
<Preference
android:dependency="git_external"
android:key="pref_select_external"
android:title="Select external repository" />
<CheckBoxPreference
android:enabled="false"
android:key="git_enabled"
android:summary="Enable Git"
android:title="Enable git" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_crypto_title">
<org.openintents.openpgp.util.OpenPgpAppPreference
android:key="openpgp_provider_list"
android:title="@string/pref_provider_title" />
<org.openintents.openpgp.util.OpenPgpKeyPreference
android:enabled="false"
android:key="openpgp_key"
android:title="Select key" />
<Preference
android:key="openpgp_key_id_pref"
android:title="@string/pref_key_title" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_general_title">
<EditTextPreference
android:defaultValue="45"
android:dialogTitle="@string/pref_password_dialog_title"
android:inputType="number"
android:key="general_show_time"
android:summary="@string/pref_password_dialog_title"
android:title="@string/pref_password_title" />
<CheckBoxPreference
android:defaultValue="true"
android:title="@string/show_password_pref_title"
android:summary="@string/show_password_pref_summary"
android:key="show_password" />
<CheckBoxPreference
android:defaultValue="true"
android:dialogTitle="@string/pref_copy_dialog_title"
android:key="copy_on_decrypt"
android:summary="@string/pref_copy_dialog_title"
android:title="@string/pref_copy_title" />
<CheckBoxPreference
android:defaultValue="true"
android:key="filter_recursively"
android:summary="@string/pref_recursive_filter_hint"
android:title="@string/pref_recursive_filter" />
</PreferenceCategory>
2015-07-31 15:00:06 +02:00
<PreferenceCategory android:title="Autofill">
<Preference
android:key="autofill_apps"
android:summary="Customize autofill settings for specific apps."
2015-08-11 19:34:14 +02:00
android:title="Per-app settings"/>
<CheckBoxPreference
android:defaultValue="true"
android:key="autofill_default"
2015-08-13 21:18:47 +02:00
android:summary="Default to 'Automatically match' for apps without custom settings. Otherwise, 'Never match.'"
android:title="Automatically match by default"/>
2015-07-31 15:00:06 +02:00
</PreferenceCategory>
<PreferenceCategory android:title="Misc">
<CheckBoxPreference
android:defaultValue="false"
android:key="clear_clipboard_20x"
android:summary="@string/pref_clear_clipboard_hint"
android:title="@string/pref_clear_clipboard" />
</PreferenceCategory>
</PreferenceScreen>