diff options
-rw-r--r-- | apps/lang/english.lang | 11 | ||||
-rw-r--r-- | apps/lang/espanol.lang | 10 | ||||
-rw-r--r-- | apps/onplay.c | 2 | ||||
-rw-r--r-- | apps/tree.c | 2 |
4 files changed, 19 insertions, 6 deletions
diff --git a/apps/lang/english.lang b/apps/lang/english.lang index 50bba13fdd..e33dfa1aa2 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -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: + diff --git a/apps/lang/espanol.lang b/apps/lang/espanol.lang index a9069c8db4..fc6cbbb5ab 100644 --- a/apps/lang/espanol.lang +++ b/apps/lang/espanol.lang @@ -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" diff --git a/apps/onplay.c b/apps/onplay.c index cc08a96a81..7ebe4e1f45 100644 --- a/apps/onplay.c +++ b/apps/onplay.c @@ -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++; } diff --git a/apps/tree.c b/apps/tree.c index 07a0928db1..b97041c099 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -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 }, |