diff options
author | Tom Hennen <tom.hennen@gmail.com> | 2016-03-25 08:35:11 -0400 |
---|---|---|
committer | Tom Hennen <tom.hennen@gmail.com> | 2016-03-25 08:35:11 -0400 |
commit | 5afff3e9d16d883a74b4dba8e38a8d6bc862b16c (patch) | |
tree | ceda11f76e0f268db0df67a7028324cd594e6d98 | |
parent | ebaa19a4dd6208d152040e56dddd7416551e098b (diff) | |
download | AntennaPod-5afff3e9d16d883a74b4dba8e38a8d6bc862b16c.zip |
more categories in preferences
-rw-r--r-- | app/src/main/res/xml/preferences.xml | 12 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml index 836f85833..ad497a90d 100644 --- a/app/src/main/res/xml/preferences.xml +++ b/app/src/main/res/xml/preferences.xml @@ -254,7 +254,7 @@ android:title="@string/pref_gpodnet_sethostname_title"/> </PreferenceScreen> </PreferenceCategory> - <PreferenceCategory android:title="@string/other_pref"> + <PreferenceCategory android:title="@string/storage_pref"> <Preference android:title="@string/choose_data_directory" android:key="prefChooseDataDir"/> @@ -265,15 +265,16 @@ android:key="prefImageCacheSize" android:summary="@string/pref_image_cache_size_sum" android:defaultValue="100"/> + </PreferenceCategory> + <PreferenceCategory android:title="@string/other_pref"> <Preference android:key="prefOpmlExport" android:title="@string/opml_export_label"/> <Preference android:key="statistics" android:title="@string/statistics_label"/> - <Preference - android:key="prefAbout" - android:title="@string/about_pref"/> + </PreferenceCategory> + <PreferenceCategory android:title="@string/project_pref"> <Preference android:key="prefKnownIssues" android:title="@string/pref_known_issues"/> @@ -281,6 +282,9 @@ android:key="prefSendCrashReport" android:title="@string/crash_report_title" android:summary="@string/crash_report_sum"/> + <Preference + android:key="prefAbout" + android:title="@string/about_pref"/> </PreferenceCategory> </PreferenceScreen> diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 6e2848c20..23e04440a 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -289,6 +289,8 @@ <!-- Preferences --> + <string name="storage_pref">Storage</string> + <string name="project_pref">Project</string> <string name="other_pref">Other</string> <string name="about_pref">About</string> <string name="queue_label">Queue</string> |