summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Sullivan <sullivan@src.gnome.org>2000-10-19 17:24:37 +0000
committerJohn Sullivan <sullivan@src.gnome.org>2000-10-19 17:24:37 +0000
commitc1f647dac7752e00409e98c6e16226a1101630e9 (patch)
treee6246ea257558dd4e17baedcbd9d3d5fb26885e1
parent4f8c4f8b893fdb59e7a7bb2159f5e3c82a355f77 (diff)
downloadnautilus-c1f647dac7752e00409e98c6e16226a1101630e9.tar.gz
Tweak to previous checkin, use "? bytes" instead of just "?" for unreadable
size.
-rw-r--r--ChangeLog4
-rw-r--r--libnautilus-extensions/nautilus-file.c2
-rw-r--r--libnautilus-private/nautilus-file.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 71c8d26a5..679c75aba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,8 +7,8 @@
(nautilus_file_get_string_attribute_with_default):
Change some of the default strings; use "..." when
we were using "--" (for info not yet obtained); use
- "? items" or "?" when we were using "xxx" (for info
- not readable).
+ "? items" or "? bytes" when we were using "xxx"
+ (for info not readable).
(nautilus_file_get_top_left_text): Use "..." when
we were using "--"
diff --git a/libnautilus-extensions/nautilus-file.c b/libnautilus-extensions/nautilus-file.c
index b196b9f31..b92a89dd1 100644
--- a/libnautilus-extensions/nautilus-file.c
+++ b/libnautilus-extensions/nautilus-file.c
@@ -3306,7 +3306,7 @@ nautilus_file_get_string_attribute_with_default (NautilusFile *file, const char
status = nautilus_file_get_deep_counts (file, NULL, NULL, NULL, NULL);
if (status == NAUTILUS_REQUEST_DONE) {
/* This means no contents at all were readable */
- return g_strdup ("?");
+ return g_strdup ("? bytes");
}
return g_strdup ("...");
} else if (strcmp (attribute_name, "deep_file_count") == 0
diff --git a/libnautilus-private/nautilus-file.c b/libnautilus-private/nautilus-file.c
index b196b9f31..b92a89dd1 100644
--- a/libnautilus-private/nautilus-file.c
+++ b/libnautilus-private/nautilus-file.c
@@ -3306,7 +3306,7 @@ nautilus_file_get_string_attribute_with_default (NautilusFile *file, const char
status = nautilus_file_get_deep_counts (file, NULL, NULL, NULL, NULL);
if (status == NAUTILUS_REQUEST_DONE) {
/* This means no contents at all were readable */
- return g_strdup ("?");
+ return g_strdup ("? bytes");
}
return g_strdup ("...");
} else if (strcmp (attribute_name, "deep_file_count") == 0