From 83d175cdd03566cfbb00bcb0a165634285673eba Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 14 Jul 2019 14:47:56 +0000 Subject: [PATCH] I18N: Add context for theme filter strings in `WP_MS_Themes_List_Table::get_views()`. Props audrasjb. Fixes #47695. Built from https://develop.svn.wordpress.org/trunk@45634 git-svn-id: http://core.svn.wordpress.org/trunk@45445 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-themes-list-table.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index ad463ca972..eb9001c6f7 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -303,16 +303,16 @@ class WP_MS_Themes_List_Table extends WP_List_Table { $text = _nx( 'All (%s)', 'All (%s)', $count, 'themes' ); break; case 'enabled': - $text = _n( 'Enabled (%s)', 'Enabled (%s)', $count ); + $text = _nx( 'Enabled (%s)', 'Enabled (%s)', $count, 'themes' ); break; case 'disabled': - $text = _n( 'Disabled (%s)', 'Disabled (%s)', $count ); + $text = _nx( 'Disabled (%s)', 'Disabled (%s)', $count, 'themes' ); break; case 'upgrade': - $text = _n( 'Update Available (%s)', 'Update Available (%s)', $count ); + $text = _nx( 'Update Available (%s)', 'Update Available (%s)', $count, 'themes' ); break; case 'broken': - $text = _n( 'Broken (%s)', 'Broken (%s)', $count ); + $text = _nx( 'Broken (%s)', 'Broken (%s)', $count, 'themes' ); break; } diff --git a/wp-includes/version.php b/wp-includes/version.php index ef4b216a47..a8bf26ac8f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45633'; +$wp_version = '5.3-alpha-45634'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.