summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntónio Fernandes <AntonioJPFernandes@gmail.com>2017-08-12 23:07:26 +0100
committerCarlos Soriano <csoriano@localhost.localdomain>2017-08-17 15:41:09 +0200
commit0fe9cc2f733ecb1febb41e640cccede740f2bc99 (patch)
treef89c7378236d167bc09835b44ced6021e4680ec7
parentd0bb9c7610e0358b0126b914ee4475e958ac88eb (diff)
downloadnautilus-0fe9cc2f733ecb1febb41e640cccede740f2bc99.tar.gz
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
-rw-r--r--src/nautilus-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-file.c b/src/nautilus-file.c
index 8758958f0..f3346b894 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)
{