diff options
author | dmolavi <dmolavi@gmail.com> | 2010-12-25 16:09:42 -0500 |
---|---|---|
committer | dmolavi <dmolavi@gmail.com> | 2010-12-25 16:09:42 -0500 |
commit | 2d4d6133188b3b0052cce803d7f96b63b78af91f (patch) | |
tree | fe1d64c4ac5280d4529f96afb3662471a9ae9b66 | |
parent | 11df9f204f110ebb1a82e851a668bbaa4b7560ee (diff) |
Correct image block plurality, fixes 1506
-rw-r--r-- | modules/image_block/helpers/image_block_block.php | 2 |
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 0a53672c..cf718880 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 = t("Random image"); + $block->title = t2("Random image", "Random Images", $image_count); $block->content = new View("image_block_block.html"); $block->content->items = $items; } |