mirror of
https://github.com/pulb/mailnag.git
synced 2026-05-07 03:26:38 +02:00
libnotifyplugin (short summary): begin body in lowercase
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user