aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/cat_move.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/yoga/admin/cat_move.tpl')
-rw-r--r--template/yoga/admin/cat_move.tpl29
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>