From 705d2746fd894021f384e500a28b18922d254e4b Mon Sep 17 00:00:00 2001 From: fantu Date: Sun, 16 Nov 2008 13:17:28 +0000 Subject: [PATCH] - Add other string to multilanguage system in monitor module - Update italian language --- TODO.txt | 5 +++++ interface/web/monitor/lib/lang/en.lng | 3 +++ interface/web/monitor/lib/lang/it.lng | 3 +++ interface/web/monitor/show_data.php | 12 ++++++------ 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/TODO.txt b/TODO.txt index a78d5aa9d9..00b84a305d 100644 --- a/TODO.txt +++ b/TODO.txt @@ -88,3 +88,8 @@ General tasks - 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) + diff --git a/interface/web/monitor/lib/lang/en.lng b/interface/web/monitor/lib/lang/en.lng index 7a12c7de9e..3846059fdf 100644 --- a/interface/web/monitor/lib/lang/en.lng +++ b/interface/web/monitor/lib/lang/en.lng @@ -28,5 +28,8 @@ $wb['Monitoring'] = 'Monitoring'; $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'; ?> \ No newline at end of file diff --git a/interface/web/monitor/lib/lang/it.lng b/interface/web/monitor/lib/lang/it.lng index 0e93d7c688..eb12f34c99 100644 --- a/interface/web/monitor/lib/lang/it.lng +++ b/interface/web/monitor/lib/lang/it.lng @@ -27,4 +27,7 @@ $wb['Monitoring'] = 'Monitoraggio'; $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'; ?> diff --git a/interface/web/monitor/show_data.php b/interface/web/monitor/show_data.php index 845b0df2b2..bee721be4a 100644 --- a/interface/web/monitor/show_data.php +++ b/interface/web/monitor/show_data.php @@ -52,31 +52,31 @@ switch($dataType) { 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 @@ switch($dataType) { $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: -- GitLab