Index: src/wp-admin/css/forms.css
===================================================================
--- src/wp-admin/css/forms.css	(revision 42971)
+++ src/wp-admin/css/forms.css	(working copy)
@@ -1407,6 +1407,9 @@
 
 /* Privacy */
 
+.tools-privacy-policy-page span {
+	vertical-align: middle;
+}
 .privacy_requests .column-email {
 	width: 40%;
 }
Index: src/wp-admin/privacy.php
===================================================================
--- src/wp-admin/privacy.php	(revision 42971)
+++ src/wp-admin/privacy.php	(working copy)
@@ -28,7 +28,11 @@
 		add_settings_error(
 			'page_for_privacy_policy',
 			'page_for_privacy_policy',
-			__( 'Privacy policy page updated successfully.' ),
+			sprintf(
+				// translators: URL to Customizer -> Menus
+				__( 'Privacy policy page updated successfully. Remember to <a href="%s">update your menus</a>!' ),
+				'customize.php?autofocus[panel]=nav_menus'
+			),
 			'updated'
 		);
 	} elseif ( 'create-privacy-page' === $action ) {
@@ -50,10 +54,15 @@
 			);
 		} else {
 			update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id );
+
 			add_settings_error(
 				'page_for_privacy_policy',
 				'page_for_privacy_policy',
-				__( 'Privacy policy page created successfully.' ),
+				sprintf(
+					// translators: URL to edit Privacy Policy page
+					__( 'Your Privacy Policy page created successfully. You&#8217;ll want to <a href="%s">review and edit your policy</a> next.' ),
+					'post.php?post=' . $privacy_policy_page_id . '&action=edit'
+				),
 				'updated'
 			);
 		}
@@ -62,38 +71,41 @@
 
 // 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' );
+$privacy_policy_page_id     = (int) get_option( 'wp_page_for_privacy_policy' );
 
 if ( ! empty( $privacy_policy_page_id ) ) {
-		$privacy_policy_page = get_post( $privacy_policy_page_id );
-		if ( ! $privacy_policy_page instanceof WP_Post ) {
+
+	$privacy_policy_page = get_post( $privacy_policy_page_id );
+
+	if ( ! $privacy_policy_page instanceof WP_Post ) {
+		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.' ),
+			'error'
+		);
+	} else {
+		if ( 'trash' === $privacy_policy_page->post_status ) {
 			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.' ),
+				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 <a href="%s">restore the current page</a>.' ),
+					'edit.php?post_status=trash&post_type=page'
+				),
 				'error'
 			);
 		} else {
-			if ( 'trash' === $privacy_policy_page->post_status ) {
-				add_settings_error(
-					'page_for_privacy_policy',
-					'page_for_privacy_policy',
-					sprintf(
-						__( 'The currently selected privacy policy page is in the trash. Please create or select new privacy policy page or <a href="%s">restore the current page</a>.' ),
-						'edit.php?post_status=trash&post_type=page'
-					),
-					'error'
-				);
-			} else {
-				$privacy_policy_page_exists = true;
-			}
+			$privacy_policy_page_exists = true;
 		}
