Changeset 37902 for trunk/src/wp-admin/includes/network.php
- Timestamp:
- 06/28/2016 11:23:40 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/network.php
r37674 r37902 160 160 } else { 161 161 $subdomain_install = false; 162 if ( $got_mod_rewrite = got_mod_rewrite() ) { // dangerous assumptions 162 if ( $got_mod_rewrite = got_mod_rewrite() ) { // dangerous assumptions 163 163 echo '<div class="updated inline"><p><strong>' . __( 'Note:' ) . '</strong> '; 164 164 /* translators: %s: mod_rewrite */ … … 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: wp-config.php 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy blogging." */ 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 /* 413 * translators: This string should only be translated if wp-config-sample.php is localized. 414 * You can check the localized release package or 415 * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php 416 */ 417 '<code>/* ' . __( 'That’s all, stop editing! Happy blogging.' ) . ' */</code>' 412 418 ); ?></p> 413 419 <textarea class="code" readonly="readonly" cols="100" rows="7">
Note: See TracChangeset
for help on using the changeset viewer.