diff options
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); |