From ce792ef0ec703c53473ca82b5085ef59c2b9d558 Mon Sep 17 00:00:00 2001 From: Zbigniew Chyla Date: Tue, 24 Sep 2002 12:20:26 +0000 Subject: Don't mark empty string with _(). 2002-09-24 Zbigniew Chyla * e-msg-composer-attachment-bar.c (size_to_string): Don't mark empty string with _(). svn path=/trunk/; revision=18197 --- composer/ChangeLog | 5 +++++ composer/e-msg-composer-attachment-bar.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'composer') diff --git a/composer/ChangeLog b/composer/ChangeLog index d6c1afd9e1..6ec031ae5c 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2002-09-24 Zbigniew Chyla + + * e-msg-composer-attachment-bar.c (size_to_string): + Don't mark empty string with _(). + 2002-09-23 Ettore Perazzoli * e-icon-list.c (icon_new_from_pixbuf): Removed a #warning. diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 2e918bb5d1..98f73a7e00 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -98,7 +98,7 @@ size_to_string (gulong size) I am not sure this will be OK for all the languages. */ if (size < 1e3L) { - size_string = g_strdup (_("")); + size_string = g_strdup (""); } else { gdouble displayed_size; -- cgit v1.2.3