------------------------------------------------------------
revno: 1024
committer: Mark Sapiro <[email protected]>
branch nick: 2.2
timestamp: Fri 2008-12-19 13:02:08 -0800
message:
  Merged changes from the 2.1 branch
modified:
  Mailman/Archiver/HyperArch.py
  Mailman/Gui/Privacy.py
  NEWS
  messages/ar/LC_MESSAGES/mailman.po
  messages/ca/LC_MESSAGES/mailman.po
  messages/cs/LC_MESSAGES/mailman.po
  messages/da/LC_MESSAGES/mailman.po
  messages/de/LC_MESSAGES/mailman.po
  messages/es/LC_MESSAGES/mailman.po
  messages/et/LC_MESSAGES/mailman.po
  messages/eu/LC_MESSAGES/mailman.po
  messages/fi/LC_MESSAGES/mailman.po
  messages/fr/LC_MESSAGES/mailman.po
  messages/gl/LC_MESSAGES/mailman.po
  messages/he/LC_MESSAGES/mailman.po
  messages/hr/LC_MESSAGES/mailman.po
  messages/hu/LC_MESSAGES/mailman.po
  messages/ia/LC_MESSAGES/mailman.po
  messages/it/LC_MESSAGES/mailman.po
  messages/ja/LC_MESSAGES/mailman.po
  messages/ko/LC_MESSAGES/mailman.po
  messages/lt/LC_MESSAGES/mailman.po
  messages/mailman.pot
  messages/nl/LC_MESSAGES/mailman.po
  messages/no/LC_MESSAGES/mailman.po
  messages/pl/LC_MESSAGES/mailman.po
  messages/pt/LC_MESSAGES/mailman.po
  messages/pt_BR/LC_MESSAGES/mailman.po
  messages/ro/LC_MESSAGES/mailman.po
  messages/ru/LC_MESSAGES/mailman.po
  messages/sk/LC_MESSAGES/mailman.po
  messages/sl/LC_MESSAGES/mailman.po
  messages/sr/LC_MESSAGES/mailman.po
  messages/sv/LC_MESSAGES/mailman.po
  messages/tr/LC_MESSAGES/mailman.po
  messages/uk/LC_MESSAGES/mailman.po
  messages/vi/LC_MESSAGES/mailman.po
  messages/zh_CN/LC_MESSAGES/mailman.po
  messages/zh_TW/LC_MESSAGES/mailman.po
    ------------------------------------------------------------
    revno: 984.1.166
    committer: Mark Sapiro <[email protected]>
    branch nick: 2.1
    timestamp: Fri 2008-12-19 12:47:09 -0800
    message:
      Corrected a typo in Mailman/Gui/Privacy.py. Bug #309757.
    modified:
      Mailman/Gui/Privacy.py
      NEWS
      messages/ar/LC_MESSAGES/mailman.po
      messages/ca/LC_MESSAGES/mailman.po
      messages/cs/LC_MESSAGES/mailman.po
      messages/da/LC_MESSAGES/mailman.po
      messages/de/LC_MESSAGES/mailman.po
      messages/es/LC_MESSAGES/mailman.po
      messages/et/LC_MESSAGES/mailman.po
      messages/eu/LC_MESSAGES/mailman.po
      messages/fi/LC_MESSAGES/mailman.po
      messages/fr/LC_MESSAGES/mailman.po
      messages/gl/LC_MESSAGES/mailman.po
      messages/he/LC_MESSAGES/mailman.po
      messages/hr/LC_MESSAGES/mailman.po
      messages/hu/LC_MESSAGES/mailman.po
      messages/ia/LC_MESSAGES/mailman.po
      messages/it/LC_MESSAGES/mailman.po
      messages/ja/LC_MESSAGES/mailman.po
      messages/ko/LC_MESSAGES/mailman.po
      messages/lt/LC_MESSAGES/mailman.po
      messages/mailman.pot
      messages/nl/LC_MESSAGES/mailman.po
      messages/no/LC_MESSAGES/mailman.po
      messages/pl/LC_MESSAGES/mailman.po
      messages/pt/LC_MESSAGES/mailman.po
      messages/pt_BR/LC_MESSAGES/mailman.po
      messages/ro/LC_MESSAGES/mailman.po
      messages/ru/LC_MESSAGES/mailman.po
      messages/sk/LC_MESSAGES/mailman.po
      messages/sl/LC_MESSAGES/mailman.po
      messages/sr/LC_MESSAGES/mailman.po
      messages/sv/LC_MESSAGES/mailman.po
      messages/tr/LC_MESSAGES/mailman.po
      messages/uk/LC_MESSAGES/mailman.po
      messages/vi/LC_MESSAGES/mailman.po
      messages/zh_CN/LC_MESSAGES/mailman.po
      messages/zh_TW/LC_MESSAGES/mailman.po
    ------------------------------------------------------------
    revno: 984.1.165
    committer: Mark Sapiro <[email protected]>
    branch nick: 2.1
    timestamp: Fri 2008-12-19 12:23:41 -0800
    message:
      Fixed an issue where in some circumstances HyperArch.py would translate
      ' at ' into the wrong language ultimately throwing a UnicodeDecodeError
      when the translation was decoded with a different character set.
      Bug #308152.
    modified:
      Mailman/Archiver/HyperArch.py
      NEWS

