diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-03 17:53:05 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-03 17:53:05 +0000 |
commit | 4766f36a4d74924f21ff329c4318ce4e069ffa04 (patch) | |
tree | 969b84632f2a8b0db79788a8a6db8e41d63e5cb4 /mod/invitefriends/languages | |
parent | 57a217fd6b708844407486046a1faa23b46cac08 (diff) | |
download | elgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.gz elgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.bz2 |
Pulled in the interface changes.
git-svn-id: http://code.elgg.org/elgg/trunk@5257 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/invitefriends/languages')
-rw-r--r-- | mod/invitefriends/languages/en.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mod/invitefriends/languages/en.php b/mod/invitefriends/languages/en.php new file mode 100644 index 000000000..357ceeeea --- /dev/null +++ b/mod/invitefriends/languages/en.php @@ -0,0 +1,42 @@ +<?php + + /** + * Elgg invite page + * + * @package ElggFile + * @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: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:email_error' => 'Invitations were sent, but the following addresses are not valid: %s', + 'invitefriends:failure' => 'Your friends could not be invited.', + + '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); +?> |