Changeset 26241 for trunk/src/wp-admin/post.php
- Timestamp:
- 11/17/2013 03:20:38 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/post.php
r26231 r26241 100 100 $error_msg = false; 101 101 if ( ! wp_verify_nonce( $nonce, 'add-post' ) ) 102 $error_msg = 'Unable to submit this form, please refresh and try again.';102 $error_msg = __( 'Unable to submit this form, please refresh and try again.' ); 103 103 104 104 if ( ! current_user_can( 'edit_posts' ) ) 105 $error_msg = "Oops, you don't have access to add new drafts.";105 $error_msg = __( 'Oops, you don’t have access to add new drafts.' ); 106 106 107 107 if ( $error_msg )
Note: See TracChangeset
for help on using the changeset viewer.