Project

General

Profile

1 765 thorn
<?php
2 1573 Luisehahne
/**
3
 *
4
 * @category        module
5
 * @package         Form
6
 * @author          WebsiteBaker Project
7
 * @copyright       2009-2011, Website Baker Org. e.V.
8
 * @link			http://www.websitebaker2.org/
9
 * @license         http://www.gnu.org/licenses/gpl.html
10
 * @platform        WebsiteBaker 2.8.x
11
 * @requirements    PHP 5.2.2 and higher
12
 * @version         $Id$
13 2070 darkviper
 * @filesource		$HeadURL$
14
 * @lastmodified    $Date$
15 1573 Luisehahne
 * @description
16
 */
17 765 thorn
18 1573 Luisehahne
// Must include code to stop this file being access directly
19 1655 Luisehahne
if(!defined('WB_URL')) {
20
	require_once(dirname(dirname(dirname(dirname(__FILE__)))).'/framework/globalExceptionHandler.php');
21
	throw new IllegalFileException();
22 1573 Luisehahne
}
23
/* -------------------------------------------------------- */
24 765 thorn
25
//Modul Description
26
27
//Variables for the  backend
28 1553 Luisehahne
$MOD_FORM['SETTINGS'] = 'Form Settings';
29
$MOD_FORM['CONFIRM'] = 'Confirmation';
30
$MOD_FORM['SUBMIT_FORM'] = 'Submit';
31 1655 Luisehahne
$MOD_FORM['EMAIL_SUBJECT'] = 'Delivering a message from {{WEBSITE_TITLE}}';
32
$MOD_FORM['SUCCESS_EMAIL_SUBJECT'] = 'You have submitted a message by {{WEBSITE_TITLE}}';
33 765 thorn
34 1714 Luisehahne
$MOD_FORM['SUCCESS_EMAIL_TEXT'] = 'Thank you for sending your message to {{WEBSITE_TITLE}}! ';
35
$MOD_FORM['SUCCESS_EMAIL_TEXT'] .= 'We will be going to contact you as soon as possible';
36
37 1655 Luisehahne
$MOD_FORM['SUCCESS_EMAIL_TEXT_GENERATED'] = "\n\n\n"
38
."****************************************************************************\n"
39
."This is an automatically generated e-mail. The sender\'s address of this e-mail\n"
40
."is furnished only for dispatch, not to receive messages!\n"
41
."If you have received this e-mail by mistake, please contact us and delete this message\n"
42
."****************************************************************************\n";
43 1573 Luisehahne
44 1714 Luisehahne
$MOD_FORM['REPLYTO'] = 'E-Mail reply to';
45 1573 Luisehahne
$MOD_FORM['FROM'] = 'Sender';
46
$MOD_FORM['TO'] = 'Recipient';
47
48
$MOD_FORM['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.';
49
$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>';
50 1714 Luisehahne
51
$MOD_FORM['PRINT']  = 'E-mail confirmation occurs only to valid e-mail address of the user announced in each case! Dispatch to unchecked addresses is not possible! ';
52
$MOD_FORM['PRINT'] .= 'Please print this message!';
53
54 1573 Luisehahne
$MOD_FORM['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
55 1659 Luisehahne
$MOD_FORM['RECIPIENT'] = 'E-mail confirmation occurs only to valid e-mail address of the user announced in each case! Dispatch to unchecked addresses is not possible!';
56 1655 Luisehahne
$MOD_FORM['ERROR'] = 'E-Mail could not send!!';
57 1801 Luisehahne
$MOD_FORM['SPAM'] = 'Caution! Answering an unchecked email can be perceived as spamming and entail the risk of receiving a cease-and-desist letter! ';
58 1714 Luisehahne
59
$TEXT['GUEST'] = 'Guest';
60 1804 Luisehahne
$TEXT['UNKNOWN'] = 'unkown';
61 1714 Luisehahne
$TEXT['PRINT_PAGE'] = 'Print page';
62
$TEXT['REQUIRED_JS'] = 'Required Javascript';
63
$TEXT['SUBMISSIONS_PERPAGE'] = 'Show submissions rows per page';