summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/lang/english.lang28
-rw-r--r--apps/menus/eq_menu.c5
2 files changed, 2 insertions, 31 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index fa2b5f62ae..dd499432fb 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -8853,20 +8853,6 @@
8853 </voice> 8853 </voice>
8854</phrase> 8854</phrase>
8855<phrase> 8855<phrase>
8856 id: LANG_SYSFONT_GAIN
8857 desc: in the equalizer settings menu
8858 user: core
8859 <source>
8860 *: "Gain"
8861 </source>
8862 <dest>
8863 *: "Gain"
8864 </dest>
8865 <voice>
8866 *: "Gain"
8867 </voice>
8868</phrase>
8869<phrase>
8870 id: VOICE_OF 8856 id: VOICE_OF
8871 desc: spoken only, as in 3/8 => 3 of 8 8857 desc: spoken only, as in 3/8 => 3 of 8
8872 user: core 8858 user: core
@@ -12134,20 +12120,6 @@
12134 </voice> 12120 </voice>
12135</phrase> 12121</phrase>
12136<phrase> 12122<phrase>
12137 id: LANG_SYSFONT_EQUALIZER_BAND_Q
12138 desc: in the equalizer settings menu
12139 user: core
12140 <source>
12141 *: "Q"
12142 </source>
12143 <dest>
12144 *: "Q"
12145 </dest>
12146 <voice>
12147 *: "Q"
12148 </voice>
12149</phrase>
12150<phrase>
12151 id: LANG_PBE 12123 id: LANG_PBE
12152 desc: in sound settings 12124 desc: in sound settings
12153 user: core 12125 user: core
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c
index 59dcc59ff0..6c6d356706 100644
--- a/apps/menus/eq_menu.c
+++ b/apps/menus/eq_menu.c
@@ -638,7 +638,7 @@ int eq_menu_graphical(void)
638 max = EQ_GAIN_MAX; 638 max = EQ_GAIN_MAX;
639 639
640 screens[i].putsxyf(0, 0, str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), 640 screens[i].putsxyf(0, 0, str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
641 str(LANG_SYSFONT_GAIN), "(dB)"); 641 str(LANG_GAIN), "(dB)");
642 } else if (mode == CUTOFF) { 642 } else if (mode == CUTOFF) {
643 /* cutoff */ 643 /* cutoff */
644 setting = &global_settings.eq_band_settings[current_band].cutoff; 644 setting = &global_settings.eq_band_settings[current_band].cutoff;
@@ -660,7 +660,7 @@ int eq_menu_graphical(void)
660 max = EQ_Q_MAX; 660 max = EQ_Q_MAX;
661 661
662 screens[i].putsxyf(0, 0, str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), 662 screens[i].putsxyf(0, 0, str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
663 str(LANG_SYSFONT_EQUALIZER_BAND_Q), ""); 663 str(LANG_EQUALIZER_BAND_Q), "");
664 } 664 }
665 665
666 /* Draw scrollbar if needed */ 666 /* Draw scrollbar if needed */
@@ -793,4 +793,3 @@ MENUITEM_FUNCTION_W_PARAM(eq_browse, 0, ID2P(LANG_EQUALIZER_BROWSE),
793MAKE_MENU(equalizer_menu, ID2P(LANG_EQUALIZER), NULL, Icon_EQ, 793MAKE_MENU(equalizer_menu, ID2P(LANG_EQUALIZER), NULL, Icon_EQ,
794 &eq_enable, &eq_graphical, &eq_precut, &gain_menu, 794 &eq_enable, &eq_graphical, &eq_precut, &gain_menu,
795 &advanced_menu, &eq_save, &eq_browse); 795 &advanced_menu, &eq_save, &eq_browse);
796