Ignore:
Timestamp:
Aug 9, 2012, 12:10:04 PM (12 years ago)
Author:
mistic100
Message:

entirely rewrite the plugin

  • send mail in html format (configurable to plain)
  • fully configurable email list
  • more...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/ContactForm/language/en_UK/plugin.lang.php

    r14779 r17483  
    11<?php
    2 if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
     2// +-----------------------------------------------------------------------+
     3// | Piwigo - a PHP based photo gallery                                    |
     4// +-----------------------------------------------------------------------+
     5// | Copyright(C) 2008-2012 Piwigo Team                  http://piwigo.org |
     6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
     7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
     8// +-----------------------------------------------------------------------+
     9// | This program is free software; you can redistribute it and/or modify  |
     10// | it under the terms of the GNU General Public License as published by  |
     11// | the Free Software Foundation                                          |
     12// |                                                                       |
     13// | This program is distributed in the hope that it will be useful, but   |
     14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
     15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
     16// | General Public License for more details.                              |
     17// |                                                                       |
     18// | You should have received a copy of the GNU General Public License     |
     19// | along with this program; if not, write to the Free Software           |
     20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
     21// | USA.                                                                  |
     22// +-----------------------------------------------------------------------+
    323
    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';
     24$lang['A comment on the site'] = 'A comment on the site';
     25$lang['Contact'] = 'Contact';
     26$lang['Your name'] = 'Your name';
     27$lang['Your e-mail'] = 'Your e-mail';
     28$lang['Subject'] = 'Subject';
     29$lang['Message'] = 'Message';
     30$lang['General configuration'] = 'General configuration';
     31$lang['Add link in menu'] = 'Add link in menu';
     32$lang['Allow guests to see the form'] = 'Allow guests to see the form';
     33$lang['E-mail address is mandatory'] = 'E-mail address is mandatory';
     34$lang['Name is mandatory'] = 'Name is mandatory';
     35$lang['E-mail configuration'] = 'E-mail configuration';
     36$lang['E-mail format :'] = 'E-mail format :';
     37$lang['Plain text'] = 'Plain text';
     38$lang['Default e-mail subject'] = 'Default e-mail subject';
     39$lang['Prefix of the sent e-mail subject (you can use "%gallery_title%")'] = 'Prefix of the sent e-mail subject (you can use "%gallery_title%")';
    7040$lang['Text before the contact form'] = 'Text before the contact form';
    7141$lang['Text after the contact form'] = 'Text after the contact form';
     42$lang['Active'] = 'Active';
     43$lang['+ Add an email'] = '+ Add an email';
     44$lang['E-mail: %s'] = 'E-mail: %s';
     45$lang['No active email address'] = 'No active email address';
     46$lang['E-mail sent successfully'] = 'E-mail sent successfully';
     47$lang['Please enter a name'] = 'Please enter a name';
     48$lang['Please enter an e-mail'] = 'Please enter an e-mail';
     49$lang['Please enter a subject'] = 'Please enter a subject';
     50$lang['Please enter a message'] = 'Please enter a message';
     51$lang['%s must not be less than %d characters long'] = '%s must not be less than %d characters long';
     52$lang['%s must not be more than %d characters long'] = '%s must not be more than %d characters long';
     53$lang['Error while sending e-mail'] = 'Error while sending e-mail';
     54
    7255?>
Note: See TracChangeset for help on using the changeset viewer.