Changeset 2079:f60e0883da0d
- Timestamp:
- 09/25/13 06:10:10 (12 years ago)
- Branch:
- default
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
locales/fr/plugins.po
r2077 r2079 1711 1711 msgstr "Renommer" 1712 1712 1713 msgid "Delete this tag :"1714 msgstr "Supprimer ce mot-clé :"1713 msgid "Delete this tag" 1714 msgstr "Supprimer ce mot-clé" 1715 1715 1716 1716 #, php-format -
plugins/tags/style.css
r1820 r2079 109 109 width: 3.5em; 110 110 } 111 .tag-actions form { 112 display: inline-block; 113 margin-right: 1.5em; 114 } -
plugins/tags/tag_posts.php
r2072 r2079 107 107 { 108 108 echo 109 '<div class="fieldset">'. 109 '<div class="tag-actions vertical-separator">'. 110 '<h3>'.html::escapeHTML($tag).'</h3>'. 110 111 '<form action="'.$this_url.'" method="post">'. 111 '<h3>'.__('Actions').'</h3>'. 112 '<p><label for="new_tag_id">'.__('Edit tag name:').'</label>'. 112 '<p><label for="new_tag_id" class="classic">'.__('Rename').'</label> '. 113 113 form::field('new_tag_id',20,255,html::escapeHTML($tag)). 114 '<input type="submit" value="'.__(' Rename').'" />'.114 '<input type="submit" value="'.__('OK').'" />'. 115 115 $core->formNonce(). 116 116 '</p></form>'; … … 119 119 echo 120 120 '<form id="tag_delete" action="'.$this_url.'" method="post">'. 121 '<p>'.__('Delete this tag:').' '. 122 '<input type="submit" class="delete" name="delete" value="'.__('Delete').'" />'. 121 '<p><input type="submit" class="delete" name="delete" value="'.__('Delete this tag').'" />'. 123 122 $core->formNonce(). 124 123 '</p></form>'; … … 128 127 129 128 # Show posts 130 echo '<h 3>'.sprintf(__('List of entries with the tag “%s”'),html::escapeHTML($tag)).'</h3>';129 echo '<h4 class="vertical-separator pretty-title">'.sprintf(__('List of entries with the tag “%s”'),html::escapeHTML($tag)).'</h4>'; 131 130 $post_list->display($page,$nb_per_page, 132 131 '<form action="plugin.php" method="post" id="form-entries">'.
Note: See TracChangeset
for help on using the changeset viewer.