From 4b8b0e7178631173489241cd9ec8140a8970fbf3 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 6 May 2014 12:33:08 +0000 Subject: [PATCH] Use a consistent context to remove duplicate strings. props pavelevap. fixes #28123. git-svn-id: https://develop.svn.wordpress.org/trunk@28287 602fd350-edb4-49c9-b593-d223f7449a82 --- .../includes/class-wp-theme-install-list-table.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/includes/class-wp-theme-install-list-table.php b/src/wp-admin/includes/class-wp-theme-install-list-table.php index e991c4ec46..82d9d3a762 100644 --- a/src/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/src/wp-admin/includes/class-wp-theme-install-list-table.php @@ -41,10 +41,10 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { if ( 'search' == $tab ) $tabs['search'] = __( 'Search Results' ); $tabs['upload'] = __( 'Upload' ); - $tabs['featured'] = _x( 'Featured','Theme Installer' ); - //$tabs['popular'] = _x( 'Popular','Theme Installer' ); - $tabs['new'] = _x( 'Newest','Theme Installer' ); - $tabs['updated'] = _x( 'Recently Updated','Theme Installer' ); + $tabs['featured'] = _x( 'Featured', 'themes' ); + //$tabs['popular'] = _x( 'Popular', 'themes' ); + $tabs['new'] = _x( 'Latest', 'themes' ); + $tabs['updated'] = _x( 'Recently Updated', 'themes' ); $nonmenu_tabs = array( 'theme-information' ); // Valid actions to perform which do not have a Menu item.