diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php
index 1a195d8dd3..092fd6e203 100644
--- a/src/wp-admin/about.php
+++ b/src/wp-admin/about.php
@@ -24,7 +24,12 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
 			?>
 		</h1>
 
-		<p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p>
+		<p class="about-text">
+			<?php
+			/* translators: %s: The current WordPress version number */
+			printf( __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version );
+			?>
+		</p>
 
 		<div class="wp-badge">
 			<?php
diff --git a/src/wp-admin/credits.php b/src/wp-admin/credits.php
index 1f42aae6d2..f4c1088231 100644
--- a/src/wp-admin/credits.php
+++ b/src/wp-admin/credits.php
@@ -25,7 +25,12 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
 	?>
 </h1>
 
-<p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p>
+<p class="about-text">
+	<?php
+	/* translators: %s: The current WordPress version number */
+	printf( __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version );
+	?>
+</p>
 
 <div class="wp-badge">
 	<?php
diff --git a/src/wp-admin/freedoms.php b/src/wp-admin/freedoms.php
index dcbb41980a..83719bd124 100644
--- a/src/wp-admin/freedoms.php
+++ b/src/wp-admin/freedoms.php
@@ -39,7 +39,12 @@ if ( $is_privacy_notice ) {
 	?>
 </h1>
 
-<p class="about-text"><?php printf( __( 'Congratulations on updating to WordPress 5.2! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version ); ?></p>
+<p class="about-text">
+	<?php
+	/* translators: %s: The current WordPress version number */
+	printf( __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ), $display_version );
+	?>
+	</p>
 
 <div class="wp-badge">
 	<?php
