blob: 071ff81e582176b76e13b83376778bad4a91b35c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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",
);
add_translation("en", $english);
|