I18N: Add context to privacy request status strings.
These strings already have a context in `create_initial_post_types()`, and should use the same context in `_wp_privacy_statuses()`. Props ramiy, audrasjb. Fixes #50740. git-svn-id: https://develop.svn.wordpress.org/trunk@48578 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c0920761a8
commit
8dc4165d46
@ -982,10 +982,10 @@ function get_page_statuses() {
|
||||
*/
|
||||
function _wp_privacy_statuses() {
|
||||
return array(
|
||||
'request-pending' => __( 'Pending' ), // Pending confirmation from user.
|
||||
'request-confirmed' => __( 'Confirmed' ), // User has confirmed the action.
|
||||
'request-failed' => __( 'Failed' ), // User failed to confirm the action.
|
||||
'request-completed' => __( 'Completed' ), // Admin has handled the request.
|
||||
'request-pending' => _x( 'Pending', 'request status' ), // Pending confirmation from user.
|
||||
'request-confirmed' => _x( 'Confirmed', 'request status' ), // User has confirmed the action.
|
||||
'request-failed' => _x( 'Failed', 'request status' ), // User failed to confirm the action.
|
||||
'request-completed' => _x( 'Completed', 'request status' ), // Admin has handled the request.
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user