summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/gallery_block.php
diff options
context:
space:
mode:
authorunostar <unostar@danalan.info>2009-06-11 05:12:40 +0800
committerBharat Mediratta <bharat@menalto.com>2009-06-12 15:39:16 +0800
commit5dcbc3898d3b96af9ff4ea945f15edf39033dac4 (patch)
treeea5ae8e5a6b1f5b9e3dd936997b70252da15b725 /modules/gallery/helpers/gallery_block.php
parente9e61d51bc4a01439c54159aea816d35bf9ef38d (diff)
adding string to localizer
Signed-off-by: Bharat Mediratta <bharat@menalto.com>
Diffstat (limited to 'modules/gallery/helpers/gallery_block.php')
-rw-r--r--modules/gallery/helpers/gallery_block.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/gallery_block.php b/modules/gallery/helpers/gallery_block.php
index abc8a195..67900282 100644
--- a/modules/gallery/helpers/gallery_block.php
+++ b/modules/gallery/helpers/gallery_block.php
@@ -92,7 +92,7 @@ class gallery_block_Core {
$form = new Forge("admin/dashboard/add_block", "", "post",
array("id" => "gAddDashboardBlockForm"));
$group = $form->group("add_block")->label(t("Add Block"));
- $group->dropdown("id")->label("Available Blocks")->options(block_manager::get_available());
+ $group->dropdown("id")->label(t("Available Blocks"))->options(block_manager::get_available());
$group->submit("center")->value(t("Add to center"));
$group->submit("sidebar")->value(t("Add to sidebar"));
return $form;