diff --git a/wp-admin/includes/network.php b/wp-admin/includes/network.php
index 29e4131..2a92f90 100644
--- a/wp-admin/includes/network.php
+++ b/wp-admin/includes/network.php
@@ -405,10 +405,12 @@ function network_step2( $errors = false ) {
 ?>
 		<ol>
 			<li><p><?php printf(
-				/* translators: 1: wp-config.php 2: location of wp-config file */
-				__( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading <code>/* That&#8217;s all, stop editing! Happy blogging. */</code>:' ),
+				/* translators: 1: a filename (e.g. wp-config.php) 2: a file path (the location of wp-config.php) 3: a line of code */
+				__( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading %3$s:' ),
 				'<code>wp-config.php</code>',
-				'<code>' . $location_of_wp_config . '</code>'
+				'<code>' . $location_of_wp_config . '</code>',
+				/* translators:  This string should only be translated if wp-config-sample.php is localised.  You can check your download or http://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php (note the locale code might not be exactly the same as in glotpress). */
+				__( '<code>/* That&#8217;s all, stop editing! Happy blogging. */</code>' )
 			); ?></p>
 				<textarea class="code" readonly="readonly" cols="100" rows="7">
 define('MULTISITE', true);
