Changeset 1474:122a77514ce1 for admin
- Timestamp:
- 08/19/13 15:22:41 (12 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog.php
r1399 r1474 79 79 '<form action="blog.php" method="post" id="blog-form">'. 80 80 81 $core->formNonce().81 '<div>'$core->formNonce().'</div>'. 82 82 '<p><label class="required" for="blog_id"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog ID:').'</label> '. 83 83 form::field('blog_id',30,32,html::escapeHTML($blog_id)).'</p>'. -
admin/blog_pref.php
r1399 r1474 504 504 (html::escapeHTML($blog_settings->system->media_img_default_size) != '' ? html::escapeHTML($blog_settings->system->media_img_default_size) : 'm')). 505 505 '</p>'. 506 '<p><label for="media_img_default_alignment">'.__('Image alignment ').'</label>'.506 '<p><label for="media_img_default_alignment">'.__('Image alignment:').'</label>'. 507 507 form::combo('media_img_default_alignment',$img_default_alignment_combo,html::escapeHTML($blog_settings->system->media_img_default_alignment)). 508 508 '</p>'. … … 548 548 } else { 549 549 if ($blog_id == $core->blog->id) { 550 echo '<p class="message">'.__('The current blog cannot be deleted ').'</p>';550 echo '<p class="message">'.__('The current blog cannot be deleted.').'</p>'; 551 551 } else { 552 echo '<p class="message">'.__('Only superadmin can delete a blog ').'</p>';552 echo '<p class="message">'.__('Only superadmin can delete a blog.').'</p>'; 553 553 } 554 554 } -
admin/comments.php
r1424 r1474 134 134 if ($core->auth->check('publish,contentadmin',$core->blog->id)) 135 135 { 136 $combo_action[__(' publish')] = 'publish';137 $combo_action[__(' unpublish')] = 'unpublish';138 $combo_action[__(' mark as pending')] = 'pending';139 $combo_action[__(' mark as junk')] = 'junk';136 $combo_action[__('Publish')] = 'publish'; 137 $combo_action[__('Unpublish')] = 'unpublish'; 138 $combo_action[__('Mark as pending')] = 'pending'; 139 $combo_action[__('Mark as junk')] = 'junk'; 140 140 } 141 141 if ($core->auth->check('delete,contentadmin',$core->blog->id)) -
admin/comments_actions.php
r1179 r1474 137 137 $core->callBehavior('adminCommentsActionsContent',$core,$action,$hidden_fields); 138 138 139 echo '<p><a class="back" href="'.str_replace('&','&',$redir).'">'.__(' back').'</a></p>';139 echo '<p><a class="back" href="'.str_replace('&','&',$redir).'">'.__('Back to comments list').'</a></p>'; 140 140 141 141 dcPage::close(); -
admin/plugins.php
r1399 r1474 236 236 237 237 if ($is_writable) { 238 echo __('To install or upgrade a plugin you generally just need to upload it '.238 echo '<p>'.__('To install or upgrade a plugin you generally just need to upload it '. 239 239 'in "Install or upgrade a plugin" section.'); 240 240 } else { 241 echo __('To install or upgrade a plugin you just need to extract it in your plugins directory.');241 echo '<p>'.__('To install or upgrade a plugin you just need to extract it in your plugins directory.'); 242 242 } 243 243 echo '</p>'; -
admin/posts.php
r1426 r1474 282 282 '<p><label for="month" class="ib">'.__('Month:').'</label> '. 283 283 form::combo('month',$dt_m_combo,$month).'</p>'. 284 '< label for="lang" class="ib">'.__('Lang:').'</label> '.284 '<p><label for="lang" class="ib">'.__('Lang:').'</label> '. 285 285 form::combo('lang',$lang_combo,$lang).'</p> '. 286 286 '</div>'. -
admin/preferences.php
r1468 r1474 424 424 '</div>'. 425 425 '</div>'. 426 '<br class="clear" />'. //Opera sucks427 426 '</fieldset>'; 428 427 … … 442 441 '</div>'. 443 442 444 '<p><label for="new_pwd_c">'.__('Confirm password:').'</label>'.443 '<p><label for="new_pwd_c">'.__('Confirm new password:').'</label>'. 445 444 form::password('new_pwd_c',20,255).'</p>'. 446 445 '</fieldset>'. … … 500 499 form::checkbox('user_ui_hide_std_favicon',1,$user_ui_hide_std_favicon).' '. 501 500 __('Do not use standard favicon').'</label></p>'. 502 '<p class="clear form-note info">'.__('This will be applied for all users').'</p>'; 501 '<p class="clear form-note info">'.__('This will be applied for all users'). 502 '<br class="clear" /></p>';//Opera sucks; 503 503 } 504 504 505 505 echo 506 '<br class="clear" />'. //Opera sucks507 506 '</fieldset>'; 508 507 … … 530 529 '<p><label for="user_dm_quickentry" class="classic">'. 531 530 form::checkbox('user_dm_quickentry',1,$user_dm_quickentry).' '. 532 __('Display quick entry form').'</label>< /p>'.533 534 '<br class="clear" />'. //Opera sucks 531 __('Display quick entry form').'</label><br class="clear" />'. //Opera sucks 532 '</p>'. 533 535 534 '</fieldset>'; 536 535 -
admin/update.php
r1469 r1474 200 200 echo 201 201 '<p class="static-msg">'.sprintf(__('Dotclear %s is available.'),$new_v). 202 ($version_info ? ' <a href="'.$version_info.'">('.__(' information about this version').')</a>' : '').202 ($version_info ? ' <a href="'.$version_info.'">('.__('Information about this version').')</a>' : ''). 203 203 '</p>'. 204 204 … … 246 246 '<p class="message">'. 247 247 __("Congratulations, you're one click away from the end of the update."). 248 ' <strong><a href="index.php?logout=1">'.__('Finish the update .').'</a></strong>'.248 ' <strong><a href="index.php?logout=1">'.__('Finish the update').'</a>.</strong>'. 249 249 '</p>'; 250 250 } -
admin/user.php
r1399 r1474 226 226 '<p><label for="user_firstname">'.__('First Name:').'</label> '. 227 227 form::field('user_firstname',20,255,html::escapeHTML($user_firstname)). 228 '</ label></p>'.229 230 '<p><label for="user_displayname">'.__('Display name:').' '.228 '</p>'. 229 230 '<p><label for="user_displayname">'.__('Display name:').'</label> '. 231 231 form::field('user_displayname',20,255,html::escapeHTML($user_displayname)). 232 232 '</p>'. -
admin/users.php
r1426 r1474 39 39 40 40 41 # 41 #?Get users 42 42 $page = !empty($_GET['page']) ? $_GET['page'] : 1; 43 43 $nb_per_page = 30; … … 134 134 form::combo('order',$order_combo,$order).'</p>'. 135 135 '<p><span class="label ib">'.__('Show').'</span> <label for="nb" class="classic">'. 136 form::field('nb',3,3,$nb_per_page).' '.__('users per page').'</ p> '.136 form::field('nb',3,3,$nb_per_page).' '.__('users per page').'</label></p> '. 137 137 '</div>'. 138 138 '</div>'.
Note: See TracChangeset
for help on using the changeset viewer.