Skip to content

Commit 31c328d

Browse files
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. git-svn-id: https://develop.svn.wordpress.org/trunk@51500 602fd350-edb4-49c9-b593-d223f7449a82
1 parent e6ed1b2 commit 31c328d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/wp-admin/network/site-new.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ 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,

0 commit comments

Comments
 (0)