wp/wp-admin/network/site-new.php
changeset 19 3d72ae0968f4
parent 18 be944660c56a
child 21 48c4eec2b7e6
--- a/wp/wp-admin/network/site-new.php	Wed Sep 21 18:19:35 2022 +0200
+++ b/wp/wp-admin/network/site-new.php	Tue Sep 27 16:37:53 2022 +0200
@@ -37,7 +37,7 @@
 	check_admin_referer( 'add-blog', '_wpnonce_add-blog' );
 
 	if ( ! is_array( $_POST['blog'] ) ) {
-		wp_die( __( 'Can’t create an empty site.' ) );
+		wp_die( __( 'Cannot create an empty site.' ) );
 	}
 
 	$blog   = $_POST['blog'];
@@ -56,7 +56,7 @@
 			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' ),
 					'<code>' . implode( '</code>, <code>', $subdirectory_reserved_names ) . '</code>'
 				)
 			);
@@ -174,6 +174,7 @@
 	}
 }
 
+// Used in the HTML title tag.
 $title       = __( 'Add New Site' );
 $parent_file = 'sites.php';