rephrase action_past text in Access & Security panel

Convention in Horizon seems to be verb first, e.g "Deleted
Key Pair."  Also fix capitalization.

Change-Id: I84793a5bbf0ad7922749c388ef4eaeed37593ee0
Closes-Bug: #1370286
This commit is contained in:
Cindy Lu
2014-09-16 17:22:55 -07:00
parent d55368b0a1
commit 8df2d7c8ec
3 changed files with 12 additions and 12 deletions

View File

@@ -28,16 +28,16 @@ class DeleteKeyPairs(tables.DeleteAction):
@staticmethod
def action_present(count):
return ungettext_lazy(
u"Delete key pair",
u"Delete key pairs",
u"Delete Key Pair",
u"Delete Key Pairs",
count
)
@staticmethod
def action_past(count):
return ungettext_lazy(
u"Key pair deleted",
u"Key pairs deleted",
u"Deleted Key Pair",
u"Deleted Key Pairs",
count
)