I18N: Correct translator comment for `By %s` string in Plugins list table.

Follow-up to [44541].

See #45898.
Built from https://develop.svn.wordpress.org/trunk@46755


git-svn-id: http://core.svn.wordpress.org/trunk@46555 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-11-21 00:08:02 +00:00
parent d5434d7cc7
commit 44d5372825
2 changed files with 2 additions and 2 deletions

View File

@ -902,7 +902,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
if ( ! empty( $plugin_data['AuthorURI'] ) ) { if ( ! empty( $plugin_data['AuthorURI'] ) ) {
$author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>'; $author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
} }
/* translators: %s: Plugin version number. */ /* translators: %s: Plugin author name. */
$plugin_meta[] = sprintf( __( 'By %s' ), $author ); $plugin_meta[] = sprintf( __( 'By %s' ), $author );
} }

View File

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