Changeset 42685 for trunk/src/wp-admin/menu.php
- Timestamp:
- 02/10/2018 08:42:07 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/menu.php
r42343 r42685 204 204 function _add_themes_utility_last() { 205 205 // Must use API on the admin_menu hook, direct modification is only possible on/before the _admin_menu hook 206 add_submenu_page( 'themes.php', _ x( 'Editor', 'theme editor' ), _x( 'Editor', 'theme editor' ), 'edit_themes', 'theme-editor.php' );206 add_submenu_page( 'themes.php', __( 'Theme Editor' ), __( 'Theme Editor' ), 'edit_themes', 'theme-editor.php' ); 207 207 } 208 208 … … 222 222 /* translators: add new plugin */ 223 223 $submenu['plugins.php'][10] = array( _x( 'Add New', 'plugin' ), 'install_plugins', 'plugin-install.php' ); 224 $submenu['plugins.php'][15] = array( _ x( 'Editor', 'plugin editor' ), 'edit_plugins', 'plugin-editor.php' );224 $submenu['plugins.php'][15] = array( __( 'Plugin Editor' ), 'edit_plugins', 'plugin-editor.php' ); 225 225 } 226 226
Note: See TracChangeset
for help on using the changeset viewer.