9a1c4724a3f91a2003ebcbc9073aa44fa23fc3b0
[escalator.git] / api / escalator / i18n.py
1 # Copyright 2014 Red Hat, Inc.
2 # All Rights Reserved.
3 #
4 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
5 #    not use this file except in compliance with the License. You may obtain
6 #    a copy of the License at
7 #
8 #         http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #    Unless required by applicable law or agreed to in writing, software
11 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 #    License for the specific language governing permissions and limitations
14 #    under the License.
15
16 from oslo.i18n import TranslatorFactory  # noqa
17
18 _translators = TranslatorFactory(domain='escalator')
19
20 # The primary translation function using the well-known name "_"
21 _ = _translators.primary
22
23 # Translators for log levels.
24 #
25 # The abbreviated names are meant to reflect the usual use of a short
26 # name like '_'. The "L" is for "log" and the other letter comes from
27 # the level.
28 _LI = _translators.log_info
29 _LW = _translators.log_warning
30 _LE = _translators.log_error
31 _LC = _translators.log_critical