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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
/**
* Elgg profile plugin language pack
*
* @package ElggProfile
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Ben Werdmuller <ben@curverider.co.uk>
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
$english = array(
/**
* Menu items and titles
*/
'profile' => "Profile",
'profile:yours' => "Your profile",
'profile:user' => "%s's profile",
'profile:edit' => "Edit profile",
'profile:editicon' => "Change your profile picture",
'profile:icon' => "Profile icon",
'profile:createicon' => "Create your avatar",
'profile:createicon:instructions' => "Click and drag to crop your image",
'profile:aboutme' => "About me",
'profile:description' => "About me",
'profile:location' => "Location",
'profile:skills' => "Skills",
'profile:interests' => "Interests",
'profile:contactemail' => "Contact email",
'profile:phone' => "Telephone",
'profile:mobile' => "Mobile phone",
'profile:website' => "Website",
'profile:river:update' => "%s updated their profile",
/**
* Status messages
*/
'profile:saved' => "Your profile was successfully saved.",
'profile:icon:uploaded' => "Your profile icon was successfully uploaded.",
/**
* Error messages
*/
'profile:noaccess' => "You do not have permission to edit this profile.",
'profile:notfound' => "Sorry; we could not find the specified profile.",
'profile:cantedit' => "Sorry; you do not have permission to edit this profile.",
'profile:icon:notfound' => "Sorry; there was a problem uploading your profile icon.",
);
add_translation("en",$english);
?>
|