[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_email [Standard french] 5 * translated originally by PhpBB-fr.com <http://www.phpbb-fr.com/> and phpBB.biz <http://www.phpBB.biz> 6 * 7 * @package language 8 * @version $Id: email.php 71 2013-07-23 21:38:34Z papicx $ 9 * @copyright (c) 2005 phpBB Group 10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 11 * 12 */ 13 14 /** 15 * DO NOT CHANGE 16 */ 17 if (!defined('IN_PHPBB')) 18 { 19 exit; 20 } 21 22 if (empty($lang) || !is_array($lang)) 23 { 24 $lang = array(); 25 } 26 27 // DEVELOPERS PLEASE NOTE 28 // 29 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 30 // 31 // Placeholders can now contain order information, e.g. instead of 32 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 33 // translators to re-order the output of data while ensuring it remains correct 34 // 35 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 36 // equally where a string contains only two placeholders which are used to wrap text 37 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 38 39 // Email settings 40 $lang = array_merge($lang, array( 41 'ACP_MASS_EMAIL_EXPLAIN' => 'Vous pouvez envoyer un e-mail à tous vos utilisateurs ou à tous les membres d’un groupe particulier. Pour cela, un e-mail sera envoyé via l’adresse administrative, avec tous les destinataires en copie cachée. Si vous envoyez le message à un grand groupe de personnes, merci de patienter après avoir validé et de ne pas arrêter la page lors du traitement. Il est normal qu’un envoi de masse prenne du temps, vous aurez une notification quand le script aura terminé.', 42 'ALL_USERS' => 'Tous les utilisateurs', 43 44 'COMPOSE' => 'Écrire', 45 46 'EMAIL_SEND_ERROR' => 'Il y a eu une erreur lors de l’envoi de l’e-mail. Merci de consulter le %sJournal d’erreurs%s pour un message plus détaillé.', 47 'EMAIL_SENT' => 'Votre message a été envoyé.', 48 'EMAIL_SENT_QUEUE' => 'Votre message a été mis en attente pour l’envoi.', 49 50 'LOG_SESSION' => 'Enregistre la session mail dans les journaux d’erreurs critiques', 51 52 'SEND_IMMEDIATELY' => 'Envoyer immédiatement', 53 'SEND_TO_GROUP' => 'Envoyer au groupe', 54 'SEND_TO_USERS' => 'Envoyer aux utilisateurs', 55 'SEND_TO_USERS_EXPLAIN' => 'Entrer des noms ici écrasera tout groupe sélectionné ci-dessus. Entrez chaque nom d’utilisateur sur une ligne différente.', 56 57 'MAIL_BANNED' => 'Envoyer aux utilisateurs bannis', 58 'MAIL_BANNED_EXPLAIN' => 'Si vous cochez cette case, les utilisateurs bannis recevront aussi cet e-mail de masse.', 59 'MAIL_HIGH_PRIORITY' => 'Haute', 60 'MAIL_LOW_PRIORITY' => 'Basse', 61 'MAIL_NORMAL_PRIORITY' => 'Normale', 62 'MAIL_PRIORITY' => 'Priorité du mail', 63 'MASS_MESSAGE' => 'Votre message', 64 'MASS_MESSAGE_EXPLAIN' => 'Notez que vous ne pouvez mettre que du texte brut. Toutes les balises seront supprimées avant l’envoi.', 65 66 'NO_EMAIL_MESSAGE' => 'Vous devez entrer un message.', 67 'NO_EMAIL_SUBJECT' => 'Vous devez indiquer un sujet pour votre message.', 68 )); 69 70 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Oct 2 15:03:47 2013 | Cross-referenced by PHPXref 0.7.1 |