summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorRussell Bryant <rbryant@redhat.com>2012-06-04 15:58:30 -0400
committerRussell Bryant <rbryant@redhat.com>2012-06-06 10:29:14 -0400
commitfcfe81e600b4dc1f06498bab93c1f1244e943699 (patch)
treedaaff99f5ac86fb36235a0bbf222fd10cc81e9b7 /openstack
parentc1f45745e240f9cc0d4e6522a71a895471aa94b3 (diff)
downloadoslo-fcfe81e600b4dc1f06498bab93c1f1244e943699.tar.gz
oslo-fcfe81e600b4dc1f06498bab93c1f1244e943699.tar.xz
oslo-fcfe81e600b4dc1f06498bab93c1f1244e943699.zip
Add gettext support.
This patch adds gettext support for openstack-common modules. In the process of pulling in the rpc code, I didn't want to remove the usage of _() that was already in there. This allows it to stay in a way that doesn't conflict with gettext usage in the project using openstack-common. Change-Id: I9cad006f81244f0cce7b7f28659fa1daa5a4268a
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/gettextutils.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/openstack/common/gettextutils.py b/openstack/common/gettextutils.py
new file mode 100644
index 0000000..235350c
--- /dev/null
+++ b/openstack/common/gettextutils.py
@@ -0,0 +1,33 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright 2012 Red Hat, Inc.
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+"""
+gettext for openstack-common modules.
+
+Usual usage in an openstack.common module:
+
+ from openstack.common.gettextutils import _
+"""
+
+import gettext
+
+
+t = gettext.translation('openstack-common', 'locale', fallback=True)
+
+
+def _(msg):
+ return t.ugettext(msg)