diff --git a/src/wp-includes/post.php b/src/wp-includes/post.php
index 20c4d4da42..0e01856709 100644
|
a
|
b
|
function get_page_statuses() { |
| 982 | 982 | */ |
| 983 | 983 | function _wp_privacy_statuses() { |
| 984 | 984 | return array( |
| 985 | | 'request-pending' => __( 'Pending' ), // Pending confirmation from user. |
| 986 | | 'request-confirmed' => __( 'Confirmed' ), // User has confirmed the action. |
| 987 | | 'request-failed' => __( 'Failed' ), // User failed to confirm the action. |
| 988 | | 'request-completed' => __( 'Completed' ), // Admin has handled the request. |
| | 985 | 'request-pending' => __( 'Pending', 'request status' ), // Pending confirmation from user. |
| | 986 | 'request-confirmed' => __( 'Confirmed', 'request status' ), // User has confirmed the action. |
| | 987 | 'request-failed' => __( 'Failed', 'request status' ), // User failed to confirm the action. |
| | 988 | 'request-completed' => __( 'Completed', 'request status' ), // Admin has handled the request. |
| 989 | 989 | ); |
| 990 | 990 | } |
| 991 | 991 | |