summaryrefslogtreecommitdiff
path: root/modules/tag/views
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/views
parente53916dd0622e3db61d6a05ad0fe69e8d7c7f11a (diff)
Changing t() placeholder syntax from {{replace_me}} to %replace_me.
Diffstat (limited to 'modules/tag/views')
-rw-r--r--modules/tag/views/admin_tags.html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tag/views/admin_tags.html.php b/modules/tag/views/admin_tags.html.php
index 12f724b2..5e9613b1 100644
--- a/modules/tag/views/admin_tags.html.php
+++ b/modules/tag/views/admin_tags.html.php
@@ -25,13 +25,13 @@
<ul>
<li>
<a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>" class="gDialogLink"
- title="<?= t("Delete tag {{tag_name}}", array("tag_name" => $tag->name)) ?>">
+ title="<?= t("Delete tag %tag_name", array("tag_name" => $tag->name)) ?>">
<?= t("delete") ?>
</a>
</li>
<li>
<a href="<?= url::site("admin/tags/form_rename/$tag->id") ?>" class="gDialogLink"
- title="<?= t("Rename tag {{tag_name}}", array("tag_name" => $tag->name)) ?>">
+ title="<?= t("Rename tag %tag_name", array("tag_name" => $tag->name)) ?>">
<?= t("rename") ?>
</a>
</li>