From 12645e6f75508c1d361a04c3861dc1513bf674e7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 24 Feb 2016 18:39:32 +0000 Subject: [PATCH] I18N: Move the "Caution:" prefix to a separate string in `wp-admin/includes/network.php`. Props ramiy. Fixes #35674. git-svn-id: https://develop.svn.wordpress.org/trunk@36690 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/network.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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' ); }