[nautilus] operations-ui-manager: Use consistent item count label



commit ee3bcfb234510b3665ffb82a8514c8200891eb44
Author: António Fernandes <AntonioJPFernandes gmail com>
Date:   Wed Aug 23 23:06:21 2017 +0100

    operations-ui-manager: Use consistent item count label
    
    "Items: n items" is repeting the same word.
    
    Instead, use "Contents: n items", which is consistent with the label used by
    the properties dialog.
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=786699

 src/nautilus-operations-ui-manager.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-operations-ui-manager.c b/src/nautilus-operations-ui-manager.c
index 6f1d105..4356cc3 100644
--- a/src/nautilus-operations-ui-manager.c
+++ b/src/nautilus-operations-ui-manager.c
@@ -273,7 +273,7 @@ set_file_labels (FileConflictDialogData *data)
     if (destination_is_directory)
     {
         g_string_append_printf (destination_label, "<b>%s</b>\n", _("Original folder"));
-        g_string_append_printf (destination_label, "%s %s\n", _("Items:"), destination_size);
+        g_string_append_printf (destination_label, "%s %s\n", _("Contents:"), destination_size);
     }
     else
     {
@@ -305,7 +305,7 @@ set_file_labels (FileConflictDialogData *data)
         g_string_append_printf (source_label, "<b>%s</b>\n",
                                 destination_is_directory ?
                                 _("Merge with") : _("Replace with"));
-        g_string_append_printf (source_label, "%s %s\n", _("Items:"), source_size);
+        g_string_append_printf (source_label, "%s %s\n", _("Contents:"), source_size);
     }
     else
     {


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