blob: 293e68b35c1786fde9acc6d8e54c3cda5afb7cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* TinyMCE language pack.
*
* @package ElggTinyMCE
*/
$english = array(
'tinymce:remove' => "Remove editor",
'tinymce:add' => "Add editor",
'tinymce:word_count' => 'Word count: ',
'tinymce:lang_notice' => "Your site language is %s but it isn't installed for TinyMCE. Get it <a target=\"_blank\" href=\"%s\">here</a> and copy it in %s path. Then, <a href=\"%s\">flush the caches</a>.",
);
add_translation("en", $english);
|