From 76c9e3f558aef8db5a84ce81027717fa03ad4005 Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Thu, 11 Mar 2021 18:40:02 +0100 Subject: Use "Save" instead of "Save Current Playlist" in Playlist Viewer LANG_SAVE_DYNAMIC_PLAYLIST refers to dynamic playlists. A playlist being edited is only the "current playlist" in case of a dynamic playlist. When other playlists are edited, the current playlist is different from the edited/selected playlist. (A possible motivation for differentiating between the two here is because "Current Playlist" is already the title of a submenu in that same context menu where the name refers to the dynamic playlist and not to the selected playlist. "Save Current Playlist" is also used in the Playlist Catalogue's context menu for example, referring to the dynamic playlist.) Change-Id: If320b3c804bb98fccb2e945ae1a30ffc92673c7e --- apps/playlist_viewer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/playlist_viewer.c') diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c index 3e1479139b..318bdcd915 100644 --- a/apps/playlist_viewer.c +++ b/apps/playlist_viewer.c @@ -487,10 +487,10 @@ static int onplay_menu(int index) int result, ret = 0; struct playlist_entry * current_track = playlist_buffer_get_track(&viewer.buffer, index); - MENUITEM_STRINGLIST(menu_items, ID2P(LANG_PLAYLIST), NULL, + MENUITEM_STRINGLIST(menu_items, ID2P(LANG_PLAYLIST), NULL, ID2P(LANG_CURRENT_PLAYLIST), ID2P(LANG_CATALOG), ID2P(LANG_REMOVE), ID2P(LANG_MOVE), ID2P(LANG_SHUFFLE), - ID2P(LANG_SAVE_DYNAMIC_PLAYLIST), + ID2P(LANG_SAVE), ID2P(LANG_PLAYLISTVIEWER_SETTINGS)); bool current = (current_track->index == viewer.current_playing_track); -- cgit v1.2.3