summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/automount.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2010-02-19 09:08:16 -0700
committerJason Gerard DeRose <jderose@redhat.com>2010-02-24 02:47:39 -0700
commit8c46e09735d076e9689d04936cdeeca6dfd770d3 (patch)
tree6d4c04028c21ae068f5dfde2357308035693c50c /ipalib/plugins/automount.py
parentedf243d83a9c22a19d6dece035865f88d86cacb2 (diff)
downloadfreeipa-8c46e09735d076e9689d04936cdeeca6dfd770d3.tar.gz
freeipa-8c46e09735d076e9689d04936cdeeca6dfd770d3.tar.xz
freeipa-8c46e09735d076e9689d04936cdeeca6dfd770d3.zip
Translatable Param.label, Param.doc
Diffstat (limited to 'ipalib/plugins/automount.py')
-rw-r--r--ipalib/plugins/automount.py23
1 files changed, 12 insertions, 11 deletions
diff --git a/ipalib/plugins/automount.py b/ipalib/plugins/automount.py
index c56c7daf9..71a21824f 100644
--- a/ipalib/plugins/automount.py
+++ b/ipalib/plugins/automount.py
@@ -107,8 +107,8 @@ class automountlocation(LDAPObject):
takes_params = (
Str('cn',
cli_name='location',
- label='Location',
- doc='automount location name',
+ label=_('Location'),
+ doc=_('Automount location name'),
primary_key=True,
),
)
@@ -227,14 +227,13 @@ class automountmap(LDAPObject):
takes_params = (
Str('automountmapname',
cli_name='map',
- label='Map',
+ label=_('Map'),
+ doc=_('Aautomount map name'),
primary_key=True,
- doc='automount map name',
),
Str('description?',
cli_name='desc',
- label='Description',
- doc='description',
+ label=_('Description'),
),
)
@@ -315,16 +314,17 @@ class automountkey(LDAPObject):
takes_params = (
Str('automountkey',
cli_name='key',
- doc='key name',
+ label=_('Key'),
+ doc=_('Automount key name'),
primary_key=True,
),
Str('automountinformation',
cli_name='info',
- doc='mount information',
+ label=_('Mount information'),
),
Str('description?',
cli_name='desc',
- doc='description',
+ label=_('description'),
),
)
@@ -348,11 +348,12 @@ class automountmap_add_indirect(LDAPCreate):
takes_options = LDAPCreate.takes_options + (
Str('key',
cli_name='mount',
- doc='mount point',
+ label=_('Mount point'),
),
Str('parentmap?',
cli_name='parentmap',
- doc='name of parent automount map (default: auto.master)',
+ label=_('Parent map'),
+ doc=_('Name of parent automount map (default: auto.master)'),
default=u'auto.master',
autofill=True,
),