diff options
| author | bwarsaw | 2000-12-07 19:33:52 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-12-07 19:33:52 +0000 |
| commit | 307583d87bc10413f79d34d4eb4d863df7fe6a95 (patch) | |
| tree | 8a2661240f0045314af5fb1be3544d63754001c3 /bin/version | |
| parent | f80f72d57ce4e6ef145502ef71bcc8f7bed592a1 (diff) | |
| download | mailman-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/version | 4 |
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 |
