summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8622898)
raw | patch | inline | side by side (parent: 8622898)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 7 Mar 2008 10:29:36 +0000 (10:29 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 7 Mar 2008 10:29:36 +0000 (10:29 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9428 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc | patch | blob | history |
diff --git a/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc b/gosa-plugins/addressbook/addons/addressbook/class_addressbook.inc
index eddfcdf2c6eca741c0104194c963b49976272927..24bc317e124abc388830a30f009aca016b2dd112 100644 (file)
/* must: sn, givenName */
if ($this->sn == ""){
- $message[]= _("The required field 'Name' is not set.");
+ $message[] = msgPool::required(_("Name"));
return ($message);
}
if ($this->givenName == ""){
- $message[]= _("The required field 'Given name' is not set.");
+ $message[] = msgPool::required(_("Given name"));
return ($message);
}
/* Check for valid name definition */
if (preg_match ("/[\\\\]/", $this->sn)){
- $message[]= _("The field 'Name' contains invalid characters.");
+ $message[] = msgPool::invalid(_("Name"),$this->sn,"/[\\\\]");
}
if (preg_match ("/[\\\\]/", $this->givenName)){
- $message[]= _("The field 'Given name' contains invalid characters.");
+ $message[] = msgPool::invalid(_("Given name"),$this->givenName,"/[\\\\]");
}
/* Check phone numbers */
if (!tests::is_phone_nr($this->homePhone)){
- $message[]= _("The field 'Phone' contains an invalid phone number.");
+ $message[] = msgPool::invalid(_("Phone"),$this->homePhone);
}
if (!tests::is_phone_nr($this->telephoneNumber)){
- $message[]= _("The field 'Phone' contains an invalid phone number.");
+ $message[] = msgPool::invalid(_("Telephone number"),$this->telephoneNumber);
}
if (!tests::is_phone_nr($this->facsimileTelephoneNumber)){
- $message[]= _("The field 'Fax' contains an invalid phone number.");
+ $message[] = msgPool::invalid(_("Fax"),$this->facsimileTelephoneNumber);
}
if (!tests::is_phone_nr($this->mobile)){
- $message[]= _("The field 'Mobile' contains an invalid phone number.");
+ $message[] = msgPool::invalid(_("Mobile"),$this->mobile);
}
if (!tests::is_phone_nr($this->pager)){
- $message[]= _("The field 'Pager' contains an invalid phone number.");
+ $message[] = msgPool::invalid(_("Pager"),$this->pager);
}
-
/* Check for reserved characers */
if (preg_match ('/[,+"<>;]/', $this->givenName)){
- $message[]= _("The field 'Given name' contains invalid characters.");
+ $message[] = msgPool::invalid(_("Given name"),$this->givenName,'/[,+"<>;]/');
}
if (preg_match ('/[,+"<>;]/', $this->sn)){
- $message[]= _("The field 'Name' contains invalid characters.");
+ $message[] = msgPool::invalid(_("Name"),$this->sn,'/[,+"<>;]/');
}
/* Check mail */
if (!tests::is_email($this->mail)){
- $message[]= _("Please enter a valid email address in 'Primary address' field.");
+ $message[] = msgPool::invalid(_("Email"),"","","example@your-domain.com");
}
/* Assemble cn/dn */