English language tweaks.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8054 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-11-23 21:06:57 +00:00
parent a6d409d9db
commit 0966809da0
2 changed files with 15 additions and 12 deletions

View file

@ -1716,7 +1716,7 @@ new:
id: LANG_FM_NO_PRESETS id: LANG_FM_NO_PRESETS
desc: error when preset list is empty desc: error when preset list is empty
eng: "No presets" eng: "No presets"
voice: "No presets" voice: ""
new: new:
id: LANG_FM_NO_FREE_PRESETS id: LANG_FM_NO_FREE_PRESETS
@ -3366,9 +3366,9 @@ voice: "ADC Gain Left"
new: new:
id: LANG_RECORDING_MONITOR id: LANG_RECORDING_MONITOR
desc: in the recording settings desc: DEPRECATED
eng: "Monitor Mode" eng: ""
voice: "Monitor Mode" voice: ""
new: new:
id: LANG_RADIO_SCAN_MODE id: LANG_RADIO_SCAN_MODE
@ -3390,15 +3390,15 @@ voice: ""
new: new:
id: LANG_CROSSFEED_ENABLE id: LANG_CROSSFEED_ENABLE
desc: In the crossfeed menu desc: DEPRECATED
eng: "Enable crossfeed" eng: ""
voice: voice:
new: new:
id: LANG_CROSSFEED id: LANG_CROSSFEED
desc: in the sound settings menu desc: in the sound settings menu
eng: "Crossfeed" eng: "Crossfeed"
voice: voice: "Crossfeed"
new: new:
id: LANG_FM_SCAN_PRESETS id: LANG_FM_SCAN_PRESETS
@ -3409,13 +3409,13 @@ new:
id: LANG_FM_SCANNING id: LANG_FM_SCANNING
desc: during auto scan desc: during auto scan
eng: "Scanning %d.%dMHz" eng: "Scanning %d.%01dMHz"
voice: "" voice: ""
new: new:
id: LANG_FM_DEFAULT_PRESET_NAME id: LANG_FM_DEFAULT_PRESET_NAME
desc: default preset name for auto scan mode desc: default preset name for auto scan mode
eng: "%d.%dMHz" eng: "%d.%01dMHz"
voice: voice:
new: new:
@ -3428,7 +3428,7 @@ new:
id: LANG_FM_CLEAR_PRESETS id: LANG_FM_CLEAR_PRESETS
desc: confirmation if presets can be cleared desc: confirmation if presets can be cleared
eng: "Clear current presets?" eng: "Clear current presets?"
voice: "Clear current presets?" voice: ""
new: new:
id: LANG_WAIT id: LANG_WAIT

View file

@ -1223,8 +1223,11 @@ static bool replaygain_settings_menu(void)
static bool crossfeed(void) static bool crossfeed(void)
{ {
bool result = set_bool(str(LANG_CROSSFEED_ENABLE), bool result = set_bool_options(str(LANG_CROSSFEED),
&global_settings.crossfeed); &global_settings.crossfeed,
STR(LANG_ON),
STR(LANG_OFF),
NULL);
dsp_set_crossfeed(global_settings.crossfeed); dsp_set_crossfeed(global_settings.crossfeed);
return result; return result;