blob: e1378f2f1fb7200561375f1176c4d20badbc7430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/**
* User dashboard languages
*/
$english = array(
'dashboard:widget:group:title' => 'Group activity',
'dashboard:widget:group:desc' => 'View the activity in one of your groups',
'dashboard:widget:group:select' => 'Select a group',
'dashboard:widget:group:noactivity' => 'There is no activity in this group',
'dashboard:widget:group:noselect' => 'Edit this widget to select a group',
);
add_translation("en", $english);
|