diff options
author | Mark Sapiro <mark@msapiro.net> | 2021-04-07 21:34:54 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2021-04-07 21:34:54 -0700 |
commit | 5a9f8b6ae30f93bdff8f7a198f59d9ef74165faa (patch) | |
tree | b956df2d2869a6376be8db316e852f2f4dcfc6ff /Mailman | |
parent | ed0adf071ced3aef5799ab9d08503142553703af (diff) | |
download | mailman2-5a9f8b6ae30f93bdff8f7a198f59d9ef74165faa.tar.gz mailman2-5a9f8b6ae30f93bdff8f7a198f59d9ef74165faa.tar.xz mailman2-5a9f8b6ae30f93bdff8f7a198f59d9ef74165faa.zip |
Translate 'disabled' when used.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Bouncer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py index 5077f84c..909f58b0 100644 --- a/Mailman/Bouncer.py +++ b/Mailman/Bouncer.py @@ -226,12 +226,14 @@ class Bouncer: if self.bounce_notify_owner_on_disable: self.__sendAdminBounceNotice(member, msg) - def __sendAdminBounceNotice(self, member, msg, did=_('disabled')): + def __sendAdminBounceNotice(self, member, msg, did=None): # BAW: This is a bit kludgey, but we're not providing as much # information in the new admin bounce notices as we used to (some of # it was of dubious value). However, we'll provide empty, strange, or # meaningless strings for the unused %()s fields so that the language # translators don't have to provide new templates. + if did is None: + did = _('disabled') siteowner = Utils.get_site_email(self.host_name) text = Utils.maketext( 'bounce.txt', |