summaryrefslogtreecommitdiff
path: root/core/views/admin_block_stats.html.php
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 /core/views/admin_block_stats.html.php
parente53916dd0622e3db61d6a05ad0fe69e8d7c7f11a (diff)
Changing t() placeholder syntax from {{replace_me}} to %replace_me.
Diffstat (limited to 'core/views/admin_block_stats.html.php')
-rw-r--r--core/views/admin_block_stats.html.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/views/admin_block_stats.html.php b/core/views/admin_block_stats.html.php
index 42f34aa4..2d975073 100644
--- a/core/views/admin_block_stats.html.php
+++ b/core/views/admin_block_stats.html.php
@@ -1,12 +1,12 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<li>
- <?= t("Version: {{version}}", array("version" => module::get_var("core", "version"))) ?>
+ <?= t("Version: %version", array("version" => module::get_var("core", "version"))) ?>
</li>
<li>
- <?= t("Albums: {{count}}", array("count" => $album_count)) ?>
+ <?= t("Albums: %count", array("count" => $album_count)) ?>
</li>
<li>
- <?= t("Photos: {{count}}", array("count" => $photo_count)) ?>
+ <?= t("Photos: %count", array("count" => $photo_count)) ?>
</li>
</ul>