diff options
| author | bwarsaw | 2001-08-14 06:37:23 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-08-14 06:37:23 +0000 |
| commit | 5112d15088f2eb36e4ea6c06178430662af1adb3 (patch) | |
| tree | e8c5e8f2ece55d65d4afed44dccfdd3dca53aaf1 /Mailman/Gui/General.py | |
| parent | 18174ab575b87fd32487d8fd9eac68941b002664 (diff) | |
| download | mailman-5112d15088f2eb36e4ea6c06178430662af1adb3.tar.gz mailman-5112d15088f2eb36e4ea6c06178430662af1adb3.tar.zst mailman-5112d15088f2eb36e4ea6c06178430662af1adb3.zip | |
Diffstat (limited to 'Mailman/Gui/General.py')
| -rw-r--r-- | Mailman/Gui/General.py | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/Mailman/Gui/General.py b/Mailman/Gui/General.py index 5793b945c..d520a5926 100644 --- a/Mailman/Gui/General.py +++ b/Mailman/Gui/General.py @@ -30,20 +30,9 @@ class General: def GetConfigInfo(self, mlist): WIDTH = mm_cfg.TEXTFIELDWIDTH - # Set things up for the language choices - langs = mlist.GetAvailableLanguages() - langnames = [_(Utils.GetLanguageDescr(L)) for L in langs] - try: - langi = langs.index(mlist.preferred_language) - except ValueError: - # Someone must have deleted the list's preferred language. Could - # be other trouble lurking! - langi = 0 - - # XXX: Should this text be migrated into the templates dir? return [ - _("Fundamental list characteristics, including descriptive" - " info and basic behaviors."), + _('''Fundamental list characteristics, including descriptive + info and basic behaviors.'''), ('real_name', mm_cfg.String, WIDTH, 0, _('The public name of this list (make case-changes only).'), @@ -102,13 +91,6 @@ class General: addresses of the list moderators in this section. Note that the field you are changing here specifies the list moderators.""")), - ('preferred_language', mm_cfg.Select, - (langs, langnames, langi), - 0, - _('Default language for this list.'), - _('''All messages not related to an specific user will be - displayed in this language.''')), - ('description', mm_cfg.String, WIDTH, 0, _('A terse phrase identifying this list.'), |
