[nautilus] file: Change string of unreadable directory item count



commit 0fe9cc2f733ecb1febb41e640cccede740f2bc99
Author: António Fernandes <AntonioJPFernandes gmail com>
Date:   Sat Aug 12 23:07:26 2017 +0100

    file: Change string of unreadable directory item count
    
    We are displaying "? items" in the size column for unreadable folders.
    
    This string is weird and doesn't contribute a clear meaning, but a long
    string such as "uknown number of items" is not desirable either.
    
    So, change this string to "--", matching what is used when item count
    is disabled.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=99439

 src/nautilus-file.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/nautilus-file.c b/src/nautilus-file.c
index 8758958..f3346b8 100644
--- a/src/nautilus-file.c
+++ b/src/nautilus-file.c
@@ -7541,7 +7541,7 @@ nautilus_file_get_string_attribute_with_default_q (NautilusFile *file,
         {
             nautilus_file_get_directory_item_count (file, &item_count, &count_unreadable);
         }
-        return g_strdup (count_unreadable ? _("? items") : "...");
+        return g_strdup (count_unreadable ? "--" : "...");
     }
     if (attribute_q == attribute_deep_size_q)
     {


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