Files
python-solumclient/solumclient/i18n.py
Hangdong Zhang ba312e9b03 Update the documentation link for doc migration
Change-Id: I40bd2282d04a3b74c82ed86e66e02ec7b10659e4
BTW: Do some optimization as well (http -> https)
2017-07-24 13:39:59 +08:00

25 lines
851 B
Python

# 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.
"""oslo.i18n integration module.
See https://docs.openstack.org/oslo.i18n/latest/user/usage.html
"""
import oslo_i18n
_translators = oslo_i18n.TranslatorFactory(domain='solumclient')
# The primary translation function using the well-known name "_"
_ = _translators.primary