Skip to content

Commit ccc55de

Browse files
committed
General: Replace "Happy blogging" with "Happy publishing".
As of this commit, WordPress is no longer a simple blogging platform. It's now a comprehensive publishing solution. This also replaces a couple of other "blog" references that were missed previously. Props igmoweb, Valer1e, audrasjb, pento. Fixes #41000. git-svn-id: https://develop.svn.wordpress.org/trunk@44455 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a37ee61 commit ccc55de

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/readme.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h2>Installation: Famous 5-minute install</h2>
2626
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
2727
</ol>
2828
</li>
29-
<li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="https://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
29+
<li>Once the configuration file is set up, the installer will set up the tables needed for your site. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="https://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>
3030
<li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li>
3131
<li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on &#8220;Profile&#8221; to change the password.</li>
3232
</ol>

src/wp-admin/includes/network.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ function network_step2( $errors = false ) {
466466
<li><p>
467467
<?php
468468
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." */
470470
__( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading %3$s:' ),
471471
'<code>wp-config.php</code>',
472472
'<code>' . $location_of_wp_config . '</code>',
@@ -475,7 +475,7 @@ function network_step2( $errors = false ) {
475475
* You can check the localized release package or
476476
* https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php
477477
*/
478-
'<code>/* ' . __( 'That&#8217;s all, stop editing! Happy blogging.' ) . ' */</code>'
478+
'<code>/* ' . __( 'That&#8217;s all, stop editing! Happy publishing.' ) . ' */</code>'
479479
);
480480
?>
481481
</p>

src/wp-admin/includes/schema.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ function populate_network_meta( $network_id, array $meta = array() ) {
12521252
'wpmu_upgrade_site' => $wp_db_version,
12531253
'welcome_email' => $welcome_email,
12541254
/* 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 writing!' ),
12561256
// @todo - network admins should have a method of editing the network siteurl (used for cookie hash)
12571257
'siteurl' => get_option( 'siteurl' ) . '/',
12581258
'add_new_users' => '0',

src/wp-admin/includes/upgrade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function wp_install( $blog_title, $user_name, $user_email, $public, $deprecated
6363

6464
update_option( 'siteurl', $guessurl );
6565

66-
// If not a public blog, don't ping.
66+
// If not a public site, don't ping.
6767
if ( ! $public ) {
6868
update_option( 'default_pingback_flag', 0 );
6969
}

wp-config-sample.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
*/
8080
define( 'WP_DEBUG', false );
8181

82-
/* That's all, stop editing! Happy blogging. */
82+
/* That's all, stop editing! Happy publishing. */
8383

8484
/** Absolute path to the WordPress directory. */
8585
if ( ! defined( 'ABSPATH' ) ) {

0 commit comments

Comments
 (0)