blob: 34257e9085e6465900ff54066dbbec90c2f40ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg captcha language pack.
*
* @package ElggCaptcha
*/
$spanish = array(
'captcha:entercaptcha' => 'Introduce el texto de la imagen',
'captcha:captchafail' => 'Perdona, el texto que has introducido no corresponde con el texto de la imagen.',
);
add_translation("es", $spanish);
|