[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

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

   1  <?php
   2  /**
   3  *
   4  * recaptcha [English]
   5  *
   6  * @package language
   7  * @version $Id$
   8  * @copyright (c) 2009 phpBB Group
   9  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  10  *
  11  */
  12  
  13  /**
  14  * DO NOT CHANGE
  15  */
  16  if (!defined('IN_PHPBB'))
  17  {
  18      exit;
  19  }
  20  
  21  if (empty($lang) || !is_array($lang))
  22  {
  23      $lang = array();
  24  }
  25  
  26  // DEVELOPERS PLEASE NOTE
  27  //
  28  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  29  //
  30  // Placeholders can now contain order information, e.g. instead of
  31  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  32  // translators to re-order the output of data while ensuring it remains correct
  33  //
  34  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  35  // equally where a string contains only two placeholders which are used to wrap text
  36  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  37  
  38  $lang = array_merge($lang, array(
  39      'RECAPTCHA_LANG'                => 'en',
  40      'RECAPTCHA_NOT_AVAILABLE'        => 'In order to use reCaptcha, you must create an account on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
  41      'CAPTCHA_RECAPTCHA'                => 'reCaptcha',
  42      'RECAPTCHA_INCORRECT'            => 'The visual confirmation code you submitted was incorrect',
  43  
  44      'RECAPTCHA_PUBLIC'                => 'Public reCaptcha key',
  45      'RECAPTCHA_PUBLIC_EXPLAIN'        => 'Your public reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
  46      'RECAPTCHA_PRIVATE'                => 'Private reCaptcha key',
  47      'RECAPTCHA_PRIVATE_EXPLAIN'        => 'Your private reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
  48  
  49      'RECAPTCHA_EXPLAIN'                => 'In an effort to prevent automatic submissions, we require that you enter both of the words displayed into the text field underneath.',
  50  ));
  51  
  52  ?>


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