source: extensions/ContactForm/language/en_UK/plugin.lang.php @ 3748

Last change on this file since 3748 was 3748, checked in by Criss, 15 years ago

Add configuration option to define template variable or not

File size: 3.3 KB
Line 
1<?php
2/* $Id: plugin.lang.php,v 1.7 2009/08/18 14:10:09 Criss Exp $ */
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4global $lang;
5
6$lang['cf_plugin_name'] = 'Contact Form';
7$lang['contact_form_debug'] = 'Display of debug information';
8
9// ==================================================================
10// Default values if not configured
11$lang['contact_form_title'] = 'Contact form';
12$lang['contact_form'] = 'Contact';
13$lang['contact_form_link'] = 'Contact webmaster';
14
15// ==================================================================
16// Redirect page
17$lang['contact_redirect_title'] = 'Send message status';
18
19// ==================================================================
20// Menubar block
21$lang['cf_from_name'] = 'Your name';
22$lang['cf_from_mail'] = 'Your e-mail';
23$lang['cf_subject'] = 'Subject';
24$lang['cf_message'] = 'Message';
25$lang['cf_submit'] = 'Send';
26
27// ==================================================================
28// Messages
29$lang['cf_from_name_error'] = 'Please enter a name';
30$lang['cf_mail_format_error'] = $lang['reg_err_mail_address'];
31$lang['cf_subject_error'] = 'Please enter a subject';
32$lang['cf_message_error'] = 'Please enter a message';
33$lang['cf_error_sending_mail'] = 'Error while sending e-mail';
34$lang['cf_sending_mail_successful'] = 'E-mail sent successfully';
35$lang['cf_form_error'] = 'Invalid data';
36$lang['cf_inconsistent_version'] = '%s: inconsistent version numbers';
37$lang['cf_no_unlink'] = 'Function \'unlink\' not available...';
38$lang['cf_unlink_errors'] = 'Error occured during file deletion';
39$lang['cf_config_saved'] = 'Configuration successfully saved';
40$lang['cf_config_saved_with_errors'] = 'Configuration saved with errors';
41$lang['cf_length_not_integer'] = 'Size must be an integer';
42$lang['cf_delay_not_integer'] = 'Delay must be an integer';
43$lang['cf_link_error'] = 'Variable can\'t contain spaces';
44
45// ==================================================================
46// Admin page
47$lang['cf_validate'] = 'Submit';
48// Configuration tab
49$lang['cf_tab_config'] = 'Configuration';
50$lang['cf_config'] = 'Configuration';
51$lang['cf_config_desc'] = 'Plugin main configuration';
52$lang['cf_label_config'] = 'General configuration';
53$lang['cf_label_mail'] = 'E-mail configuration';
54$lang['cf_guest_allowed'] = 'Allow guests to see the form';
55$lang['cf_mail_prefix'] = 'Prefix of the sent e-mail subject';
56$lang['cf_separator'] = 'Character(s) used to define a separation bar in the e-mail in text format';
57$lang['cf_separator_length'] = 'Size of the bar';
58$lang['cf_mandatory_name'] = 'Name is mandatory';
59$lang['cf_mandatory_mail'] = 'E-mail address is mandatory';
60$lang['cf_redirect_delay'] = 'Pause delay of redirection';
61$lang['cf_label_link'] = 'Link management (outside menubar)';
62$lang['cf_define_link'] = 'Define link';
63$lang['cf_link'] = 'Name of the template variable containing the HTML link to the contact form';
64// Language tab
65$lang['cf_tab_language'] = 'Localization';
66$lang['cf_language_desc'] = 'Messages translation';
67$lang['cf_select_item'] = 'Select item to translate';
68$lang['cf_default_lang'] = 'Default';
69$lang['contact_form_title_label'] = 'Title used in menubar';
70$lang['contact_form_label'] = 'Name used in menubar';
71$lang['contact_form_link_label'] = 'Text used for contact link in the page footer';
72?>
Note: See TracBrowser for help on using the repository browser.