From 070bc48dd6c9bce32caa0f0f2de8d44b4e5bbbb1 Mon Sep 17 00:00:00 2001 From: Pavel Vomacka Date: Thu, 2 Mar 2017 10:31:48 +0100 Subject: WebUI: Change structure of Identity submenu Previously there were 'User Groups', 'Host Groups' and 'Netgroups' separately, now these three items are grouped into one named 'Groups' which has sidebar with three items mentioned above. This change allows us to move ID views into Identity submenu. https://pagure.io/freeipa/issue/6717 Reviewed-By: Simo Sorce Reviewed-By: Petr Vobornik --- ipaserver/plugins/internal.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ipaserver/plugins') diff --git a/ipaserver/plugins/internal.py b/ipaserver/plugins/internal.py index e82e5fcd4..7084d54eb 100644 --- a/ipaserver/plugins/internal.py +++ b/ipaserver/plugins/internal.py @@ -522,11 +522,14 @@ class i18n_messages(Command): "group": { "details": _("Group Settings"), "external": _("External"), + "groups": _("Groups"), + "group_categories": _("Group categories"), "make_external": _("Change to external group"), "make_posix": _("Change to POSIX group"), "nonposix": _("Non-POSIX"), "posix": _("POSIX"), "type": _("Group Type"), + "user_groups": _("User Groups"), }, "hbacrule": { "any_host": _("Any Host"), @@ -587,6 +590,7 @@ class i18n_messages(Command): "unprovisioned": _("Host unprovisioned"), }, "hostgroup": { + "host_group": _("Host Groups"), "identity": _("Host Group Settings"), }, "idoverrideuser": { @@ -629,6 +633,7 @@ class i18n_messages(Command): "hostgroups": _("Host Groups"), "hosts": _("Hosts"), "identity": _("Netgroup Settings"), + "netgroups": _("Netgroups"), "specified_hosts": _("Specified Hosts and Groups"), "specified_users": _("Specified Users and Groups"), "user": _("User"), -- cgit