Plugins: Use correct singular for "Drop-in" in plugins list table.

Props tobifjellner, mukesh27.
Fixes #46592.
Built from https://develop.svn.wordpress.org/trunk@45021


git-svn-id: http://core.svn.wordpress.org/trunk@44830 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-03-27 00:00:50 +00:00
parent a5f0cd8741
commit 6037e5ab5e
2 changed files with 2 additions and 2 deletions

View File

@ -450,7 +450,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
break;
case 'dropins':
/* translators: %s: plugin count */
$text = _n( 'Drop-ins <span class="count">(%s)</span>', 'Drop-ins <span class="count">(%s)</span>', $count );
$text = _n( 'Drop-in <span class="count">(%s)</span>', 'Drop-ins <span class="count">(%s)</span>', $count );
break;
case 'paused':
/* translators: %s: plugin count */

View File

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