summaryrefslogtreecommitdiff
path: root/apps/eq_menu.c
diff options
context:
space:
mode:
authorShachar Liberman <lshachar@hotmail.com>2006-08-07 21:24:22 +0000
committerShachar Liberman <lshachar@hotmail.com>2006-08-07 21:24:22 +0000
commitf17e5c04f30ee49b3a514b31bdad805323ce93e6 (patch)
tree3e6335fae00c1d8023c1d7c895f1f677f0b075da /apps/eq_menu.c
parent5eb1e1549c24aa3ed590c5edb784796b0ecbf010 (diff)
downloadrockbox-f17e5c04f30ee49b3a514b31bdad805323ce93e6.tar.gz
rockbox-f17e5c04f30ee49b3a514b31bdad805323ce93e6.zip
FS#5587 Non-latin languages support update. Translators:Please change
the 48 new LANG_SYSFONT_ strings at the end of your language file if they don't fit nicely with rockbox's internal font. (for more info http://www.rockbox.org/twiki/bin/view/Main/NonLatinLanguages) Developers:Please keep using LANG_SYSFONT strings when reffering to the internal font. * Hebrew update. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10476 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/eq_menu.c')
-rw-r--r--apps/eq_menu.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/eq_menu.c b/apps/eq_menu.c
index f3031bf8ff..1712469a1d 100644
--- a/apps/eq_menu.c
+++ b/apps/eq_menu.c
@@ -643,8 +643,8 @@ bool eq_menu_graphical(void)
643 max = EQ_GAIN_MAX; 643 max = EQ_GAIN_MAX;
644 voice_unit = UNIT_DB; 644 voice_unit = UNIT_DB;
645 645
646 snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE), 646 snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
647 str(LANG_EQUALIZER_BAND_GAIN)); 647 str(LANG_SYSFONT_EQUALIZER_BAND_GAIN));
648 648
649 screens[SCREEN_MAIN].putsxy(2, y, buf); 649 screens[SCREEN_MAIN].putsxy(2, y, buf);
650 } else if (mode == CUTOFF) { 650 } else if (mode == CUTOFF) {
@@ -658,8 +658,8 @@ bool eq_menu_graphical(void)
658 max = EQ_CUTOFF_MAX; 658 max = EQ_CUTOFF_MAX;
659 voice_unit = UNIT_HERTZ; 659 voice_unit = UNIT_HERTZ;
660 660
661 snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE), 661 snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
662 str(LANG_EQUALIZER_BAND_CUTOFF)); 662 str(LANG_SYSFONT_EQUALIZER_BAND_CUTOFF));
663 663
664 screens[SCREEN_MAIN].putsxy(2, y, buf); 664 screens[SCREEN_MAIN].putsxy(2, y, buf);
665 } else { 665 } else {
@@ -673,7 +673,7 @@ bool eq_menu_graphical(void)
673 max = EQ_Q_MAX; 673 max = EQ_Q_MAX;
674 voice_unit = UNIT_INT; 674 voice_unit = UNIT_INT;
675 675
676 snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE), 676 snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
677 str(LANG_EQUALIZER_BAND_Q)); 677 str(LANG_EQUALIZER_BAND_Q));
678 678
679 screens[SCREEN_MAIN].putsxy(2, y, buf); 679 screens[SCREEN_MAIN].putsxy(2, y, buf);