fixes an issue with LANG_PLAYINDICES_PLAYLIST id.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5756 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jose Maria Garcia-Valdecasas Bernal 2005-02-03 01:13:54 +00:00
parent 5737019e85
commit 8d2fe0dcc1
4 changed files with 19 additions and 6 deletions

View file

@ -86,9 +86,9 @@ voice: ""
new:
id: LANG_PLAYINDICES_PLAYLIST
desc: in playlist.indices() when playlist is full
desc: in playlist.indices() when playlist is full *WARNING* this and next ID are only used in this function.
eng: "Playlist"
voice: "Playlist"
voice: ""
new:
id: LANG_PLAYINDICES_BUFFER
@ -2991,3 +2991,10 @@ desc: ID3 virtual folder name
eng: "<All songs>"
voice: ""
new:
id: LANG_PLAYLIST
desc: Used when you need to say playlist, also voiced
eng: "Playlist"
voice: "Playlist"
new:

View file

@ -72,9 +72,9 @@ voice: ""
new: "Mezclando..."
id: LANG_PLAYINDICES_PLAYLIST
desc: in playlist.indices() when playlist is full
desc: in playlist.indices() when playlist is full *WARNING* this and next ID are only used in this function.
eng: "Playlist"
voice: "Playlist"
voice: ""
new: "El bufer de la"
id: LANG_PLAYINDICES_BUFFER
@ -2956,3 +2956,9 @@ desc: ID3 virtual folder name
eng: "<All songs>"
voice: ""
new: "<Todas las Canciones>"
id: LANG_PLAYLIST
desc: Used when you need to say playlist, also voiced
eng: "Playlist"
voice: "Lista de reproducción"
new: "Lista de reproducción"

View file

@ -414,7 +414,7 @@ int onplay(char* file, int attr)
(attr & ATTR_DIRECTORY) ||
((attr & TREE_ATTR_MASK) == TREE_ATTR_M3U))
{
items[i].desc = ID2P(LANG_PLAYINDICES_PLAYLIST);
items[i].desc = ID2P(LANG_PLAYLIST);
items[i].function = playlist_options;
i++;
}

View file

@ -69,7 +69,7 @@ const struct filetype filetypes[] = {
{ ".mp3", TREE_ATTR_MPA, File, VOICE_EXT_MPA },
{ ".mp2", TREE_ATTR_MPA, File, VOICE_EXT_MPA },
{ ".mpa", TREE_ATTR_MPA, File, VOICE_EXT_MPA },
{ ".m3u", TREE_ATTR_M3U, Playlist, LANG_PLAYINDICES_PLAYLIST },
{ ".m3u", TREE_ATTR_M3U, Playlist, LANG_PLAYLIST },
{ ".cfg", TREE_ATTR_CFG, Config, VOICE_EXT_CFG },
{ ".wps", TREE_ATTR_WPS, Wps, VOICE_EXT_WPS },
{ ".lng", TREE_ATTR_LNG, Language, LANG_LANGUAGE },