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...
Location:
extensions/ContactForm/language/fr_FR
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/ContactForm/language/fr_FR/description.txt

    r6547 r17483  
    1 Ajoute un élément "Contacter" dans le bloc Menu afin d'offrir un formulaire de contact aux utilisateurs
     1Ajoute un lien "Contact" dans le bloc Menu afin d'offrir un formulaire de contact aux utilisateurs
  • extensions/ContactForm/language/fr_FR/index.php

    r6547 r17483  
    11<?php
    22// +-----------------------------------------------------------------------+
    3 // | PhpWebGallery - a PHP based picture gallery                           |
    4 // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
    5 // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
     3// | Piwigo - a PHP based photo gallery                                    |
    64// +-----------------------------------------------------------------------+
    7 // | file          : $Id: index.php,v 1.1 2009/08/13 12:39:51 Criss Exp $
    8 // | last update   : $Date: 2009/08/13 12:39:51 $
    9 // | last modifier : $Author: Criss $
    10 // | revision      : $Revision: 1.1 $
     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 |
    118// +-----------------------------------------------------------------------+
    129// | This program is free software; you can redistribute it and/or modify  |
  • extensions/ContactForm/language/fr_FR/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'] = 'Affichage des informations de debug';
     24$lang['A comment on the site'] = 'Un commentaire sur le site';
     25$lang['Contact'] = 'Contact';
     26$lang['Your name'] = 'Votre nom';
     27$lang['Your e-mail'] = 'Votre e-mail';
     28$lang['Subject'] = 'Sujet';
     29$lang['Message'] = 'Message';
     30$lang['General configuration'] = 'Configuration générale';
     31$lang['Add link in menu'] = 'Ajouter le lien dans le menu';
     32$lang['Allow guests to see the form'] = 'Autoriser les invités à avoir le formulaire';
     33$lang['E-mail address is mandatory'] = 'Présence de l\'e-mail obligatoire';
     34$lang['Name is mandatory'] = 'Présence du nom obligatoire';
     35$lang['E-mail configuration'] = 'E-mail configuration';
     36$lang['E-mail format :'] = 'Format des e-mails :';
     37$lang['Plain text'] = 'Texte brut';
     38$lang['Default e-mail subject'] = 'Sujet par défaut';
     39$lang['Prefix of the sent e-mail subject (you can use "%gallery_title%")'] = 'Préfixe du sujet de l\'e-mail envoyé (vous pouvez utiliser "%gallery_title%")';
     40$lang['Text before the contact form'] = 'Texte au-dessus du formulaire de contact';
     41$lang['Text after the contact form'] = 'Texte au-dessous du formulaire de contact';
     42$lang['E-mails'] = 'E-mails';
     43$lang['Active'] = 'Actif';
     44$lang['+ Add an email'] = '+ Ajouter un email';
     45$lang['No active email address'] = 'Aucune adresse email active';
     46$lang['E-mail sent successfully'] = 'E-mail envoyé avec succès';
     47$lang['Please enter a name'] = 'Veuillez entrer un nom';
     48$lang['Please enter an e-mail'] = 'Veuillez entrer un e-mail';
     49$lang['Please enter a subject'] = 'Veuillez entrer un sujet';
     50$lang['Please enter a message'] = 'Veuillez entrer un message';
     51$lang['%s must not be less than %d characters long'] = '%s ne doit pas faire moins de %d caractères';
     52$lang['%s must not be more than %d characters long'] = '%s ne doit pas faire plus de %d caractères';
     53$lang['Error while sending e-mail'] = 'Erreur lors de l\'envoi de l\'e-mail';
    654
    7 // ==================================================================
    8 // Default values if not configured
    9 $lang['contact_form_title'] = 'Formulaire de contact';
    10 $lang['contact_form'] = 'Formulaire de contact';
    11 $lang['contact_form_link'] = 'Contacter le webmestre';
    12 
    13 // ==================================================================
    14 // Redirect page
    15 $lang['contact_redirect_title'] = 'Statut de l\'envoi du message';
    16 
    17 // ==================================================================
    18 // Menubar block
    19 $lang['cf_from_name'] = 'Votre nom';
    20 $lang['cf_from_mail'] = 'Votre e-mail';
    21 $lang['cf_subject'] = 'Sujet';
    22 $lang['cf_message'] = 'Message';
    23 $lang['cf_submit'] = 'Envoyer';
    24 $lang['title_send_mail'] = 'Un commentaire sur le site';
    25 
    26 // ==================================================================
    27 // Messages
    28 $lang['cf_from_name_error'] = 'Veuillez entrer un nom';
    29 $lang['cf_mail_format_error'] = 'l\'adresse e-mail doit être de la forme xxx@yyy.eee (exemple : jack@altern.org)';
    30 $lang['cf_subject_error'] = 'Veuillez entrer un sujet';
    31 $lang['cf_message_error'] = 'Veuillez entrer un message';
    32 $lang['cf_error_sending_mail'] = 'Erreur lors de l\'envoi de l\'e-mail';
    33 $lang['cf_sending_mail_successful'] = 'E-mail envoyé avec succès';
    34 $lang['cf_form_error'] = 'Données incorrectes';
    35 $lang['cf_no_unlink'] = 'La fonction \'unlink\' n\'est pas disponible';
    36 $lang['cf_unlink_errors'] = 'Des erreurs ont eu lieu lors de la suppression de fichiers';
    37 $lang['cf_config_saved'] = 'Configuration sauvée avec succès';
    38 $lang['cf_config_saved_with_errors'] = 'Configuration sauvée mais avec des erreurs';
    39 $lang['cf_length_not_integer'] = 'La taille doit être un entier';
    40 $lang['cf_delay_not_integer'] = 'Le délai doit être un entier';
    41 $lang['cf_link_error'] = 'La variable ne peut pas contenir d\'espaces';
    42 $lang['cf_hide'] = 'Masquer';
    43 
    44 // ==================================================================
    45 // Admin page
    46 $lang['cf_validate'] = 'Valider';
    47 // Configuration tab
    48 $lang['cf_tab_config'] = 'Configuration';
    49 $lang['cf_config'] = 'Configuration';
    50 $lang['cf_config_desc'] = 'Configuration principale du plugin';
    51 $lang['cf_label_config'] = 'Configuration générale';
    52 $lang['cf_label_mail'] = 'Configuration de l\'e-mail';
    53 $lang['cf_menu_link'] = 'Ajouter le lien dans le menu';
    54 $lang['cf_guest_allowed'] = 'Autoriser les invités à avoir le formulaire';
    55 $lang['cf_mail_prefix'] = 'Préfixe du sujet de l\'e-mail envoyé';
    56 $lang['cf_separator'] = 'Caractère(s) utilisé(s) pour définir une barre de séparation dans l\'e-mail au format texte';
    57 $lang['cf_separator_length'] = 'Taille de la barre de séparation';
    58 $lang['cf_mandatory_name'] = 'Présence du nom obligatoire';
    59 $lang['cf_mandatory_mail'] = 'Présence de l\'e-mail obligatoire';
    60 $lang['cf_redirect_delay'] = 'Délai de pause de la redirection';
    61 // Emails tab
    62 $lang['cf_tab_emails'] = 'E-mails';
    63 $lang['cf_emails'] = 'E-mails';
    64 $lang['cf_emails_desc'] = 'Gestion des e-mails de destination';
    65 $lang['cf_active'] = 'E-mail actif';
    66 $lang['cf_no_mail'] = 'Aucune adresse e-mail disponible';
    67 $lang['cf_refresh'] = 'Regénérer la liste des adresses';
    68 // persoformtab
    69 $lang['cf_tab_persoform'] = 'Ajouter du texte personnel';
    70 $lang['Text before the contact form'] = 'Texte au-dessus du formulaire de contact';
    71 $lang['Text after the contact form'] = 'Texte en-dessous du formulaire de contact';
    7255?>
Note: See TracChangeset for help on using the changeset viewer.