28 lines
1012 B
PHP
28 lines
1012 B
PHP
<?php
|
|
|
|
/**
|
|
* Internationalisation file for the ContactPage extension
|
|
*
|
|
* @package MediaWiki
|
|
* @subpackage Extensions
|
|
* @author Daniel Kinzler, brightbyte.de
|
|
* @copyright © 2007 Daniel Kinzler, Betawiki users
|
|
* @licence GNU General Public Licence 2.0 or later
|
|
*/
|
|
|
|
$messages = array(
|
|
'contact' => 'Pour nous contacter',
|
|
'contactpage' => 'Contact',
|
|
'contactpage-title' => 'Contacter',
|
|
'contactpage-pagetext' => 'Veuillez utiliser le formulaire ci-dessous pour nous contacter.',
|
|
'contactpage-defsubject' => 'Message',
|
|
'contactpage-subject-and-sender' => '$1 (de $2)',
|
|
'contactpage-fromname' => 'Votre nom*',
|
|
'contactpage-fromaddress' => 'Votre adresse courriel**',
|
|
'contactpage-formfootnotes' => '
|
|
* optionel<br/>
|
|
** optionel mais requis si vous désirez une réponse',
|
|
'contactpage-captcha' => 'Pour envoyer le message, prière de résoudre le captcha ([[Special:Captcha/help|aide]])',
|
|
'contactpage-captcha-failed' => 'Vous n\'avez pas décodé le captcha ! ([[Special:Captcha/help|aide]])',
|
|
);
|