diff --git a/src/wp-admin/includes/network.php b/src/wp-admin/includes/network.php index 71cc2259dd..a83eb289a3 100644 --- a/src/wp-admin/includes/network.php +++ b/src/wp-admin/includes/network.php @@ -102,7 +102,11 @@ function network_step1( $errors = false ) { global $is_apache; if ( defined('DO_NOT_UPGRADE_GLOBAL_TABLES') ) { - echo '
' . __( 'ERROR:' ) . ' ' . __( 'The constant DO_NOT_UPGRADE_GLOBAL_TABLES cannot be defined when creating a network.' ) . '
' . __( 'ERROR:' ) . ' ' . sprintf(
+ /* translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES */
+ __( 'The constant %s cannot be defined when creating a network.' ),
+ 'DO_NOT_UPGRADE_GLOBAL_TABLES
'
+ ) . '
' . __( 'Warning:' ) . ' ' . sprintf( __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '
' . __( 'Once the network is created, you may reactivate your plugins.' ) . '
'; + echo '' . __( 'Warning:' ) . ' ' . sprintf( + /* translators: %s: Plugins screen URL */ + __( 'Please deactivate your plugins before enabling the Network feature.' ), + admin_url( 'plugins.php?plugin_status=active' ) + ) . '
' . __( 'Once the network is created, you may reactivate your plugins.' ) . '
'; echo ''; include( ABSPATH . 'wp-admin/admin-footer.php' ); die();