summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cc041a7)
raw | patch | inline | side by side (parent: cc041a7)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 26 May 2010 11:44:18 +0000 (11:44 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 26 May 2010 11:44:18 +0000 (11:44 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18749 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_configRegistry.inc | patch | blob | history |
diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc
index 2bec73ce6137ef5c7998852be9bba2f856322ba3..ac9ba95628680c3f04419f6fcd80ba6c475c83cc 100644 (file)
$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;
}
$message = "";
if(count($this->detectedSchemaIssues['missing'])){
$message.= "<br>".
- _("The following objectClasses are missing:").
+ _("The following object classes are missing:").
"<div class='scrollContainer' style='height:100px'>".
msgPool::buildList($this->detectedSchemaIssues['missing']).
"</div>";
}
if(count($this->detectedSchemaIssues['versionMismatch'])){
$message.= "<br>".
- _("The following objectClasses do not match the version requirements:").
+ _("The following object classes are outdated:").
"<div class='scrollContainer' style='height:100px'>".
msgPool::buildList($this->detectedSchemaIssues['versionMismatch']).
"</div>";
}
if($message != ""){
- $message = _("Some plugins are deactivated, due to unresolved LDAP schema dependencies!")."<br>".
- $message;
+ $message.= "<br>"._("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);
}