2007-11-20 [paul] 3.1.0cvs9
* src/compose.c make this string easier for translators
This commit is contained in:
parent
911a43df48
commit
48e45c8290
4 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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=
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue