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
This commit is contained in:
Marianne Arnold 2010-05-26 05:43:59 +00:00
parent 72ccb14ab1
commit c5fbaf4587
2 changed files with 24 additions and 7 deletions

View file

@ -13528,20 +13528,20 @@
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
id: LANG_REMOTE_FMRADIO id: LANG_REMOTE_RADIOSCREEN
desc: in the main menu desc: in the theme menu
user: core user: core
<source> <source>
*:none *:none
radio_remote: "Remote FM Radio" radio_remote: "Remote Radio Screen"
</source> </source>
<dest> <dest>
*:none *:none
radio_remote: "Remote FM Radio" radio_remote: "Remote Radio Screen"
</dest> </dest>
<voice> <voice>
*:none *:none
radio_remote: "Remote FM Radio" radio_remote: "Remote Radio Screen"
</voice> </voice>
</phrase> </phrase>
<phrase> <phrase>
@ -13745,3 +13745,20 @@
*: "Untagged" *: "Untagged"
</voice> </voice>
</phrase> </phrase>
<phrase>
id: LANG_RADIOSCREEN
desc: in the theme menu
user: core
<source>
*:none
radio: "Radio Screen"
</source>
<dest>
*:none
radio: "Radio Screen"
</dest>
<voice>
*:none
radio: "Radio Screen"
</voice>
</phrase>

View file

@ -255,7 +255,7 @@ MENUITEM_FUNCTION(browse_sbs, MENU_FUNC_USEPARAM,
browse_folder, (void*)&sbs, NULL, Icon_Wps); browse_folder, (void*)&sbs, NULL, Icon_Wps);
#if CONFIG_TUNER #if CONFIG_TUNER
MENUITEM_FUNCTION(browse_fms, MENU_FUNC_USEPARAM, MENUITEM_FUNCTION(browse_fms, MENU_FUNC_USEPARAM,
ID2P(LANG_FM_RADIO), ID2P(LANG_RADIOSCREEN),
browse_folder, (void*)&fms, NULL, Icon_Wps); browse_folder, (void*)&fms, NULL, Icon_Wps);
#endif #endif
#endif #endif
@ -271,7 +271,7 @@ MENUITEM_FUNCTION(browse_rsbs, MENU_FUNC_USEPARAM,
browse_folder, (void*)&rsbs, NULL, Icon_Wps); browse_folder, (void*)&rsbs, NULL, Icon_Wps);
#if CONFIG_TUNER #if CONFIG_TUNER
MENUITEM_FUNCTION(browse_rfms, MENU_FUNC_USEPARAM, MENUITEM_FUNCTION(browse_rfms, MENU_FUNC_USEPARAM,
ID2P(LANG_REMOTE_FMRADIO), ID2P(LANG_REMOTE_RADIOSCREEN),
browse_folder, (void*)&rfms, NULL, Icon_Wps); browse_folder, (void*)&rfms, NULL, Icon_Wps);
#endif #endif
#endif #endif