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. Built from https://develop.svn.wordpress.org/trunk@44455 git-svn-id: http://core.svn.wordpress.org/trunk@44286 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1b389ea861
commit
363cfc4301
|
@ -26,7 +26,7 @@
|
|||
<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 “Profile” to change the password.</li>
|
||||
</ol>
|
||||
|
|
|
@ -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>',
|
||||
|
@ -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’s all, stop editing! Happy blogging.' ) . ' */</code>'
|
||||
'<code>/* ' . __( 'That’s all, stop editing! Happy publishing.' ) . ' */</code>'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
|
|
@ -1252,7 +1252,7 @@ We hope you enjoy your new site. Thanks!
|
|||
'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',
|
||||
|
|
|
@ -63,7 +63,7 @@ if ( ! function_exists( 'wp_install' ) ) :
|
|||
|
||||
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 );
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ $table_prefix = 'wp_';
|
|||
*/
|
||||
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' ) ) {
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue