diff options
| author | Barry Warsaw | 2011-03-15 17:54:57 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2011-03-15 17:54:57 -0400 |
| commit | fd7c113707d9df9174957d2922d2d4484826145b (patch) | |
| tree | 42158a09e112318024b4b7b312ca8a993c852d33 /src/mailman/utilities/i18n.py | |
| parent | 2c562fd0191b0af04511dad2b0d0ae57b31198e7 (diff) | |
| download | mailman-fd7c113707d9df9174957d2922d2d4484826145b.tar.gz mailman-fd7c113707d9df9174957d2922d2d4484826145b.tar.zst mailman-fd7c113707d9df9174957d2922d2d4484826145b.zip | |
Diffstat (limited to 'src/mailman/utilities/i18n.py')
| -rw-r--r-- | src/mailman/utilities/i18n.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/mailman/utilities/i18n.py b/src/mailman/utilities/i18n.py new file mode 100644 index 000000000..45262997b --- /dev/null +++ b/src/mailman/utilities/i18n.py @@ -0,0 +1,35 @@ +# Copyright (C) 2011 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# GNU Mailman is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + +"""i18n template search and interpolation.""" + +from __future__ import absolute_import, unicode_literals + +__metaclass__ = type +__all__ = [ + 'find', + 'make', + ] + + + +def find(): + pass + + +def make(): + pass |
