aboutsummaryrefslogtreecommitdiff
path: root/mod/tinymce
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-01-14 01:14:29 +0100
committerSem <sembrestels@riseup.net>2012-01-14 01:14:29 +0100
commit85086911c89f456885de4f499d59a434c50fd3f8 (patch)
tree96f5c50831ca306ffebc839409baeab30d646f27 /mod/tinymce
downloadelgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.gz
elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.bz2
Original nnimis' plugin.
Diffstat (limited to 'mod/tinymce')
-rw-r--r--mod/tinymce/languages/en.php14
-rw-r--r--mod/tinymce/languages/es.php14
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