aboutsummaryrefslogtreecommitdiffstats
path: root/bin/mmsitepass
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2016-02-27 15:21:12 -0800
committerMark Sapiro <mark@msapiro.net>2016-02-27 15:21:12 -0800
commit95385417e926517c13ee769ef915ce5710a515f2 (patch)
treea39eccce0b844476a3715f328ee6712a5d62640e /bin/mmsitepass
parent1833e1e51f4994d733c4ef3fca7c6ef7a4fd519e (diff)
parentb3e0912e4d982e53eccac906fad347e8f1792b97 (diff)
downloadmailman2-95385417e926517c13ee769ef915ce5710a515f2.tar.gz
mailman2-95385417e926517c13ee769ef915ce5710a515f2.tar.xz
mailman2-95385417e926517c13ee769ef915ce5710a515f2.zip
Fixed l10n to use correct charset for command-line scripts.
Diffstat (limited to 'bin/mmsitepass')
-rwxr-xr-xbin/mmsitepass22
1 files changed, 11 insertions, 11 deletions
diff --git a/bin/mmsitepass b/bin/mmsitepass
index 0bb6e77e..b473354b 100755
--- a/bin/mmsitepass
+++ b/bin/mmsitepass
@@ -1,6 +1,6 @@
#! @PYTHON@
#
-# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2016 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
@@ -43,7 +43,7 @@ import getopt
import paths
from Mailman import Utils
-from Mailman.i18n import _
+from Mailman.i18n import C_
PROGRAM = sys.argv[0]
@@ -54,7 +54,7 @@ def usage(code, msg=''):
fd = sys.stderr
else:
fd = sys.stdout
- print >> fd, _(__doc__)
+ print >> fd, C_(__doc__)
if msg:
print >> fd, msg
sys.exit(code)
@@ -70,34 +70,34 @@ def main():
# Defaults
siteadmin = 1
- pwdesc = _('site')
+ pwdesc = C_('site')
for opt, arg in opts:
if opt in ('-h', '--help'):
usage(0)
elif opt in ('-c', '--listcreator'):
siteadmin = 0
- pwdesc = _('list creator')
+ pwdesc = C_('list creator')
if len(args) == 1:
pw1 = args[0]
else:
try:
- pw1 = getpass.getpass(_('New %(pwdesc)s password: '))
- pw2 = getpass.getpass(_('Again to confirm password: '))
+ pw1 = getpass.getpass(C_('New %(pwdesc)s password: '))
+ pw2 = getpass.getpass(C_('Again to confirm password: '))
if pw1 <> pw2:
- print _('Passwords do not match; no changes made.')
+ print C_('Passwords do not match; no changes made.')
sys.exit(1)
except KeyboardInterrupt:
- print _('Interrupted...')
+ print C_('Interrupted...')
sys.exit(0)
# Set the site password by writing it to a local file. Make sure the
# permissions don't allow other+read.
Utils.set_global_password(pw1, siteadmin)
if Utils.check_global_password(pw1, siteadmin):
- print _('Password changed.')
+ print C_('Password changed.')
else:
- print _('Password change failed.')
+ print C_('Password change failed.')