Make WordPress Core

Changeset 44455

Timestamp:
01/08/2019 04:29:06 AM (6 years ago)
Author:
pento
Message:

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.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/readme.html

    r42358 r44455  
    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 . 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>
  • trunk/src/wp-admin/includes/network.php

    r43571 r44455  
    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 ing." */
    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>',
     
    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 ing.' ) . ' */</code>'
    479479            );
    480480            ?>
  • trunk/src/wp-admin/includes/schema.php

    r44450 r44455  
    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 ing!' ),
    12561256        // @todo - network admins should have a method of editing the network siteurl (used for cookie hash)
    12571257        'siteurl'                     => get_option( 'siteurl' ) . '/',
  • trunk/src/wp-admin/includes/upgrade.php

    r44264 r44455  
    6464        update_option( 'siteurl', $guessurl );
    6565
    66         // If not a public blog, don't ping.
     66        // If not a public , don't ping.
    6767        if ( ! $public ) {
    6868            update_option( 'default_pingback_flag', 0 );
  • trunk/wp-config-sample.php

    r42343 r44455  
    8080define( 'WP_DEBUG', false );
    8181
    82 /* That's all, stop editing! Happy blogging. */
     82/* That's all, stop editing! Happy ing. */
    8383
    8484/** Absolute path to the WordPress directory. */
Note: See TracChangeset for help on using the changeset viewer.