]> git.sesse.net Git - vlc/commitdiff
Only show category and artist-sorted views
authorClément Stenac <zorglub@videolan.org>
Sun, 3 Apr 2005 21:36:12 +0000 (21:36 +0000)
committerClément Stenac <zorglub@videolan.org>
Sun, 3 Apr 2005 21:36:12 +0000 (21:36 +0000)
modules/gui/wxwindows/playlist.cpp

index e239f47a9fa539fea00af59801579c8e6874ef94..e700ab47636eff79f0fef0c7db86e64807486b4e 100644 (file)
@@ -1362,13 +1362,13 @@ wxMenu * Playlist::ViewMenu()
 
     /* FIXME : have a list of "should have" views */
     p_view_menu->Append( FirstView_Event + VIEW_CATEGORY,
-                           wxU(_("By category") ) );
-    p_view_menu->Append( FirstView_Event + VIEW_SIMPLE,
+                           wxU(_("Normal") ) );
+/*    p_view_menu->Append( FirstView_Event + VIEW_SIMPLE,
                            wxU(_("Manually added") ) );
     p_view_menu->Append( FirstView_Event + VIEW_ALL,
-                           wxU(_("All items, unsorted") ) );
+                           wxU(_("All items, unsorted") ) ); */
     p_view_menu->Append( FirstView_Event + VIEW_S_AUTHOR,
-                           wxU(_("Sorted by author") ) );
+                           wxU(_("Sorted by artist") ) );
 
     vlc_object_release( p_playlist);