diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-09-22 21:07:28 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-09-22 21:07:28 -0700 |
commit | 0e54ba2dc6f3c548e954669df94f57d46a34a84c (patch) | |
tree | 4598dfaa4d235d81856a5d8926b4cc5a7fc5d696 /res | |
parent | 091bba2a329f236251d69697f892b923796a5e5c (diff) | |
download | dsub-0e54ba2dc6f3c548e954669df94f57d46a34a84c.tar.gz dsub-0e54ba2dc6f3c548e954669df94f57d46a34a84c.tar.bz2 dsub-0e54ba2dc6f3c548e954669df94f57d46a34a84c.zip |
Make replay gain optional
Diffstat (limited to 'res')
-rw-r--r-- | res/values/strings.xml | 2 | ||||
-rw-r--r-- | res/xml/settings.xml | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index 009e369b..64237ac0 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -429,6 +429,8 @@ <string name="settings.large_album_art_summary">Display albums with large album art instead of in a list</string>
<string name="settings.admin_enabled">Admin Enabled</string>
<string name="settings.admin_enabled_summary">Whether or not to display the admin listing in the pull out drawer</string>
+ <string name="settings.replay_gain">Replay Gain</string>
+ <string name="settings.replay_gain_summary">Whether or not to scale playback volume by track and album replay gain tags</string>
<string name="shuffle.title">Shuffle By</string>
<string name="shuffle.startYear">Start Year:</string>
diff --git a/res/xml/settings.xml b/res/xml/settings.xml index bafb5f6c..bc2fd9e3 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -370,6 +370,12 @@ android:defaultValue="true"/> <CheckBoxPreference + android:title="@string/settings.replay_gain" + android:summary="@string/settings.replay_gain_summary" + android:key="replayGain" + android:defaultValue="false"/> + + <CheckBoxPreference android:title="@string/settings.gapless_playback" android:summary="@string/settings.gapless_playback_summary" android:key="gaplessPlayback" |