fantu
2008-11-16 705d2746fd894021f384e500a28b18922d254e4b
- Add other string to multilanguage system in monitor module
- Update italian language
4 files modified
23 ■■■■ changed files
TODO.txt 5 ●●●●● patch | view | raw | blame | history
interface/web/monitor/lib/lang/en.lng 3 ●●●●● patch | view | raw | blame | history
interface/web/monitor/lib/lang/it.lng 3 ●●●●● patch | view | raw | blame | history
interface/web/monitor/show_data.php 12 ●●●● patch | view | raw | blame | history
TODO.txt
@@ -88,3 +88,8 @@
- Add, extend or modify comments in PEAR syntax so that they can be read with phpdocumentor.
Language editor
--------------------------------------
- Merge: remove the line how exists in language to merge but not in main (removed in main because not use or change for fix)
interface/web/monitor/lib/lang/en.lng
@@ -28,5 +28,8 @@
$wb['Server to Monitor'] = 'Server to Monitor';
$wb['System-Information'] = 'System-Information';
$wb['Logfiles'] = 'Logfiles';
$wb['CPU info'] = 'CPU info';
$wb['Status of services'] = 'Status of services';
$wb['System Monitor'] = 'System Monitor';
?>
interface/web/monitor/lib/lang/it.lng
@@ -27,4 +27,7 @@
$wb['Server to Monitor'] = 'Server da monitorare';
$wb['System-Information'] = 'Informazioni di sistema';
$wb['Logfiles'] = 'File dei log';
$wb['CPU info'] = 'Informazioni CPU';
$wb['Status of services'] = 'Stato dei servizi';
$wb['System Monitor'] = 'Monitoraggio del sistema';
?>
interface/web/monitor/show_data.php
@@ -52,31 +52,31 @@
    case 'server_load':
        $template = 'templates/show_data.htm';
        $output .= showServerLoad();
        $title = 'Server Load (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $title = $app->lng("Server Load").' (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $description = '';
        break;
    case 'disk_usage':
        $template = 'templates/show_data.htm';
        $output .= showDiskUsage();
        $title = 'Disk usage (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $title = $app->lng("Disk usage").' (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $description = '';
        break;
    case 'mem_usage':
        $template = 'templates/show_data.htm';
        $output .= showMemUsage();
        $title = 'Memory usage (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $title = $app->lng("Memory usage").' (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $description = '';
        break;
    case 'cpu_info':
        $template = 'templates/show_data.htm';
        $output .= showCpuInfo();
        $title = 'CPU info (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $title = $app->lng("CPU info").' (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $description = '';
        break;
    case 'services':
        $template = 'templates/show_data.htm';
        $output .= showServices();
        $title = 'Status of services (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $title = $app->lng("Status of services").' (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $description = '';
        break;
    case 'overview':
@@ -84,7 +84,7 @@
        $output .= showServerLoad();
        $output .= ' '. showDiskUsage();
        $output .= ' '.showServices();
        $title = 'System Monitor (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $title = $app->lng("System Monitor").' (Server: ' . $_SESSION['monitor']['server_name'] . ')';
        $description = '';
        break;
    default: