Skip to content

Commit cbff9d4

Browse files
author
vogelor
committed
Monitor: Changed the message of the not supported RAIDs
1 parent f62c63c commit cbff9d4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

interface/web/monitor/lib/lang/de.lng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $wb['monitor_logs_ispccron_txt'] = 'ISPConfig Cron - Protokoll';
6363
$wb['monitor_logs_freshclam_txt'] = 'Freshclam - Protokoll';
6464
$wb['monitor_logs_clamav_txt'] = 'Clamav - Protokoll';
6565
$wb['monitor_logs_ispc_txt'] = 'ISPConfig - Protokoll';
66-
$wb['monitor_nomdadm_txt'] = 'mdadm ist auf ihrem Server nicht installiert oder der Server besitzt kein unterstütztes RAID';
66+
$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.";
6767
$wb['monitor_norkhunter_txt'] = 'RKHunter ist nicht installiert, deshalb gibt es keine Protokolldatei';
6868
$wb['monitor_serverstate_server_txt'] = 'Server';
6969
$wb['monitor_serverstate_state_txt'] = 'Status';

interface/web/monitor/lib/lang/en.lng

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $wb['monitor_logs_ispccron_txt'] = 'ISPConfig Cron - Log';
6262
$wb['monitor_logs_freshclam_txt'] = 'Freshclam - Log';
6363
$wb['monitor_logs_clamav_txt'] = 'ClamAV - Log';
6464
$wb['monitor_logs_ispc_txt'] = 'ISPConfig - Log';
65-
$wb['monitor_nomdadm_txt'] = 'mdadm is not installed or your Server has no supported RAID';
65+
$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.";
6666
$wb['monitor_norkhunter_txt'] = 'RKHunter is not installed, so there is no log data';
6767
$wb['monitor_serverstate_server_txt'] = 'Server';
6868
$wb['monitor_serverstate_state_txt'] = 'State';

interface/web/monitor/tools.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,10 +367,10 @@ function showRaidState() {
367367

368368
/*
369369
* First, we have to detect, if there is any monitoring-data.
370-
* If not (because the destribution is not supported) show this.
370+
* If not (because the RAID-Controler is not supported yet) show this.
371371
*/
372372
if ($record['state'] == 'no_state') {
373-
$html .= '<p>'.$app->lng("monitor_nomdadm_txt").'</p>';
373+
$html .= '<p>'.$app->lng("monitor_nosupportedraid1_txt").'</p>';
374374
}
375375
else {
376376
$data = unserialize($record['data']);

0 commit comments

Comments
 (0)