diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-02-28 02:41:48 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-02-28 02:41:48 +0000 |
commit | c73923204927f406d492491398980d3aa429c4eb (patch) | |
tree | 717f79ecab01b8d97c359c27406be6dd26ff8193 /template/yoga/admin/cat_options.tpl | |
parent | 618158aca4d99fe522b0f54d547442f17a5db148 (diff) |
- migrate many templates to smarty
git-svn-id: http://piwigo.org/svn/trunk@2223 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/admin/cat_options.tpl | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/template/yoga/admin/cat_options.tpl b/template/yoga/admin/cat_options.tpl index 8551ff3e3..356e66223 100644 --- a/template/yoga/admin/cat_options.tpl +++ b/template/yoga/admin/cat_options.tpl @@ -1,19 +1,16 @@ -<!-- DEV TAG: not smarty migrated --> -<!-- $Id$ --> +{* $Id$ *} <div class="titrePage"> <ul class="categoryActions"> - <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li> + <li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$themeconf.icon_dir}/help.png" class="button" alt="(?)"></a></li> </ul> - <h2>{lang:cat_options_title} {TABSHEET_TITLE}</h2> - {TABSHEET} + <h2>{'cat_options_title'|@translate} {$TABSHEET_TITLE}</h2> + {include file='admin/tabsheet.tpl'} </div> -<form method="post" action="{F_ACTION}" id="cat_options"> +<form method="post" action="{$F_ACTION}" id="cat_options"> <fieldset> - <legend>{L_SECTION}</legend> - {DOUBLE_SELECT} + <legend>{$L_SECTION}</legend> + {$DOUBLE_SELECT} </fieldset> </form> -<p class="information">{L_CAT_OPTIONS_INFO}</p> - |