add escalator cli framework
[escalator.git] / client / escalatorclient / _i18n.py
1 # Copyright 2012 OpenStack Foundation
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 try:
16     import oslo_i18n as i18n
17 except ImportError:
18     from oslo import i18n
19
20
21 _translators = i18n.TranslatorFactory(domain='escalatorclient')
22
23 # The primary translation function using the well-known name "_"
24 _ = _translators.primary
25
26 # Translators for log levels.
27 #
28 # The abbreviated names are meant to reflect the usual use of a short
29 # name like '_'. The "L" is for "log" and the other letter comes from
30 # the level.
31 _LI = _translators.log_info
32 _LW = _translators.log_warning
33 _LE = _translators.log_error
34 _LC = _translators.log_critical