1<?php
2/**
3 * english language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Bob Baddeley <bob@bobbaddeley.com>
7 */
8
9// settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// for admin plugins, the menu prompt to be displayed in the admin menu
14// if set here, the plugin doesn't need to override the getMenuText() method
15$lang['menu'] = 'Contact Form';
16
17// custom language strings for the plugin
18$lang["field"] = 'Field';
19$lang["value"] = 'Value';
20$lang["name"] = 'Your Name';
21$lang["email"] = 'Your Email';
22$lang["subject"] = 'Subject';
23$lang["content"] = 'Message';
24$lang["verify"] = 'Enter \'HUMAN\'';
25$lang["contact"] = 'Submit';
26
27// error messages
28$lang["error"] = 'An unknown error occurred.';
29
30//Setup VIM: ex: et ts=2 enc=utf-8 :
31?>