1<?php
2/**
3 * English language file
4 *
5 * @license GNU General Public License 3 <http://www.gnu.org/licenses/>
6 * @author Bob Baddeley <bob@bobbaddeley.com>
7 * @author Marvin Thomas Rabe <mrabe@marvinrabe.de>
8 */
9
10// settings must be present and set appropriately for the language
11$lang['encoding']   = 'utf-8';
12$lang['direction']  = 'ltr';
13
14// for admin plugins, the menu prompt to be displayed in the admin menu
15// if set here, the plugin doesn't need to override the getMenuText() method
16$lang['menu'] = 'Modern Contact Form';
17
18// custom language strings for the plugin
19$lang["field"] = 'Field';
20$lang["value"] = 'Value';
21$lang["name"] = 'Your Name';
22$lang["email"] = 'Your Email';
23$lang["subject"] = 'Subject';
24$lang["content"] = 'Message';
25$lang["contact"] = 'Submit';
26
27// error messages
28$lang["error"]["unknown"] = 'Mail not sent. Please contact the administrator.';
29$lang["error"]["name"] = 'Please enter a name. Should be at least 2 characters.';
30$lang["error"]["email"] = 'Please enter your email address. It must be valid.';
31$lang["error"]["content"] = 'Please add a comment. Should be at least 10 characters.';
32$lang["error"]["captcha"] = 'Mail not sent. You could not be verified as a human.';
33$lang["error"]["valid_name"] = 'Name has invalid input.';
34$lang["error"]["valid_email"] = 'Email address has invalid input.';
35$lang["error"]["valid_subject"] = 'Subject has invalid input.';
36$lang["error"]["valid_to"] = 'Destination address has invalid input.';
37$lang["error"]["valid_content"] = 'Comment has invalid input.';
38$lang["success"] = 'Mail sent successfully.';
39