diff options
| author | Shachar Liberman <lshachar@hotmail.com> | 2006-08-07 21:24:22 +0000 |
|---|---|---|
| committer | Shachar Liberman <lshachar@hotmail.com> | 2006-08-07 21:24:22 +0000 |
| commit | f17e5c04f30ee49b3a514b31bdad805323ce93e6 (patch) | |
| tree | 3e6335fae00c1d8023c1d7c895f1f677f0b075da /apps/eq_menu.c | |
| parent | 5eb1e1549c24aa3ed590c5edb784796b0ecbf010 (diff) | |
| download | rockbox-f17e5c04f30ee49b3a514b31bdad805323ce93e6.zip rockbox-f17e5c04f30ee49b3a514b31bdad805323ce93e6.tar.gz rockbox-f17e5c04f30ee49b3a514b31bdad805323ce93e6.tar.bz2 rockbox-f17e5c04f30ee49b3a514b31bdad805323ce93e6.tar.xz | |
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.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/eq_menu.c b/apps/eq_menu.c index f3031bf..1712469 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); |