diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-07 12:25:49 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-07 12:25:49 +0000 |
commit | 2d0dbb89194f61bb9f75c83174a8914d08425d83 (patch) | |
tree | 21912bc86097ae15792a5c305965beb9cda46ef6 | |
parent | f55b161798c2a4629e86bb7e01151ebb6924dc8c (diff) | |
download | elgg-2d0dbb89194f61bb9f75c83174a8914d08425d83.tar.gz elgg-2d0dbb89194f61bb9f75c83174a8914d08425d83.tar.bz2 |
Direct link from statistics through to elgg.org
git-svn-id: https://code.elgg.org/elgg/trunk@1754 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | languages/en.php | 4 | ||||
-rw-r--r-- | views/default/admin/statistics.php | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/languages/en.php b/languages/en.php index 8ed6b8bbf..a07babe28 100644 --- a/languages/en.php +++ b/languages/en.php @@ -415,7 +415,7 @@ 'admin:plugins:enable:no' => "Plugin %s could not be enabled.",
'admin:statistics' => "Statistics",
- 'admin:statistics:description' => "This is an overview of statistics on your site. If you need more detailed statistics, a professional administration feature is available from Curverider.",
+ 'admin:statistics:description' => "This is an overview of statistics on your site. If you need more detailed statistics, a professional administration feature is available.",
'admin:statistics:opt:description' => "View statistical information about users and objects on your site.",
'admin:statistics:opt:linktext' => "View statistics...",
'admin:statistics:label:basic' => "Basic site statistics",
@@ -496,6 +496,8 @@ 'unknown' => 'Unknown',
+ 'learnmore' => "Click here to learn more.",
+
/**
* Generic data words
*/
diff --git a/views/default/admin/statistics.php b/views/default/admin/statistics.php index f79812b51..fc7289087 100644 --- a/views/default/admin/statistics.php +++ b/views/default/admin/statistics.php @@ -12,6 +12,11 @@ global $CONFIG; - echo "<p>" . autop(elgg_echo("admin:statistics:description")) . "</p>"; + // echo "<p>" . autop(elgg_echo("admin:statistics:description")) . "</p>"; -?>
\ No newline at end of file +?>
+
+ <p>
+ <?php echo elgg_echo('admin:statistics:description'); ?>
+ <a href="http://elgg.org/"><?php echo elgg_echo('learnmore'); ?></a>
+ </p>
\ No newline at end of file |