summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 515d96d)
raw | patch | inline | side by side (parent: 515d96d)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 3 Mar 2008 14:29:59 +0000 (14:29 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 3 Mar 2008 14:29:59 +0000 (14:29 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9249 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/personal/generic/class_user.inc | patch | blob | history |
diff --git a/gosa-core/plugins/personal/generic/class_user.inc b/gosa-core/plugins/personal/generic/class_user.inc
index 6edbf93e3bcfe894cc280c43709f8e9be7538e53..25190ec12ed440204150b1ab1c16e2b23e464aa7 100644 (file)
$ldap->search("(uid=$this->uid)", array("uid"));
$ldap->fetch();
if ($ldap->count() != 0 && $this->dn == 'new'){
- $message[]= _("There's already a person with this 'Login' in the database.");
+ $message[]= msgPool::duplicated(_("Login"));
}
/* In template mode, the uid and givenName are autogenerated... */
if (!(isset($this->config->current['DNMODE']) && $this->config->current['DNMODE'] == "uid")){
$ldap->cat($this->new_dn);
if ($ldap->count() != 0 && $this->dn != $this->new_dn && $this->dn == 'new'){
- $message[]= msgPool::duplicated("cn=".$this->cn);
+ $message[]= msgPool::duplicated(_("Name"));
}
}
}