From fb79115314d4fcae505ca1db76e9e54f58301e38 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Thu, 15 Feb 2018 10:10:18 +0100 Subject: [PATCH] gtkplacessidebar: Rename favorites to starred To have more consistency in the name. The same was done in Nautilus in commit https://gitlab.gnome.org/GNOME/nautilus/commit/27b039b37c1149fc8abbef6a683dd939e6f2bf1f. --- gtk/gtkplacessidebar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c index 7b68639446..4347c2a664 100644 --- a/gtk/gtkplacessidebar.c +++ b/gtk/gtkplacessidebar.c @@ -1075,12 +1075,13 @@ update_places (GtkPlacesSidebar *sidebar) if (sidebar->show_starred_location) { - mount_uri = "favorites:///"; + mount_uri = "starred:///"; start_icon = g_themed_icon_new_with_default_fallbacks ("starred-symbolic"); add_place (sidebar, PLACES_STARRED_LOCATION, SECTION_COMPUTER, _("Starred"), start_icon, NULL, mount_uri, NULL, NULL, NULL, NULL, 0, + /* TODO: Rename to 'Starred files' */ _("Favorite files")); g_object_unref (start_icon); }