From: Paul Mangan Date: Tue, 20 Nov 2007 09:29:06 +0000 (+0000) Subject: 2007-11-20 [paul] 3.1.0cvs9 X-Git-Tag: rel_3_2_0~71 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=48e45c8290d172fbc7ed4443a6c6a22804040b14 2007-11-20 [paul] 3.1.0cvs9 * src/compose.c make this string easier for translators --- diff --git a/ChangeLog b/ChangeLog index 418e87071..8bd8a7415 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-11-20 [paul] 3.1.0cvs9 + + * src/compose.c + make this string easier for translators + 2007-11-19 [colin] 3.1.0cvs8 * src/prefs_summaries.c diff --git a/PATCHSETS b/PATCHSETS index 52791b911..2f2140eea 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3066,3 +3066,4 @@ ( cvs diff -u -r 1.382.2.423 -r 1.382.2.424 src/compose.c; ) > 3.1.0cvs6.patchset ( cvs diff -u -r 1.204.2.151 -r 1.204.2.152 src/prefs_common.c; cvs diff -u -r 1.103.2.97 -r 1.103.2.98 src/prefs_common.h; cvs diff -u -r 1.1.2.48 -r 1.1.2.49 src/prefs_summaries.c; cvs diff -u -r 1.395.2.335 -r 1.395.2.336 src/summaryview.c; ) > 3.1.0cvs7.patchset ( cvs diff -u -r 1.1.2.49 -r 1.1.2.50 src/prefs_summaries.c; cvs diff -u -r 1.395.2.336 -r 1.395.2.337 src/summaryview.c; ) > 3.1.0cvs8.patchset +( cvs diff -u -r 1.382.2.424 -r 1.382.2.425 src/compose.c; ) > 3.1.0cvs9.patchset diff --git a/configure.ac b/configure.ac index 396c70e84..ce55a2455 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=1 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=8 +EXTRA_VERSION=9 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/compose.c b/src/compose.c index 8e1789eee..6e89e9717 100644 --- a/src/compose.c +++ b/src/compose.c @@ -4540,8 +4540,9 @@ static gboolean compose_check_entries(Compose *compose, gboolean check_everythin button_label = _("+_Send"); else button_label = _("+_Queue"); - message = g_strdup_printf(_("Subject is empty. %s it anyway?"), - compose->sending?_("Send"):_("Queue")); + message = g_strdup_printf(_("Subject is empty. %s"), + compose->sending?_("Send it anyway?"): + _("Queue it anyway?")); aval = alertpanel(compose->sending?_("Send"):_("Send later"), message, GTK_STOCK_CANCEL, button_label, NULL);