summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/lang/english.lang17
-rw-r--r--apps/settings_list.c3
2 files changed, 20 insertions, 0 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index f268434f60..667d1239ca 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -12171,6 +12171,23 @@
12171 </voice> 12171 </voice>
12172</phrase> 12172</phrase>
12173<phrase> 12173<phrase>
12174 id: LANG_FILTER_SUPER_SLOW
12175 desc: in sound settings
12176 user: core
12177 <source>
12178 *: none
12179 filter_roll_off: "Super Slow"
12180 </source>
12181 <dest>
12182 *: none
12183 filter_roll_off: "Super Slow"
12184 </dest>
12185 <voice>
12186 *: none
12187 filter_roll_off: "Super Slow"
12188 </voice>
12189</phrase>
12190<phrase>
12174 id: LANG_FILTER_SHORT 12191 id: LANG_FILTER_SHORT
12175 desc: in sound settings 12192 desc: in sound settings
12176 user: core 12193 user: core
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 1cdbc4115d..5464416b21 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -858,6 +858,9 @@ const struct settings_list settings[] = {
858#elif defined(AUDIOHW_HAVE_SHORT2_ROLL_OFF) 858#elif defined(AUDIOHW_HAVE_SHORT2_ROLL_OFF)
859 "roll_off", "sharp,slow,short sharp,short slow", sound_set_filter_roll_off, 859 "roll_off", "sharp,slow,short sharp,short slow", sound_set_filter_roll_off,
860 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW)), 860 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW)),
861#elif defined(AUDIOHW_HAVE_SS_ROLL_OFF)
862 "roll_off", "sharp,slow,short sharp,short slow,super slow", sound_set_filter_roll_off,
863 5, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW), ID2P(LANG_FILTER_SUPER_SLOW)),
861#elif defined(AUDIOHW_HAVE_SHORT_ROLL_OFF) 864#elif defined(AUDIOHW_HAVE_SHORT_ROLL_OFF)
862 "roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off, 865 "roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off,
863 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)), 866 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)),