diff options
author | ByteHamster <info@bytehamster.com> | 2020-01-27 10:28:41 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-01-29 11:08:06 +0100 |
commit | 8ecbe95e1654ba3e31408c39e57f80dcf6ead3cb (patch) | |
tree | 4ad61db5989cfa75dadfb731e426866b68a76612 /app/src/main/res/xml | |
parent | 0c7dd3cc24e6ab8c2b529a00edb6a2057c048218 (diff) | |
download | AntennaPod-8ecbe95e1654ba3e31408c39e57f80dcf6ead3cb.zip |
Moved database import/export to settings
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/preferences_import_export.xml | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/app/src/main/res/xml/preferences_import_export.xml b/app/src/main/res/xml/preferences_import_export.xml index 6489ca493..7c576d194 100644 --- a/app/src/main/res/xml/preferences_import_export.xml +++ b/app/src/main/res/xml/preferences_import_export.xml @@ -14,18 +14,23 @@ android:summary="@string/opml_import_summary"/> </PreferenceCategory> + <PreferenceCategory android:title="@string/database"> + <Preference + android:key="prefDatabaseExport" + search:keywords="@string/import_export_search_keywords" + android:title="@string/database_export_label" + android:summary="@string/database_export_summary"/> + <Preference + android:key="prefDatabaseImport" + search:keywords="@string/import_export_search_keywords" + android:title="@string/database_import_label" + android:summary="@string/database_import_summary"/> + </PreferenceCategory> + <PreferenceCategory android:title="@string/html"> <Preference android:key="prefHtmlExport" android:title="@string/html_export_label" android:summary="@string/html_export_summary"/> </PreferenceCategory> - - <PreferenceCategory android:title="@string/database"> - <Preference - android:key="importExport" - search:keywords="@string/import_export_search_keywords" - android:title="@string/import_export" - android:summary="@string/database_export_summary"/> - </PreferenceCategory> </PreferenceScreen> |