I18N: Remove unnecessary context for "WordPress.org" string in `WP_Widget_Meta`.

Props ramiy.
Fixes #47038.
Built from https://develop.svn.wordpress.org/trunk@45436


git-svn-id: http://core.svn.wordpress.org/trunk@45247 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-05-26 15:33:52 +00:00
parent bc8ddf3b38
commit f5f7e99927
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-alpha-45435';
$wp_version = '5.3-alpha-45436';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -74,7 +74,7 @@ class WP_Widget_Meta extends WP_Widget {
'<li><a href="%s" title="%s">%s</a></li>',
esc_url( __( 'https://wordpress.org/' ) ),
esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
_x( 'WordPress.org', 'meta widget link text' )
__( 'WordPress.org' )
),
$instance
);