From f17e5c04f30ee49b3a514b31bdad805323ce93e6 Mon Sep 17 00:00:00 2001 From: Shachar Liberman Date: Mon, 7 Aug 2006 21:24:22 +0000 Subject: 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 --- apps/eq_menu.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps/eq_menu.c') 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) max = EQ_GAIN_MAX; voice_unit = UNIT_DB; - snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE), - str(LANG_EQUALIZER_BAND_GAIN)); + snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), + str(LANG_SYSFONT_EQUALIZER_BAND_GAIN)); screens[SCREEN_MAIN].putsxy(2, y, buf); } else if (mode == CUTOFF) { @@ -658,8 +658,8 @@ bool eq_menu_graphical(void) max = EQ_CUTOFF_MAX; voice_unit = UNIT_HERTZ; - snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE), - str(LANG_EQUALIZER_BAND_CUTOFF)); + snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), + str(LANG_SYSFONT_EQUALIZER_BAND_CUTOFF)); screens[SCREEN_MAIN].putsxy(2, y, buf); } else { @@ -673,7 +673,7 @@ bool eq_menu_graphical(void) max = EQ_Q_MAX; voice_unit = UNIT_INT; - snprintf(buf, sizeof(buf), str(LANG_EQUALIZER_EDIT_MODE), + snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), str(LANG_EQUALIZER_BAND_Q)); screens[SCREEN_MAIN].putsxy(2, y, buf); -- cgit v1.2.3