Provide context to the strings in the Plugin and Theme installers to allow for different grammatical gender. Fixes #10100.
git-svn-id: https://develop.svn.wordpress.org/trunk@12103 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
deddf3c40e
commit
fe32641ecf
@ -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.
|
||||
|
||||
|
@ -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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user