From 574eb3997861f8eee9b4d459e2e9157e771c6e12 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 2 Feb 2013 03:42:10 +0000 Subject: [PATCH] Mark the string for translation. see #22896. git-svn-id: http://core.svn.wordpress.org/trunk@23379 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.wp-scripts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.wp-scripts.php b/wp-includes/functions.wp-scripts.php index c6b5bbb9c4..0ff74b3cd3 100644 --- a/wp-includes/functions.wp-scripts.php +++ b/wp-includes/functions.wp-scripts.php @@ -123,7 +123,7 @@ function wp_deregister_script( $handle ) { ); if ( in_array( $handle, $no ) ) { - $message = sprintf( 'Do not deregister the %1$s script in the administration area. To target the frontend theme, use the %2$s hook.', + $message = sprintf( __( 'Do not deregister the %1$s script in the administration area. To target the frontend theme, use the %2$s hook.' ), "$handle", 'wp_enqueue_scripts' ); _doing_it_wrong( __FUNCTION__, $message, '3.6' ); return;