1
0
Fork 0
forked from len0rd/rockbox

Fix incorrect language string reference in eq_menu.c

In most of the translations strings with SYSFONT in title is
translated. This leads to displaying problem in (at least) graphical
equalizer due to the lack of non-latin character support in the
built-in font.

Change-Id: I0d27a5358e4eb539d4247c84975d8501d7668836
Reviewed-on: http://gerrit.rockbox.org/727
Reviewed-by: Thomas Martitz <kugel@rockbox.org>
This commit is contained in:
Purling Nayuki 2014-01-17 00:08:37 +08:00 committed by Thomas Martitz
parent e1da541749
commit 946c348e5c
4 changed files with 18 additions and 137 deletions

View file

@ -7746,74 +7746,6 @@
recording: "Mono" recording: "Mono"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Edit mode: %s %s"
</source>
<dest>
*: none
swcodec: "编辑模式: %s %s"
</dest>
<voice>
*: none
swcodec: ""
</voice>
</phrase>
<phrase>
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Cutoff"
</source>
<dest>
*: none
swcodec: "截止频率"
</dest>
<voice>
*: none
swcodec: "截止频率"
</voice>
</phrase>
<phrase>
id: LANG_SYSFONT_RECORDING_QUALITY
desc: in the recording settings
user: core
<source>
*: none
recording_hwcodec: "Quality"
</source>
<dest>
*: none
recording_hwcodec: "品质"
</dest>
<voice>
*: none
recording_hwcodec: "品质"
</voice>
</phrase>
<phrase>
id: LANG_SYSFONT_RECORDING_FREQUENCY
desc: in the recording settings
user: core
<source>
*: none
recording: "Frequency"
</source>
<dest>
*: none
recording: "频率"
</dest>
<voice>
*: none
recording: "频率"
</voice>
</phrase>
<phrase> <phrase>
id: LANG_SYSFONT_RECORDING_SOURCE id: LANG_SYSFONT_RECORDING_SOURCE
desc: in the recording settings desc: in the recording settings
@ -8772,23 +8704,6 @@
archosplayer: "列表结束" archosplayer: "列表结束"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_SYSFONT_GAIN
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Gain"
</source>
<dest>
*: none
swcodec: "增益"
</dest>
<voice>
*: none
swcodec: "增益"
</voice>
</phrase>
<phrase> <phrase>
id: LANG_ALARM_WAKEUP_SCREEN id: LANG_ALARM_WAKEUP_SCREEN
desc: in alarm menu setting desc: in alarm menu setting

View file

@ -8748,23 +8748,6 @@
archosplayer: "End of List" archosplayer: "End of List"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_SYSFONT_GAIN
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Gain"
</source>
<dest>
*: none
swcodec: "增加"
</dest>
<voice>
*: none
swcodec: "Gain"
</voice>
</phrase>
<phrase> <phrase>
id: LANG_ALARM_WAKEUP_SCREEN id: LANG_ALARM_WAKEUP_SCREEN
desc: in alarm menu setting desc: in alarm menu setting
@ -10622,23 +10605,6 @@
serial_port: "19200" serial_port: "19200"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_SYSFONT_EQUALIZER_EDIT_MODE
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Edit mode: %s %s"
</source>
<dest>
*: none
swcodec: "Edit mode: %s %s"
</dest>
<voice>
*: none
swcodec: ""
</voice>
</phrase>
<phrase> <phrase>
id: LANG_ENABLE_SPEAKER id: LANG_ENABLE_SPEAKER
desc: in Settings -> Sound Settings desc: in Settings -> Sound Settings
@ -10656,23 +10622,6 @@
speaker: "使用喇叭" speaker: "使用喇叭"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_SYSFONT_EQUALIZER_BAND_CUTOFF
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Cutoff"
</source>
<dest>
*: none
swcodec: "截止頻率"
</dest>
<voice>
*: none
swcodec: "截止頻率"
</voice>
</phrase>
<phrase> <phrase>
id: LANG_SORT_INTERPRET_NUMBERS id: LANG_SORT_INTERPRET_NUMBERS
desc: in Settings -> File view desc: in Settings -> File view

View file

@ -13192,3 +13192,20 @@
*: "Maximum Volume Limit" *: "Maximum Volume Limit"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_SYSFONT_EQUALIZER_BAND_Q
desc: in the equalizer settings menu
user: core
<source>
*: none
swcodec: "Q"
</source>
<dest>
*: none
swcodec: "Q"
</dest>
<voice>
*: none
swcodec: "Q"
</voice>
</phrase>

View file

@ -647,7 +647,7 @@ bool eq_menu_graphical(void)
max = EQ_Q_MAX; max = EQ_Q_MAX;
snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE), snprintf(buf, sizeof(buf), str(LANG_SYSFONT_EQUALIZER_EDIT_MODE),
str(LANG_EQUALIZER_BAND_Q), ""); str(LANG_SYSFONT_EQUALIZER_BAND_Q), "");
screens[i].putsxy(0, 0, buf); screens[i].putsxy(0, 0, buf);
} }