diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-21 10:39:35 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-21 10:39:35 +0000 |
commit | e7a6658abfd1f8e20ebc91ce3022eef8376b3e2e (patch) | |
tree | 082c703a6579acb50b8606e0ae59629314342bcf /mod/activity/languages/en.php | |
parent | 591790174387f9b773c5e8414eda772dad5ede04 (diff) | |
download | elgg-e7a6658abfd1f8e20ebc91ce3022eef8376b3e2e.tar.gz elgg-e7a6658abfd1f8e20ebc91ce3022eef8376b3e2e.tar.bz2 |
Added Activity stream back in
git-svn-id: https://code.elgg.org/elgg/trunk@2589 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/activity/languages/en.php')
-rw-r--r-- | mod/activity/languages/en.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mod/activity/languages/en.php b/mod/activity/languages/en.php new file mode 100644 index 000000000..7843c8378 --- /dev/null +++ b/mod/activity/languages/en.php @@ -0,0 +1,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 + * @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); +?>
\ No newline at end of file |