summaryrefslogtreecommitdiff
path: root/bin/version
diff options
context:
space:
mode:
authorbwarsaw2000-12-07 19:33:52 +0000
committerbwarsaw2000-12-07 19:33:52 +0000
commit307583d87bc10413f79d34d4eb4d863df7fe6a95 (patch)
tree8a2661240f0045314af5fb1be3544d63754001c3 /bin/version
parentf80f72d57ce4e6ef145502ef71bcc8f7bed592a1 (diff)
downloadmailman-307583d87bc10413f79d34d4eb4d863df7fe6a95.tar.gz
mailman-307583d87bc10413f79d34d4eb4d863df7fe6a95.tar.zst
mailman-307583d87bc10413f79d34d4eb4d863df7fe6a95.zip
Start of support for i18n; marking of translatable strings.
Use extended print statement, string methods, and other Python 2.0 features.
Diffstat (limited to 'bin/version')
-rw-r--r--bin/version4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/version b/bin/version
index 176c87d0e..83fe71920 100644
--- a/bin/version
+++ b/bin/version
@@ -21,4 +21,6 @@
import paths
import Mailman.mm_cfg
-print 'Using Mailman version', Mailman.mm_cfg.VERSION
+from Mailman.i18n import _
+
+print _('Using Mailman version:'), Mailman.mm_cfg.VERSION