diff --git a/wp-admin/plugin-install.php b/wp-admin/plugin-install.php index 452aee1e6..503e78c9d 100644 --- a/wp-admin/plugin-install.php +++ b/wp-admin/plugin-install.php @@ -25,10 +25,10 @@ $tabs['dashboard'] = __('Search'); if ( 'search' == $tab ) $tabs['search'] = __('Search Results'); $tabs['upload'] = __('Upload'); -$tabs['featured'] = __('Featured'); -$tabs['popular'] = __('Popular'); -$tabs['new'] = __('Newest'); -$tabs['updated'] = __('Recently Updated'); +$tabs['featured'] = _x('Featured','Plugin Installer'); +$tabs['popular'] = _x('Popular','Plugin Installer'); +$tabs['new'] = _x('Newest','Plugin Installer'); +$tabs['updated'] = _x('Recently Updated','Plugin Installer'); $nonmenu_tabs = array('plugin-information'); //Valid actions to perform which do not have a Menu item. diff --git a/wp-admin/theme-install.php b/wp-admin/theme-install.php index 8bfe387da..3341db467 100644 --- a/wp-admin/theme-install.php +++ b/wp-admin/theme-install.php @@ -30,10 +30,10 @@ $tabs['dashboard'] = __('Search'); if ( 'search' == $tab ) $tabs['search'] = __('Search Results'); $tabs['upload'] = __('Upload'); -$tabs['featured'] = __('Featured'); -//$tabs['popular'] = __('Popular'); -$tabs['new'] = __('Newest'); -$tabs['updated'] = __('Recently Updated'); +$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'); $nonmenu_tabs = array('theme-information'); //Valid actions to perform which do not have a Menu item.