Changed message when there are no IP available addresses

When trying to associate a floating IP with an instance, when
there are no more availables, the error message was changed.

Change-Id: I46a9c5ec14eea4ac27cb7f717a9e81506c808d8d
Closes-Bug: #1294042
This commit is contained in:
facundo Farias 2014-03-27 16:44:01 -03:00 committed by Gerrit Code Review
parent 63dc8c3ccb
commit b9467671e2
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class AssociateIPAction(workflows.Action):
if options:
options.insert(0, ("", _("Select an IP address")))
else:
options = [("", _("No IP addresses available"))]
options = [("", _("No floating IP addresses allocated"))]
return options