diff options
| author | bwarsaw | 2001-08-14 06:39:42 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-08-14 06:39:42 +0000 |
| commit | 2f14a0ae2ff0e0d8761b6e523274d48c3c6120dc (patch) | |
| tree | a87f28fe790b5ecce25fa45983ad1bcf5ba2c586 | |
| parent | 61234977dbe80a897262ff9d7a12445e560dbe2e (diff) | |
| download | mailman-2f14a0ae2ff0e0d8761b6e523274d48c3c6120dc.tar.gz mailman-2f14a0ae2ff0e0d8761b6e523274d48c3c6120dc.tar.zst mailman-2f14a0ae2ff0e0d8761b6e523274d48c3c6120dc.zip | |
GetConfigCategory(): Make sure the spaces between the words are
non-breaking. Also, consistency in capitalization.
| -rw-r--r-- | Mailman/Gui/Membership.py | 2 | ||||
| -rw-r--r-- | Mailman/Gui/NonDigest.py | 2 | ||||
| -rw-r--r-- | Mailman/Gui/Privacy.py | 2 | ||||
| -rw-r--r-- | Mailman/Gui/Usenet.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/Gui/Membership.py b/Mailman/Gui/Membership.py index a688faaa3..59b69151c 100644 --- a/Mailman/Gui/Membership.py +++ b/Mailman/Gui/Membership.py @@ -23,7 +23,7 @@ from Mailman.i18n import _ class Membership: def GetConfigCategory(self): - return 'members', _('Membership Management') + return 'members', _('Membership Management') def GetConfigSubCategories(self, category): if category == 'members': diff --git a/Mailman/Gui/NonDigest.py b/Mailman/Gui/NonDigest.py index 9384a9198..dcfbabc67 100644 --- a/Mailman/Gui/NonDigest.py +++ b/Mailman/Gui/NonDigest.py @@ -25,7 +25,7 @@ from Mailman.i18n import _ class NonDigest: def GetConfigCategory(self): - return 'nondigest', _('Non-digest delivery options') + return 'nondigest', _('Non-digest options') def GetConfigInfo(self, mlist): WIDTH = mm_cfg.TEXTFIELDWIDTH diff --git a/Mailman/Gui/Privacy.py b/Mailman/Gui/Privacy.py index 307151c26..43a0bd0f2 100644 --- a/Mailman/Gui/Privacy.py +++ b/Mailman/Gui/Privacy.py @@ -24,7 +24,7 @@ from Mailman.i18n import _ class Privacy: def GetConfigCategory(self): - return 'privacy', _('Privacy Options') + return 'privacy', _('Privacy options') def GetConfigInfo(self, mlist): WIDTH = mm_cfg.TEXTFIELDWIDTH diff --git a/Mailman/Gui/Usenet.py b/Mailman/Gui/Usenet.py index 65d3da4db..3f14c4fa5 100644 --- a/Mailman/Gui/Usenet.py +++ b/Mailman/Gui/Usenet.py @@ -21,7 +21,7 @@ from Mailman.i18n import _ class Usenet: def GetConfigCategory(self): - return 'gateway', _('Mail <-> News Gateways') + return 'gateway', _('Mail<->News gateways') def GetConfigInfo(self, mlist): WIDTH = mm_cfg.TEXTFIELDWIDTH |
