1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
/**
* Elgg invite language file
*
* @package ElggInviteFriends
* @author Curverider Ltd
* @copyright Curverider Ltd 2008-2010
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @link http://elgg.org/
*/
$english = array(
'friends:invite' => 'Invite friends',
'invitefriends:registration_disabled' => 'New user registration has been disabled on this site; you are unable to invite new users.',
'invitefriends:introduction' => 'To invite friends to join you on this network, enter their email addresses below (one per line):',
'invitefriends:message' => 'Enter a message they will receive with your invitation:',
'invitefriends:subject' => 'Invitation to join %s',
'invitefriends:success' => 'Your friends were invited.',
'invitefriends:invitations_sent' => 'Invites sent: %s. There were the following problems:',
'invitefriends:email_error' => 'The following addresses are not valid: %s',
'invitefriends:already_members' => 'The following are already members: %s',
'invitefriends:noemails' => 'No email addresses were entered.',
'invitefriends:message:default' => '
Hi,
I want to invite you to join my network here on %s.',
'invitefriends:email' => '
You have been invited to join %s by %s. They included the following message:
%s
To join, click the following link:
%s
You will automatically add them as a friend when you create your account.',
);
add_translation("en", $english);
|