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: https://develop.svn.wordpress.org/trunk@21242 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2012-07-09 05:08:43 +00:00
parent ebcf49cf93
commit ea8be18c39
1 changed files with 1 additions and 1 deletions

View File

@ -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' ),