properties.inc.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /**
  3. * QuickEmail
  4. *
  5. * Copyright 2010-2017 Bob Ray <https://bobsguides.com>
  6. * 1/16/2011
  7. *
  8. * QuickEmail is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 2 of the License, or (at your option) any
  11. * later version.
  12. *
  13. * QuickEmail is distributed in the hope that it will be useful, but WITHOUT ANY
  14. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  15. * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along with
  18. * QuickEmail; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
  19. * Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. * @package quickemail
  22. * @subpackage lexicon
  23. */
  24. /**
  25. * Properties Lexicon Topic
  26. *
  27. * @package quickemail
  28. * @subpackage lexicon
  29. * @language en
  30. */
  31. /* QuickEmail properties */
  32. $_lang['prop_quickemail.message_desc'] = 'Message for the email body; default: `Default Message`.';
  33. $_lang['prop_quickemail.subject_desc'] = 'Subject for the email message; default: `Default Subject`.';
  34. $_lang['prop_quickemail.to_desc'] = 'Address the email message will be sent to; default: emailsender System Setting.';
  35. $_lang['prop_quickemail.toName_desc'] = 'Value for message toName; default; emailsender System Setting.';
  36. $_lang['prop_quickemail.fromName_desc'] = 'Value for message fromName; default; site_name System Setting.';
  37. $_lang['prop_quickemail.emailSender_desc'] = 'Email address for from field of email; default: emailsender System Setting.';
  38. $_lang['prop_quickemail.replyTo_desc'] = 'Value for replyTo field for email; default: emailsender System Setting.';
  39. $_lang['prop_quickemail.debug_desc'] = 'Turn on debugging (still attempts to send email); default: no';
  40. $_lang['prop_quickemail.html_desc'] = 'Allow HTML in message; default: yes';
  41. $_lang['prop_quickemail.msgTpl_desc'] = 'If sent, the specified chunk will be used for the message body and the &message parameter will be ignored.';
  42. $_lang['prop_quickemail.hideOutput_desc'] = 'Stifle all output from the snippet; ignored if debug is set; default: No';
  43. $_lang['prop_quickemail.success_desc'] = 'Message to display when send is successful';
  44. $_lang['prop_quickemail.failure_desc'] = 'Message to display when send is unsuccessful';
  45. $_lang['prop_quickemail.errorHeader_desc'] = 'Header for mail error message';
  46. $_lang['prop_quickemail.smtpErrorHeader_desc'] = 'Header for smtp server error messages section';