Skip to content

Commit

Permalink
Administration: Remove unnecessary capitalization when referencing to…
Browse files Browse the repository at this point in the history
… plugin/theme editors.

Fixes #43072.
Built from https://develop.svn.wordpress.org/trunk@42757


git-svn-id: http://core.svn.wordpress.org/trunk@42587 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ocean90 committed Feb 26, 2018
1 parent a018cdd commit 666e203
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions wp-admin/includes/misc.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ function update_recently_edited( $file ) {
}

/**
* Makes a tree structure for the Theme Editor's file list.
* Makes a tree structure for the theme editor's file list.
*
* @since 4.9.0
* @access private
Expand All @@ -299,7 +299,7 @@ function wp_make_theme_file_tree( $allowed_files ) {
}

/**
* Outputs the formatted file list for the Theme Editor.
* Outputs the formatted file list for the theme editor.
*
* @since 4.9.0
* @access private
Expand Down Expand Up @@ -366,7 +366,7 @@ function wp_print_theme_file_tree( $tree, $level = 2, $size = 1, $index = 1 ) {
}

/**
* Makes a tree structure for the Plugin Editor's file list.
* Makes a tree structure for the plugin editor's file list.
*
* @since 4.9.0
* @access private
Expand All @@ -388,7 +388,7 @@ function wp_make_plugin_file_tree( $plugin_editable_files ) {
}

/**
* Outputs the formatted file list for the Plugin Editor.
* Outputs the formatted file list for the plugin editor.
*
* @since 4.9.0
* @access private
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/plugin-editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
'id' => 'overview',
'title' => __( 'Overview' ),
'content' =>
'<p>' . __( 'You can use the Plugin Editor to make changes to any of your plugins&#8217; individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.' ) . '</p>' .
'<p>' . __( 'You can use the plugin editor to make changes to any of your plugins&#8217; individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.' ) . '</p>' .
'<p>' . __( 'Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Don&#8217;t forget to save your changes (Update File) when you&#8217;re finished.' ) . '</p>' .
'<p>' . __( 'The Documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.' ) . '</p>' .
'<p id="editor-keyboard-trap-help-1">' . __( 'When using a keyboard to navigate:' ) . '</p>' .
Expand Down
2 changes: 1 addition & 1 deletion wp-admin/theme-editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'id' => 'overview',
'title' => __( 'Overview' ),
'content' =>
'<p>' . __( 'You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.' ) . '</p>' .
'<p>' . __( 'You can use the theme editor to edit the individual CSS and PHP files which make up your theme.' ) . '</p>' .
'<p>' . __( 'Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme&#8217;s template files. Clicking once on any file name causes the file to appear in the large Editor box.' ) . '</p>' .
'<p>' . __( 'For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.' ) . '</p>' .
'<p id="editor-keyboard-trap-help-1">' . __( 'When using a keyboard to navigate:' ) . '</p>' .
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-42756';
$wp_version = '5.0-alpha-42757';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit 666e203

Please sign in to comment.