Remove word 'field' from GECOS param label

No other param/field has 'field' in a label.
This commit is contained in:
Petr Vobornik 2013-07-19 13:35:17 +02:00
parent 1f89cb959c
commit e08f4620cf
4 changed files with 11 additions and 11 deletions

View File

@ -16976,9 +16976,9 @@
{
"attribute": true,
"class": "Str",
"doc": "GECOS field",
"doc": "GECOS",
"flags": [],
"label": "GECOS field",
"label": "GECOS",
"name": "gecos",
"noextrawhitespace": true,
"type": "unicode"
@ -17350,9 +17350,9 @@
{
"attribute": true,
"class": "Str",
"doc": "GECOS field",
"doc": "GECOS",
"flags": [],
"label": "GECOS field",
"label": "GECOS",
"name": "gecos",
"noextrawhitespace": true,
"query": true,
@ -17807,9 +17807,9 @@
{
"attribute": true,
"class": "Str",
"doc": "GECOS field",
"doc": "GECOS",
"flags": [],
"label": "GECOS field",
"label": "GECOS",
"name": "gecos",
"noextrawhitespace": true,
"type": "unicode"

View File

@ -7671,9 +7671,9 @@
},
{
"class": "Str",
"doc": "GECOS field",
"doc": "GECOS",
"flags": [],
"label": "GECOS field",
"label": "GECOS",
"name": "gecos",
"noextrawhitespace": true,
"type": "unicode"

View File

@ -8940,12 +8940,12 @@
"cli_name": "gecos",
"cli_short_name": null,
"default": null,
"doc": "GECOS field",
"doc": "GECOS",
"exclude": null,
"flags": [],
"hint": null,
"include": null,
"label": "GECOS field",
"label": "GECOS",
"length": null,
"maxlength": null,
"minlength": null,

View File

@ -264,7 +264,7 @@ class user(LDAPObject):
label=_('Home directory'),
),
Str('gecos?',
label=_('GECOS field'),
label=_('GECOS'),
default_from=lambda givenname, sn: '%s %s' % (givenname, sn),
autofill=True,
),