. * * @package phpservermon * @author Pepijn Over * @copyright Copyright (c) 2008-2014 Pepijn Over * @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3 * @version Release: @package_version@ * @link http://phpservermon.neanderthal-technology.com/ **/ $sm_lang = array( 'system' => array( 'title' => 'Server Monitor', 'servers' => 'servers', 'users' => 'users', 'log' => 'log', 'update' => 'update', 'config' => 'config', 'help' => 'help', '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 http://phpservermon.sourceforge.net.', ), 'users' => array( 'user' => 'user', 'name' => 'Name', 'mobile' => 'Mobile', 'email' => 'Email', 'updated' => 'User updated.', 'inserted' => 'User added.', ), 'log' => array( 'title' => 'Log entries', 'type' => 'Type', 'status' => 'status', 'email' => 'email', 'sms' => 'sms', ), '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', 'french' => 'French', 'german' => 'German', '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', 'sms_gateway_mollie' => 'Mollie', 'sms_gateway_spryng' => 'Spryng', 'sms_gateway_inetworx' => 'Inetworx', 'sms_gateway_clickatell' => 'Clickatell', 'sms_gateway_username' => 'Gateway username', 'sms_gateway_password' => 'Gateway password', 'sms_from' => 'Sender\'s phone number', 'alert_type' => 'Select when you\'d like to be notified.
'. '
'. '1) Status change
'. 'You will receive a notifcation when a server has a change in status. So from online -> offline or offline -> online.
'. '2) Offline
'. '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.
'. '3) Always
'. 'You will receive a notification every time the script runs and a site is down, even if the site has been '. 'offline for hours.'. '
', 'alert_type_status' => 'Status change', 'alert_type_offline' => 'Offline', 'alert_type_always' => 'Always', 'log_status' => 'Log status
If log status is set to TRUE, the monitor will log the event whenever the Notification settings are passed
', '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', 'auto_refresh_servers' => 'Auto-refresh servers page
'. '
'. 'Time in seconds, if 0 the page won\'t refresh.'. '
', ), // for newlines in the email messages use
'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:

Server: %LABEL%
IP: %IP%
Port: %PORT%
Error: %ERROR%
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:

Server: %LABEL%
IP: %IP%
Port: %PORT%
Date: %DATE%", ), ); ?>