From a207dadc10e88208a82e6b94f204b0122df97d95 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 28 Jul 2021 10:02:00 +0000 Subject: [PATCH] Networks and Sites: Replace two remaining occurrences of "blog" with "site" in user-facing strings. Follow-up to [36386], [36416], [36417], [46213]. Props audrasjb. Fixes #53775. Built from https://develop.svn.wordpress.org/trunk@51500 git-svn-id: http://core.svn.wordpress.org/trunk@51111 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/site-new.php | 2 +- wp-includes/ms-functions.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php index ff07c6ea9a..ac466db9a9 100644 --- a/wp-admin/network/site-new.php +++ b/wp-admin/network/site-new.php @@ -56,7 +56,7 @@ if ( isset( $_REQUEST['action'] ) && 'add-site' === $_REQUEST['action'] ) { wp_die( sprintf( /* translators: %s: Reserved names list. */ - __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), + __( 'The following words are reserved for use by WordPress functions and cannot be used as site names: %s' ), '' . implode( ', ', $subdirectory_reserved_names ) . '' ) ); diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 3364f25c28..09b48be38a 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -981,7 +981,7 @@ function wpmu_signup_blog_notification( $domain, $path, $title, $user_login, $us apply_filters( 'wpmu_signup_blog_notification_email', /* translators: New site notification email. 1: Activation URL, 2: New site URL. */ - __( "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" ), + __( "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" ), $domain, $path, $title, diff --git a/wp-includes/version.php b/wp-includes/version.php index d0e5acca33..5d6fbb1766 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51499'; +$wp_version = '5.9-alpha-51500'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.