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

Last change on this file since 7197 was 7197, checked in by plg, 13 years ago

feature 1897 added: the core "Contact Webmaster" link in footer is replaced by
a link to the ContactForm page. It works with a smarty prefilter, so it should
work with all themes.

The configurable template variable name was removed. It is hard coded as
$ContactFormLink. I've seen no example using another variable name. It was
hard to understand for users in the administration panel and not very useful.
The corresponding language keys were removed from all languages.

bug 1916 fixed: apply the same rule for link display in footer as in menu. If
the administrator has allowed the ContactForm page for guests, let's display
it in the menu + footer.

File size: 3.9 KB
Line 
1<?php
2/* $Id: plugin.lang.php,v 1.11 2009/09/01 17:10:50 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$lang['title_send_mail'] = 'A comment on the site';
27
28// ==================================================================
29// Messages
30$lang['cf_from_name_error'] = 'Please enter a name';
31$lang['cf_mail_format_error'] = $lang['reg_err_mail_address'];
32$lang['cf_subject_error'] = 'Please enter a subject';
33$lang['cf_message_error'] = 'Please enter a message';
34$lang['cf_error_sending_mail'] = 'Error while sending e-mail';
35$lang['cf_sending_mail_successful'] = 'E-mail sent successfully';
36$lang['cf_form_error'] = 'Invalid data';
37$lang['cf_inconsistent_version'] = '%s: inconsistent version numbers';
38$lang['cf_no_unlink'] = 'Function \'unlink\' not available...';
39$lang['cf_unlink_errors'] = 'Error occured during file deletion';
40$lang['cf_config_saved'] = 'Configuration successfully saved';
41$lang['cf_config_saved_with_errors'] = 'Configuration saved with errors';
42$lang['cf_length_not_integer'] = 'Size must be an integer';
43$lang['cf_delay_not_integer'] = 'Delay must be an integer';
44$lang['cf_link_error'] = 'Variable can\'t contain spaces';
45$lang['cf_hide'] = 'Hide';
46
47// ==================================================================
48// Admin page
49$lang['cf_validate'] = 'Submit';
50// Configuration tab
51$lang['cf_tab_config'] = 'Configuration';
52$lang['cf_config'] = 'Configuration';
53$lang['cf_config_desc'] = 'Plugin main configuration';
54$lang['cf_label_config'] = 'General configuration';
55$lang['cf_label_mail'] = 'E-mail configuration';
56$lang['cf_menu_link'] = 'Add link in menu';
57$lang['cf_guest_allowed'] = 'Allow guests to see the form';
58$lang['cf_mail_prefix'] = 'Prefix of the sent e-mail subject';
59$lang['cf_separator'] = 'Character(s) used to define a separation bar in the e-mail in text format';
60$lang['cf_separator_length'] = 'Size of the bar';
61$lang['cf_mandatory_name'] = 'Name is mandatory';
62$lang['cf_mandatory_mail'] = 'E-mail address is mandatory';
63$lang['cf_redirect_delay'] = 'Pause delay of redirection';
64// Emails tab
65$lang['cf_tab_emails'] = 'E-mails';
66$lang['cf_emails'] = 'E-mails';
67$lang['cf_emails_desc'] = 'Destination e-mails management';
68$lang['cf_active'] = 'Active e-mail';
69$lang['cf_no_mail'] = 'No e-mail address available';
70$lang['cf_refresh'] = 'Regenerate e-mail list address';
71// Language tab
72$lang['cf_tab_language'] = 'Localization';
73$lang['cf_language'] = 'Localization';
74$lang['cf_language_desc'] = 'Messages translation';
75$lang['cf_select_item'] = 'Select item to translate';
76$lang['cf_default_lang'] = 'Default';
77$lang['contact_form_title_label'] = 'Title used in menubar';
78$lang['contact_form_label'] = 'Name used in menubar';
79$lang['contact_form_link_label'] = 'Text used for contact link in the page footer';
80// History tab
81$lang['cf_tab_history'] = 'History';
82$lang['cf_history'] = 'History';
83$lang['cf_history_desc'] = 'Changes history';
84$lang['cf_history_date'] = 'Date';
85$lang['cf_history_version'] = 'Version';
86$lang['cf_history_log'] = 'Changelog';
87$lang['cf_file_not_found'] = 'File not found';
88$lang['cf_file_empty'] = 'File is empty';
89$lang['cf_format_date'] = '%M %D, %Y';
90?>
Note: See TracBrowser for help on using the repository browser.