From 8f0e1e3c72c9e54943d72f3a90d5eaf736641943 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 18 Sep 2015 18:40:24 +0000 Subject: [PATCH] Add missing translator comment after [34292]. See #31840. Built from https://develop.svn.wordpress.org/trunk@34299 git-svn-id: http://core.svn.wordpress.org/trunk@34263 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/network.php | 10 +++++++--- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php index 433e5f9f64..d0eb18dbf3 100644 --- a/wp-admin/includes/network.php +++ b/wp-admin/includes/network.php @@ -120,7 +120,11 @@ function network_step1( $errors = false ) { $has_ports = strstr( $hostname, ':' ); if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443' ) ) ) ) { echo '

' . __( 'ERROR:') . ' ' . __( 'You cannot install a network of sites with your server address.' ) . '

'; - echo '

' . sprintf( __( 'You cannot use port numbers such as %s.' ), '' . $has_ports . '' ) . '

'; + echo '

' . sprintf( + /* translators: %s: port number */ + __( 'You cannot use port numbers such as %s.' ), + '' . $has_ports . '' + ) . '

'; echo '' . __( 'Return to Dashboard' ) . ''; echo ''; include( ABSPATH . 'wp-admin/admin-footer.php' ); @@ -209,7 +213,7 @@ function network_step1( $errors = false ) { ' . $hostname . '' ); ?> @@ -253,7 +257,7 @@ function network_step1( $errors = false ) { ' . $hostname . '' ); ?> diff --git a/wp-includes/version.php b/wp-includes/version.php index d2401c4763..fede86792b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34298'; +$wp_version = '4.4-alpha-34299'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.