From 89a06a4dacdaf92e5ef6764887056feb44cc7e86 Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Thu, 24 Mar 2016 15:27:39 +0100 Subject: [PATCH] Fix i18n in userscript plugin --- Mailnag/plugins/userscriptplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailnag/plugins/userscriptplugin.py b/Mailnag/plugins/userscriptplugin.py index 771958c..5499686 100644 --- a/Mailnag/plugins/userscriptplugin.py +++ b/Mailnag/plugins/userscriptplugin.py @@ -83,7 +83,7 @@ class UserscriptPlugin(Plugin): markup_str = "<%s> <%s> <%s>" % (_('account'), _('sender'), _('subject')) desc = _( "The following script will be executed whenever new mails arrive.\n" "Mailnag passes the total count of new mails to this script,\n" - "followed by %s sequences." % markup_str) + "followed by %s sequences.") % markup_str label = Gtk.Label() label.set_line_wrap(True)