Make WordPress Core

Changeset 13339


Ignore:
Timestamp:
02/23/2010 08:28:52 PM (15 years ago)
Author:
ryan
Message:

Drop 'Custom' from menu names. Use 'Menus' instead of Navigation. see #11817

Location:
trunk/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/custom-background.php

    r13316 r13339  
    5656            return;
    5757
    58         $page = add_theme_page(__('Custom Background'), __('Custom Background'), 'switch_themes', 'custom-background', array(&$this, 'admin_page'));
     58        $page = add_theme_page(__('Background'), __('Background'), 'switch_themes', 'custom-background', array(&$this, 'admin_page'));
    5959
    6060        add_action("admin_head-$page", array(&$this, 'take_action'), 50);
  • trunk/wp-admin/custom-header.php

    r13043 r13339  
    5656            return;
    5757
    58         $page = add_theme_page(__('Custom Header'), __('Custom Header'), 'switch_themes', 'custom-header', array(&$this, 'admin_page'));
     58        $page = add_theme_page(__('Header'), __('Header'), 'switch_themes', 'custom-header', array(&$this, 'admin_page'));
    5959
    6060        add_action("admin_print_scripts-$page", array(&$this, 'js_includes'));
  • trunk/wp-admin/menu.php

    r13301 r13339  
    109109    $submenu['themes.php'][10] = array(_x('Editor', 'theme editor'), 'edit_themes', 'theme-editor.php');
    110110    $submenu['themes.php'][15] = array(__('Add New Themes'), 'install_themes', 'theme-install.php');
    111     $submenu['themes.php'][20] = array(__('Custom Navigation'), 'switch_themes', 'custom-navigation.php');
     111    $submenu['themes.php'][20] = array(__('Menus'), 'switch_themes', 'custom-navigation.php');
    112112
    113113$update_plugins = get_site_transient( 'update_plugins' );
Note: See TracChangeset for help on using the changeset viewer.