diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2009-09-24 22:05:07 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-09-24 22:05:07 +0000 |
| commit | a738e5f3a0e6534545a57064699dfea1d348cb39 (patch) | |
| tree | 6e0e0f729bef0eb416d88cc094296edf1155c754 /apps | |
| parent | 55cd14f87572150e6fb4e9e9135e344883f667e2 (diff) | |
| download | rockbox-a738e5f3a0e6534545a57064699dfea1d348cb39.zip rockbox-a738e5f3a0e6534545a57064699dfea1d348cb39.tar.gz rockbox-a738e5f3a0e6534545a57064699dfea1d348cb39.tar.bz2 rockbox-a738e5f3a0e6534545a57064699dfea1d348cb39.tar.xz | |
FS#9824: Fix FM channel spacing for Europe
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22822 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/lang/english.lang | 34 | ||||
| -rw-r--r-- | apps/settings_list.c | 5 |
2 files changed, 37 insertions, 2 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang index c7dad66..08412d3 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -12735,3 +12735,37 @@ quickscreen: "Set as Top Quickscreen Item" </voice> </phrase> +<phrase> + id: LANG_FM_ITALY + desc: fm region Italy + user: core + <source> + *: none + radio: "Italy" + </source> + <dest> + *: none + radio: "Italy" + </dest> + <voice> + *: none + radio: "Italy" + </voice> +</phrase> +<phrase> + id: LANG_FM_OTHER + desc: Catch-all FM region. Select if none of the others work + user: core + <source> + *: none + radio: "Other" + </source> + <dest> + *: none + radio: "Other" + </dest> + <voice> + *: none + radio: "Other" + </voice> +</phrase> diff --git a/apps/settings_list.c b/apps/settings_list.c index 5da15a1..2a7bf96 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -1376,9 +1376,10 @@ const struct settings_list settings[] = { #endif #if CONFIG_TUNER CHOICE_SETTING(0, fm_region, LANG_FM_REGION, 0, - "fm_region", "eu,us,jp,kr", set_radio_region, 4, + "fm_region", "eu,us,jp,kr,it,wo", set_radio_region, 6, ID2P(LANG_FM_EUROPE), ID2P(LANG_FM_US), - ID2P(LANG_FM_JAPAN), ID2P(LANG_FM_KOREA)), + ID2P(LANG_FM_JAPAN), ID2P(LANG_FM_KOREA), + ID2P(LANG_FM_ITALY), ID2P(LANG_FM_OTHER)), #endif OFFON_SETTING(F_BANFROMQS, audioscrobbler, LANG_AUDIOSCROBBLER, false, |