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:
parent
e5bf2656db
commit
7a67d6e60f
|
@ -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