------------------------------------------------------------
revno: 1267
committer: Mark Sapiro <[email protected]>
branch nick: 2.1
timestamp: Thu 2010-11-04 10:13:29 -0700
message:
  - Fixed a missing format character in the Spanish translation.
    Bug #670988.
  
  - Fixed the host name in the From: address of the owner notification from
    bin/add_members.  Bug #666181.
modified:
  NEWS
  bin/add_members
  messages/es/LC_MESSAGES/mailman.po


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'NEWS'
--- NEWS	2010-09-20 18:06:58 +0000
+++ NEWS	2010-11-04 17:13:29 +0000
@@ -4,6 +4,18 @@
 
 Here is a history of user visible changes to Mailman.
 
+2.1.15 (xx-xxx-xxxx)
+
+  i18n
+
+    - Fixed a missing format character in the Spanish translation.
+      Bug #670988.
+
+  Bug Fixes and other patches
+
+    - Fixed the host name in the From: address of the owner notification from
+      bin/add_members.  Bug #666181.
+
 2.1.14 (20-Sep-2010)
 
   Security

=== modified file 'bin/add_members'
--- bin/add_members	2008-02-29 17:47:36 +0000
+++ bin/add_members	2010-11-04 17:13:29 +0000
@@ -1,6 +1,6 @@
 #! @PYTHON@
 #
-# Copyright (C) 1998-2003 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2010 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
@@ -244,7 +244,10 @@
             realname = mlist.real_name
             subject = _('%(realname)s subscription notification')
             msg = Message.UserNotification(
-                mlist.owner, Utils.get_site_email(), subject, s.getvalue(),
+                mlist.owner,
+                Utils.get_site_email(mlist.host_name),
+                subject,
+                s.getvalue(),
                 mlist.preferred_language)
             msg.send(mlist)
 

=== modified file 'messages/es/LC_MESSAGES/mailman.po'
--- messages/es/LC_MESSAGES/mailman.po	2010-09-11 00:23:20 +0000
+++ messages/es/LC_MESSAGES/mailman.po	2010-11-04 17:13:29 +0000
@@ -9194,7 +9194,7 @@
 #: bin/check_perms:122
 msgid "%(path)s bad group (has: %(groupname)s, expected %(MAILMAN_GROUP)s)"
 msgstr ""
-"%(path) tiene un grupo incorrecto (tiene: %(groupname)s, se esperaba que "
+"%(path)s tiene un grupo incorrecto (tiene: %(groupname)s, se esperaba que "
 "tuviera %(MAILMAN_GROUP)s)"
 
 #: bin/check_perms:151

_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to