blob: 75b5fea5ecf3ba65505c61e0838ae5875664e57f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg captcha language pack.
*
* @package ElggCaptcha
*/
$catalan = array(
'captcha:entercaptcha' => 'Introdueix el text de la imatge',
'captcha:captchafail' => 'Perdona, el text que has introduït no correspon al text de la imatge.',
);
add_translation("ca", $catalan);
|