Skip to content

Commit

Permalink
General: Replace "Happy blogging" with "Happy publishing".
Browse files Browse the repository at this point in the history
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.


Built from https://develop.svn.wordpress.org/trunk@44455


git-svn-id: http://core.svn.wordpress.org/trunk@44286 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
pento committed Jan 8, 2019
1 parent 1b389ea commit 363cfc4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion readme.html
Expand Up @@ -26,7 +26,7 @@ <h2>Installation: Famous 5-minute install</h2>
<li>Open <span class="file"><a href="wp-admin/install.php">wp-admin/install.php</a></span> in your browser.</li>
</ol>
</li>
<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>
<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>
<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>
<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>
</ol>
Expand Down
4 changes: 2 additions & 2 deletions wp-admin/includes/network.php
Expand Up @@ -466,7 +466,7 @@ function network_step2( $errors = false ) {
<li><p>
<?php
printf(
/* translators: 1: wp-config.php, 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy blogging." */
/* translators: 1: wp-config.php, 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy publishing." */
__( '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>',
Expand All @@ -475,7 +475,7 @@ function network_step2( $errors = false ) {
* You can check the localized release package or
* https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php
*/
'<code>/* ' . __( 'That&#8217;s all, stop editing! Happy blogging.' ) . ' */</code>'
'<code>/* ' . __( 'That&#8217;s all, stop editing! Happy publishing.' ) . ' */</code>'
);
?>
</p>
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/includes/schema.php
Expand Up @@ -1252,7 +1252,7 @@ function populate_network_meta( $network_id, array $meta = array() ) {
'wpmu_upgrade_site' => $wp_db_version,
'welcome_email' => $welcome_email,
/* translators: %s: site link */
'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start blogging!' ),
'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start writing!' ),
// @todo - network admins should have a method of editing the network siteurl (used for cookie hash)
'siteurl' => get_option( 'siteurl' ) . '/',
'add_new_users' => '0',
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/includes/upgrade.php
Expand Up @@ -63,7 +63,7 @@ function wp_install( $blog_title, $user_name, $user_email, $public, $deprecated

update_option( 'siteurl', $guessurl );

// If not a public blog, don't ping.
// If not a public site, don't ping.
if ( ! $public ) {
update_option( 'default_pingback_flag', 0 );
}
Expand Down
2 changes: 1 addition & 1 deletion wp-config-sample.php
Expand Up @@ -79,7 +79,7 @@
*/
define( 'WP_DEBUG', false );

/* That's all, stop editing! Happy blogging. */
/* That's all, stop editing! Happy publishing. */

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Expand Up @@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.1-alpha-44454';
$wp_version = '5.1-alpha-44455';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit 363cfc4

Please sign in to comment.