From: Paul Date: Sun, 21 Apr 2013 20:07:51 +0000 (+0100) Subject: fix errors in strings X-Git-Tag: 3.9.1~16^2 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=235de210f300ee3f5dd4cf1ae8537f1dc46c617d fix errors in strings --- diff --git a/src/folderview.c b/src/folderview.c index 83b01e3d4..44ec9cfe9 100644 --- a/src/folderview.c +++ b/src/folderview.c @@ -796,7 +796,7 @@ static void mark_all_read_cb(GtkAction *action, gpointer data) && prefs_common.ask_mark_all_read) { val = alertpanel_full(_("Mark all as read"), _("Do you really want to mark all mails in this " - "folder as read ?"), GTK_STOCK_NO, GTK_STOCK_YES, NULL, + "folder as read?"), GTK_STOCK_NO, GTK_STOCK_YES, NULL, TRUE, NULL, ALERT_QUESTION, G_ALERTDEFAULT); if ((val & ~G_ALERTDISABLE) != G_ALERTALTERNATE) diff --git a/src/plugins/att_remover/att_remover.c b/src/plugins/att_remover/att_remover.c index 518d2785a..cb5a93850 100644 --- a/src/plugins/att_remover/att_remover.c +++ b/src/plugins/att_remover/att_remover.c @@ -416,7 +416,7 @@ static void remove_attachments(GSList *msglist) if (alertpanel_full(_("Destroy attachments"), _("Do you really want to remove all attachments from " - "the selected messages ?\n\n" + "the selected messages?\n\n" "The deleted data will be unrecoverable."), GTK_STOCK_CANCEL, GTK_STOCK_DELETE, NULL, FALSE, NULL, ALERT_QUESTION, G_ALERTALTERNATE) != G_ALERTALTERNATE) diff --git a/src/plugins/vcalendar/vcalendar.c b/src/plugins/vcalendar/vcalendar.c index 2577408c7..1362ded24 100644 --- a/src/plugins/vcalendar/vcalendar.c +++ b/src/plugins/vcalendar/vcalendar.c @@ -1086,7 +1086,7 @@ static gboolean vcalviewer_action_cb(GtkButton *widget, gpointer data) if (!account) { AlertValue val = alertpanel_full(_("No account found"), _("You have no account matching any attendee.\n" - "Do you want to reply anyway ?"), + "Do you want to reply anyway?"), GTK_STOCK_CANCEL, _("+Reply anyway"), NULL, FALSE, NULL, ALERT_QUESTION, G_ALERTDEFAULT); if (val == G_ALERTALTERNATE) { diff --git a/src/summaryview.c b/src/summaryview.c index b0f62c16a..7aae3e4c6 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -4112,7 +4112,7 @@ void summary_mark_all_read(SummaryView *summaryview) if (prefs_common.ask_mark_all_read) { val = alertpanel_full(_("Mark all as read"), _("Do you really want to mark all mails in this " - "folder as read ?"), GTK_STOCK_NO, _("Mark all as read"), NULL, + "folder as read?"), GTK_STOCK_NO, _("Mark all as read"), NULL, TRUE, NULL, ALERT_QUESTION, G_ALERTDEFAULT); if ((val & ~G_ALERTDISABLE) != G_ALERTALTERNATE)