From 6209004bf792c066a2aaa3e240d2e53d26ae685a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 12 Nov 2015 18:21:24 +0000 Subject: [PATCH] Remove `` tags from translatable string in `wp-includes/load.php`. Add translator comment. Props ramiy. Fixes #34621. Built from https://develop.svn.wordpress.org/trunk@35632 git-svn-id: http://core.svn.wordpress.org/trunk@35596 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/load.php | 8 +++++++- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/wp-includes/load.php b/wp-includes/load.php index c785128aed..1275acad37 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -397,7 +397,13 @@ function wp_set_wpdb_vars() { if ( is_wp_error( $prefix ) ) { wp_load_translations_early(); - wp_die( __( 'ERROR: $table_prefix in wp-config.php can only contain numbers, letters, and underscores.' ) ); + wp_die( + /* translators: 1: $table_prefix 2: wp-config.php */ + sprintf( __( 'ERROR: %1$s in %2$s can only contain numbers, letters, and underscores.' ), + '$table_prefix', + 'wp-config.php' + ) + ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 06d4e069a4..a083e2a577 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta4-35631'; +$wp_version = '4.4-beta4-35632'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.