summaryrefslogtreecommitdiff
path: root/modules/comment/helpers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-28 12:15:52 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-28 12:15:52 -0700
commit7ea13b3869dee33804606a17488bb1cd26759bdb (patch)
tree39c98eb3b788e528003730894a3f897a579a3808 /modules/comment/helpers
parent8ef78de3f72f695225ac87223d0815235a630417 (diff)
Normalize capitalization ticket #596
Diffstat (limited to 'modules/comment/helpers')
-rw-r--r--modules/comment/helpers/comment_block.php4
-rw-r--r--modules/comment/helpers/comment_rss.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/helpers/comment_block.php b/modules/comment/helpers/comment_block.php
index c00c6c51..7cd5d429 100644
--- a/modules/comment/helpers/comment_block.php
+++ b/modules/comment/helpers/comment_block.php
@@ -19,7 +19,7 @@
*/
class comment_block_Core {
static function get_admin_list() {
- return array("recent_comments" => t("Recent Comments"));
+ return array("recent_comments" => t("Recent comments"));
}
static function get($block_id) {
@@ -27,7 +27,7 @@ class comment_block_Core {
switch ($block_id) {
case "recent_comments":
$block->css_id = "g-recent-comments";
- $block->title = t("Recent Comments");
+ $block->title = t("Recent comments");
$block->content = new View("admin_block_recent_comments.html");
$block->content->comments =
ORM::factory("comment")->orderby("created", "DESC")->limit(5)->find_all();
diff --git a/modules/comment/helpers/comment_rss.php b/modules/comment/helpers/comment_rss.php
index 4424981d..3692a30d 100644
--- a/modules/comment/helpers/comment_rss.php
+++ b/modules/comment/helpers/comment_rss.php
@@ -61,7 +61,7 @@ class comment_rss_Core {
$feed->max_pages = ceil($comments->count_all() / $limit);
$feed->title = htmlspecialchars(t("Recent Comments"));
$feed->uri = url::abs_site("albums/" . (empty($id) ? "1" : $id));
- $feed->description = t("Recent Comments");
+ $feed->description = t("Recent comments");
return $feed;
}