aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Cgi
diff options
context:
space:
mode:
authorMark Sapiro <msapiro@value.net>2007-11-25 00:04:30 -0800
committerMark Sapiro <msapiro@value.net>2007-11-25 00:04:30 -0800
commitbd3617882ca74d8a36755a5133132556cfeb2968 (patch)
treefc81e0cd6be92bab1c1c3e1dcfe0e37ce3ff430f /Mailman/Cgi
parent96201784fa8a262abdfa1c0ab3e6adaad4eeba98 (diff)
downloadmailman2-bd3617882ca74d8a36755a5133132556cfeb2968.tar.gz
mailman2-bd3617882ca74d8a36755a5133132556cfeb2968.tar.xz
mailman2-bd3617882ca74d8a36755a5133132556cfeb2968.zip
Mailman/Defaults.py.in
Mailman/Utils.py Mailman/htmlformat.py Mailman/Cgi/create.py messages/ja/doc/Defaults.py.in - Added direction ('ltr', 'rtl') to the LC_DESCRIPTIONS table to support the Hebrew translation. messages/he/LC_MESSAGES/mailman.po - Corrected a typo '\b' -> '\n'. messages/zh_CN/LC_MESSAGES/mailman.po - Corrected a typo '\\b' -> '/b'.
Diffstat (limited to 'Mailman/Cgi')
-rw-r--r--Mailman/Cgi/create.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py
index 50f06070..55ec2887 100644
--- a/Mailman/Cgi/create.py
+++ b/Mailman/Cgi/create.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2006 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2007 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -392,7 +392,7 @@ def request_creation(doc, cgidata=dummy, errmsg=None):
# Create the table of initially supported languages, sorted on the long
# name of the language.
revmap = {}
- for key, (name, charset) in mm_cfg.LC_DESCRIPTIONS.items():
+ for key, (name, charset, direction) in mm_cfg.LC_DESCRIPTIONS.items():
revmap[_(name)] = key
langnames = revmap.keys()
langnames.sort()