additional_plugins/serendipity_event_smtpmail/lang_en.inc.php
2011-12-13 12:29:05 +01:00

20 lines
1.2 KiB
PHP

<?php
@define('PLUGIN_EVENT_SMTPMAIL_NAME', 'SMTP Mail');
@define('PLUGIN_EVENT_SMTPMAIL_DESC', 'Use a SMTP server to send your mails');
@define('PLUGIN_EVENT_SMTPMAIL_SMTP_SERVER', 'Host of SMTP server');
@define('PLUGIN_EVENT_SMTPMAIL_SMTP_SERVER_DESC', '');
@define('PLUGIN_EVENT_SMTPMAIL_SMTP_PORT', 'Port of SMTP server');
@define('PLUGIN_EVENT_SMTPMAIL_SMTP_PORT_DESC', '(default: 25)');
@define('PLUGIN_EVENT_SMTPMAIL_POP3_SERVER', 'Host of POP3 server');
@define('PLUGIN_EVENT_SMTPMAIL_POP3_SERVER_DESC', 'Only needed if you use "POP3 before SMTP".');
@define('PLUGIN_EVENT_SMTPMAIL_POP3_PORT', 'Port of POP3 Servers');
@define('PLUGIN_EVENT_SMTPMAIL_POP3_PORT_DESC', 'Only needed if you use "POP3 before SMTP". (default: 110)');
@define('PLUGIN_EVENT_SMTPMAIL_AUTH', 'Method of authentification');
@define('PLUGIN_EVENT_SMTPMAIL_AUTH_DESC', '');
@define('PLUGIN_EVENT_SMTPMAIL_SECURE', 'Use secure connection');
@define('PLUGIN_EVENT_SMTPMAIL_SECURE_DESC', 'Some SMTP Server need a secure connection.');
@define('PLUGIN_EVENT_SMTPMAIL_USER', 'Username');
@define('PLUGIN_EVENT_SMTPMAIL_USER_DESC', '');
@define('PLUGIN_EVENT_SMTPMAIL_PASSWD', 'Pasword');
@define('PLUGIN_EVENT_SMTPMAIL_PASSWD_DESC', '');
?>