+	}
 }
 
 get_current_screen()->add_help_tab( array(
 	'id'      => 'privacy',
 	'title'   => __( 'Privacy' ),
-	'content' => '<p>' . __( 'This page provides tools with which you can manage your user\'s personal data and site\'s privacy policy.' ) . '</p>',
+	'content' => '<p>' . __( 'This page provides tools with which you can manage your user&#8217;s personal data and site&#8217;s privacy policy.' ) . '</p>',
 ) );
 
 get_current_screen()->set_help_sidebar(
@@ -107,25 +119,27 @@
 <div class="wrap">
 	<h1><?php _e( 'Privacy Tools' ); ?></h1>
 	<?php settings_errors(); ?>
-
-	<h2><?php _e( 'Privacy policy page' ); ?></h2>
-
+	<h2><?php _e( 'Privacy Policy page' ); ?></h2>
+	<p>
+	Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lacinia, velit ut tempus iaculis, nibh dui luctus nisi, quis faucibus nisi risus sed mi. Mauris lectus libero, iaculis sed fringilla sed, varius ut odio. Cras tempus elit dui, at aliquet velit porttitor nec. Sed vestibulum, est vitae egestas hendrerit, lorem odio fermentum ex, et congue odio nisl et nunc. Pellentesque non libero nunc.
+	</p>
 	<?php
 	if ( $privacy_policy_page_exists ) {
 		$edit_href = add_query_arg(
 			array(
-				'post'  => $privacy_policy_page_id,
+				'post'   => $privacy_policy_page_id,
 				'action' => 'edit',
 			),
 			admin_url( 'post.php' )
 		);
+
 		$view_href = get_permalink( $privacy_policy_page_id );
-
 		?>
 		<p><strong>
 			<?php
 			printf(
-				__( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy.' ),
+				// translators: %1$s URL to Edit Page, %2$s URL to View Page
+				__( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ),
 				$edit_href,
 				$view_href
 			);
@@ -134,27 +148,25 @@
 		<?php
 	}
 	?>
-
-	<table class="form-table">
+	<hr>
+	<table class="form-table tools-privacy-policy-page">
 		<tr>
 			<th scope="row">
-				<label for="page_for_privacy_policy">
-					<?php
-
-					if ( $privacy_policy_page_exists ) {
-						_e( 'Select another page for your privacy policy' );
-					} else {
-						_e( 'Select an existing privacy policy page' );
-					}
-
-					?>
-				</label>
+				<?php
+				if ( $privacy_policy_page_exists ) {
+					_e( 'Change your Privacy Policy page' );
+				} else {
+					_e( 'Select a Privacy Policy page' );
+				}
+				?>
 			</th>
-			<td id="front-static-pages">
+			<td>
 				<form method="post" action="">
+					<label for="page_for_privacy_policy">
+						Either select an existing page:
+					</label>
 					<input type="hidden" name="action" value="set-privacy-page" />
 					<?php
-
 					wp_dropdown_pages(
 						array(
 							'name'              => 'page_for_privacy_policy',
@@ -166,37 +178,29 @@
 					);
 
 					wp_nonce_field( 'set-privacy-page' );
-					submit_button( __( 'Set Page' ), 'primary', 'submit', true, array( 'id' => 'set-page' ) );
 
+					submit_button( __( 'Set Page' ), 'primary', 'submit', false, array( 'id' => 'set-page' ) );
 					?>
 				</form>
 			</td>
 		</tr>
-		<?php
+		<tr>
+		<th></th>
+		<td>
+			<form method="post" action="">
+				<input type="hidden" name="action" value="create-privacy-page" />
+				<span>
+					<?php _e( 'Or create a new page: ' ); ?>
+				</span>
+				<?php
+				wp_nonce_field( 'create-privacy-page' );
 
-		if ( ! $privacy_policy_page_exists ) {
-			?>
-			<tr>
-				<th scope="row"><?php _e( 'Create new page for your privacy policy' ); ?></th>
-				<td>
-					<form method="post" action="">
-						<input type="hidden" name="action" value="create-privacy-page" />
-						<?php
-
-						wp_nonce_field( 'create-privacy-page' );
-						submit_button( __( 'Create Page' ), 'primary', 'submit', true, array( 'id' => 'create-page' ) );
-
-						?>
-					</form>
-				</td>
-			</tr>
-			<?php
-		}
-
-		?>
+				submit_button( __( 'Create Page' ), 'primary', 'submit', false, array( 'id' => 'create-page' ) );
+				?>
+			</form>
+		</td>
 	</table>
 </div>
-
 <?php
 
 include( ABSPATH . 'wp-admin/admin-footer.php' );
