summaryrefslogtreecommitdiff
path: root/openstackclient/object
diff options
context:
space:
mode:
authorSteve Martinelli <s.martinelli@gmail.com>2016-11-13 09:42:09 -0500
committerSteve Martinelli <s.martinelli@gmail.com>2016-11-17 02:33:42 +0000
commit0ef8535036c3739d798fd5627ae142d121f20d42 (patch)
tree7dbbe5e2b5c30d4687bd7b9ad85cdea0e06215bf /openstackclient/object
parent6eef3277f5b3ebcceded9963627b78b2307621a9 (diff)
downloadpython-openstackclient-0ef8535036c3739d798fd5627ae142d121f20d42.tar.gz
translate all command help strings3.4.0
Leverage the new cliff command class attribute (_description) to get the help of a command, this allows us to mark strings for translation. We could not do this before since the help was grabbed from the docstring. This also depends on a new release of cliff and a bump to the minimum level in osc's requirements. Closes-Bug: 1636209 Depends-On: Id915f6aa7d95a0ff3dc6e2ceaac5decb3f3bf0da Change-Id: I8673080bb5625e8e3c499feaefd42dfc7121e96f
Diffstat (limited to 'openstackclient/object')
-rw-r--r--openstackclient/object/v1/account.py6
-rw-r--r--openstackclient/object/v1/container.py14
-rw-r--r--openstackclient/object/v1/object.py14
3 files changed, 17 insertions, 17 deletions
diff --git a/openstackclient/object/v1/account.py b/openstackclient/object/v1/account.py
index 2fe00ecb..4847f8bb 100644
--- a/openstackclient/object/v1/account.py
+++ b/openstackclient/object/v1/account.py
@@ -22,7 +22,7 @@ from openstackclient.i18n import _
class SetAccount(command.Command):
- """Set account properties"""
+ _description = _("Set account properties")
def get_parser(self, prog_name):
parser = super(SetAccount, self).get_parser(prog_name)
@@ -43,7 +43,7 @@ class SetAccount(command.Command):
class ShowAccount(command.ShowOne):
- """Display account details"""
+ _description = _("Display account details")
def take_action(self, parsed_args):
data = self.app.client_manager.object_store.account_show()
@@ -53,7 +53,7 @@ class ShowAccount(command.ShowOne):
class UnsetAccount(command.Command):
- """Unset account properties"""
+ _description = _("Unset account properties")
def get_parser(self, prog_name):
parser = super(UnsetAccount, self).get_parser(prog_name)
diff --git a/openstackclient/object/v1/container.py b/openstackclient/object/v1/container.py
index 01964d0c..88fb8602 100644
--- a/openstackclient/object/v1/container.py
+++ b/openstackclient/object/v1/container.py
@@ -29,7 +29,7 @@ LOG = logging.getLogger(__name__)
class CreateContainer(command.Lister):
- """Create new container"""
+ _description = _("Create new container")
def get_parser(self, prog_name):
parser = super(CreateContainer, self).get_parser(prog_name)
@@ -63,7 +63,7 @@ class CreateContainer(command.Lister):
class DeleteContainer(command.Command):
- """Delete container"""
+ _description = _("Delete container")
def get_parser(self, prog_name):
parser = super(DeleteContainer, self).get_parser(prog_name)
@@ -98,7 +98,7 @@ class DeleteContainer(command.Command):
class ListContainer(command.Lister):
- """List containers"""
+ _description = _("List containers")
def get_parser(self, prog_name):
parser = super(ListContainer, self).get_parser(prog_name)
@@ -168,7 +168,7 @@ class ListContainer(command.Lister):
class SaveContainer(command.Command):
- """Save container contents locally"""
+ _description = _("Save container contents locally")
def get_parser(self, prog_name):
parser = super(SaveContainer, self).get_parser(prog_name)
@@ -186,7 +186,7 @@ class SaveContainer(command.Command):
class SetContainer(command.Command):
- """Set container properties"""
+ _description = _("Set container properties")
def get_parser(self, prog_name):
parser = super(SetContainer, self).get_parser(prog_name)
@@ -213,7 +213,7 @@ class SetContainer(command.Command):
class ShowContainer(command.ShowOne):
- """Display container details"""
+ _description = _("Display container details")
def get_parser(self, prog_name):
parser = super(ShowContainer, self).get_parser(prog_name)
@@ -236,7 +236,7 @@ class ShowContainer(command.ShowOne):
class UnsetContainer(command.Command):
- """Unset container properties"""
+ _description = _("Unset container properties")
def get_parser(self, prog_name):
parser = super(UnsetContainer, self).get_parser(prog_name)
diff --git a/openstackclient/object/v1/object.py b/openstackclient/object/v1/object.py
index 3c47ee04..71b6f520 100644
--- a/openstackclient/object/v1/object.py
+++ b/openstackclient/object/v1/object.py
@@ -30,7 +30,7 @@ LOG = logging.getLogger(__name__)
class CreateObject(command.Lister):
- """Upload object to container"""
+ _description = _("Upload object to container")
def get_parser(self, prog_name):
parser = super(CreateObject, self).get_parser(prog_name)
@@ -81,7 +81,7 @@ class CreateObject(command.Lister):
class DeleteObject(command.Command):
- """Delete object from container"""
+ _description = _("Delete object from container")
def get_parser(self, prog_name):
parser = super(DeleteObject, self).get_parser(prog_name)
@@ -108,7 +108,7 @@ class DeleteObject(command.Command):
class ListObject(command.Lister):
- """List objects"""
+ _description = _("List objects")
def get_parser(self, prog_name):
parser = super(ListObject, self).get_parser(prog_name)
@@ -197,7 +197,7 @@ class ListObject(command.Lister):
class SaveObject(command.Command):
- """Save object locally"""
+ _description = _("Save object locally")
def get_parser(self, prog_name):
parser = super(SaveObject, self).get_parser(prog_name)
@@ -227,7 +227,7 @@ class SaveObject(command.Command):
class SetObject(command.Command):
- """Set object properties"""
+ _description = _("Set object properties")
def get_parser(self, prog_name):
parser = super(SetObject, self).get_parser(prog_name)
@@ -260,7 +260,7 @@ class SetObject(command.Command):
class ShowObject(command.ShowOne):
- """Display object details"""
+ _description = _("Display object details")
def get_parser(self, prog_name):
parser = super(ShowObject, self).get_parser(prog_name)
@@ -289,7 +289,7 @@ class ShowObject(command.ShowOne):
class UnsetObject(command.Command):
- """Unset object properties"""
+ _description = _("Unset object properties")
def get_parser(self, prog_name):
parser = super(UnsetObject, self).get_parser(prog_name)