blob: 55bd07746f285e9ea0699029cdc817fcde1f99bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
$english = array(
/**
* Manifest
*/
'river:widget:noactivity' => 'We could not find any activity.',
'river:widget:title' => "Activity",
'river:widget:description' => "Show your latest activity.",
'river:widget:title:friends' => "Friends' activity",
'river:widget:description:friends' => "Show what your friends are up to.",
'river:widget:label:displaynum' => "Number of entries to display:",
);
add_translation("en",$english);
?>
|