blob: 1f9e88a46a96c10d5324f72735ed830f42b774a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* ElggFriendRequest English language file.
*
*/
$english = array(
'friendrequest' => 'Friend Requests',
'friendrequest:add:successful' => 'You sent a friend request to %s. She has to accept it. Give she time.',
'friendrequest:add:failure' => 'Oops! There was a problem while trying to send the request. Try it again.',
'friendrequest:add:exists' => 'You already sent a friend request to %s, don\'t be so intense.',
);
add_translation('en', $english);
|