2014-01-07 19:24:48 +00:00
< ? php
2014-01-07 22:32:57 +00:00
/**
* PHP Server Monitor
* Monitor your servers and websites .
2014-01-07 19:24:48 +00:00
*
* This file is part of PHP Server Monitor .
* PHP Server Monitor is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* PHP Server Monitor is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with PHP Server Monitor . If not , see < http :// www . gnu . org / licenses />.
2014-01-07 22:32:57 +00:00
*
* @ package phpservermon
* @ author Pepijn Over < pep @ neanderthal - technology . com >
* @ copyright Copyright ( c ) 2008 - 2014 Pepijn Over < pep @ neanderthal - technology . com >
* @ license http :// www . gnu . org / licenses / gpl . txt GNU GPL v3
* @ version Release : @ package_version @
* @ link http :// phpservermon . neanderthal - technology . com /
**/
2014-01-07 19:24:48 +00:00
$sm_lang = array (
'system' => array (
'title' => 'Server Monitor' ,
2014-01-10 10:03:07 +00:00
'servers' => 'Servers' ,
'users' => 'Users' ,
'log' => 'Log' ,
'update' => 'Update' ,
'config' => 'Config' ,
'help' => 'Help' ,
2014-01-07 19:24:48 +00:00
'action' => 'Action' ,
'save' => 'Save' ,
'edit' => 'Edit' ,
'delete' => 'Delete' ,
'deleted' => 'Record has been deleted' ,
'date' => 'Date' ,
'message' => 'Message' ,
'yes' => 'Yes' ,
'no' => 'No' ,
'edit' => 'Edit' ,
'insert' => 'Insert' ,
'add_new' => 'Add new?' ,
'update_available' => 'A new update is available from <a href="http://phpservermon.sourceforge.net" target="_blank">http://phpservermon.sourceforge.net</a>.' ,
2014-01-10 12:09:12 +00:00
'back_to_top' => 'Back to top' ,
2014-01-07 19:24:48 +00:00
),
'users' => array (
'user' => 'user' ,
'name' => 'Name' ,
'mobile' => 'Mobile' ,
'email' => 'Email' ,
'updated' => 'User updated.' ,
'inserted' => 'User added.' ,
),
'log' => array (
'title' => 'Log entries' ,
'type' => 'Type' ,
2014-01-10 11:45:20 +00:00
'status' => 'Status' ,
'email' => 'Email' ,
'sms' => 'SMS' ,
2014-01-07 19:24:48 +00:00
),
'servers' => array (
'server' => 'Server' ,
'label' => 'Label' ,
'domain' => 'Domain/IP' ,
'port' => 'Port' ,
'type' => 'Type' ,
'last_check' => 'Last check' ,
'last_online' => 'Last online' ,
'monitoring' => 'Monitoring' ,
'send_email' => 'Send Email' ,
'send_sms' => 'Send SMS' ,
'updated' => 'Server updated.' ,
'inserted' => 'Server added.' ,
'rtime' => 'Response time' ,
),
'config' => array (
'general' => 'General' ,
'language' => 'Language' ,
'show_update' => 'Check for new updates weekly?' ,
'english' => 'English' ,
'dutch' => 'Dutch' ,
2014-01-07 19:27:21 +00:00
'french' => 'French' ,
'german' => 'German' ,
2014-01-07 19:24:48 +00:00
'email_status' => 'Allow sending email?' ,
'email_from_email' => 'Email from address' ,
'email_from_name' => 'Email from name' ,
'sms_status' => 'Allow sending text messages?' ,
'sms_gateway' => 'Gateway to use for sending messages' ,
2014-01-10 10:32:15 +00:00
'sms_gateway_mosms' => 'Mosms' ,
2014-01-07 19:24:48 +00:00
'sms_gateway_mollie' => 'Mollie' ,
'sms_gateway_spryng' => 'Spryng' ,
'sms_gateway_inetworx' => 'Inetworx' ,
2014-01-07 19:27:21 +00:00
'sms_gateway_clickatell' => 'Clickatell' ,
2014-01-07 19:24:48 +00:00
'sms_gateway_username' => 'Gateway username' ,
'sms_gateway_password' => 'Gateway password' ,
'sms_from' => 'Sender\'s phone number' ,
2014-01-10 10:03:07 +00:00
'alert_type' => 'Select when you\'d like to be notified.<br/>' ,
'alert_type_description' => '<b>Status change:</b> ' .
'You will receive a notifcation when a server has a change in status. So from online -> offline or offline -> online.<br/>' .
'<br /><b>Offline:</b> ' .
'You will receive a notification when a server goes offline for the *FIRST TIME ONLY*. For example, ' .
'your cronjob is every 15 mins and your server goes down at 1 am and stays down till 6 am. ' .
'You will get 1 notification at 1 am and thats it.<br/>' .
'<br><b>Always:</b> ' .
'You will receive a notification every time the script runs and a site is down, even if the site has been ' .
'offline for hours.' ,
2014-01-07 19:24:48 +00:00
'alert_type_status' => 'Status change' ,
'alert_type_offline' => 'Offline' ,
'alert_type_always' => 'Always' ,
'log_status' => 'Log status<br/><div class="small">If log status is set to TRUE, the monitor will log the event whenever the Notification settings are passed</div>' ,
'log_email' => 'Log emails sent by the script?' ,
'log_sms' => 'Log text messages sent by the script?' ,
'updated' => 'The configuration has been updated.' ,
'settings_email' => 'Email settings' ,
'settings_sms' => 'Text message settings' ,
'settings_notification' => 'Notification settings' ,
'settings_log' => 'Log settings' ,
2014-01-07 19:27:21 +00:00
'auto_refresh_servers' =>
'Auto-refresh servers page<br/>' .
'<div class="small">' .
'Time in seconds, if 0 the page won\'t refresh.' .
'</div>' ,
2014-01-07 19:24:48 +00:00
),
// for newlines in the email messages use <br/>
'notifications' => array (
'off_sms' => 'Server \'%LABEL%\' is DOWN: ip=%IP%, port=%PORT%. Error=%ERROR%' ,
'off_email_subject' => 'IMPORTANT: Server \'%LABEL%\' is DOWN' ,
'off_email_body' => " Failed to connect to the following server:<br/><br/>Server: %LABEL%<br/>IP: %IP%<br/>Port: %PORT%<br/>Error: %ERROR%<br/>Date: %DATE% " ,
'on_sms' => 'Server \'%LABEL%\' is RUNNING: ip=%IP%, port=%PORT%' ,
'on_email_subject' => 'IMPORTANT: Server \'%LABEL%\' is RUNNING' ,
'on_email_body' => " Server '%LABEL%' is running again:<br/><br/>Server: %LABEL%<br/>IP: %IP%<br/>Port: %PORT%<br/>Date: %DATE% " ,
),
);
?>