1 # Copyright 2012 OpenStack Foundation
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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
16 import oslo_i18n as i18n
21 _translators = i18n.TranslatorFactory(domain='escalatorclient')
23 # The primary translation function using the well-known name "_"
24 _ = _translators.primary
26 # Translators for log levels.
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
31 _LI = _translators.log_info
32 _LW = _translators.log_warning
33 _LE = _translators.log_error
34 _LC = _translators.log_critical