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_move.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 'template/yoga/admin/cat_move.tpl')
-rw-r--r-- | template/yoga/admin/cat_move.tpl | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/template/yoga/admin/cat_move.tpl b/template/yoga/admin/cat_move.tpl index e35731bb1..318a025ab 100644 --- a/template/yoga/admin/cat_move.tpl +++ b/template/yoga/admin/cat_move.tpl @@ -1,41 +1,38 @@ -<!-- 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:Move categories}</h2> + <h2>{'Move categories'|@translate}</h2> </div> -<form method="post" action="{F_ACTION}" class="filter" id="catMove"> +<form method="post" action="{$F_ACTION}" class="filter" id="catMove"> <fieldset> - <legend>{lang:Virtual categories movement}</legend> + <legend>{'Virtual categories movement'|@translate}</legend> <label> - {lang:Virtual categories to move} + {'Virtual categories to move'|@translate} <select class="categoryList" name="selection[]" multiple="multiple"> - <!-- BEGIN category_option_selection --> - <option {category_option_selection.SELECTED} value="{category_option_selection.VALUE}">{category_option_selection.OPTION}</option> - <!-- END category_option_selection --> + {html_options options=$category_to_move_options} </select> </label> <label> - {lang:New parent category} + {'New parent category'|@translate} <select class="categoryDropDown" name="parent"> - <!-- BEGIN category_option_parent --> - <option {category_option_parent.SELECTED} value="{category_option_parent.VALUE}">{category_option_parent.OPTION}</option> - <!-- END category_option_parent --> + <option value="0">------------</option> + {html_options options=$category_parent_options} </select> </label> </fieldset> <p> - <input class="submit" type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED}> - <input class="submit" type="reset" name="reset" value="{lang:Reset}"> + <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}> + <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}"> </p> </form> |