From 7e40b1d28257ddf1e9657d246361da967f6df4c5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 13 Apr 2016 03:02:27 +0000 Subject: [PATCH] I18N: Remove tag and function names from two translatable strings. Add translator comments. Props andg for initial patch. Fixes #36496. Built from https://develop.svn.wordpress.org/trunk@37188 git-svn-id: http://core.svn.wordpress.org/trunk@37154 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.wp-scripts.php | 7 ++++++- wp-includes/functions.wp-styles.php | 7 ++++++- wp-includes/version.php | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/wp-includes/functions.wp-scripts.php b/wp-includes/functions.wp-scripts.php index 197368c7c6..c64d51d5e9 100644 --- a/wp-includes/functions.wp-scripts.php +++ b/wp-includes/functions.wp-scripts.php @@ -107,7 +107,12 @@ function wp_add_inline_script( $handle, $data, $position = 'after' ) { _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); if ( false !== stripos( $data, '' ) ) { - _doing_it_wrong( __FUNCTION__, __( 'Do not pass script tags to wp_add_inline_script().' ), '4.5.0' ); + _doing_it_wrong( __FUNCTION__, sprintf( + /* translators: 1: script, 2: wp_add_inline_script() */ + __( 'Do not pass %1$s tags to %2$s.' ), + 'script', + 'wp_add_inline_script()' + ), '4.5' ); $data = trim( preg_replace( '#]*>(.*)#is', '$1', $data ) ); } diff --git a/wp-includes/functions.wp-styles.php b/wp-includes/functions.wp-styles.php index 3c9d64939d..37037d3d49 100644 --- a/wp-includes/functions.wp-styles.php +++ b/wp-includes/functions.wp-styles.php @@ -84,7 +84,12 @@ function wp_add_inline_style( $handle, $data ) { _wp_scripts_maybe_doing_it_wrong( __FUNCTION__ ); if ( false !== stripos( $data, '' ) ) { - _doing_it_wrong( __FUNCTION__, __( 'Do not pass style tags to wp_add_inline_style().' ), '3.7' ); + _doing_it_wrong( __FUNCTION__, sprintf( + /* translators: 1: style, 2: wp_add_inline_style() */ + __( 'Do not pass %1$s tags to %2$s.' ), + 'style', + 'wp_add_inline_style()' + ), '3.7' ); $data = trim( preg_replace( '#]*>(.*)#is', '$1', $data ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 118ff7cdf7..efae470998 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37185'; +$wp_version = '4.6-alpha-37188'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.