summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/credential.py
diff options
context:
space:
mode:
authorTang Chen <chen.tang@easystack.cn>2016-06-05 10:58:48 +0800
committerTang Chen <chen.tang@easystack.cn>2016-06-07 09:37:02 +0800
commit5293bb103e75542d9defb9d0d5ed3c144f0657fe (patch)
tree8db584eae21ca4dfb38c87d6aec54bf052bb7860 /openstackclient/identity/v3/credential.py
parentdd0fe3d94ee6967c42c48be5181a2901b691a40c (diff)
downloadpython-openstackclient-5293bb103e75542d9defb9d0d5ed3c144f0657fe.tar.gz
Fix i18n support problems in identity
Change-Id: I3b48d17850343051239b5b69e8b890dba32d3ac8 Partial-bug: #1574965
Diffstat (limited to 'openstackclient/identity/v3/credential.py')
-rw-r--r--openstackclient/identity/v3/credential.py25
1 files changed, 14 insertions, 11 deletions
diff --git a/openstackclient/identity/v3/credential.py b/openstackclient/identity/v3/credential.py
index b0d2cafd..99013478 100644
--- a/openstackclient/identity/v3/credential.py
+++ b/openstackclient/identity/v3/credential.py
@@ -19,6 +19,7 @@ import six
from openstackclient.common import command
from openstackclient.common import utils
+from openstackclient.i18n import _
class CreateCredential(command.ShowOne):
@@ -29,24 +30,25 @@ class CreateCredential(command.ShowOne):
parser.add_argument(
'user',
metavar='<user>',
- help='Name or ID of user that owns the credential',
+ help=_('Name or ID of user that owns the credential'),
)
parser.add_argument(
'--type',
default="cert",
metavar='<type>',
choices=['ec2', 'cert'],
- help='New credential type',
+ help=_('New credential type'),
)
parser.add_argument(
'data',
metavar='<data>',
- help='New credential data',
+ help=_('New credential data'),
)
parser.add_argument(
'--project',
metavar='<project>',
- help='Project name or ID which limits the scope of the credential',
+ help=_('Project name or ID which limits the '
+ 'scope of the credential'),
)
return parser
@@ -77,7 +79,7 @@ class DeleteCredential(command.Command):
parser.add_argument(
'credential',
metavar='<credential-id>',
- help='ID of credential to delete',
+ help=_('ID of credential to delete'),
)
return parser
@@ -108,31 +110,32 @@ class SetCredential(command.Command):
parser.add_argument(
'credential',
metavar='<credential-id>',
- help='ID of credential to change',
+ help=_('ID of credential to change'),
)
parser.add_argument(
'--user',
metavar='<user>',
required=True,
- help='Name or ID of user that owns the credential',
+ help=_('Name or ID of user that owns the credential'),
)
parser.add_argument(
'--type',
metavar='<type>',
choices=['ec2', 'cert'],
required=True,
- help='New credential type',
+ help=_('New credential type'),
)
parser.add_argument(
'--data',
metavar='<data>',
required=True,
- help='New credential data',
+ help=_('New credential data'),
)
parser.add_argument(
'--project',
metavar='<project>',
- help='Project name or ID which limits the scope of the credential',
+ help=_('Project name or ID which limits the '
+ 'scope of the credential'),
)
return parser
@@ -163,7 +166,7 @@ class ShowCredential(command.ShowOne):
parser.add_argument(
'credential',
metavar='<credential-id>',
- help='ID of credential to display',
+ help=_('ID of credential to display'),
)
return parser