summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarianne Arnold <pixelma@rockbox.org>2010-05-26 05:43:59 +0000
committerMarianne Arnold <pixelma@rockbox.org>2010-05-26 05:43:59 +0000
commitc5fbaf4587abdeea6a3cddd8b5379b35eac14e61 (patch)
tree262745429f62eff2559721c6e5797a9a208581ac /apps
parent72ccb14ab1a2b38b89120330378ecec64fc8df7b (diff)
downloadrockbox-c5fbaf4587abdeea6a3cddd8b5379b35eac14e61.tar.gz
rockbox-c5fbaf4587abdeea6a3cddd8b5379b35eac14e61.zip
Give the radio screen setting(s) in the themes menu its own language strings so they don't simply reuse 'FM Radio' as in the main menu. Rename 'Remote FM Radio' which went along with it accordingly. Distinct strings to avoid cunfusion but the change needs translators' attention.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26301 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/lang/english.lang27
-rw-r--r--apps/menus/theme_menu.c4
2 files changed, 24 insertions, 7 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang
index 1cf77f788e..c87d399507 100644
--- a/apps/lang/english.lang
+++ b/apps/lang/english.lang
@@ -13528,20 +13528,20 @@
13528 </voice> 13528 </voice>
13529</phrase> 13529</phrase>
13530<phrase> 13530<phrase>
13531 id: LANG_REMOTE_FMRADIO 13531 id: LANG_REMOTE_RADIOSCREEN
13532 desc: in the main menu 13532 desc: in the theme menu
13533 user: core 13533 user: core
13534 <source> 13534 <source>
13535 *:none 13535 *:none
13536 radio_remote: "Remote FM Radio" 13536 radio_remote: "Remote Radio Screen"
13537 </source> 13537 </source>
13538 <dest> 13538 <dest>
13539 *:none 13539 *:none
13540 radio_remote: "Remote FM Radio" 13540 radio_remote: "Remote Radio Screen"
13541 </dest> 13541 </dest>
13542 <voice> 13542 <voice>
13543 *:none 13543 *:none
13544 radio_remote: "Remote FM Radio" 13544 radio_remote: "Remote Radio Screen"
13545 </voice> 13545 </voice>
13546</phrase> 13546</phrase>
13547<phrase> 13547<phrase>
@@ -13745,3 +13745,20 @@
13745 *: "Untagged" 13745 *: "Untagged"
13746 </voice> 13746 </voice>
13747</phrase> 13747</phrase>
13748<phrase>
13749 id: LANG_RADIOSCREEN
13750 desc: in the theme menu
13751 user: core
13752 <source>
13753 *:none
13754 radio: "Radio Screen"
13755 </source>
13756 <dest>
13757 *:none
13758 radio: "Radio Screen"
13759 </dest>
13760 <voice>
13761 *:none
13762 radio: "Radio Screen"
13763 </voice>
13764</phrase>
diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c
index aacce89e74..f2a1cd2f17 100644
--- a/apps/menus/theme_menu.c
+++ b/apps/menus/theme_menu.c
@@ -255,7 +255,7 @@ MENUITEM_FUNCTION(browse_sbs, MENU_FUNC_USEPARAM,
255 browse_folder, (void*)&sbs, NULL, Icon_Wps); 255 browse_folder, (void*)&sbs, NULL, Icon_Wps);
256#if CONFIG_TUNER 256#if CONFIG_TUNER
257MENUITEM_FUNCTION(browse_fms, MENU_FUNC_USEPARAM, 257MENUITEM_FUNCTION(browse_fms, MENU_FUNC_USEPARAM,
258 ID2P(LANG_FM_RADIO), 258 ID2P(LANG_RADIOSCREEN),
259 browse_folder, (void*)&fms, NULL, Icon_Wps); 259 browse_folder, (void*)&fms, NULL, Icon_Wps);
260#endif 260#endif
261#endif 261#endif
@@ -271,7 +271,7 @@ MENUITEM_FUNCTION(browse_rsbs, MENU_FUNC_USEPARAM,
271 browse_folder, (void*)&rsbs, NULL, Icon_Wps); 271 browse_folder, (void*)&rsbs, NULL, Icon_Wps);
272#if CONFIG_TUNER 272#if CONFIG_TUNER
273MENUITEM_FUNCTION(browse_rfms, MENU_FUNC_USEPARAM, 273MENUITEM_FUNCTION(browse_rfms, MENU_FUNC_USEPARAM,
274 ID2P(LANG_REMOTE_FMRADIO), 274 ID2P(LANG_REMOTE_RADIOSCREEN),
275 browse_folder, (void*)&rfms, NULL, Icon_Wps); 275 browse_folder, (void*)&rfms, NULL, Icon_Wps);
276#endif 276#endif
277#endif 277#endif