From 404177314e19466f2598bfd4f4f4b84150147beb Mon Sep 17 00:00:00 2001 From: Harald Judt Date: Mon, 1 Dec 2014 21:54:13 +0100 Subject: Make usage/free string more clear This string is used in multiple places, e.g. in the properties dialog (where it is clear that the first number means free space) and in the device tooltip (where it is not clear). --- thunar/thunar-gio-extensions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunar/thunar-gio-extensions.c b/thunar/thunar-gio-extensions.c index 526742f..ac15124 100644 --- a/thunar/thunar-gio-extensions.c +++ b/thunar/thunar-gio-extensions.c @@ -424,7 +424,7 @@ thunar_g_file_get_free_space_string (GFile *file) fs_free_str = g_format_size_full (fs_free, G_FORMAT_SIZE_IEC_UNITS); fs_size_str = g_format_size_full (fs_size, G_FORMAT_SIZE_IEC_UNITS); /* free disk space string */ - fs_string = g_strdup_printf (_("%s of %s (%d%% used)"), + fs_string = g_strdup_printf (_("%s of %s free (%d%% used)"), fs_free_str, fs_size_str, (gint) ((fs_size - fs_free) * 100 / fs_size)); g_free (fs_free_str); -- 2.1.3