Extracted string resources

This commit is contained in:
ByteHamster 2018-04-10 22:14:25 +02:00
parent cf3def7cd5
commit 47909464af
4 changed files with 6 additions and 2 deletions

View File

@ -143,6 +143,8 @@ public class PreferenceActivity extends AppCompatActivity {
return R.string.user_interface_label;
case R.xml.preferences_services:
return R.string.services_label;
case R.xml.preferences_various:
return R.string.various_pref;
default:
return R.string.settings_label;
}

View File

@ -29,7 +29,7 @@
<Preference
android:key="prefScreenVarious"
android:title="Various"
android:title="@string/various_pref"
android:icon="@drawable/ic_cast_disconnect_grey600_36dp" />
<PreferenceCategory android:title="@string/project_pref">

View File

@ -14,7 +14,7 @@
android:summary="@string/pref_image_cache_size_sum"
android:defaultValue="100"/>
<PreferenceCategory android:title="Import/Export">
<PreferenceCategory android:title="@string/import_export_pref">
<Preference
android:key="prefOpmlExport"
android:title="@string/opml_export_label"/>

View File

@ -307,6 +307,8 @@
<string name="queue_label">Queue</string>
<string name="services_label">Services</string>
<string name="flattr_label">Flattr</string>
<string name="various_pref">Various</string>
<string name="import_export_pref">Import/Export</string>
<string name="pref_episode_cleanup_title">Episode Cleanup</string>
<string name="pref_episode_cleanup_summary">Episodes that aren\'t in the queue and aren\'t favorites should be eligible for removal if Auto Download needs space for new episodes</string>
<string name="pref_pauseOnDisconnect_sum">Pause playback when headphones or bluetooth are disconnected</string>