diff options
-rw-r--r-- | README.txt | 4 | ||||
-rw-r--r-- | manifest.xml | 17 | ||||
-rw-r--r-- | start.php | 7 |
3 files changed, 28 insertions, 0 deletions
diff --git a/README.txt b/README.txt new file mode 100644 index 000000000..2cff55713 --- /dev/null +++ b/README.txt @@ -0,0 +1,4 @@ +This plugin contains the following language packs: + + * [Spanish](http://community.elgg.org/pg/plugins/project/791438/developer/nnimis/espaol-spanish-language-pack-v18), thanks to nnmis + diff --git a/manifest.xml b/manifest.xml new file mode 100644 index 000000000..eded3240c --- /dev/null +++ b/manifest.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8"> + <name>Elgg Translation Pack</name> + <author>Lorea</author> + <version>1.8</version> + <category>unbundled</category> + <category>language</category> + <description>Compilation of some elgg translation packs.</description> + <website>http://www.lorea.cc/</website> + <copyright>See README.txt</copyright> + <license>GNU General Public License, version 2 or later</license> + <requires> + <type>elgg_release</type> + <version>1.8</version> + </requires> + <activate_on_install>true</activate_on_install> +</plugin_manifest> diff --git a/start.php b/start.php new file mode 100644 index 000000000..a1db7a422 --- /dev/null +++ b/start.php @@ -0,0 +1,7 @@ +<?php +/** + * Languages plugin + * + */ + +register_translations(elgg_get_plugins_path() . "languages/languages/es", true); |