diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2009-01-15 10:02:41 +0000 | 
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2009-01-15 10:02:41 +0000 | 
| commit | e4a9b19bf9997f46203fbc18c696c63703a72625 (patch) | |
| tree | c33f4cb354961eeba452f428dfa68c664bc3226f /core/views/admin_themes.html.php | |
| parent | e53916dd0622e3db61d6a05ad0fe69e8d7c7f11a (diff) | |
Changing t() placeholder syntax from {{replace_me}} to %replace_me.
Diffstat (limited to 'core/views/admin_themes.html.php')
| -rw-r--r-- | core/views/admin_themes.html.php | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/core/views/admin_themes.html.php b/core/views/admin_themes.html.php index b0b4215d..43328b3a 100644 --- a/core/views/admin_themes.html.php +++ b/core/views/admin_themes.html.php @@ -31,7 +31,7 @@        <? if (!$info->site) continue ?>        <? if ($id == $site) continue ?>        <div class="gBlock"> -        <a href="<?= url::site("admin/themes/preview/site/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: {{theme_name}}", array("theme_name" => $info->name)) ?>"> +        <a href="<?= url::site("admin/themes/preview/site/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>">            <img src="<?= url::file("themes/{$id}/thumbnail.png") ?>"                 alt="<?= $info->name ?>" />            <h3> <?= $info->name ?> </h3> @@ -69,7 +69,7 @@        <? if (!$info->admin) continue ?>        <? if ($id == $admin) continue ?>        <div class="gBlock"> -        <a href="<?= url::site("admin/themes/preview/admin/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: {{theme_name}}", array("theme_name" => $info->name)) ?>"> +        <a href="<?= url::site("admin/themes/preview/admin/$id") ?>" class="gDialogLink" title="<?= t("Theme Preview: %theme_name", array("theme_name" => $info->name)) ?>">            <img src="<?= url::file("themes/{$id}/thumbnail.png") ?>"                 alt="<?= $info->name ?>" />            <h3> <?= $info->name ?> </h3> | 
