aboutsummaryrefslogtreecommitdiff
path: root/mod/activity/languages/en.php
blob: 2af3a53e6847e4e7bbe83044e45da3a828b361fc (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
<?php
	/**
	 * Elgg activity plugin language pack.
	 * 
	 * @package ElggActivity
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008-2009
	 * @link http://elgg.com/
	 */

	$english = array(
	
		'activity:all' => 'Site activity',
		'activity' => 'Activity',
		'activity:your' => 'Your activity',
		'activity:friends' => 'Friend\'s activity',
		'activity:person' => '%s\'s activity',
		'activity:person:friends' => '%s\'s friend\'s activity',
	
		'activity:useasdashboard' => 'Do you wish to use the activity stream as the dashboard?',
	
		'activity:noactivity' => 'Sorry, there is currently no activity that matches your search criteria',
	
		'activity:usernotfound' => 'User not found',
		'activity:nofriendactivity' => 'No activity, perhaps you should add some more friends?',
	);
					
	add_translation("en",$english);
?>