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:
parent
ebcf49cf93
commit
ea8be18c39
|
@ -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' ),
|
||||
|
|
Loading…
Reference in New Issue