Make WordPress Core

Changeset 42757


Ignore:
Timestamp:
02/26/2018 07:34:56 PM (7 years ago)
Author:
ocean90
Message:

Administration: Remove unnecessary capitalization when referencing to plugin/theme editors.

Fixes #43072.

Location:
trunk/src/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/misc.php

    r42343 r42757  
    278278
    279279/**
    280  * Makes a tree structure for the Theme Editor's file list.
     280 * Makes a tree structure for the theme editor's file list.
    281281 *
    282282 * @since 4.9.0
     
    300300
    301301/**
    302  * Outputs the formatted file list for the Theme Editor.
     302 * Outputs the formatted file list for the theme editor.
    303303 *
    304304 * @since 4.9.0
     
    367367
    368368/**
    369  * Makes a tree structure for the Plugin Editor's file list.
     369 * Makes a tree structure for the plugin editor's file list.
    370370 *
    371371 * @since 4.9.0
     
    389389
    390390/**
    391  * Outputs the formatted file list for the Plugin Editor.
     391 * Outputs the formatted file list for the plugin editor.
    392392 *
    393393 * @since 4.9.0
  • trunk/src/wp-admin/plugin-editor.php

    r42685 r42757  
    123123            'title'   => __( 'Overview' ),
    124124            'content' =>
    125                      '<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>' .
     125                     '<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>' .
    126126                     '<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>' .
    127127                     '<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>' .
  • trunk/src/wp-admin/theme-editor.php

    r42343 r42757  
    2727        'title'   => __( 'Overview' ),
    2828        'content' =>
    29                  '<p>' . __( 'You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.' ) . '</p>' .
     29                 '<p>' . __( 'You can use the theme editor to edit the individual CSS and PHP files which make up your theme.' ) . '</p>' .
    3030                 '<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>' .
    3131                 '<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>' .
Note: See TracChangeset for help on using the changeset viewer.