summaryrefslogtreecommitdiff
path: root/openstackclient/common/module.py
diff options
context:
space:
mode:
authorHuanxuan Ao <huanxuan.ao@easystack.cn>2016-06-07 19:16:24 +0800
committerHuanxuan Ao <huanxuan.ao@easystack.cn>2016-06-07 19:56:00 +0800
commitb36d521ff6d4f7a994d4472c25f8267b6e268d41 (patch)
tree7b9abcef7d9e5308f5ec481fd66814588cbcf00f /openstackclient/common/module.py
parent5293bb103e75542d9defb9d0d5ed3c144f0657fe (diff)
downloadpython-openstackclient-b36d521ff6d4f7a994d4472c25f8267b6e268d41.tar.gz
Fix i18n supports in commom
I checked all the files in openstackclient/common and fixed the missing i18n supprots. Change-Id: Id7f76a24aae663f5832ef9bcf1bd5a6b7081af24 Partial-bug: #1574965
Diffstat (limited to 'openstackclient/common/module.py')
-rw-r--r--openstackclient/common/module.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/openstackclient/common/module.py b/openstackclient/common/module.py
index 30c67c68..11895f7a 100644
--- a/openstackclient/common/module.py
+++ b/openstackclient/common/module.py
@@ -20,6 +20,7 @@ import sys
from openstackclient.common import command
from openstackclient.common import utils
+from openstackclient.i18n import _
class ListCommand(command.Lister):
@@ -61,7 +62,7 @@ class ListModule(command.ShowOne):
'--all',
action='store_true',
default=False,
- help='Show all modules that have version information',
+ help=_('Show all modules that have version information'),
)
return parser