Context for 'All Links'. props SergeyBiryukov, pavelevap. fixes #18096.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19202 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
815d4065be
commit
3526f8a7da
|
@ -59,7 +59,7 @@ $menu[10] = array( __('Media'), 'upload_files', 'upload.php', '', 'menu-top menu
|
|||
$submenu['upload.php'][10] = array( _x('Add New', 'file'), 'upload_files', 'media-new.php');
|
||||
|
||||
$menu[15] = array( __('Links'), 'manage_links', 'link-manager.php', '', 'menu-top menu-icon-links', 'menu-links', 'div' );
|
||||
$submenu['link-manager.php'][5] = array( __('All Links'), 'manage_links', 'link-manager.php' );
|
||||
$submenu['link-manager.php'][5] = array( _x('All Links', 'admin menu'), 'manage_links', 'link-manager.php' );
|
||||
/* translators: add new links */
|
||||
$submenu['link-manager.php'][10] = array( _x('Add New', 'link'), 'manage_links', 'link-add.php' );
|
||||
$submenu['link-manager.php'][15] = array( __('Link Categories'), 'manage_categories', 'edit-tags.php?taxonomy=link_category' );
|
||||
|
|
|
@ -105,7 +105,7 @@ class WP_Widget_Links extends WP_Widget {
|
|||
|
||||
if ( is_admin() && !$category ) {
|
||||
// Display All Links widget as such in the widgets screen
|
||||
echo $before_widget . $before_title. __('All Links') . $after_title . $after_widget;
|
||||
echo $before_widget . $before_title . _x('All Links', 'links widget') . $after_title . $after_widget;
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -140,7 +140,7 @@ class WP_Widget_Links extends WP_Widget {
|
|||
<p>
|
||||
<label for="<?php echo $this->get_field_id('category'); ?>" class="screen-reader-text"><?php _e('Select Link Category'); ?></label>
|
||||
<select class="widefat" id="<?php echo $this->get_field_id('category'); ?>" name="<?php echo $this->get_field_name('category'); ?>">
|
||||
<option value=""><?php _e('All Links'); ?></option>
|
||||
<option value=""><?php _ex('All Links', 'links widget'); ?></option>
|
||||
<?php
|
||||
foreach ( $link_cats as $link_cat ) {
|
||||
echo '<option value="' . intval($link_cat->term_id) . '"'
|
||||
|
|
Loading…
Reference in New Issue