Project

General

Profile

1
<?php
2
/**
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: NL.php 1659 2012-04-06 11:59:54Z Luisehahne $
13
 * @filesource		$HeadURL: svn://isteam.dynxs.de/wb_svn/wb280/branches/2.8.x/wb/modules/form/view.php $
14
 * @lastmodified    $Date: 2011-12-31 16:03:03 +0100 (Sa, 31. Dez 2011) $
15
 * @description
16
 */
17

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

    
25
//Modul Description
26
$module_description = 'Deze module makt het mogelijk om aangepaste online formulieren te maken zoals een feedback formulier. Met dank aan Rudolph Lartey voor het aanpassen van deze module.';
27

    
28
//Variables for the  backend
29
$MOD_FORM['SETTINGS'] = 'Form Settings';
30
$MOD_FORM['CONFIRM'] = 'Confirmation';
31
$MOD_FORM['SUBMIT_FORM'] = 'Submit';
32
$MOD_FORM['EMAIL_SUBJECT'] = 'Delivering a message from {{WEBSITE_TITLE}}';
33
$MOD_FORM['SUCCESS_EMAIL_SUBJECT'] = 'You have submitted a message by {{WEBSITE_TITLE}}';
34

    
35
$MOD_FORM['SUCCESS_EMAIL_TEXT'] = 'Thank you for sending your message to {{WEBSITE_TITLE}}';
36
$MOD_FORM['SUCCESS_EMAIL_TEXT_GENERATED'] = "\n\n\n"
37
."****************************************************************************\n"
38
."This is an automatically generated e-mail. The sender\'s address of this e-mail\n"
39
."is furnished only for dispatch, not to receive messages!\n"
40
."If you have received this e-mail by mistake, please contact us and delete this message\n"
41
."****************************************************************************\n";
42

    
43
$MOD_FORM['FROM'] = 'Sender';
44
$MOD_FORM['TO'] = 'Recipient';
45

    
46
$MOD_FORM['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.';
47
$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>';
48
$MOD_FORM['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
49
$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!';
50
$MOD_FORM['ERROR'] = 'E-Mail could not send!!';
(5-5/8)