diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-13 01:30:12 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-13 01:30:12 +0000 |
commit | 0b17969bf1eecf5698a6cd5a4e17b763d198771d (patch) | |
tree | 0af25a0a8c74ed91d30dac8b208c0e8d227bc3a1 /mod/custom_index/languages/en.php | |
parent | 020d82988582c543e04b679a0eb0b89743c8227c (diff) | |
download | elgg-0b17969bf1eecf5698a6cd5a4e17b763d198771d.tar.gz elgg-0b17969bf1eecf5698a6cd5a4e17b763d198771d.tar.bz2 |
updated custom index for 1.8
git-svn-id: http://code.elgg.org/elgg/trunk@8193 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/custom_index/languages/en.php')
-rw-r--r-- | mod/custom_index/languages/en.php | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/mod/custom_index/languages/en.php b/mod/custom_index/languages/en.php index 091297297..071ff81e5 100644 --- a/mod/custom_index/languages/en.php +++ b/mod/custom_index/languages/en.php @@ -1,17 +1,14 @@ <?php +/** + * Custom Index English language file + */ - $english = array( - - 'custom:bookmarks' => "Latest bookmarks", - 'custom:groups' => "Latest groups", - 'custom:files' => "Latest files", - 'custom:blogs' => "Latest blog posts", - 'custom:members' => "Newest members", - 'custom:nofiles' => "There are no files yet", - 'custom:nogroups' => "There are no groups yet", - - ); +$english = array( + 'custom:bookmarks' => "Latest bookmarks", + 'custom:groups' => "Latest groups", + 'custom:files' => "Latest files", + 'custom:blogs' => "Latest blog posts", + 'custom:members' => "Newest members", +); - add_translation("en",$english); - -?>
\ No newline at end of file +add_translation("en", $english); |