diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-09-22 16:43:08 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-09-22 16:44:08 -0400 |
commit | 77ff79950288d799a47c53b79f3e6da978c6c842 (patch) | |
tree | 4881af6315ecd2b5ee5833e476e62657b586c427 | |
parent | 8f8fb13edb3c1267cec91a7ac1ac37270be36ba2 (diff) | |
download | rockbox-77ff799502.tar.gz rockbox-77ff799502.zip |
lang: Delete two completely redundant strings
Change-Id: Icedae2687688b8d042c9d9ca232b566ff8f65531
-rw-r--r-- | apps/lang/english.lang | 28 | ||||
-rw-r--r-- | apps/menus/eq_menu.c | 5 |
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 @@ </voice> </phrase> <phrase> - id: LANG_SYSFONT_GAIN - desc: in the equalizer settings menu - user: core - <source> - *: "Gain" - </source> - <dest> - *: "Gain" - </dest> - <voice> - *: "Gain" - </voice> -</phrase> -<phrase> id: VOICE_OF desc: spoken only, as in 3/8 => 3 of 8 user: core @@ -12134,20 +12120,6 @@ </voice> </phrase> <phrase> - id: LANG_SYSFONT_EQUALIZER_BAND_Q - desc: in the equalizer settings menu - user: core - <source> - *: "Q" - </source> - <dest> - *: "Q" - </dest> - <voice> - *: "Q" - </voice> -</phrase> -<phrase> id: LANG_PBE desc: in sound settings 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) max = EQ_GAIN_MAX; screens[i].putsxyf(0, 0, str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), - str(LANG_SYSFONT_GAIN), "(dB)"); + str(LANG_GAIN), "(dB)"); } else if (mode == CUTOFF) { /* cutoff */ setting = &global_settings.eq_band_settings[current_band].cutoff; @@ -660,7 +660,7 @@ int eq_menu_graphical(void) max = EQ_Q_MAX; screens[i].putsxyf(0, 0, str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), - str(LANG_SYSFONT_EQUALIZER_BAND_Q), ""); + str(LANG_EQUALIZER_BAND_Q), ""); } /* Draw scrollbar if needed */ @@ -793,4 +793,3 @@ MENUITEM_FUNCTION_W_PARAM(eq_browse, 0, ID2P(LANG_EQUALIZER_BROWSE), MAKE_MENU(equalizer_menu, ID2P(LANG_EQUALIZER), NULL, Icon_EQ, &eq_enable, &eq_graphical, &eq_precut, &gain_menu, &advanced_menu, &eq_save, &eq_browse); - |