[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/language/fr/ -> captcha_recaptcha.php (source)

   1  <?php
   2  /**
   3  *
   4  * recaptcha [Standard french]
   5  * translated by PhpBB-fr.com <http://www.phpbb-fr.com/>
   6  *
   7  * @package language
   8  * @version $Id: captcha_recaptcha.php 58 2012-08-23 08:31:38Z Morgyanne $
   9  * @copyright (c) 2009 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  $lang = array_merge($lang, array(
  40      'RECAPTCHA_LANG'                => 'fr',
  41      'RECAPTCHA_NOT_AVAILABLE'        => 'Afin d’utiliser reCaptcha, vous devez créer un compte sur <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
  42      'CAPTCHA_RECAPTCHA'                => 'reCaptcha',
  43      'RECAPTCHA_INCORRECT'            => 'Le code de confirmation visuelle soumis était incorrect',
  44  
  45      'RECAPTCHA_PUBLIC'                => 'Clé publique reCaptcha',
  46      'RECAPTCHA_PUBLIC_EXPLAIN'        => 'Votre clé publique reCaptcha. Des clés peuvent être obtenues sur <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
  47      'RECAPTCHA_PRIVATE'                => 'Clé privée reCaptcha',
  48      'RECAPTCHA_PRIVATE_EXPLAIN'        => 'Votre clé privée reCaptcha. Des clés peuvent être obtenues sur <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
  49  
  50      'RECAPTCHA_EXPLAIN'                => 'Afin d’empêcher les inscriptions automatisées, nous vous demandons de taper les deux mots affichés dans le champ texte ci-contre.',
  51  ));
  52  
  53  ?>


Generated: Wed Oct 2 15:03:47 2013 Cross-referenced by PHPXref 0.7.1