diff options
author | Zbigniew Chyla <cyba@gnome.pl> | 2002-09-24 20:20:26 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2002-09-24 20:20:26 +0800 |
commit | ce792ef0ec703c53473ca82b5085ef59c2b9d558 (patch) | |
tree | dda5f554eb5704444eaf36eb6c8911135bfe41e7 /composer/e-msg-composer-attachment-bar.c | |
parent | 965cc1d9fce626582fe9626c26a849d5414806d9 (diff) | |
download | gsoc2013-evolution-ce792ef0ec703c53473ca82b5085ef59c2b9d558.tar.gz gsoc2013-evolution-ce792ef0ec703c53473ca82b5085ef59c2b9d558.tar.zst gsoc2013-evolution-ce792ef0ec703c53473ca82b5085ef59c2b9d558.zip |
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
Diffstat (limited to 'composer/e-msg-composer-attachment-bar.c')
-rw-r--r-- | composer/e-msg-composer-attachment-bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |