<?php
/**
 *
 * @category        module
 * @package         Form
 * @author          WebsiteBaker Project
 * @copyright       WebsiteBaker Org. e.V.
 * @link            http://websitebaker.org/
 * @license         http://www.gnu.org/licenses/gpl.html
 * @platform        WebsiteBaker 2.8.3
 * @requirements    PHP 5.3.6 and higher
 * @version         $Id: EN.php 2 2017-07-02 15:14:29Z Manuela $
 * @filesource      $HeadURL: svn://isteam.dynxs.de/wb/2.10.x/trunk/modules/form/languages/EN.php $
 * @lastmodified    $Date: 2017-07-02 17:14:29 +0200 (Sun, 02 Jul 2017) $
 * @description
 */

// Must include code to stop this file being access directly
if(!defined('WB_URL')) {
    require_once(dirname(dirname(dirname(dirname(__FILE__)))).'/framework/globalExceptionHandler.php');
    throw new IllegalFileException();
}
/* -------------------------------------------------------- */

//Modul Description
$module_description = 'This module allows you to create customised online forms, such as a feedback form. Thank-you to Rudolph Lartey who help enhance this module, providing code for extra field types, etc.';

//Variables for the  backend
$MOD_FORM['SETTINGS']              = 'Form Settings';
$MOD_FORM['CONFIRM']               = 'Confirmation';
$MOD_FORM['SUBMIT_FORM']           = 'Submit';
$MOD_FORM['EMAIL_SUBJECT']         = 'You have received a form via {{WEBSITE_TITLE}}';
$MOD_FORM['SUCCESS_EMAIL_SUBJECT'] = 'Your form has been submitted to {{WEBSITE_TITLE}}';

$MOD_FORM['SUCCESS_EMAIL_TEXT']    = 'Thank you for sending your message to {{WEBSITE_TITLE}}! '.PHP_EOL;
$MOD_FORM['SUCCESS_EMAIL_TEXT']   .= 'We will be going to contact you as soon as possible';

$MOD_FORM['SUCCESS_EMAIL_TEXT_GENERATED'] = "\n"
."**************************************************************************************\n"
."This is an automatically generated e-mail. The sender address of this e-mail\n"
."is furnished only for dispatch, not to receive messages!\n"
."If you have received this e-mail by mistake, please contact us and delete this message\n"
."**************************************************************************************\n";

$MOD_FORM['REPLYTO'] = 'E-Mail reply to';
$MOD_FORM['FROM']    = 'Sender';
$MOD_FORM['TO']      = 'Recipient';

$MOD_FORM['EXCESS_SUBMISSIONS'] = 'Sorry, this form has exceeded the maximum hourly submissions. Please retry in the next hour.';
$MOD_FORM['INCORRECT_CAPTCHA']  = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email to the <a href="mailto:{{webmaster_email}}">webmaster</a>';

$MOD_FORM['PRINT']     = 'Sending an e-mail confirmation is not possible. ';
$MOD_FORM['PRINT']     = 'Dispatch to unchecked e-mail addresses is not possible! '.PHP_EOL;
$MOD_FORM['PRINT']    .= 'Please print this page, if a copy is desired for your records.';

$MOD_FORM['RECIPIENT'] = 'E-mail confirmations will only be sent to registered users!';

$MOD_FORM['ERROR']           = 'E-Mail could not send!!';
$MOD_FORM['SPAM']            = 'Caution! Answering an unchecked email can be perceived as spamming and entail the risk to get a cease-and-desist warning! ';
$MOD_FORM['REQUIRED_FIELDS'] = 'You must enter details for the following fields';

$TEXT['GUEST']       = 'Guest';
$TEXT['UNKNOWN']     = 'unkown';
$TEXT['PRINT_PAGE']  = 'Print page';
$TEXT['REQUIRED_JS'] = 'Required Javascript';
$TEXT['SUBMISSIONS_PERPAGE'] = 'Show submissions rows per page';
