summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
diff options
context:
space:
mode:
authorAndy Staudacher <andy.st@gmail.com>2009-01-15 10:02:41 +0000
committerAndy Staudacher <andy.st@gmail.com>2009-01-15 10:02:41 +0000
commite4a9b19bf9997f46203fbc18c696c63703a72625 (patch)
treec33f4cb354961eeba452f428dfa68c664bc3226f /modules/tag/helpers
parente53916dd0622e3db61d6a05ad0fe69e8d7c7f11a (diff)
Changing t() placeholder syntax from {{replace_me}} to %replace_me.
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r--modules/tag/helpers/tag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php
index 98c904d0..7dec6809 100644
--- a/modules/tag/helpers/tag.php
+++ b/modules/tag/helpers/tag.php
@@ -97,7 +97,7 @@ class tag_Core {
static function get_delete_form($tag) {
$form = new Forge("admin/tags/delete/$tag->id", "", "post", array("id" => "gDeleteTagForm"));
- $group = $form->group("delete_tag")->label(t("Really delete tag {{tag_name}}?", array("tag_name" => $tag->name)));
+ $group = $form->group("delete_tag")->label(t("Really delete tag %tag_name?", array("tag_name" => $tag->name)));
$group->submit("")->value(t("Delete Tag"));
$form->add_rules_from(ORM::factory("tag"));
return $form;