Changeset 82:a31a062afd24 for admin
- Timestamp:
- 05/02/11 08:28:04 (14 years ago)
- Branch:
- userprefs
- Location:
- admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog_pref.php
r38 r82 266 266 { 267 267 echo 268 '<p><label for="blog_id" class="required"> '.__('Blog ID:').268 '<p><label for="blog_id" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog ID:'). 269 269 form::field('blog_id',30,32,html::escapeHTML($blog_id)).'</label></p>'. 270 270 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').' '. … … 273 273 274 274 echo 275 '<p><label for="blog_name" class="required"> '.__('Blog name:').275 '<p><label for="blog_name" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog name:'). 276 276 form::field('blog_name',30,255,html::escapeHTML($blog_name)).'</label></p>'; 277 277 … … 279 279 { 280 280 echo 281 '<p><label for="blog_url" class="required"> '.__('Blog URL:').281 '<p><label for="blog_url" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog URL:'). 282 282 form::field('blog_url',30,255,html::escapeHTML($blog_url)).'</label></p>'. 283 283 -
admin/categories.php
r38 r82 124 124 '<form action="category.php" method="post">'. 125 125 '<fieldset><legend>'.__('Add a new category').'</legend>'. 126 '<p><label for="cat_title"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').' '.126 '<p><label class="required" for="cat_title"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').' '. 127 127 form::field('cat_title',30,255).'</label></p>'. 128 128 '<p><label for="new_cat_parent">'.__('Parent:').' '. -
admin/index.php
r45 r82 221 221 222 222 # Dashboard icons 223 echo '<div id="dashboard-main"><div id="icons" >';223 echo '<div id="dashboard-main"><div id="icons" class="clear">'; 224 224 foreach ($__dashboard_icons as $i) 225 225 { -
admin/preferences.php
r35 r82 306 306 } 307 307 if (!empty($_GET['neworder'])) { 308 echo '<p class="message">'.__('Favorites ha sbeen successfully updated.').'</p>';308 echo '<p class="message">'.__('Favorites have been successfully updated.').'</p>'; 309 309 } 310 310 if (!empty($_GET['removed'])) { … … 463 463 echo 464 464 '<div class="clear">'. 465 '<p class="col">'.form::hidden('favs_order','').465 '<p>'.form::hidden('favs_order',''). 466 466 $core->formNonce(). 467 '<input type="submit" name="saveorder" value="'.__('Save order').'">'. 468 ($core->auth->isSuperAdmin() ? ' <input class="reset" type="submit" name="replace" value="'.__('Define as default favorites').'">' : ''). 469 '</p>'. 470 471 '<p class="right"><input type="submit" class="delete" name="removeaction"'. 467 '<input type="submit" name="saveorder" value="'.__('Save order').'"> '. 468 469 '<input type="submit" class="delete" name="removeaction"'. 472 470 'value="'.__('Delete selected favorites').'" '. 473 471 'onclick="return window.confirm(\''.html::escapeJS( 474 472 __('Are you sure you want to remove selected favorites?')).'\');" /></p>'. 473 474 ($core->auth->isSuperAdmin() ? 475 '<hr />'. 476 '<p>Si vous disposez du statut de super administrateur, vous pouvez faire de cet ensemble celui qui sera affiché par défaut sur tous les blogs de l\'installation :</p>'. 477 '<p><input class="reset" type="submit" name="replace" value="'.__('Define as default favorites').'">' : '').'</p>'. 475 478 '</div>'; 476 479 } else { -
admin/style/default.css
r74 r82 281 281 } 282 282 #dashboard-main #icons p { 283 width: 2 40px;283 width: 210px; 284 284 text-align: center; 285 285 margin: 2em 0 0 0; … … 439 439 display: block; 440 440 float: left; 441 width: 170px; 442 margin-bottom: 2.5em; 441 width: 164px; 442 margin-top: 1em; 443 margin-bottom: 1.5em; 443 444 } 444 445 #my-favs label {height: 2.5em;width:140px;margin-top:.3em;} … … 787 788 padding: 5px; 788 789 float: right; 789 height: 4 00px;790 width: 3 00px;790 height: 420px; 791 width: 320px; 791 792 overflow: auto; 792 793 } … … 823 824 border: 1px solid #999; 824 825 overflow: auto; 825 height: 4 00px;826 height: 420px; 826 827 padding: 5px; 827 828 margin: 0; … … 1187 1188 -moz-border-radius: .2em; 1188 1189 border-radius: .2em; 1190 margin-bottom: .1em; 1189 1191 } 1190 1192 /* validation */
Note: See TracChangeset
for help on using the changeset viewer.