Changeset 1534:7bee53dc0c21
- Timestamp:
- 08/23/13 14:52:25 (12 years ago)
- Branch:
- default
- Children:
- 1547:22dcc292b34d, 1548:8a324bd300ef
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/categories.php
r1532 r1534 145 145 echo 146 146 '<form action="categories.php" method="post" id="form-categories">'. 147 '<h3>'.__(' Categories list').'</h3>'.147 '<h3>'.__('List of blog\'s categories').'</h3>'. 148 148 '<div id="categories">'; 149 149 … … 168 168 echo 169 169 '<p>'. 170 form::checkbox(array('categories[]' ),$rs->cat_id).171 '< strong><a href="category.php?id='.$rs->cat_id.'">'.html::escapeHTML($rs->cat_title).'</a></strong>'.170 form::checkbox(array('categories[]','cat-'.$rs->cat_id),$rs->cat_id). 171 '<label class="classic" for="cat-'.$rs->cat_id.'"><a href="category.php?id='.$rs->cat_id.'">'.html::escapeHTML($rs->cat_title).'</a></label>'. 172 172 ' (<a href="posts.php?cat_id='.$rs->cat_id.'">'. 173 173 sprintf(($rs->nb_post > 1 ? __('%d entries') : __('%d entry') ),$rs->nb_post).'</a>'. … … 200 200 echo 201 201 '<div class="col clear">'. 202 '<h3>'.__('Categories order').'</h3>'. 202 203 '<form action="categories.php" method="post" id="reset-order">'. 203 '<h3>'.__('Reorder categories').'</h3>'. 204 '<p>'.__('This will relocate all categories on the top level').'</p> '. 205 '<p><input class="reset" type="submit" value="'.__('Reorder').'" />'. 204 '<!-- <p>'.__('This will relocate all categories on the top level').'</p> -->'. 205 '<p><input type="submit" value="'.__('Reorder all categories on the top level').'" />'. 206 206 form::hidden(array('reset'),1). 207 207 $core->formNonce().'</p>'. … … 213 213 && $rs->count()>1) { 214 214 echo 215 '<div class="col clear">'.215 '<div class="col">'. 216 216 '<form action="categories.php" method="post">'. 217 '<p>'.__('To rearrange categories order, move items by drag and drop, then click on “Save categories order” button.').'</p>'. 217 218 '<p>'. 218 219 '<input type="hidden" id="categories_order" name="categories_order" value=""/>'. 219 '<input id="save-set-order" type="submit" value="'.__('Save categories order').'"/>'.220 '<input type="submit" id="save-set-order" value="'.__('Save categories order').'" />'. 220 221 $core->formNonce().'</p>'. 221 222 '</form>'. -
admin/style/default.css
r1532 r1534 639 639 #save-set-order.disabled { 640 640 text-shadow: none; 641 color: # 000;641 color: #666; 642 642 background: #F5F5F5; 643 background: -webkit-gradient(linear, left top, left bottom, from(#DFDFDF), to(#F5F5F5));644 background: -moz-linear-gradient(center top , #F5F5F5, #DFDFDF) repeat scroll 0 0 transparent;645 643 border: 1px solid #CCCCCC; 646 644 } -
locales/fr/main.po
r1532 r1534 614 614 msgstr "Pas encore de catégorie." 615 615 616 msgid " Categories list"617 msgstr "Liste des catégories "616 msgid "List of blog\'s categories" 617 msgstr "Liste des catégories du blog" 618 618 619 619 #, php-format … … 649 649 msgstr "Choisissez une catégorie à supprimer :" 650 650 651 msgid "Categories order" 652 msgstr "Ordonnancement des catégories" 653 651 654 msgid "Save categories order" 652 msgstr " Sauver l'ordre des catégories"655 msgstr "Enregistrer l'ordre des catégories" 653 656 654 657 msgid "And choose the category which will receive its entries:" … … 661 664 msgstr "Supprimer" 662 665 663 msgid "Reorder categories"664 msgstr "R éordonner les catégories"666 msgid "Reorder all categories on the top level" 667 msgstr "Replacer toutes les catégories au premier niveau" 665 668 666 669 msgid "This will relocate all categories on the top level" 667 670 msgstr "Ceci va déplacer toutes les catégories au premier niveau" 671 672 msgid "To rearrange categories order, move items by drag and drop, then click on “Save categories order” button." 673 msgstr "Pour modifier l\'ordre des catégories, déplacez les items par glisser-déposer puis cliquez sur le bouton \"Enregistrer l\'ordre des catégories\"." 668 674 669 675 msgid "Reorder" … … 3170 3176 msgid "This category will be created when you will save your post." 3171 3177 msgstr "Cette catégorie sera créée lorsque vous enregistrerez votre billet." 3178 3179 msgid "Selected categories action:" 3180 msgstr "Action sur les catégories sélectionnées :"
Note: See TracChangeset
for help on using the changeset viewer.