changed label for cn

This commit is contained in:
Roland Gruber 2015-11-24 19:33:18 +00:00
parent 0083c465b3
commit 251417972e
1 changed files with 7 additions and 7 deletions

View File

@ -34,7 +34,7 @@ $Id$
* @package types * @package types
*/ */
class host extends baseType { class host extends baseType {
/** /**
* Constructs a new host type object. * Constructs a new host type object.
*/ */
@ -43,7 +43,7 @@ class host extends baseType {
$this->LABEL_CREATE_ANOTHER_ACCOUNT = _('Create another host'); $this->LABEL_CREATE_ANOTHER_ACCOUNT = _('Create another host');
$this->LABEL_BACK_TO_ACCOUNT_LIST = _('Back to host list'); $this->LABEL_BACK_TO_ACCOUNT_LIST = _('Back to host list');
} }
/** /**
* Returns the alias name of this account type. * Returns the alias name of this account type.
* *
@ -52,7 +52,7 @@ class host extends baseType {
function getAlias() { function getAlias() {
return _("Hosts"); return _("Hosts");
} }
/** /**
* Returns the description of this account type. * Returns the description of this account type.
* *
@ -61,7 +61,7 @@ class host extends baseType {
function getDescription() { function getDescription() {
return _("Host accounts (e.g. Samba)"); return _("Host accounts (e.g. Samba)");
} }
/** /**
* Returns the class name for the list object. * Returns the class name for the list object.
* *
@ -70,7 +70,7 @@ class host extends baseType {
function getListClassName() { function getListClassName() {
return "lamHostList"; return "lamHostList";
} }
/** /**
* Returns the default attribute list for this account type. * Returns the default attribute list for this account type.
* *
@ -89,7 +89,7 @@ class host extends baseType {
function getListAttributeDescriptions() { function getListAttributeDescriptions() {
return array ( return array (
"uid" => _("Host name"), "uid" => _("Host name"),
"cn" => _("Host name"), "cn" => _("Common name"),
"rid" => _("RID (Windows UID)"), "rid" => _("RID (Windows UID)"),
"description" => _("Host description"), "description" => _("Host description"),
"uidnumber" => _("UID number"), "uidnumber" => _("UID number"),
@ -177,7 +177,7 @@ class host extends baseType {
* *
* @package lists * @package lists
* @author Roland Gruber * @author Roland Gruber
* *
*/ */
class lamHostList extends lamList { class lamHostList extends lamList {