diff options
author | Sem <sembrestels@riseup.net> | 2012-01-14 01:14:29 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-01-14 01:14:29 +0100 |
commit | 85086911c89f456885de4f499d59a434c50fd3f8 (patch) | |
tree | 96f5c50831ca306ffebc839409baeab30d646f27 /mod/tinymce | |
download | elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.gz elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.bz2 |
Original nnimis' plugin.
Diffstat (limited to 'mod/tinymce')
-rw-r--r-- | mod/tinymce/languages/en.php | 14 | ||||
-rw-r--r-- | mod/tinymce/languages/es.php | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/mod/tinymce/languages/en.php b/mod/tinymce/languages/en.php new file mode 100644 index 000000000..811e93492 --- /dev/null +++ b/mod/tinymce/languages/en.php @@ -0,0 +1,14 @@ +<?php +/** + * TinyMCE language pack. + * + * @package ElggTinyMCE + */ + +$english = array( + 'tinymce:remove' => "Remove editor", + 'tinymce:add' => "Add editor", + 'tinymce:word_count' => 'Word count: ', +); + +add_translation("en", $english);
\ No newline at end of file diff --git a/mod/tinymce/languages/es.php b/mod/tinymce/languages/es.php new file mode 100644 index 000000000..ce6ef33d5 --- /dev/null +++ b/mod/tinymce/languages/es.php @@ -0,0 +1,14 @@ +<?php +/** + * TinyMCE language pack. + * + * @package ElggTinyMCE + */ + +$spanish = array( + 'tinymce:remove' => "Quitar editor", + 'tinymce:add' => "Agregar editor", + 'tinymce:word_count' => 'Cantidad de palabras: ', +); + +add_translation("es", $spanish);
\ No newline at end of file |