From 2a73b5d7399e21b2ea074ddcb915a74adb4f0f48 Mon Sep 17 00:00:00 2001 From: Pavel Vomacka Date: Mon, 14 Aug 2017 14:44:13 +0200 Subject: [PATCH] WebUI: Add hyphenate versions of Host(Role) Based strings The hyphenated forms are less ambiguous and easier to read. (For more grammar background, see for example "Hyphenate Complex Adjectives" in http://stylepedia.net/ Grammar-Hyphenation ) https://pagure.io/freeipa/issue/6582 Reviewed-By: Felipe Volpone --- ipaserver/plugins/internal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipaserver/plugins/internal.py b/ipaserver/plugins/internal.py index 56fbcbc0e..c293e0b5e 100644 --- a/ipaserver/plugins/internal.py +++ b/ipaserver/plugins/internal.py @@ -947,12 +947,12 @@ class i18n_messages(Command): "automount": _("Automount"), "cert": _("Certificates"), "dns": _("DNS"), - "hbac": _("Host Based Access Control"), + "hbac": _("Host-Based Access Control"), "identity": _("Identity"), "ipaserver": _("IPA Server"), "network_services": _("Network Services"), "policy": _("Policy"), - "role": _("Role Based Access Control"), + "role": _("Role-Based Access Control"), "sudo": _("Sudo"), "topology": _("Topology"), "trust": _("Trusts"),