From 06cef644a8732d9d2d583043762fb587e21b31c9 Mon Sep 17 00:00:00 2001 From: cajus Date: Wed, 26 May 2010 11:44:18 +0000 Subject: [PATCH] Updated spelling git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18749 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_configRegistry.inc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc index 2bec73ce6..ac9ba9562 100644 --- a/gosa-core/include/class_configRegistry.inc +++ b/gosa-core/include/class_configRegistry.inc @@ -108,7 +108,7 @@ class configRegistry{ $currentVersion = _("unknown"); } $this->detectedSchemaIssues['versionMismatch'][] = - sprintf(_("%s has version %s but %s required!"), bold($oc),bold($currentVersion),bold($version)); + sprintf(_("%s has version %s but %s is required!"), bold($oc),bold($currentVersion),bold($version)); $this->schemaCheckFailed = TRUE; $failure = TRUE; } @@ -141,21 +141,20 @@ class configRegistry{ $message = ""; if(count($this->detectedSchemaIssues['missing'])){ $message.= "
". - _("The following objectClasses are missing:"). + _("The following object classes are missing:"). "
". msgPool::buildList($this->detectedSchemaIssues['missing']). "
"; } if(count($this->detectedSchemaIssues['versionMismatch'])){ $message.= "
". - _("The following objectClasses do not match the version requirements:"). + _("The following object classes are outdated:"). "
". msgPool::buildList($this->detectedSchemaIssues['versionMismatch']). "
"; } if($message != ""){ - $message = _("Some plugins are deactivated, due to unresolved LDAP schema dependencies!")."
". - $message; + $message.= "
"._("Plugins that require one or more of the object classes above will be disabled until the object classes get updated."); msg_dialog::display(_("Schema validation error"),$message, ERROR_DIALOG); } -- 2.30.2