don't gettextise empty strings
authorPaul Mangan <paul@claws-mail.org>
Wed, 26 Jun 2002 10:45:13 +0000 (10:45 +0000)
committerPaul Mangan <paul@claws-mail.org>
Wed, 26 Jun 2002 10:45:13 +0000 (10:45 +0000)
ChangeLog.claws
configure.in
src/addrgather.c
src/selective_download.c

index da34d9be02930233a13ed3306facd46684a1ecaa..98d899bad53ed64457042eeee336582b170bf838 100644 (file)
@@ -1,3 +1,15 @@
+2002-06-26 [paul]      0.7.8claws29
+
+       * src/addrgather.c
+         src/selective_download.c
+               don't gettextise empty strings.
+               reserved by gettext. gettext("") returns 
+               the header entry with meta information, 
+               not the empty string
+
+       * po/en_GB.po
+               updated
+
 2002-06-26 [paul]      0.7.8claws28
 
        * sync with 0.7.8cvs7
index e23b08536fa01df838ca68b550aed7ddff83734e..32014ef786b9e56922ec95db5809ff340b6a9341 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=7
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws28
+EXTRA_VERSION=claws29
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index ab4f764060e587a3036cdac87734fe5fb935d6a0..a808977cc8eecbf99e0523fe2a019b82374ced72 100644 (file)
@@ -275,7 +275,7 @@ static void addrgather_page_warning( gint pageNum, gchar *pageLbl ) {
 
        /* First row */
        top = 0;
-       label = gtk_label_new(_(""));
+       label = gtk_label_new("");
        gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
        gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
 
index 85328c26df9c06c1dd7db6ba01575d59e4bd60cf..e523d2bb5c22eea0a8af9ae252f5311278afa069 100644 (file)
@@ -315,7 +315,7 @@ static void sd_clist_set_items()
                gchar *row[5];
                gint row_num;
                
-               row[0] = _("");
+               row[0] = ("");
                row[1] = items->from;
                row[2] = items->subject;
                row[3] = items->date;