diff --git a/wp-includes/version.php b/wp-includes/version.php index ada8f4150a..3548a980ef 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43594'; +$wp_version = '5.0-alpha-43595'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-login.php b/wp-login.php index 745dbc343a..a14c2dd171 100644 --- a/wp-login.php +++ b/wp-login.php @@ -941,10 +941,10 @@ switch ( $action ) { if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) { if ( headers_sent() ) { - /* translators: 1: Browser cookie documentation URL, 2: Support forums URL */ $user = new WP_Error( 'test_cookie', sprintf( + /* translators: 1: Browser cookie documentation URL, 2: Support forums URL */ __( 'ERROR: Cookies are blocked due to unexpected output. For help, please see this documentation or try the support forums.' ), __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' ) @@ -952,10 +952,10 @@ switch ( $action ) { ); } elseif ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[ TEST_COOKIE ] ) ) { // If cookies are disabled we can't log in even with a valid user+pass - /* translators: %s: Browser cookie documentation URL */ $user = new WP_Error( 'test_cookie', sprintf( + /* translators: %s: Browser cookie documentation URL */ __( 'ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.' ), __( 'https://codex.wordpress.org/Cookies' ) ) diff --git a/wp-signup.php b/wp-signup.php index 2e1fe05f56..933ff3f342 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -323,13 +323,19 @@ function signup_another_blog( $blogname = '', $blog_title = '', $errors = '' ) { $blog_title = $filtered_results['blog_title']; $errors = $filtered_results['errors']; + /* translators: %s: Network's site name. */ echo '

' . sprintf( __( 'Get another %s site in seconds' ), get_network()->site_name ) . '

'; if ( $errors->has_errors() ) { echo '

' . __( 'There was a problem, please correct the form below and try again.' ) . '

'; } ?> -

add another site to your account. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!' ), $current_user->display_name ); ?>

+

+ add another site to your account. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!' ), $current_user->display_name ); + ?> +

ID ); @@ -955,13 +961,14 @@ if ( $active_signup == 'none' ) { $newblog = get_blogaddress_by_name( $newblogname ); if ( $active_signup == 'blog' || $active_signup == 'all' ) { - /* translators: %s: site address */ printf( + /* translators: %s: site address */ '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', '' . $newblog . '' ); - } else { /* translators: %s: site address */ + } else { printf( + /* translators: %s: site address */ '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', '' . $newblog . '' );