Changeset 56515 for trunk/src/wp-admin/network/menu.php
- Timestamp:
- 09/05/2023 07:24:31 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/menu.php
r52406 r56515 51 51 $menu[5] = array( __( 'Sites' ), 'manage_sites', 'sites.php', '', 'menu-top menu-icon-site', 'menu-site', 'dashicons-admin-multisite' ); 52 52 $submenu['sites.php'][5] = array( __( 'All Sites' ), 'manage_sites', 'sites.php' ); 53 $submenu['sites.php'][10] = array( _ x( 'Add New', 'site' ), 'create_sites', 'site-new.php' );53 $submenu['sites.php'][10] = array( __( 'Add New Site' ), 'create_sites', 'site-new.php' ); 54 54 55 55 $menu[10] = array( __( 'Users' ), 'manage_network_users', 'users.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); 56 56 $submenu['users.php'][5] = array( __( 'All Users' ), 'manage_network_users', 'users.php' ); 57 $submenu['users.php'][10] = array( _ x( 'Add New', 'user' ), 'create_users', 'user-new.php' );57 $submenu['users.php'][10] = array( __( 'Add New User' ), 'create_users', 'user-new.php' ); 58 58 59 59 if ( current_user_can( 'update_themes' ) && $update_data['counts']['themes'] ) { … … 79 79 } 80 80 $submenu['themes.php'][5] = array( __( 'Installed Themes' ), 'manage_network_themes', 'themes.php' ); 81 $submenu['themes.php'][10] = array( _ x( 'Add New', 'theme' ), 'install_themes', 'theme-install.php' );81 $submenu['themes.php'][10] = array( __( 'Add New Theme' ), 'install_themes', 'theme-install.php' ); 82 82 $submenu['themes.php'][15] = array( __( 'Theme File Editor' ), 'edit_themes', 'theme-editor.php' ); 83 83 … … 104 104 } 105 105 $submenu['plugins.php'][5] = array( __( 'Installed Plugins' ), 'manage_network_plugins', 'plugins.php' ); 106 $submenu['plugins.php'][10] = array( _ x( 'Add New', 'plugin' ), 'install_plugins', 'plugin-install.php' );106 $submenu['plugins.php'][10] = array( __( 'Add New Plugin' ), 'install_plugins', 'plugin-install.php' ); 107 107 $submenu['plugins.php'][15] = array( __( 'Plugin File Editor' ), 'edit_plugins', 'plugin-editor.php' ); 108 108
Note: See TracChangeset
for help on using the changeset viewer.