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

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

[extensions] - ContactForm - delete global $lang; for compatibilité Lexiglot

File size: 3.2 KB
Line 
1<?php
2if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
3
4$lang['cf_plugin_name'] = 'Contact Form';
5$lang['contact_form_debug'] = 'Display of debug information';
6
7// ==================================================================
8// Default values if not configured
9$lang['contact_form_title'] = 'Contact form';
10$lang['contact_form'] = 'Contact';
11$lang['contact_form_link'] = 'Contact webmaster';
12
13// ==================================================================
14// Redirect page
15$lang['contact_redirect_title'] = 'Send message status';
16
17// ==================================================================
18// Menubar block
19$lang['cf_from_name'] = 'Your name';
20$lang['cf_from_mail'] = 'Your e-mail';
21$lang['cf_subject'] = 'Subject';
22$lang['cf_message'] = 'Message';
23$lang['cf_submit'] = 'Send';
24$lang['title_send_mail'] = 'A comment on the site';
25
26// ==================================================================
27// Messages
28$lang['cf_from_name_error'] = 'Please enter a name';
29$lang['cf_mail_format_error'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)';
30$lang['cf_subject_error'] = 'Please enter a subject';
31$lang['cf_message_error'] = 'Please enter a message';
32$lang['cf_error_sending_mail'] = 'Error while sending e-mail';
33$lang['cf_sending_mail_successful'] = 'E-mail sent successfully';
34$lang['cf_form_error'] = 'Invalid data';
35$lang['cf_no_unlink'] = 'Function \'unlink\' not available...';
36$lang['cf_unlink_errors'] = 'Error occured during file deletion';
37$lang['cf_config_saved'] = 'Configuration successfully saved';
38$lang['cf_config_saved_with_errors'] = 'Configuration saved with errors';
39$lang['cf_length_not_integer'] = 'Size must be an integer';
40$lang['cf_delay_not_integer'] = 'Delay must be an integer';
41$lang['cf_link_error'] = 'Variable can\'t contain spaces';
42$lang['cf_hide'] = 'Hide';
43
44// ==================================================================
45// Admin page
46$lang['cf_validate'] = 'Submit';
47// Configuration tab
48$lang['cf_tab_config'] = 'Configuration';
49$lang['cf_config'] = 'Configuration';
50$lang['cf_config_desc'] = 'Plugin main configuration';
51$lang['cf_label_config'] = 'General configuration';
52$lang['cf_label_mail'] = 'E-mail configuration';
53$lang['cf_menu_link'] = 'Add link in menu';
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// Emails tab
62$lang['cf_tab_emails'] = 'E-mails';
63$lang['cf_emails'] = 'E-mails';
64$lang['cf_emails_desc'] = 'Destination e-mails management';
65$lang['cf_active'] = 'Active e-mail';
66$lang['cf_no_mail'] = 'No e-mail address available';
67$lang['cf_refresh'] = 'Regenerate e-mail list address';
68// persoformtab
69$lang['cf_tab_persoform'] = 'Add custom text';
70$lang['Text before the contact form'] = 'Text before the contact form';
71$lang['Text after the contact form'] = 'Text after the contact form';
72?>
Note: See TracBrowser for help on using the repository browser.