summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-12-26 23:06:09 -0800
committerBharat Mediratta <bharat@menalto.com>2010-12-26 23:06:09 -0800
commitd0e78fc5cf5671d69bd815dd1aff9041616be3f2 (patch)
tree3e46b506221fd1a792581a6cfb77ec59e329e8e8
parent2d4d6133188b3b0052cce803d7f96b63b78af91f (diff)
Fix capitalization to be sentence case.
-rw-r--r--modules/image_block/helpers/image_block_block.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/image_block/helpers/image_block_block.php b/modules/image_block/helpers/image_block_block.php
index cf718880..43ce4af9 100644
--- a/modules/image_block/helpers/image_block_block.php
+++ b/modules/image_block/helpers/image_block_block.php
@@ -44,7 +44,7 @@ class image_block_block_Core {
if ($items) {
$block = new Block();
$block->css_id = "g-image-block";
- $block->title = t2("Random image", "Random Images", $image_count);
+ $block->title = t2("Random image", "Random images", $image_count);
$block->content = new View("image_block_block.html");
$block->content->items = $items;
}