Provide context to the strings in the Plugin and Theme installers to allow for different grammatical gender. Fixes #10100.

git-svn-id: http://svn.automattic.com/wordpress/trunk@12103 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-10-25 11:14:12 +00:00
parent e5bf2656db
commit 7a67d6e60f
2 changed files with 8 additions and 8 deletions

View File

@ -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.

View File

@ -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.