diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-05-16 14:40:09 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-05-16 21:05:49 -0400 |
commit | a7f9814ab702cfa42988e47e80f44b57a195ad1e (patch) | |
tree | 6ea1bb746d3a28cb39906f11b744cc26293a2363 /ipalib | |
parent | f9a8d772e35982bed1c39b286b3120b9b5f64c0c (diff) | |
download | freeipa-a7f9814ab702cfa42988e47e80f44b57a195ad1e.tar.gz freeipa-a7f9814ab702cfa42988e47e80f44b57a195ad1e.tar.xz freeipa-a7f9814ab702cfa42988e47e80f44b57a195ad1e.zip |
Read-only association facet.
The IPA.association_facet has been modified to take a read_only parameters.
If the parameter is set to true, the Enroll and Delete buttons will not be
shown. All facets under the memberindirect and memberofindirect facet groups
are marked as read-only.
Ticket #1030
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugins/internal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index 28bc3b212..ff62bb21a 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -378,7 +378,7 @@ class i18n_messages(Command): "association":{ "add":_("Add ${other_entity} into ${entity} ${primary_key}"), "member":_("${other_entity} enrolled in ${entity} ${primary_key}"), - "parent":_("${entity} ${primary_key} is enrolled in the following ${other_entity}"), + "memberof":_("${entity} ${primary_key} is enrolled in the following ${other_entity}"), "remove":_("Remove ${other_entity} from ${entity} ${primary_key}"), }, "widget":{ |