Extracted string resources
This commit is contained in:
parent
cf3def7cd5
commit
47909464af
|
@ -143,6 +143,8 @@ public class PreferenceActivity extends AppCompatActivity {
|
||||||
return R.string.user_interface_label;
|
return R.string.user_interface_label;
|
||||||
case R.xml.preferences_services:
|
case R.xml.preferences_services:
|
||||||
return R.string.services_label;
|
return R.string.services_label;
|
||||||
|
case R.xml.preferences_various:
|
||||||
|
return R.string.various_pref;
|
||||||
default:
|
default:
|
||||||
return R.string.settings_label;
|
return R.string.settings_label;
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
<Preference
|
<Preference
|
||||||
android:key="prefScreenVarious"
|
android:key="prefScreenVarious"
|
||||||
android:title="Various"
|
android:title="@string/various_pref"
|
||||||
android:icon="@drawable/ic_cast_disconnect_grey600_36dp" />
|
android:icon="@drawable/ic_cast_disconnect_grey600_36dp" />
|
||||||
|
|
||||||
<PreferenceCategory android:title="@string/project_pref">
|
<PreferenceCategory android:title="@string/project_pref">
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
android:summary="@string/pref_image_cache_size_sum"
|
android:summary="@string/pref_image_cache_size_sum"
|
||||||
android:defaultValue="100"/>
|
android:defaultValue="100"/>
|
||||||
|
|
||||||
<PreferenceCategory android:title="Import/Export">
|
<PreferenceCategory android:title="@string/import_export_pref">
|
||||||
<Preference
|
<Preference
|
||||||
android:key="prefOpmlExport"
|
android:key="prefOpmlExport"
|
||||||
android:title="@string/opml_export_label"/>
|
android:title="@string/opml_export_label"/>
|
||||||
|
|
|
@ -307,6 +307,8 @@
|
||||||
<string name="queue_label">Queue</string>
|
<string name="queue_label">Queue</string>
|
||||||
<string name="services_label">Services</string>
|
<string name="services_label">Services</string>
|
||||||
<string name="flattr_label">Flattr</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_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_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>
|
<string name="pref_pauseOnDisconnect_sum">Pause playback when headphones or bluetooth are disconnected</string>
|
||||||
|
|
Loading…
Reference in New Issue