2016-09-30 01:08:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:title="@string/settings">
|
|
|
|
|
2018-02-13 20:24:00 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="Appearance">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_night_mode"
|
|
|
|
android:title="@string/pref_night_mode"
|
|
|
|
android:summary="@string/pref_night_mode_description"/>
|
2016-11-01 23:43:46 +01:00
|
|
|
|
2018-02-13 20:24:00 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_issuer"
|
|
|
|
android:title="@string/pref_issuers"
|
|
|
|
android:summary="@string/pref_issuers_description"/>
|
|
|
|
</PreferenceCategory>
|
2017-12-10 19:19:48 +01:00
|
|
|
|
2018-02-13 20:24:00 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="Security">
|
|
|
|
<Preference
|
|
|
|
android:key="pref_slots"
|
|
|
|
android:title="Key slots"
|
|
|
|
android:summary="Manage the list of keys that can decrypt the database"/>
|
|
|
|
</PreferenceCategory>
|
2018-02-09 17:31:07 +01:00
|
|
|
|
2018-02-13 20:24:00 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="Tools">
|
|
|
|
<Preference
|
|
|
|
android:key="pref_import"
|
|
|
|
android:title="Import"
|
|
|
|
android:summary="Import a database"/>
|
|
|
|
<Preference
|
|
|
|
android:key="pref_export"
|
|
|
|
android:title="Export"
|
|
|
|
android:summary="Export the database"/>
|
|
|
|
</PreferenceCategory>
|
2017-12-10 19:19:48 +01:00
|
|
|
|
|
|
|
</PreferenceScreen>
|