diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-06-12 01:00:44 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-06-12 01:00:44 -0700 |
commit | e6ce12e1d3d143f29695ac8dc2db8da4ef54a49b (patch) | |
tree | a2e369baa0e2af9c2d7ea36b682e6112069c9d45 /modules/gallery/helpers | |
parent | b70623118ab05ecffb00e26c7eb823c3ee94ce0d (diff) | |
parent | 5dcbc3898d3b96af9ff4ea945f15edf39033dac4 (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/gallery_block.php | 2 |
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; |