[Xfce4-commits] <postler:master> Don't concatenate translatable dialogue text
Christian Dywan
noreply at xfce.org
Tue Jan 25 20:24:01 CET 2011
Updating branch refs/heads/master
to 43e1d2cb3321cb5de77c9aee39208e8623db0ecf (commit)
from da31e6997cbd808f02c935fb44f283fe3fac109f (commit)
commit 43e1d2cb3321cb5de77c9aee39208e8623db0ecf
Author: Christian Dywan <christian at twotoasts.de>
Date: Tue Jan 25 20:21:31 2011 +0100
Don't concatenate translatable dialogue text
postler/postler-composer.vala | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/postler/postler-composer.vala b/postler/postler-composer.vala
index ba3b8bd..cd86071 100644
--- a/postler/postler-composer.vala
+++ b/postler/postler-composer.vala
@@ -77,8 +77,8 @@ public class Postler.Composer : Gtk.Window {
var dialog = new Gtk.MessageDialog (this, 0,
Gtk.MessageType.WARNING, Gtk.ButtonsType.NONE,
_("You did not enter a subject."));
- dialog.format_secondary_text (_("Do you want to send the message "
- + "without a subject?"));
+ dialog.format_secondary_text (
+ _("Do you want to send the message without a subject?"));
dialog.add_buttons (Gtk.STOCK_CANCEL, Gtk.ResponseType.CANCEL,
_("_Send message without subject"), Gtk.ResponseType.OK);
dialog.set_default_response (Gtk.ResponseType.CANCEL);
More information about the Xfce4-commits
mailing list