[nautilus] placessidebar: Clarify "Remove Bookmark" in the bookmark popup menu



commit 12a876ef75e10fe83a3bcf4a80e34b258a6c059d
Author: Utkarsh Gandhi <utkarshvg2401 gmail com>
Date:   Fri Feb 11 19:25:15 2022 +0530

    placessidebar: Clarify "Remove Bookmark" in the bookmark popup menu
    
    Currently, in the bookmark popup menu, the option to remove the bookmark is named "Remove".
    
    However, this may cause confusion to a new user/a user with weak knowledge about how the bookmark section 
whether the "Remove" option in the popup menu means removing the entry or removing the contents of the folder 
in the bookmark.
    
    To fix this, the option "Remove" has to be changed to "Remove from Bookmarks".
    
    Closes https://gitlab.gnome.org/GNOME/nautilus/-/issues/2125

 src/gtk/nautilusgtkplacessidebar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/gtk/nautilusgtkplacessidebar.c b/src/gtk/nautilusgtkplacessidebar.c
index 254bfe93e..c4c0b4495 100644
--- a/src/gtk/nautilusgtkplacessidebar.c
+++ b/src/gtk/nautilusgtkplacessidebar.c
@@ -3216,7 +3216,7 @@ create_row_popover (NautilusGtkPlacesSidebar *sidebar,
   g_menu_append_item (section, item);
   g_object_unref (item);
 
-  item = g_menu_item_new (_("_Remove"), "row.remove");
+  item = g_menu_item_new (_("_Remove from Bookmarks"), "row.remove");
   g_menu_append_item (section, item);
   g_object_unref (item);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]