Skip to content
Snippets Groups Projects
Commit cbff9d43 authored by vogelor's avatar vogelor
Browse files

Monitor: Changed the message of the not supported RAIDs

parent f62c63c8
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ $wb['monitor_logs_ispccron_txt'] = 'ISPConfig Cron - Protokoll'; ...@@ -63,7 +63,7 @@ $wb['monitor_logs_ispccron_txt'] = 'ISPConfig Cron - Protokoll';
$wb['monitor_logs_freshclam_txt'] = 'Freshclam - Protokoll'; $wb['monitor_logs_freshclam_txt'] = 'Freshclam - Protokoll';
$wb['monitor_logs_clamav_txt'] = 'Clamav - Protokoll'; $wb['monitor_logs_clamav_txt'] = 'Clamav - Protokoll';
$wb['monitor_logs_ispc_txt'] = 'ISPConfig - Protokoll'; $wb['monitor_logs_ispc_txt'] = 'ISPConfig - Protokoll';
$wb['monitor_nomdadm_txt'] = 'mdadm ist auf ihrem Server nicht installiert oder der Server besitzt kein unterstütztes RAID'; $wb['monitor_nosupportedraid1_txt'] = "Zum jetzigen Zeitpunkt unterstützen wir 'mdadm' und 'mpt-status',<br>um den RAID-Status zu ermitteln.<br>Auf Ihrem Server kann keines dieser Programme gefunden werden.<br><br>Dies bedeutet, Ihr Server wird zum jetzigen Zeitpunkt nicht unterstützt.";
$wb['monitor_norkhunter_txt'] = 'RKHunter ist nicht installiert, deshalb gibt es keine Protokolldatei'; $wb['monitor_norkhunter_txt'] = 'RKHunter ist nicht installiert, deshalb gibt es keine Protokolldatei';
$wb['monitor_serverstate_server_txt'] = 'Server'; $wb['monitor_serverstate_server_txt'] = 'Server';
$wb['monitor_serverstate_state_txt'] = 'Status'; $wb['monitor_serverstate_state_txt'] = 'Status';
......
...@@ -62,7 +62,7 @@ $wb['monitor_logs_ispccron_txt'] = 'ISPConfig Cron - Log'; ...@@ -62,7 +62,7 @@ $wb['monitor_logs_ispccron_txt'] = 'ISPConfig Cron - Log';
$wb['monitor_logs_freshclam_txt'] = 'Freshclam - Log'; $wb['monitor_logs_freshclam_txt'] = 'Freshclam - Log';
$wb['monitor_logs_clamav_txt'] = 'ClamAV - Log'; $wb['monitor_logs_clamav_txt'] = 'ClamAV - Log';
$wb['monitor_logs_ispc_txt'] = 'ISPConfig - Log'; $wb['monitor_logs_ispc_txt'] = 'ISPConfig - Log';
$wb['monitor_nomdadm_txt'] = 'mdadm is not installed or your Server has no supported RAID'; $wb['monitor_nosupportedraid1_txt'] = "At the moment, we support 'mdadm' or 'mpt-status' for monitoring the RAID.<br>We can't find any of them at your server.<br><br>This means we can not support your RAID yet.";
$wb['monitor_norkhunter_txt'] = 'RKHunter is not installed, so there is no log data'; $wb['monitor_norkhunter_txt'] = 'RKHunter is not installed, so there is no log data';
$wb['monitor_serverstate_server_txt'] = 'Server'; $wb['monitor_serverstate_server_txt'] = 'Server';
$wb['monitor_serverstate_state_txt'] = 'State'; $wb['monitor_serverstate_state_txt'] = 'State';
......
...@@ -367,10 +367,10 @@ function showRaidState() { ...@@ -367,10 +367,10 @@ function showRaidState() {
/* /*
* First, we have to detect, if there is any monitoring-data. * First, we have to detect, if there is any monitoring-data.
* If not (because the destribution is not supported) show this. * If not (because the RAID-Controler is not supported yet) show this.
*/ */
if ($record['state'] == 'no_state') { if ($record['state'] == 'no_state') {
$html .= '<p>'.$app->lng("monitor_nomdadm_txt").'</p>'; $html .= '<p>'.$app->lng("monitor_nosupportedraid1_txt").'</p>';
} }
else { else {
$data = unserialize($record['data']); $data = unserialize($record['data']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment