diff --git a/src/wp-admin/includes/network.php b/src/wp-admin/includes/network.php index ec8729b94c..d034f045cc 100644 --- a/src/wp-admin/includes/network.php +++ b/src/wp-admin/includes/network.php @@ -376,23 +376,26 @@ function network_step2( $errors = false ) {
' . __( 'Caution:' ) . ' ';
printf(
/* translators: 1: wp-config.php 2: .htaccess */
- __( 'Caution: We recommend you back up your existing %1$s and %2$s files.' ),
+ __( 'We recommend you back up your existing %1$s and %2$s files.' ),
'wp-config.php',
'.htaccess'
);
} elseif ( file_exists( $home_path . 'web.config' ) ) {
+ echo '' . __( 'Caution:' ) . ' ';
printf(
/* translators: 1: wp-config.php 2: web.config */
- __( 'Caution: We recommend you back up your existing %1$s and %2$s files.' ),
+ __( 'We recommend you back up your existing %1$s and %2$s files.' ),
'wp-config.php',
'web.config'
);
} else {
+ echo '' . __( 'Caution:' ) . ' ';
printf(
/* translators: 1: wp-config.php */
- __( 'Caution: We recommend you back up your existing %s file.' ),
+ __( 'We recommend you back up your existing %s file.' ),
'wp-config.php'
);
}