Files
powervc-driver/common-powervc/powervc/common/gettextutils.py
Le Tian Ren bb7da09624 Fix copyright headline in the source files
Change-Id: Ie1b0dac8a8ec1e6d02217fe03159c78a69f6dc5d
Closes-Bug: #1317657
2014-05-09 13:05:20 +08:00

10 lines
149 B
Python

# Copyright 2013 IBM Corp.
import gettext
t = gettext.translation('powervc-driver-common', fallback=True)
def _(msg):
return t.ugettext(msg)