Added "Queue shuffled", for completeness

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8448 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2006-01-25 08:29:12 +00:00
parent 2aabc875bf
commit c9bded807b
2 changed files with 12 additions and 0 deletions

View file

@ -3568,3 +3568,10 @@ desc: Pixels to advance per Screen scroll
eng: "Screen Scroll Step Size"
voice: "Screen Scroll Step Size"
new:
id: LANG_QUEUE_SHUFFLED
desc: in onplay menu. queue a track/playlist randomly into dynamic playlist
eng: "Queue shuffled"
voice: "Queue shuffled"
new:

View file

@ -319,6 +319,11 @@ static bool playlist_options(void)
args[i].position = PLAYLIST_INSERT_LAST;
args[i].queue = true;
i++;
items[i].desc = ID2P(LANG_QUEUE_SHUFFLED);
args[i].position = PLAYLIST_INSERT_SHUFFLED;
args[i].queue = true;
i++;
}
else if (((selected_file_attr & TREE_ATTR_MASK) == TREE_ATTR_MPA) ||
(selected_file_attr & ATTR_DIRECTORY))