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

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

Put under SVN control
Add obsolete list
Add language configuration for items texts
Add template variable

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