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

Last change on this file since 14428 was 14428, checked in by ddtddt, 12 years ago

[extensions] - ContactForm - add perso text on form

File size: 3.7 KB
RevLine 
[6547]1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3global $lang;
4
5$lang['cf_plugin_name'] = 'Contact Form';
6$lang['contact_form_debug'] = 'Display of debug information';
7
8// ==================================================================
9// Default values if not configured
10$lang['contact_form_title'] = 'Contact form';
11$lang['contact_form'] = 'Contact';
12$lang['contact_form_link'] = 'Contact webmaster';
13
14// ==================================================================
15// Redirect page
16$lang['contact_redirect_title'] = 'Send message status';
17
18// ==================================================================
19// Menubar block
20$lang['cf_from_name'] = 'Your name';
21$lang['cf_from_mail'] = 'Your e-mail';
22$lang['cf_subject'] = 'Subject';
23$lang['cf_message'] = 'Message';
24$lang['cf_submit'] = 'Send';
[7102]25$lang['title_send_mail'] = 'A comment on the site';
[6547]26
27// ==================================================================
28// Messages
29$lang['cf_from_name_error'] = 'Please enter a name';
[14044]30$lang['cf_mail_format_error'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
[6547]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_no_unlink'] = 'Function \'unlink\' not available...';
37$lang['cf_unlink_errors'] = 'Error occured during file deletion';
38$lang['cf_config_saved'] = 'Configuration successfully saved';
39$lang['cf_config_saved_with_errors'] = 'Configuration saved with errors';
40$lang['cf_length_not_integer'] = 'Size must be an integer';
41$lang['cf_delay_not_integer'] = 'Delay must be an integer';
42$lang['cf_link_error'] = 'Variable can\'t contain spaces';
43$lang['cf_hide'] = 'Hide';
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_menu_link'] = 'Add link in menu';
55$lang['cf_guest_allowed'] = 'Allow guests to see the form';
56$lang['cf_mail_prefix'] = 'Prefix of the sent e-mail subject';
57$lang['cf_separator'] = 'Character(s) used to define a separation bar in the e-mail in text format';
58$lang['cf_separator_length'] = 'Size of the bar';
59$lang['cf_mandatory_name'] = 'Name is mandatory';
60$lang['cf_mandatory_mail'] = 'E-mail address is mandatory';
61$lang['cf_redirect_delay'] = 'Pause delay of redirection';
62// Emails tab
63$lang['cf_tab_emails'] = 'E-mails';
64$lang['cf_emails'] = 'E-mails';
65$lang['cf_emails_desc'] = 'Destination e-mails management';
66$lang['cf_active'] = 'Active e-mail';
67$lang['cf_no_mail'] = 'No e-mail address available';
68$lang['cf_refresh'] = 'Regenerate e-mail list address';
[14428]69// persoformtab
70$lang['cf_tab_persoform'] = 'Add text Form';
71$lang['Add text to the contact form'] = 'Add text to the contact form';
72$lang['Add text above'] = 'Add text above';
73$lang['Add text below'] = 'Add text below';
74$lang['use tag < div id="persoformtop" > to customize your personal text'] = 'use tag < div id="persoformtop" > to customize your personal text';
75$lang['use tag < div id="persoformbottom" > to customize your personal text'] = 'use tag < div id="persoformbottom" > to customize your personal text';
76$lang['if plugin ExtendedDescription is actif, you can use tags [lang]'] = 'if plugin ExtendedDescription is actif, you can use tags [lang]';
77?>
Note: See TracBrowser for help on using the repository browser.