blob: 4b7514bdc4b8595ae38ffab3ddba23c647a2570f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Elgg diagnostics language pack.
*
* @package ElggDiagnostics
*/
$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);
|