Embeds: After [34903], remove an accidentally included text domain, and exclude a test failing in PHP 5.2.

git-svn-id: https://develop.svn.wordpress.org/trunk@34904 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast
2015-10-07 11:00:59 +00:00
parent 43bd3d46c9
commit a170c1f67e
4 changed files with 14 additions and 14 deletions

View File

@@ -484,7 +484,7 @@ JS;
esc_url( $embed_url ),
absint( $width ),
absint( $height ),
esc_attr__( 'Embedded WordPress Post', 'oembed-api' )
esc_attr__( 'Embedded WordPress Post' )
);
/**
@@ -748,11 +748,11 @@ function wp_oembed_excerpt_more( $more_string ) {
}
return sprintf(
_x( '… %s', 'read more link', 'oembed-api' ),
_x( '… %s', 'read more link' ),
sprintf(
'<a class="wp-embed-more" href="%s" target="_top">%s</a>',
get_the_permalink(),
__( 'Read more', 'oembed-api' )
__( 'Read more' )
)
);
}