summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 842a328ee9..415cc05be8 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -491,7 +491,7 @@ MENUITEM_FUNCTION(reshuffle_item, 0, ID2P(LANG_SHUFFLE_PLAYLIST),
491 shuffle_playlist, NULL, Icon_Playlist); 491 shuffle_playlist, NULL, Icon_Playlist);
492MENUITEM_FUNCTION(playing_time_item, 0, ID2P(LANG_PLAYING_TIME), 492MENUITEM_FUNCTION(playing_time_item, 0, ID2P(LANG_PLAYING_TIME),
493 playing_time, NULL, Icon_Playlist); 493 playing_time, NULL, Icon_Playlist);
494MAKE_ONPLAYMENU( wps_playlist_menu, ID2P(LANG_PLAYLIST), 494MAKE_ONPLAYMENU( wps_playlist_menu, ID2P(LANG_CURRENT_PLAYLIST),
495 NULL, Icon_Playlist, 495 NULL, Icon_Playlist,
496 &wps_view_cur_playlist_item, &search_playlist_item, 496 &wps_view_cur_playlist_item, &search_playlist_item,
497 &playlist_save_item, &reshuffle_item, &playing_time_item 497 &playlist_save_item, &reshuffle_item, &playing_time_item
@@ -676,7 +676,7 @@ MENUITEM_FUNCTION_W_PARAM(replace_shuf_pl_item, 0, ID2P(LANG_PLAY_SHUFFLED),
676 add_to_playlist, &addtopl_replace_shuffled, 676 add_to_playlist, &addtopl_replace_shuffled,
677 treeplaylist_callback, Icon_Playlist); 677 treeplaylist_callback, Icon_Playlist);
678 678
679MAKE_ONPLAYMENU(tree_playlist_menu, ID2P(LANG_CURRENT_PLAYLIST), 679MAKE_ONPLAYMENU(tree_playlist_menu, ID2P(LANG_PLAYING_NEXT),
680 treeplaylist_callback, Icon_Playlist, 680 treeplaylist_callback, Icon_Playlist,
681 681
682 /* insert */ 682 /* insert */
@@ -801,11 +801,11 @@ static int cat_playlist_callback(int action,
801 const struct menu_item_ex *this_item, 801 const struct menu_item_ex *this_item,
802 struct gui_synclist *this_list); 802 struct gui_synclist *this_list);
803 803
804MENUITEM_FUNCTION(cat_add_to_list, 0, ID2P(LANG_CATALOG_ADD_TO), 804MENUITEM_FUNCTION(cat_add_to_list, 0, ID2P(LANG_ADD_TO_EXISTING_PL),
805 cat_add_to_a_playlist, NULL, Icon_Playlist); 805 cat_add_to_a_playlist, NULL, Icon_Playlist);
806MENUITEM_FUNCTION(cat_add_to_new, 0, ID2P(LANG_CATALOG_ADD_TO_NEW), 806MENUITEM_FUNCTION(cat_add_to_new, 0, ID2P(LANG_CATALOG_ADD_TO_NEW),
807 cat_add_to_a_new_playlist, NULL, Icon_Playlist); 807 cat_add_to_a_new_playlist, NULL, Icon_Playlist);
808MAKE_ONPLAYMENU(cat_playlist_menu, ID2P(LANG_CATALOG), 808MAKE_ONPLAYMENU(cat_playlist_menu, ID2P(LANG_ADD_TO_PL),
809 cat_playlist_callback, Icon_Playlist, 809 cat_playlist_callback, Icon_Playlist,
810 &cat_add_to_list, &cat_add_to_new); 810 &cat_add_to_list, &cat_add_to_new);
811 811