diff options
author | John Sullivan <sullivan@src.gnome.org> | 2000-10-19 17:24:37 +0000 |
---|---|---|
committer | John Sullivan <sullivan@src.gnome.org> | 2000-10-19 17:24:37 +0000 |
commit | c1f647dac7752e00409e98c6e16226a1101630e9 (patch) | |
tree | e6246ea257558dd4e17baedcbd9d3d5fb26885e1 | |
parent | 4f8c4f8b893fdb59e7a7bb2159f5e3c82a355f77 (diff) | |
download | nautilus-c1f647dac7752e00409e98c6e16226a1101630e9.tar.gz |
Tweak to previous checkin, use "? bytes" instead of just "?" for unreadable
size.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | libnautilus-extensions/nautilus-file.c | 2 | ||||
-rw-r--r-- | libnautilus-private/nautilus-file.c | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -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 |