diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php
index 29e4131..ebe40af 100644
a
|
b
|
function network_step2( $errors = false ) { |
405 | 405 | ?> |
406 | 406 | <ol> |
407 | 407 | <li><p><?php printf( |
408 | | /* translators: 1: wp-config.php 2: location of wp-config file */ |
409 | | __( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading <code>/* That’s all, stop editing! Happy blogging. */</code>:' ), |
| 408 | /* translators: 1: a filename (e.g. wp-config.php) 2: a file path (the location of wp-config.php) 3: a line of code */ |
| 409 | __( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading %3$s:' ), |
410 | 410 | '<code>wp-config.php</code>', |
411 | | '<code>' . $location_of_wp_config . '</code>' |
| 411 | '<code>' . $location_of_wp_config . '</code>', |
| 412 | /* translators: This string should only be translated if there's a localized wp-config-sample.php at http://i18n.svn.wordpress.org/<this locale>/trunk/dist/wp-config-sample.php */ |
| 413 | __( '<code>/* That’s all, stop editing! Happy blogging. */</code>' ) |
412 | 414 | ); ?></p> |
413 | 415 | <textarea class="code" readonly="readonly" cols="100" rows="7"> |
414 | 416 | define('MULTISITE', true); |