blob: 583e6f9ed64df593530fbf2e3a336e75ec16f324 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
|