diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:57:34 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:57:34 -0300 |
commit | 0be0b2d3a472b7b3a8c4a5d2ee22389acf126c3c (patch) | |
tree | 56d64a8ea726ce51df3790a7faf476d89e7c3fd8 /languages | |
download | elgg-0be0b2d3a472b7b3a8c4a5d2ee22389acf126c3c.tar.gz elgg-0be0b2d3a472b7b3a8c4a5d2ee22389acf126c3c.tar.bz2 |
Squashed 'mod/autosubscribegroup/' content from commit 5e933d6
git-subtree-dir: mod/autosubscribegroup
git-subtree-split: 5e933d6ede62fe62d2e6425e7b1e5fdc7d93d472
Diffstat (limited to 'languages')
-rw-r--r-- | languages/en.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/languages/en.php b/languages/en.php new file mode 100644 index 000000000..583e6f9ed --- /dev/null +++ b/languages/en.php @@ -0,0 +1,23 @@ +<?php
+/**
+ * Elgg autosubscribegroup plugin
+ * This plugin allows new users to get joined to groups automatically when they register.
+ *
+ * @package autosubscribegroups
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author RONNEL Jérémy
+ * @copyright (c) Elbee 2008
+ * @link /www.notredeco.com
+ *
+ * for Elgg 1.8 by iionly (iionly@gmx.de)
+ */
+
+$english = array(
+
+/**
+ * Menu items and titles
+ */
+'autosubscribe:list' => "Groups' ids (separated by commas): ",
+);
+
+add_translation("en",$english);
|