summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/hostgroup.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/hostgroup.py')
-rw-r--r--ipalib/plugins/hostgroup.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/ipalib/plugins/hostgroup.py b/ipalib/plugins/hostgroup.py
index 5a723b8c..698b3954 100644
--- a/ipalib/plugins/hostgroup.py
+++ b/ipalib/plugins/hostgroup.py
@@ -51,26 +51,26 @@ class hostgroup(LDAPObject):
takes_params = (
Str('cn',
cli_name='name',
- label='Hostgroup name',
- doc='group name',
+ label=_('Host-group'),
+ doc=_('Name of host-group'),
primary_key=True,
normalizer=lambda value: value.lower(),
),
Str('description',
cli_name='desc',
- label='Description',
- doc='A description of this group',
+ label=_('Description'),
+ doc=_('A description of this host-group'),
),
Str('member_host?',
- label='Member Hosts',
+ label=_('Member hosts'),
flags=['no_create', 'no_update', 'no_search'],
),
Str('member_hostgroup?',
- label='Member Host Groups',
+ label=_('Member host-groups'),
flags=['no_create', 'no_update', 'no_search'],
),
Str('memberof_hostgroup?',
- label='Member of Hostgroups',
+ label=_('Member of host-groups'),
flags=['no_create', 'no_update', 'no_search'],
),
)