summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2014-06-27 13:59:11 +0200
committerPetr Viktorin <pviktori@redhat.com>2014-07-08 12:00:30 +0200
commit03c25bd98e7fb16574a8bc0c4a9c9de851ae9bed (patch)
treef61085904707a28b65f31b7fd2fbf6f65d1da5e5
parent2ff14607b170c86ccd93cff60f5a34d64cd1e419 (diff)
downloadfreeipa-03c25bd98e7fb16574a8bc0c4a9c9de851ae9bed.tar.gz
freeipa-03c25bd98e7fb16574a8bc0c4a9c9de851ae9bed.tar.xz
freeipa-03c25bd98e7fb16574a8bc0c4a9c9de851ae9bed.zip
webui: capitalize labels of undo and undo all buttons
Make the label of these buttons consistent with other buttons which have capital first letters. Reviewed-By: Fraser Tweedale <ftweedal@redhat.com>
-rw-r--r--install/ui/test/data/ipa_init.json4
-rw-r--r--ipalib/plugins/internal.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json
index 284c0a643..b3d385900 100644
--- a/install/ui/test/data/ipa_init.json
+++ b/install/ui/test/data/ipa_init.json
@@ -574,8 +574,8 @@
"next": "Next",
"page": "Page",
"prev": "Prev",
- "undo": "undo",
- "undo_all": "undo all",
+ "undo": "Undo",
+ "undo_all": "Undo All",
"validation": {
"error": "Text does not match field pattern",
"datetime": "Must be an UTC date/time value (e.g., \"2014-01-20 17:58:01Z\")",
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py
index 4d9448ab0..53f117f3f 100644
--- a/ipalib/plugins/internal.py
+++ b/ipalib/plugins/internal.py
@@ -719,8 +719,8 @@ class i18n_messages(Command):
"next": _("Next"),
"page": _("Page"),
"prev": _("Prev"),
- "undo": _("undo"),
- "undo_all": _("undo all"),
+ "undo": _("Undo"),
+ "undo_all": _("Undo All"),
"validation": {
"error": _("Text does not match field pattern"),
"datetime": _("Must be an UTC date/time value (e.g., \"2014-01-20 17:58:01Z\")"),