Make WordPress Core

Ticket #53775: 53775.diff

File 53775.diff, 1.6 KB (added by audrasjb, 4 years ago)
  • src/wp-admin/network/site-new.php

    diff --git a/src/wp-admin/network/site-new.php b/src/wp-admin/network/site-new.php
    index ff07c6ea9a..ac466db9a9 100644
    a b if ( isset( $_REQUEST['action'] ) && 'add-site' === $_REQUEST['action'] ) { 
    5656                        wp_die(
    5757                                sprintf(
    5858                                        /* translators: %s: Reserved names list. */
    59                                         __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ),
     59                                        __( 'The following words are reserved for use by WordPress functions and cannot be used as site names: %s' ),
    6060                                        '<code>' . implode( '</code>, <code>', $subdirectory_reserved_names ) . '</code>'
    6161                                )
    6262                        );
  • src/wp-includes/ms-functions.php

    diff --git a/src/wp-includes/ms-functions.php b/src/wp-includes/ms-functions.php
    index 3364f25c28..09b48be38a 100644
    a b function wpmu_signup_blog_notification( $domain, $path, $title, $user_login, $us 
    981981                apply_filters(
    982982                        'wpmu_signup_blog_notification_email',
    983983                        /* translators: New site notification email. 1: Activation URL, 2: New site URL. */
    984                         __( "To activate your blog, please click the following link:\n\n%1\$s\n\nAfter you activate, you will receive *another email* with your login.\n\nAfter you activate, you can visit your site here:\n\n%2\$s" ),
     984                        __( "To activate your site, please click the following link:\n\n%1\$s\n\nAfter you activate, you will receive *another email* with your login.\n\nAfter you activate, you can visit your site here:\n\n%2\$s" ),
    985985                        $domain,
    986986                        $path,
    987987                        $title,