Changeset 41706 for trunk/src/wp-admin/includes/post.php
- Timestamp:
- 10/03/2017 03:10:38 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/post.php
r41187 r41706 1596 1596 <p class="currently-editing wp-tab-first" tabindex="0"> 1597 1597 <?php 1598 _e( 'This content is currently locked.' ); 1599 if ( $override ) 1600 printf( ' ' . __( 'If you take over, %s will be blocked from continuing to edit.' ), esc_html( $user->display_name ) ); 1598 if ( $override ) { 1599 /* translators: %s: user's display name */ 1600 printf( __( '%s is already editing this post. Do you want to take over?' ), esc_html( $user->display_name ) ); 1601 } else { 1602 /* translators: %s: user's display name */ 1603 printf( __( '%s is already editing this post.' ), esc_html( $user->display_name ) ); 1604 } 1601 1605 ?> 1602 1606 </p>
Note: See TracChangeset
for help on using the changeset viewer.