=== modified file 'Mailman/Archiver/HyperArch.py'
--- a/Mailman/Archiver/HyperArch.py     2008-08-21 21:35:20 +0000
+++ b/Mailman/Archiver/HyperArch.py     2008-12-19 21:02:08 +0000
@@ -574,8 +574,8 @@
         if mm_cfg.ARCHIVER_OBSCURES_EMAILADDRS:
             otrans = i18n.get_translation()
             try:
+                i18n.set_language(self._lang)
                 atmark = unicode(_(' at '), cset)
-                i18n.set_language(self._lang)
                 body = re.sub(r'([-+,.\w]+)@([-+.\w]+)',
                               '\g<1>' + atmark + '\g<2>', body)
             finally:

=== modified file 'Mailman/Gui/Privacy.py'
--- a/Mailman/Gui/Privacy.py    2008-08-20 00:56:58 +0000
+++ b/Mailman/Gui/Privacy.py    2008-12-19 21:02:08 +0000
@@ -169,7 +169,7 @@
         adminurl = mlist.GetScriptURL('admin', absolute=1)
         sender_rtn = [
             _("""When a message is posted to the list, a series of
-            moderation steps are take to decide whether the a moderator must
+            moderation steps are taken to decide whether a moderator must
             first approve the message or not.  This section contains the
             controls for moderation of both member and non-member postings.
 

=== modified file 'NEWS'
--- a/NEWS      2008-12-19 20:59:20 +0000
+++ b/NEWS      2008-12-19 21:02:08 +0000
@@ -101,6 +101,13 @@
       instead of bad listname when the list name had non-ascii characters.
       SF Bug #2126489.
 
+    - Fixed an issue where in some circumstances HyperArch.py would translate
+      ' at ' into the wrong language ultimately throwing a UnicodeDecodeError
+      when the translation was decoded with a different character set.
+      Bug #308152.
+
+    - Corrected a typo in Mailman/Gui/Privacy.py. Bug #309757.
+
 2.1.11 (30-Jun-2008)
 
   New Features

=== modified file 'messages/ar/LC_MESSAGES/mailman.po'
--- a/messages/ar/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/ar/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -5831,7 +5831,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/ca/LC_MESSAGES/mailman.po'
--- a/messages/ca/LC_MESSAGES/mailman.po        2008-12-03 01:11:33 +0000
+++ b/messages/ca/LC_MESSAGES/mailman.po        2008-12-19 21:02:08 +0000
@@ -5938,7 +5938,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator 
must\n"
+"            moderation steps are taken to decide whether a moderator must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"
 "\n"

=== modified file 'messages/cs/LC_MESSAGES/mailman.po'
--- a/messages/cs/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/cs/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6186,7 +6186,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/da/LC_MESSAGES/mailman.po'
--- a/messages/da/LC_MESSAGES/mailman.po        2008-06-22 16:43:59 +0000
+++ b/messages/da/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6411,7 +6411,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/de/LC_MESSAGES/mailman.po'
--- a/messages/de/LC_MESSAGES/mailman.po        2008-06-23 20:22:45 +0000
+++ b/messages/de/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6741,7 +6741,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/es/LC_MESSAGES/mailman.po'
--- a/messages/es/LC_MESSAGES/mailman.po        2008-06-08 12:14:35 +0000
+++ b/messages/es/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6603,7 +6603,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/et/LC_MESSAGES/mailman.po'
--- a/messages/et/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/et/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6043,7 +6043,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/eu/LC_MESSAGES/mailman.po'
--- a/messages/eu/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/eu/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6275,7 +6275,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/fi/LC_MESSAGES/mailman.po'
--- a/messages/fi/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/fi/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6400,7 +6400,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/fr/LC_MESSAGES/mailman.po'
--- a/messages/fr/LC_MESSAGES/mailman.po        2008-06-08 11:54:39 +0000
+++ b/messages/fr/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6473,7 +6473,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/gl/LC_MESSAGES/mailman.po'
--- a/messages/gl/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/gl/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6255,7 +6255,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/he/LC_MESSAGES/mailman.po'
--- a/messages/he/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/he/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6098,7 +6098,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/hr/LC_MESSAGES/mailman.po'
--- a/messages/hr/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/hr/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6441,7 +6441,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/hu/LC_MESSAGES/mailman.po'
--- a/messages/hu/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/hu/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6226,7 +6226,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/ia/LC_MESSAGES/mailman.po'
--- a/messages/ia/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/ia/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6508,7 +6508,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/it/LC_MESSAGES/mailman.po'
--- a/messages/it/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/it/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6801,7 +6801,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/ja/LC_MESSAGES/mailman.po'
--- a/messages/ja/LC_MESSAGES/mailman.po        2008-07-07 00:47:48 +0000
+++ b/messages/ja/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -5994,7 +5994,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/ko/LC_MESSAGES/mailman.po'
--- a/messages/ko/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/ko/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -5701,7 +5701,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/lt/LC_MESSAGES/mailman.po'
--- a/messages/lt/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/lt/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -5358,7 +5358,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/mailman.pot'
--- a/messages/mailman.pot      2008-06-06 18:38:58 +0000
+++ b/messages/mailman.pot      2008-12-19 20:47:09 +0000
@@ -4750,7 +4750,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator 
must\n"
+"            moderation steps are taken to decide whether a moderator must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"
 "\n"

=== modified file 'messages/nl/LC_MESSAGES/mailman.po'
--- a/messages/nl/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/nl/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6506,7 +6506,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/no/LC_MESSAGES/mailman.po'
--- a/messages/no/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/no/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6337,7 +6337,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/pl/LC_MESSAGES/mailman.po'
--- a/messages/pl/LC_MESSAGES/mailman.po        2008-07-11 21:44:46 +0000
+++ b/messages/pl/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -5995,7 +5995,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/pt/LC_MESSAGES/mailman.po'
--- a/messages/pt/LC_MESSAGES/mailman.po        2008-06-08 12:30:11 +0000
+++ b/messages/pt/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6307,7 +6307,7 @@
 #, fuzzy
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/pt_BR/LC_MESSAGES/mailman.po'
--- a/messages/pt_BR/LC_MESSAGES/mailman.po     2008-06-29 20:57:18 +0000
+++ b/messages/pt_BR/LC_MESSAGES/mailman.po     2008-12-19 20:47:09 +0000
@@ -6299,7 +6299,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/ro/LC_MESSAGES/mailman.po'
--- a/messages/ro/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/ro/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6142,7 +6142,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/ru/LC_MESSAGES/mailman.po'
--- a/messages/ru/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/ru/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6252,7 +6252,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/sk/LC_MESSAGES/mailman.po'
--- a/messages/sk/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/sk/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6222,7 +6222,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/sl/LC_MESSAGES/mailman.po'
--- a/messages/sl/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/sl/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6941,7 +6941,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/sr/LC_MESSAGES/mailman.po'
--- a/messages/sr/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/sr/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -5130,7 +5130,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/sv/LC_MESSAGES/mailman.po'
--- a/messages/sv/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/sv/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -8050,7 +8050,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/tr/LC_MESSAGES/mailman.po'
--- a/messages/tr/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/tr/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6345,7 +6345,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/uk/LC_MESSAGES/mailman.po'
--- a/messages/uk/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/uk/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6227,7 +6227,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/vi/LC_MESSAGES/mailman.po'
--- a/messages/vi/LC_MESSAGES/mailman.po        2008-06-06 18:38:58 +0000
+++ b/messages/vi/LC_MESSAGES/mailman.po        2008-12-19 20:47:09 +0000
@@ -6260,7 +6260,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/zh_CN/LC_MESSAGES/mailman.po'
--- a/messages/zh_CN/LC_MESSAGES/mailman.po     2008-06-06 18:38:58 +0000
+++ b/messages/zh_CN/LC_MESSAGES/mailman.po     2008-12-19 20:47:09 +0000
@@ -5931,7 +5931,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"

=== modified file 'messages/zh_TW/LC_MESSAGES/mailman.po'
--- a/messages/zh_TW/LC_MESSAGES/mailman.po     2008-06-06 18:38:58 +0000
+++ b/messages/zh_TW/LC_MESSAGES/mailman.po     2008-12-19 20:47:09 +0000
@@ -5509,7 +5509,7 @@
 #: Mailman/Gui/Privacy.py:162
 msgid ""
 "When a message is posted to the list, a series of\n"
-"            moderation steps are take to decide whether the a moderator "
+"            moderation steps are taken to decide whether a moderator "
 "must\n"
 "            first approve the message or not.  This section contains the\n"
 "            controls for moderation of both member and non-member postings.\n"



--
Active development version (web u/i update)
https://code.launchpad.net/~mailman-coders/mailman/2.2

You are receiving this branch notification because you are subscribed to it.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to