Ticket #32194: 32194.2.diff
File 32194.2.diff, 1.3 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/edit.css
1586 1586 font-size: 14px; 1587 1587 padding: 0 10px 0 10px; 1588 1588 } 1589 1590 1591 /* Notification dialogs */ 1592 .notification-dialog { 1593 left: auto; 1594 width: auto; 1595 margin-left: 1em; 1596 margin-right: 1em; 1597 } 1598 1599 #post-lock-dialog .post-locked-avatar { 1600 display: none; 1601 } 1602 1603 #post-lock-dialog .post-locking-author-name { 1604 font-weight: bold; 1605 } 1606 1607 #post-lock-dialog .post-locked-message a.button { 1608 display: block; 1609 margin-top: .75em; 1610 text-align: center; 1611 } 1589 1612 } -
src/wp-admin/includes/post.php
1519 1519 <?php 1520 1520 _e( 'This content is currently locked.' ); 1521 1521 if ( $override ) 1522 printf( ' ' . __( 'If you take over, %swill be blocked from continuing to edit.' ), esc_html( $user->display_name ) );1522 printf( ' ' . __( 'If you take over, <span class="post-locking-author-name">%s</span> will be blocked from continuing to edit.' ), esc_html( $user->display_name ) ); 1523 1523 ?> 1524 1524 </p> 1525 1525 <?php