Changeset 1396:726cee12beea for admin/post.php
- Timestamp:
- 08/16/13 13:23:43 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r1392 r1396 411 411 '</p>'. 412 412 413 '<p class="area" id="notes-area"><label for="post_notes">'.__('Personal notes:').'< span class="form-note">'.414 __('Add unpublished notes.').'</span> </label>'.413 '<p class="area" id="notes-area"><label for="post_notes">'.__('Personal notes:').'</label><span class="form-note">'. 414 __('Add unpublished notes.').'</span>'. 415 415 form::textarea('post_notes',50,5,html::escapeHTML($post_notes)). 416 416 '</p>'; … … 450 450 'items' => array( 451 451 'post_status' => 452 '<p><label for="post_status" >'.__('Entry status:').452 '<p><label for="post_status" class="ib">'.__('Entry status').'</label>'. 453 453 form::combo('post_status',$status_combo,$post_status,'maximal','',!$can_publish). 454 '</ label></p>',454 '</p>', 455 455 'post_dt' => 456 '<p><label for="post_dt" >'.__('Published on:').456 '<p><label for="post_dt" class="ib">'.__('Publication date and hour').'</label>'. 457 457 form::field('post_dt',16,16,$post_dt,($bad_dt ? 'invalid' : '')). 458 '</ label></p>',458 '</p>', 459 459 'post_lang' => 460 '<p><label for="post_lang" >'.__('Entry lang:').460 '<p><label for="post_lang" class="ib">'.__('Entry lang').'</label>'. 461 461 form::combo('post_lang',$lang_combo,$post_lang). 462 '</ label></p>',462 '</p>', 463 463 'post_format' => 464 '<p><label for="post_format" >'.__('Text formating:').464 '<p><label for="post_format" class="ib">'.__('Text formating').'</label>'. 465 465 form::combo('post_format',$formaters_combo,$post_format,'maximal'). 466 '</ label></p>'.466 '</p>'. 467 467 '<p>'.($post_id && $post_format != 'xhtml' ? 468 468 '<a id="convert-xhtml" class="button maximal" href="post.php?id='.$post_id.'&xconv=1">'. … … 476 476 __('Selected entry').'</label></p>', 477 477 'cat_id' => 478 '<p><label for="cat_id" >'.__('Category:').478 '<p><label for="cat_id" class="ib">'.__('Category').'</label>'. 479 479 form::combo('cat_id',$categories_combo,$cat_id,'maximal'). 480 '</ label></p>')),480 '</p>')), 481 481 'options-box' => array( 482 482 'title' => __('Options'), … … 504 504 '<p class="form-note warn">'.__('Warning: Trackbacks are not accepted on this blog.').'</p>'), 505 505 'post_password' => 506 '<p><label for="post_password" >'.__('Password:').506 '<p><label for="post_password" class="ib">'.__('Password').'</label>'. 507 507 form::field('post_password',10,32,html::escapeHTML($post_password),'maximal'). 508 '</ label></p>',508 '</p>', 509 509 'post_url' => 510 510 '<div class="lockable">'. 511 '<p><label for="post_url" >'.__('Edit basename:').511 '<p><label for="post_url" class="ib">'.__('Edit basename').'</label>'. 512 512 form::field('post_url',10,255,html::escapeHTML($post_url),'maximal'). 513 '</ label></p>'.513 '</p>'. 514 514 '<p class="form-note warn">'. 515 515 __('Warning: If you set the URL manually, it may conflict with another entry.'). … … 624 624 '<form action="comment.php" method="post" id="comment-form">'. 625 625 '<div class="constrained">'. 626 '<p><label for="comment_author" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Name:'). 626 '<p><label for="comment_author" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Name:').'</label>'. 627 627 form::field('comment_author',30,255,html::escapeHTML($core->auth->getInfo('user_cn'))). 628 '</ label></p>'.629 630 '<p><label for="comment_email">'.__('Email:'). 628 '</p>'. 629 630 '<p><label for="comment_email">'.__('Email:').'</label>'. 631 631 form::field('comment_email',30,255,html::escapeHTML($core->auth->getInfo('user_email'))). 632 '</ label></p>'.633 634 '<p><label for="comment_site">'.__('Web site:'). 632 '</p>'. 633 634 '<p><label for="comment_site">'.__('Web site:').'</label>'. 635 635 form::field('comment_site',30,255,html::escapeHTML($core->auth->getInfo('user_url'))). 636 '</ label></p>'.636 '</p>'. 637 637 638 638 '<p class="area"><label for="comment_content" class="required"><abbr title="'.__('Required field').'">*</abbr> '.
Note: See TracChangeset
for help on using the changeset viewer.