| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * QuickEmail
- *
- * Copyright 2010-2017 Bob Ray <https://bobsguides.com>
- * 1/16/2011
- *
- * QuickEmail 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 2 of the License, or (at your option) any
- * later version.
- *
- * QuickEmail 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
- * QuickEmail; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
- * Suite 330, Boston, MA 02111-1307 USA
- *
- * @package quickemail
- * @subpackage lexicon
- */
- /**
- * Properties Lexicon Topic
- *
- * @package quickemail
- * @subpackage lexicon
- * @language en
- */
- /* QuickEmail properties */
- $_lang['prop_quickemail.message_desc'] = 'Message for the email body; default: `Default Message`.';
- $_lang['prop_quickemail.subject_desc'] = 'Subject for the email message; default: `Default Subject`.';
- $_lang['prop_quickemail.to_desc'] = 'Address the email message will be sent to; default: emailsender System Setting.';
- $_lang['prop_quickemail.toName_desc'] = 'Value for message toName; default; emailsender System Setting.';
- $_lang['prop_quickemail.fromName_desc'] = 'Value for message fromName; default; site_name System Setting.';
- $_lang['prop_quickemail.emailSender_desc'] = 'Email address for from field of email; default: emailsender System Setting.';
- $_lang['prop_quickemail.replyTo_desc'] = 'Value for replyTo field for email; default: emailsender System Setting.';
- $_lang['prop_quickemail.debug_desc'] = 'Turn on debugging (still attempts to send email); default: no';
- $_lang['prop_quickemail.html_desc'] = 'Allow HTML in message; default: yes';
- $_lang['prop_quickemail.msgTpl_desc'] = 'If sent, the specified chunk will be used for the message body and the &message parameter will be ignored.';
- $_lang['prop_quickemail.hideOutput_desc'] = 'Stifle all output from the snippet; ignored if debug is set; default: No';
- $_lang['prop_quickemail.success_desc'] = 'Message to display when send is successful';
- $_lang['prop_quickemail.failure_desc'] = 'Message to display when send is unsuccessful';
- $_lang['prop_quickemail.errorHeader_desc'] = 'Header for mail error message';
- $_lang['prop_quickemail.smtpErrorHeader_desc'] = 'Header for smtp server error messages section';
|