Changeset 2116:5b6631127f4e
- Timestamp:
- 09/27/13 20:59:55 (12 years ago)
- Branch:
- default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/index.php
r2085 r2116 288 288 if (!empty($plugins_install['success'])) 289 289 { 290 echo '<div class="s tatic-msg">'.__('Following plugins have been installed:').'<ul>';290 echo '<div class="success">'.__('Following plugins have been installed:').'<ul>'; 291 291 foreach ($plugins_install['success'] as $k => $v) { 292 292 echo '<li>'.$k.'</li>'; … … 332 332 } 333 333 334 # Dashboard elements 335 echo '<div id="dashboard-main">'; 336 334 337 # Dashboard icons 335 echo '<div id=" dashboard-main"><div id="icons">';338 echo '<div id="icons">'; 336 339 foreach ($__dashboard_icons as $i) 337 340 { … … 403 406 } 404 407 405 //$class = ' '.(($dashboardItems != '') && ($dashboardContents != '') ? 'two-boxes' : 'one-box');406 407 408 if ($dashboardContents != '' || $dashboardItems != '') { 408 409 echo 409 //'<hr />'. 410 '<div id="dashboard-boxes">'; 411 echo 412 '<div class="db-items">'. 413 $dashboardItems.$dashboardContents. 414 '</div>'; 415 //echo ($dashboardContents ? '<div class="db-contents'.$class.'">'.$dashboardContents.'</div>' : ''); 416 //echo ($dashboardItems ? '<div class="db-items'.$class.'">'.$dashboardItems.'</div>' : ''); 417 echo 410 '<div id="dashboard-boxes">'. 411 '<div class="db-items">'.$dashboardItems.$dashboardContents.'</div>'. 418 412 '</div>'; 419 413 } 420 414 421 echo '</div>'; 415 echo '</div>'; #end dashboard-main 422 416 423 417 dcPage::close(); -
admin/style/default.css
r2111 r2116 1492 1492 .db-items li, .db-contents li { 1493 1493 margin: 0.25em 0 0 0; 1494 color: #676e78;1495 1494 } 1496 1495 #news dt { … … 2564 2563 .colorEndValidatorMsg { 2565 2564 color: #ffcc00; 2566 } 2565 } -
locales/fr/help/index.html
r2112 r2116 164 164 <div class="three-boxes first-child"> 165 165 <h4 class="pretty-title">Design & Thèmes</h4> 166 <ul >166 <ul class="from-left"> 167 167 <li><a href="/documentation/2.0/resources/themes">Thèmes</a> 168 168 <ul><li>Guide d'utilisation des thèmes</li><li>Les balises template</li><li>Annexes</a></li></ul></li> … … 176 176 <div class="three-boxes first-child"> 177 177 <h4 class="pretty-title">Code & Plugins</h4> 178 <ul >178 <ul class="from-left"> 179 179 <li><a href="/documentation/2.0/resources/tpl">Création d’une balise tpl pour un plugin ou un thème</a> 180 180 <ul><li>Introduction</li><li>Les valeurs</li><li>Les blocs d’instruction</li><li>Démonstration de l'influence du cache des templates</li></ul></li> … … 191 191 <div class="three-boxes"> 192 192 <h4 class="pretty-title">Contribution & Support</h4> 193 <ul >193 <ul class="from-left"> 194 194 <li><a href="/documentation/2.0/resources/contribute">Contribuer</a> 195 195 <ul><li>Améliorer la documentation</li><li>Où envoyer vos œuvres?</li><li>Rapporter les bugs ou proposer une amélioration</li><li>Suggestions</li><li>Traduction</li></ul></li> -
plugins/maintenance/_admin.php
r2087 r2116 171 171 '<div id="maintenance-expired" class="box small">'. 172 172 '<h3><img src="index.php?pf=maintenance/icon-small.png" alt="" /> '.__('Maintenance').'</h3>'. 173 '<p class="warn ">'.sprintf(__('There is a task to execute.', 'There are %s tasks to execute.', count($lines)), count($lines)).'</p>'.173 '<p class="warning no-margin">'.sprintf(__('There is a task to execute.', 'There are %s tasks to execute.', count($lines)), count($lines)).'</p>'. 174 174 '<ul>'.implode('',$lines).'</ul>'. 175 175 '<p><a href="plugin.php?p=maintenance">'.__('Manage tasks').'</a></p>'.
Note: See TracChangeset
for help on using the changeset viewer.