aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--languages/en.php2
-rw-r--r--views/default/widgets/content_stats/content.php4
2 files changed, 5 insertions, 1 deletions
diff --git a/languages/en.php b/languages/en.php
index 118596342..f1e070f06 100644
--- a/languages/en.php
+++ b/languages/en.php
@@ -812,6 +812,8 @@ $english = array(
'top' => 'Top',
'bottom' => 'Bottom',
+ 'more' => 'more',
+
'invite' => "Invite",
'resetpassword' => "Reset password",
diff --git a/views/default/widgets/content_stats/content.php b/views/default/widgets/content_stats/content.php
index 7086e4b9e..6a652166c 100644
--- a/views/default/widgets/content_stats/content.php
+++ b/views/default/widgets/content_stats/content.php
@@ -19,7 +19,9 @@ foreach ($object_stats as $subtype => $num) {
}
echo '</table>';
+echo '<div class="mtm">';
echo elgg_view('output/url', array(
'href' => 'admin/statistics/overview',
- 'text' => 'more',
+ 'text' => elgg_echo('more'),
));
+echo '</div>';