blob: 452bcf2e5fc1f5e57fbad56be71ee7824e4be8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
$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 files yet",
);
add_translation("en",$english);
?>
|