mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 13:41:24 +01:00
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
This commit is contained in:
parent
844586e889
commit
8f0e1e3c72
@ -120,7 +120,11 @@ function network_step1( $errors = false ) {
|
|||||||
$has_ports = strstr( $hostname, ':' );
|
$has_ports = strstr( $hostname, ':' );
|
||||||
if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443' ) ) ) ) {
|
if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443' ) ) ) ) {
|
||||||
echo '<div class="error"><p><strong>' . __( 'ERROR:') . '</strong> ' . __( 'You cannot install a network of sites with your server address.' ) . '</p></div>';
|
echo '<div class="error"><p><strong>' . __( 'ERROR:') . '</strong> ' . __( 'You cannot install a network of sites with your server address.' ) . '</p></div>';
|
||||||
echo '<p>' . sprintf( __( 'You cannot use port numbers such as %s.' ), '<code>' . $has_ports . '</code>' ) . '</p>';
|
echo '<p>' . sprintf(
|
||||||
|
/* translators: %s: port number */
|
||||||
|
__( 'You cannot use port numbers such as %s.' ),
|
||||||
|
'<code>' . $has_ports . '</code>'
|
||||||
|
) . '</p>';
|
||||||
echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Return to Dashboard' ) . '</a>';
|
echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Return to Dashboard' ) . '</a>';
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
||||||
@ -209,7 +213,7 @@ function network_step1( $errors = false ) {
|
|||||||
<th scope='row'><?php esc_html_e( 'Server Address' ); ?></th>
|
<th scope='row'><?php esc_html_e( 'Server Address' ); ?></th>
|
||||||
<td>
|
<td>
|
||||||
<?php printf(
|
<?php printf(
|
||||||
/* translators: host name */
|
/* translators: %s: host name */
|
||||||
__( 'The internet address of your network will be %s.' ),
|
__( 'The internet address of your network will be %s.' ),
|
||||||
'<code>' . $hostname . '</code>'
|
'<code>' . $hostname . '</code>'
|
||||||
); ?>
|
); ?>
|
||||||
@ -253,7 +257,7 @@ function network_step1( $errors = false ) {
|
|||||||
<th scope='row'><?php esc_html_e( 'Server Address' ); ?></th>
|
<th scope='row'><?php esc_html_e( 'Server Address' ); ?></th>
|
||||||
<td>
|
<td>
|
||||||
<?php printf(
|
<?php printf(
|
||||||
/* translators: host name */
|
/* translators: %s: host name */
|
||||||
__( 'The internet address of your network will be %s.' ),
|
__( 'The internet address of your network will be %s.' ),
|
||||||
'<code>' . $hostname . '</code>'
|
'<code>' . $hostname . '</code>'
|
||||||
); ?>
|
); ?>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user