Changeset 42827 for trunk/src/wp-admin/includes/network.php
- Timestamp:
- 03/11/2018 04:43:59 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/network.php (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/network.php
r42343 r42827 265 265 <?php 266 266 printf( 267 /* translators: 1: site url 2: host name 3.www */267 /* translators: 1: site url, 2: host name, 3: www */ 268 268 __( 'We recommend you change your siteurl to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix.' ), 269 269 '<code>' . substr( $hostname, 4 ) . '</code>', … … 297 297 <?php 298 298 printf( 299 /* translators: 1: localhost 2: localhost.localdomain */299 /* translators: 1: localhost, 2: localhost.localdomain */ 300 300 __( 'Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains.' ), 301 301 '<code>localhost</code>', … … 437 437 echo '<strong>' . __( 'Caution:' ) . '</strong> '; 438 438 printf( 439 /* translators: 1: wp-config.php 2: .htaccess */439 /* translators: 1: wp-config.php, 2: .htaccess */ 440 440 __( 'We recommend you back up your existing %1$s and %2$s files.' ), 441 441 '<code>wp-config.php</code>', … … 445 445 echo '<strong>' . __( 'Caution:' ) . '</strong> '; 446 446 printf( 447 /* translators: 1: wp-config.php 2: web.config */447 /* translators: 1: wp-config.php, 2: web.config */ 448 448 __( 'We recommend you back up your existing %1$s and %2$s files.' ), 449 449 '<code>wp-config.php</code>', … … 453 453 echo '<strong>' . __( 'Caution:' ) . '</strong> '; 454 454 printf( 455 /* translators: 1: wp-config.php */455 /* translators: %s: wp-config.php */ 456 456 __( 'We recommend you back up your existing %s file.' ), 457 457 '<code>wp-config.php</code>' … … 467 467 <?php 468 468 printf( 469 /* translators: 1: wp-config.php 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy blogging." */469 /* translators: 1: wp-config.php, 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy blogging." */ 470 470 __( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading %3$s:' ), 471 471 '<code>wp-config.php</code>', … … 524 524 if ( 1 == $num_keys_salts ) { 525 525 printf( 526 /* translators: 1: wp-config.php */526 /* translators: %s: wp-config.php */ 527 527 __( 'This unique authentication key is also missing from your %s file.' ), 528 528 '<code>wp-config.php</code>' … … 530 530 } else { 531 531 printf( 532 /* translators: 1: wp-config.php */532 /* translators: %s: wp-config.php */ 533 533 __( 'These unique authentication keys are also missing from your %s file.' ), 534 534 '<code>wp-config.php</code>' … … 599 599 echo '<li><p>'; 600 600 printf( 601 /* translators: 1: a filename like .htaccess . 2: a file path.*/601 /* translators: 1: a filename like .htaccess, 2: a file path */ 602 602 __( 'Add the following to your %1$s file in %2$s, <strong>replacing</strong> other WordPress rules:' ), 603 603 '<code>web.config</code>', … … 641 641 echo '<li><p>'; 642 642 printf( 643 /* translators: 1: a filename like .htaccess . 2: a file path.*/643 /* translators: 1: a filename like .htaccess, 2: a file path */ 644 644 __( 'Add the following to your %1$s file in %2$s, <strong>replacing</strong> other WordPress rules:' ), 645 645 '<code>.htaccess</code>',
Note: See TracChangeset
for help on using the changeset viewer.