diff --git a/src/wp-includes/load.php b/src/wp-includes/load.php index c785128aed..1275acad37 100644 --- a/src/wp-includes/load.php +++ b/src/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' + ) + ); } }