]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #3597 defined a language string for 'more'
authorCash Costello <cash.costello@gmail.com>
Tue, 28 Jun 2011 11:15:33 +0000 (07:15 -0400)
committerCash Costello <cash.costello@gmail.com>
Tue, 28 Jun 2011 11:15:33 +0000 (07:15 -0400)
languages/en.php
views/default/widgets/content_stats/content.php

index 11859634269631380fd7ecb0c67d446edd1e1a97..f1e070f063591f1ed2798b11eb238519053e2704 100644 (file)
@@ -812,6 +812,8 @@ $english = array(
        'top' => 'Top',
        'bottom' => 'Bottom',
 
+       'more' => 'more',
+
        'invite' => "Invite",
 
        'resetpassword' => "Reset password",
index 7086e4b9e4063914151b013cf6b3b44ba9070218..6a652166c2ffbd4da19a86c7ad9666e7b34a585a 100644 (file)
@@ -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>';