blob: 8459c41af06caff6273cba717a39362bf33bcff9 (
plain)
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 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:aboutme' => "About me",
'profile:location' => "Location",
'profile:skills' => "Skills",
'profile:interests' => "Interests",
/**
* Status messages
*/
'profile:saved' => "Your profile was successfully saved.",
/**
* Error messages
*/
'profile:notfound' => "Sorry; we could not find the specified profile.",
'profile:cantedit' => "Sorry; you do not have permission to edit this profile.",
);
add_translation("en",$english);
?>
|