Changeset 2126:ae28a097d611
- Timestamp:
- 09/28/13 09:25:57 (12 years ago)
- Branch:
- default
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/default.css
r2125 r2126 1218 1218 } 1219 1219 th.first img { 1220 padding-right: 24px;1220 padding-right: 34px; 1221 1221 } 1222 1222 tr.line img.expand, th img.expand { -
inc/admin/lib.pager.php
r2071 r2126 173 173 '<th scope="col">'.__('Category').'</th>'. 174 174 '<th scope="col">'.__('Author').'</th>'. 175 '<th scope="col"> '.__('Comments').'</th>'.176 '<th scope="col"> '.__('Trackbacks').'</th>'.175 '<th scope="col"><img src="images/comments.png" alt="" /><span class="hidden">'.__('Comments').'</span></th>'. 176 '<th scope="col"><img src="images/trackbacks.png" alt="" /><span class="hidden">'.__('Trackbacks').'</span></th>'. 177 177 '<th scope="col">'.__('Status').'</th>'. 178 178 '</tr>%s</table></div>'; -
locales/fr/plugins.po
r2122 r2126 2237 2237 msgstr "Pour réordonner les pages, déplacez les items par glisser déposer puis cliquez sur “Enregistrer l'ordre des pages”." 2238 2238 2239 msgid "To rearrange pages order, change number at the begining of the line, then click on “Save pages order” button." 2240 msgstr "Pour réordonner les pages, modifier le numéro dans le champ au début de la ligne puis cliquez sur “Enregistrer l'ordre des pages”." 2241 2239 2242 msgid "Step #1" 2240 msgstr "Étape numéro1"2243 msgstr "Étape 1" 2241 2244 2242 2245 msgid "Step #2" 2243 msgstr "Étape numéro2"2246 msgstr "Étape 2" 2244 2247 2245 2248 msgid "Step #3" 2246 msgstr "Étape numéro3"2249 msgstr "Étape 3" 2247 2250 2248 2251 msgid "Back to filters list" -
plugins/pages/class.listpage.php
r2055 r2126 33 33 '<div class="table-outer">'. 34 34 '<table class="maximal dragable"><thead><tr>'. 35 '<th colspan="3" >'.__('Title').'</th>'.36 '<th >'.__('Date').'</th>'.37 '<th >'.__('Author').'</th>'.38 '<th >'.__('Comments').'</th>'.39 '<th >'.__('Trackbacks').'</th>'.40 '<th >'.__('Status').'</th>'.35 '<th colspan="3" scope="col" class="first">'.__('Title').'</th>'. 36 '<th scope="col">'.__('Date').'</th>'. 37 '<th scope="col">'.__('Author').'</th>'. 38 '<th scope="col"><img src="images/comments.png" alt="" /><span class="hidden">'.__('Comments').'</span></th>'. 39 '<th scope="col"><img src="images/trackbacks.png" alt="" /><span class="hidden">'.__('Trackbacks').'</span></th>'. 40 '<th scope="col">'.__('Status').'</th>'. 41 41 '</tr></thead><tbody id="pageslist">%s</tbody></table></div>'; 42 42 … … 106 106 '<td class="nowrap">'. 107 107 form::checkbox(array('entries[]'),$this->rs->post_id,$checked,'','',!$this->rs->isEditable(),'title="'.__('Select this page').'"').'</td>'. 108 '<td class="maximal" ><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'.108 '<td class="maximal" scope="row"><a href="'.$this->core->getPostAdminURL($this->rs->post_type,$this->rs->post_id).'">'. 109 109 html::escapeHTML($this->rs->post_title).'</a></td>'. 110 '<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. 111 110 '<td class="nowrap">'.dt::dt2str(__('%Y-%m-%d %H:%M'),$this->rs->post_dt).'</td>'. 112 111 '<td class="nowrap">'.$this->rs->user_id.'</td>'. 113 '<td class="nowrap ">'.$this->rs->nb_comment.'</td>'.114 '<td class="nowrap ">'.$this->rs->nb_trackback.'</td>'.112 '<td class="nowrap count">'.$this->rs->nb_comment.'</td>'. 113 '<td class="nowrap count">'.$this->rs->nb_trackback.'</td>'. 115 114 '<td class="nowrap status">'.$img_status.' '.$selected.' '.$protected.' '.$attach.'</td>'. 116 115 '</tr>';
Note: See TracChangeset
for help on using the changeset viewer.