blob: 09129729740c941d990257487aa8d858688f085d (
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 groups yet",
);
add_translation("en",$english);
?>
|