From 33bd0dd935b7119928874a73db7e8161f0c06e41 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 23 Feb 2010 20:28:52 +0000 Subject: [PATCH] Drop 'Custom' from menu names. Use 'Menus' instead of Navigation. see #11817 git-svn-id: https://develop.svn.wordpress.org/trunk@13339 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/custom-background.php | 2 +- wp-admin/custom-header.php | 2 +- wp-admin/menu.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/custom-background.php b/wp-admin/custom-background.php index 52b45eb4cb..bf5f33f112 100644 --- a/wp-admin/custom-background.php +++ b/wp-admin/custom-background.php @@ -55,7 +55,7 @@ class Custom_Background { if ( ! current_user_can('switch_themes') ) return; - $page = add_theme_page(__('Custom Background'), __('Custom Background'), 'switch_themes', 'custom-background', array(&$this, 'admin_page')); + $page = add_theme_page(__('Background'), __('Background'), 'switch_themes', 'custom-background', array(&$this, 'admin_page')); add_action("admin_head-$page", array(&$this, 'take_action'), 50); if ( $this->admin_header_callback ) diff --git a/wp-admin/custom-header.php b/wp-admin/custom-header.php index e13f3ca221..cc7cf12291 100644 --- a/wp-admin/custom-header.php +++ b/wp-admin/custom-header.php @@ -55,7 +55,7 @@ class Custom_Image_Header { if ( ! current_user_can('switch_themes') ) return; - $page = add_theme_page(__('Custom Header'), __('Custom Header'), 'switch_themes', 'custom-header', array(&$this, 'admin_page')); + $page = add_theme_page(__('Header'), __('Header'), 'switch_themes', 'custom-header', array(&$this, 'admin_page')); add_action("admin_print_scripts-$page", array(&$this, 'js_includes')); add_action("admin_print_styles-$page", array(&$this, 'css_includes')); diff --git a/wp-admin/menu.php b/wp-admin/menu.php index 4b09c24580..bbe2f2582e 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -108,7 +108,7 @@ $menu[60] = array( __('Appearance'), 'switch_themes', 'themes.php', '', 'menu-to $submenu['themes.php'][5] = array(__('Themes'), 'switch_themes', 'themes.php'); $submenu['themes.php'][10] = array(_x('Editor', 'theme editor'), 'edit_themes', 'theme-editor.php'); $submenu['themes.php'][15] = array(__('Add New Themes'), 'install_themes', 'theme-install.php'); - $submenu['themes.php'][20] = array(__('Custom Navigation'), 'switch_themes', 'custom-navigation.php'); + $submenu['themes.php'][20] = array(__('Menus'), 'switch_themes', 'custom-navigation.php'); $update_plugins = get_site_transient( 'update_plugins' ); $update_count = 0;