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:
committed by
Chyla Zbigniew
parent
965cc1d9fc
commit
ce792ef0ec
@ -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.
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user