From a93b7cdb6bb73968f2a2f4f97308e0b675544605 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Wed, 26 Jun 2002 10:45:13 +0000 Subject: [PATCH 1/1] don't gettextise empty strings --- ChangeLog.claws | 12 ++++++++++++ configure.in | 2 +- src/addrgather.c | 2 +- src/selective_download.c | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index da34d9be0..98d899bad 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -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 diff --git a/configure.in b/configure.in index e23b08536..32014ef78 100644 --- a/configure.in +++ b/configure.in @@ -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 diff --git a/src/addrgather.c b/src/addrgather.c index ab4f76406..a808977cc 100644 --- a/src/addrgather.c +++ b/src/addrgather.c @@ -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); diff --git a/src/selective_download.c b/src/selective_download.c index 85328c26d..e523d2bb5 100644 --- a/src/selective_download.c +++ b/src/selective_download.c @@ -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; -- 2.25.1