@@ -74,30 +74,32 @@ class CreateLocalIP(command.ShowOne):
7474 def get_parser (self , prog_name ):
7575 parser = super ().get_parser (prog_name )
7676 parser .add_argument (
77- '--name' , metavar = "<name>" , help = _ ("New local IP name" )
77+ '--name' , metavar = "<name>" , help = _ ("New Local IP name" )
7878 )
7979 parser .add_argument (
8080 '--description' ,
8181 metavar = "<description>" ,
82- help = _ ("New local IP description " ),
82+ help = _ ("Description for Local IP " ),
8383 )
8484 parser .add_argument (
8585 '--network' ,
8686 metavar = '<network>' ,
87- help = _ ("Network to allocate Local IP (name or ID)" ),
87+ help = _ ("Network to allocate Local IP from (name or ID)" ),
8888 )
8989 parser .add_argument (
9090 '--local-port' ,
9191 metavar = '<local-port>' ,
92- help = _ ("Port to allocate Local IP (name or ID)" ),
92+ help = _ ("Port to allocate Local IP from (name or ID)" ),
9393 )
9494 parser .add_argument (
9595 "--local-ip-address" ,
9696 metavar = "<local-ip-address>" ,
97- help = _ ("IP address or CIDR " ),
97+ help = _ ("IP address or CIDR for Local IP " ),
9898 )
9999 parser .add_argument (
100- '--ip-mode' , metavar = '<ip-mode>' , help = _ ("local IP ip mode" )
100+ '--ip-mode' ,
101+ metavar = '<ip-mode>' ,
102+ help = _ ("IP mode to use for Local IP" ),
101103 )
102104
103105 identity_common .add_project_domain_option_to_parser (parser )
@@ -116,7 +118,7 @@ def take_action(self, parsed_args):
116118
117119
118120class DeleteLocalIP (command .Command ):
119- _description = _ ("Delete local IP(s)" )
121+ _description = _ ("Delete Local IP(s)" )
120122
121123 def get_parser (self , prog_name ):
122124 parser = super ().get_parser (prog_name )
@@ -156,7 +158,7 @@ def take_action(self, parsed_args):
156158
157159
158160class SetLocalIP (command .Command ):
159- _description = _ ("Set local ip properties" )
161+ _description = _ ("Set Local IP properties" )
160162
161163 def get_parser (self , prog_name ):
162164 parser = super ().get_parser (prog_name )
@@ -171,7 +173,7 @@ def get_parser(self, prog_name):
171173 parser .add_argument (
172174 '--description' ,
173175 metavar = "<description>" ,
174- help = _ ('Set local IP description' ),
176+ help = _ ('Set Local IP description' ),
175177 )
176178 return parser
177179
@@ -188,15 +190,15 @@ def take_action(self, parsed_args):
188190
189191
190192class ListLocalIP (command .Lister ):
191- _description = _ ("List local IPs" )
193+ _description = _ ("List Local IPs" )
192194
193195 def get_parser (self , prog_name ):
194196 parser = super ().get_parser (prog_name )
195197
196198 parser .add_argument (
197199 '--name' ,
198200 metavar = '<name>' ,
199- help = _ ("List only local IPs of given name in output" ),
201+ help = _ ("List only Local IPs of given name in output" ),
200202 )
201203 parser .add_argument (
202204 '--project' ,
@@ -295,7 +297,7 @@ def take_action(self, parsed_args):
295297
296298
297299class ShowLocalIP (command .ShowOne ):
298- _description = _ ("Display local IP details" )
300+ _description = _ ("Display Local IP details" )
299301
300302 def get_parser (self , prog_name ):
301303 parser = super ().get_parser (prog_name )
0 commit comments