diff --git a/src/wp-admin/includes/network.php b/src/wp-admin/includes/network.php
index 9c05ec8..845d2c0 100644
|
a
|
b
|
function network_step2( $errors = false ) { |
| 466 | 466 | <li><p> |
| 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 publishing." */ |
| 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>', |
| 472 | 472 | '<code>' . $location_of_wp_config . '</code>', |
| … |
… |
function network_step2( $errors = false ) { |
| 475 | 475 | * You can check the localized release package or |
| 476 | 476 | * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php |
| 477 | 477 | */ |
| 478 | | '<code>/* ' . __( 'That’s all, stop editing! Happy blogging.' ) . ' */</code>' |
| | 478 | '<code>/* ' . __( 'That’s all, stop editing! Happy publishing.' ) . ' */</code>' |
| 479 | 479 | ); |
| 480 | 480 | ?> |
| 481 | 481 | </p> |
diff --git a/src/wp-admin/includes/schema.php b/src/wp-admin/includes/schema.php
index 0bb6060..fe48d35 100644
|
a
|
b
|
We hope you enjoy your new site. Thanks! |
| 1252 | 1252 | 'wpmu_upgrade_site' => $wp_db_version, |
| 1253 | 1253 | 'welcome_email' => $welcome_email, |
| 1254 | 1254 | /* translators: %s: site link */ |
| 1255 | | 'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start blogging!' ), |
| | 1255 | 'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start publishing!' ), |
| 1256 | 1256 | // @todo - network admins should have a method of editing the network siteurl (used for cookie hash) |
| 1257 | 1257 | 'siteurl' => get_option( 'siteurl' ) . '/', |
| 1258 | 1258 | 'add_new_users' => '0', |
diff --git a/src/wp-admin/includes/upgrade.php b/src/wp-admin/includes/upgrade.php
index f8b871d..a1dac36 100644
|
a
|
b
|
if ( ! function_exists( 'wp_install' ) ) : |
| 63 | 63 | |
| 64 | 64 | update_option( 'siteurl', $guessurl ); |
| 65 | 65 | |
| 66 | | // If not a public blog, don't ping. |
| | 66 | // If not a public website, don't ping. |
| 67 | 67 | if ( ! $public ) { |
| 68 | 68 | update_option( 'default_pingback_flag', 0 ); |
| 69 | 69 | } |
| … |
… |
if ( ! function_exists( 'wp_install_defaults' ) ) : |
| 193 | 193 | |
| 194 | 194 | if ( ! $first_post ) { |
| 195 | 195 | /* translators: %s: site link */ |
| 196 | | $first_post = __( 'Welcome to %s. This is your first post. Edit or delete it, then start blogging!' ); |
| | 196 | $first_post = __( 'Welcome to %s. This is your first post. Edit or delete it, then start publishing!' ); |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | $first_post = sprintf( |
| … |
… |
if ( ! function_exists( 'wp_install_defaults' ) ) : |
| 205 | 205 | $first_post = str_replace( 'SITE_URL', esc_url( network_home_url() ), $first_post ); |
| 206 | 206 | $first_post = str_replace( 'SITE_NAME', get_network()->site_name, $first_post ); |
| 207 | 207 | } else { |
| 208 | | $first_post = __( 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!' ); |
| | 208 | $first_post = __( 'Welcome to WordPress. This is your first post. Edit or delete it, then start publishing!' ); |
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | $wpdb->insert( |
diff --git a/wp-config-sample.php b/wp-config-sample.php
index 7312c6e..ed8f9fc 100644
|
a
|
b
|
$table_prefix = 'wp_'; |
| 79 | 79 | */ |
| 80 | 80 | define( 'WP_DEBUG', false ); |
| 81 | 81 | |
| 82 | | /* That's all, stop editing! Happy blogging. */ |
| | 82 | /* That's all, stop editing! Happy publishing. */ |
| 83 | 83 | |
| 84 | 84 | /** Absolute path to the WordPress directory. */ |
| 85 | 85 | if ( ! defined( 'ABSPATH' ) ) { |