From 0814a33464fb9dc71fad79dd8bfd74818348ca56 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 29 Feb 2016 02:43:47 +0000 Subject: [PATCH] I18N: Remove `` tag from translatable string in `wp-admin/network/site-new.php`. Props ramiy. Fixes #35989. git-svn-id: https://develop.svn.wordpress.org/trunk@36771 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/network/site-new.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/network/site-new.php b/src/wp-admin/network/site-new.php index 82421d6910..8da0bd69a5 100644 --- a/src/wp-admin/network/site-new.php +++ b/src/wp-admin/network/site-new.php @@ -49,7 +49,12 @@ if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { $subdirectory_reserved_names = get_subdirectory_reserved_names(); if ( in_array( $domain, $subdirectory_reserved_names ) ) { - wp_die( sprintf( __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), implode( ', ', $subdirectory_reserved_names ) ) ); + wp_die( + /* translators: %s: reserved names list */ + sprintf( __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), + '' . implode( ', ', $subdirectory_reserved_names ) . '' + ) + ); } }