Changeset 38666
- Timestamp:
- 09/28/2016 12:16:44 AM (8 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r38625 r38666 2016 2016 'success' => false, 2017 2017 'data' => array( 2018 'message' => __( "You don't have permission to attach files to this post."),2018 'message' => __( 'Sorry, you are not allowed to attach files to this post.' ), 2019 2019 'filename' => $_FILES['async-upload']['name'], 2020 2020 ) -
trunk/src/wp-admin/users.php
r38647 r38666 383 383 } elseif ( !current_user_can('remove_user', $id) ) { 384 384 /* translators: 1: user id, 2: user login */ 385 echo "<li>" . sprintf(__('ID #%1$s: %2$s <strong> You don’t have permissionto remove this user.</strong>'), $id, $user->user_login) . "</li>\n";385 echo "<li>" . sprintf(__('ID #%1$s: %2$s <strong>Sorry, you are not allowed to remove this user.</strong>'), $id, $user->user_login) . "</li>\n"; 386 386 } else { 387 387 /* translators: 1: user id, 2: user login */
Note: See TracChangeset
for help on using the changeset viewer.