Prepare for 1.3.3 release.
[mailman-postorious.git] / src / postorius / template_list.py
blobc137ffc10a7841680b2ecf42d403dcd7dd87786f
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2018-2019 by the Free Software Foundation, Inc.
4 # This file is part of Postorius.
6 # Postorius is free software: you can redistribute it and/or modify it under
7 # the terms of the GNU General Public License as published by the Free
8 # Software Foundation, either version 3 of the License, or (at your option)
9 # any later version.
11 # Postorius is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 # more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Postorius. If not, see <http://www.gnu.org/licenses/>.
19 # flake8: noqa
21 from django.utils.translation import gettext_lazy as _
24 TEMPLATES_LIST = (
25 ('list:admin:action:post',
26 _('Sent to the list administrators when moderator approval for a posting is required.')),
27 ('list:admin:action:subscribe',
28 _('Sent to the list administrators when moderator approval for a subscription request is required.')),
29 ('list:admin:action:unsubscribe',
30 _('Sent to the list administrators when moderator approval for an unsubscription request is required.')),
31 ('list:admin:notice:subscribe',
32 _('Sent to the list administrators to notify them when a new member has been subscribed.')),
33 ('list:admin:notice:unrecognized',
34 _('Sent to the list administrators when a bounce message in an unrecognized format has been received.')),
35 ('list:admin:notice:disable',
36 _('Sent to the list administrators to notify them when a member\'s delivery is disabled due to excessive bounces.')),
37 ('list:admin:notice:unsubscribe',
38 _('Sent to the list administrators to notify them when a member has been unsubscribed.')),
39 ('list:member:digest:footer',
40 _('The footer for a digest message.')),
41 ('list:member:digest:header',
42 _('The header for a digest message.')),
43 ('list:member:digest:masthead',
44 _('The digest “masthead”; i.e. a common introduction for all digest messages.')),
45 ('list:member:regular:footer',
46 _('The footer for a regular (non-digest) message.')),
47 ('list:member:regular:header',
48 _('The header for a regular (non-digest) message.')),
49 ('list:user:action:subscribe',
50 _('The message sent to subscribers when a subscription confirmation is required.')),
51 ('list:user:action:unsubscribe',
52 _('The message sent to subscribers when an unsubscription confirmation is required.')),
53 ('list:user:notice:goodbye',
54 _('The notice sent to a member when they unsubscribe from a mailing list.')),
55 ('list:user:notice:hold',
56 _('The notice sent to a poster when their message is being held for moderator approval.')),
57 ('list:user:notice:no-more-today',
58 _('Sent to a user when the maximum number of autoresponses has been reached for that day.')),
59 ('list:user:notice:post',
60 _('Notice sent to a poster when their message has been received by the mailing list.')),
61 ('list:user:notice:probe',
62 _('A bounce probe sent to a member when their subscription has been disabled due to bounces.')),
63 ('list:user:notice:refuse',
64 _('Notice sent to a poster when their message has been rejected by the list’s moderator.')),
65 ('list:user:notice:rejected',
66 _('Notice sent to a poster when their message has been rejected automatically.')),
67 ('list:user:notice:welcome',
68 _('The notice sent to a member when they are subscribed to the mailing list.')),
69 ('list:user:notice:warning',
70 _('The notice sent to a member when their membership has been disabled due to excessive bounces.')),