Don't mark empty string with _().

2002-09-24  Zbigniew Chyla  <cyba@gnome.pl>

	* e-msg-composer-attachment-bar.c (size_to_string):
	Don't mark empty string with _().

svn path=/trunk/; revision=18197
This commit is contained in:
Zbigniew Chyla
2002-09-24 12:20:26 +00:00
committed by Chyla Zbigniew
parent 965cc1d9fc
commit ce792ef0ec
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-09-24 Zbigniew Chyla <cyba@gnome.pl>
* e-msg-composer-attachment-bar.c (size_to_string):
Don't mark empty string with _().
2002-09-23 Ettore Perazzoli <ettore@ximian.com>
* e-icon-list.c (icon_new_from_pixbuf): Removed a #warning.

View File

@ -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;