From c97b6bf11fec884170de5e0d7233f5b3fd1c995f Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Sun, 27 Dec 2015 18:27:10 +0100 Subject: [PATCH] libnotifyplugin (short summary): begin body in lowercase --- Mailnag/plugins/libnotifyplugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mailnag/plugins/libnotifyplugin.py b/Mailnag/plugins/libnotifyplugin.py index e5dbd4d..a8f013c 100644 --- a/Mailnag/plugins/libnotifyplugin.py +++ b/Mailnag/plugins/libnotifyplugin.py @@ -214,12 +214,12 @@ class LibNotifyPlugin(Plugin): if mail_count > 1: summary = _("{0} new mails").format(str(mail_count)) if (mail_count - i) > 1: - body = _("From {0} and others.").format(senders) + body = _("from {0} and others.").format(senders) else: - body = _("From {0}.").format(senders) + body = _("from {0}.").format(senders) else: summary = _("New mail") - body = _("From {0}.").format(senders) + body = _("from {0}.").format(senders) self._notifications['0'].update(summary, body, "mail-unread") self._notifications['0'].show()