diff --git a/wp-admin/privacy.php b/wp-admin/privacy.php index b9c5d8c181..cc2b0f6797 100644 --- a/wp-admin/privacy.php +++ b/wp-admin/privacy.php @@ -22,7 +22,7 @@ if ( ! empty( $action ) ) { $privacy_policy_page_id = isset( $_POST['page_for_privacy_policy'] ) ? (int) $_POST['page_for_privacy_policy'] : 0; update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); - $privacy_page_updated_message = __( 'Privacy policy page updated successfully.' ); + $privacy_page_updated_message = __( 'Privacy Policy page updated successfully.' ); if ( $privacy_policy_page_id ) { /* @@ -39,7 +39,7 @@ if ( ! empty( $action ) ) { ) { $privacy_page_updated_message = sprintf( /* translators: %s: URL to Customizer -> Menus */ - __( 'Privacy policy page updated successfully. Remember to update your menus!' ), + __( 'Privacy Policy page updated successfully. Remember to update your menus!' ), esc_url( add_query_arg( 'autofocus[panel]', 'nav_menus', admin_url( 'customize.php' ) ) ) ); } @@ -72,7 +72,7 @@ if ( ! empty( $action ) ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', - __( 'Unable to create privacy policy page.' ), + __( 'Unable to create Privacy Policy page.' ), 'error' ); } else { @@ -84,7 +84,7 @@ if ( ! empty( $action ) ) { } } -// If a privacy policy page ID is available, make sure the page actually exists. If not, display an error. +// If a Privacy Policy page ID is available, make sure the page actually exists. If not, display an error. $privacy_policy_page_exists = false; $privacy_policy_page_id = (int) get_option( 'wp_page_for_privacy_policy' ); @@ -96,7 +96,7 @@ if ( ! empty( $privacy_policy_page_id ) ) { add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', - __( 'The currently selected privacy policy page does not exist. Please create or select new page.' ), + __( 'The currently selected Privacy Policy page does not exist. Please create or select new page.' ), 'error' ); } else { @@ -106,7 +106,7 @@ if ( ! empty( $privacy_policy_page_id ) ) { 'page_for_privacy_policy', sprintf( /* translators: URL to Pages Trash */ - __( 'The currently selected privacy policy page is in the trash. Please create or select new privacy policy page or restore the current page.' ), + __( 'The currently selected Privacy Policy page is in the trash. Please create or select new Privacy Policy page or restore the current page.' ), 'edit.php?post_status=trash&post_type=page' ), 'error' @@ -127,16 +127,16 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
- - + +
- - + +
- - + +
Edit or view your privacy policy page content.' ), $edit_href, $view_href ); + printf( __( 'Edit or view your Privacy Policy page content.' ), $edit_href, $view_href ); } else { /* translators: 1: URL to edit page, 2: URL to preview page */ - printf( __( 'Edit or preview your privacy policy page content.' ), $edit_href, $view_href ); + printf( __( 'Edit or preview your Privacy Policy page content.' ), $edit_href, $view_href ); } ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index cb9873835b..51eb101723 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43506'; +$wp_version = '5.0-alpha-43508'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.