diff options
author | Jan Cholasta <jcholast@redhat.com> | 2015-11-27 08:07:57 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2015-12-01 09:30:21 +0100 |
commit | 4d24d8b26cd720f2ac24d05cbb00fd69ebd675a9 (patch) | |
tree | da015987aa86a916c224673bc8aa4a7ea1eb0360 /ipalib/plugins/topology.py | |
parent | 46ae52569a179f73b1445922f7bac993d598c953 (diff) | |
download | freeipa-4d24d8b26cd720f2ac24d05cbb00fd69ebd675a9.tar.gz freeipa-4d24d8b26cd720f2ac24d05cbb00fd69ebd675a9.tar.xz freeipa-4d24d8b26cd720f2ac24d05cbb00fd69ebd675a9.zip |
topology: replace "suffices" with "suffixes"
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipalib/plugins/topology.py')
-rw-r--r-- | ipalib/plugins/topology.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/plugins/topology.py b/ipalib/plugins/topology.py index 2c43758c3..2c54bbc4d 100644 --- a/ipalib/plugins/topology.py +++ b/ipalib/plugins/topology.py @@ -328,11 +328,11 @@ class topologysuffix(LDAPObject): """ container_dn = api.env.container_topology object_name = _('suffix') - object_name_plural = _('suffices') + object_name_plural = _('suffixes') object_class = ['iparepltopoconf'] default_attributes = ['cn', 'ipaReplTopoConfRoot'] search_display_attributes = ['cn', 'ipaReplTopoConfRoot'] - label = _('Topology suffices') + label = _('Topology suffixes') label_singular = _('Topology suffix') takes_params = ( @@ -354,11 +354,11 @@ class topologysuffix(LDAPObject): @register() class topologysuffix_find(LDAPSearch): - __doc__ = _('Search for topology suffices.') + __doc__ = _('Search for topology suffixes.') msg_summary = ngettext( '%(count)d topology suffix matched', - '%(count)d topology suffices matched', 0 + '%(count)d topology suffixes matched', 0 ) |