From: hickert Date: Fri, 14 Mar 2008 09:38:50 +0000 (+0000) Subject: msgPool X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b6c63d39bb058a81d97a1575179bee6e8b9f5af4;p=gosa.git msgPool git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9807 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/admin/systems/services/ldap/class_goLdapServer.inc b/gosa-plugins/goto/admin/systems/services/ldap/class_goLdapServer.inc index fb9ce3338..bc4d8765b 100644 --- a/gosa-plugins/goto/admin/systems/services/ldap/class_goLdapServer.inc +++ b/gosa-plugins/goto/admin/systems/services/ldap/class_goLdapServer.inc @@ -51,7 +51,7 @@ class goLdapServer extends goService{ function getListEntry() { $fields = goService::getListEntry(); - $fields['Message'] = _("LDAP Service"); + $fields['Message'] = _("LDAP service"); $fields['AllowEdit'] = true; return($fields); } @@ -62,10 +62,10 @@ class goLdapServer extends goService{ { $message = plugin::check(); if(empty($this->goLdapBase)){ - $message[] = _("The given base is empty or contains invalid characters."); + $message[] = msgPool::required(_("Base")); } if(!preg_match("/^ldap[si]?:\/\/[^\/]+\/.+$/", $this->goLdapBase)){ - $message[] = _("Not in URI format."); + $message[] = msgPool::invalid(_("Base"),"","","ldap[si]://base"); } return($message); }