blob: 2fdb564a322ba4f2f18d34b73da4faabe84c82cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Elgg captcha language pack.
*
* @package ElggCaptcha
*/
$english = array(
'captcha:entercaptcha' => 'Enter text from image',
'captcha:captchafail' => 'Sorry, the text that you entered didn\'t match the text in the image.',
);
add_translation("en", $english);
|