From d644bc50b093f43f7d9f580b9a637624342d9cd0 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Mon, 9 Jul 2012 05:08:43 +0000 Subject: [PATCH] Collapse an i18n context to make it more accurate and to make for one less string to translate. props pavelevap. fixes #21137 git-svn-id: http://core.svn.wordpress.org/trunk@21242 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 6bd0a5082d..8505e973f1 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -3205,7 +3205,7 @@ function capital_P_dangit( $text ) { // Still here? Use the more judicious replacement static $dblq = false; if ( false === $dblq ) - $dblq = _x('“', 'opening curly quote'); + $dblq = _x( '“', 'opening curly double quote' ); return str_replace( array( ' Wordpress', '‘Wordpress', $dblq . 'Wordpress', '>Wordpress', '(Wordpress' ), array( ' WordPress', '‘WordPress', $dblq . 'WordPress', '>WordPress', '(WordPress' ),