blob: 987b68c1b82568c8b2a7980faf146583306edde5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* CKEditor language pack.
*
* @package ElggCKEditor
*/
$english = array(
'ckeditor:remove' => "Remove editor",
'ckeditor:add' => "Add editor",
'ckeditor:word_count' => 'Word count: ',
);
add_translation("en", $english);
|