Make WordPress Core

Ticket #31415: 31415.2.patch

File 31415.2.patch, 4.6 KB (added by afercia, 10 years ago)

Help text changes.

  • src/wp-admin/js/common.js

     
    470470                var el = e.target, selStart, selEnd, val, scroll, sel;
    471471
    472472                if ( e.keyCode == 27 ) { // escape key
     473                        // when pressing Escape: Opera 12 and 27 blur form fields, IE 8 clears them
     474                        e.preventDefault();
    473475                        $(el).data('tab-out', true);
    474476                        return;
    475477                }
     
    486488                selEnd = el.selectionEnd;
    487489                val = el.value;
    488490
    489                 try {
    490                         this.lastKey = 9; // not a standard DOM property, lastKey is to help stop Opera tab event. See blur handler below.
    491                 } catch(err) {}
    492 
    493491                if ( document.selection ) {
    494492                        el.focus();
    495493                        sel = document.selection.createRange();
     
    507505                        e.preventDefault();
    508506        });
    509507
    510         $('#newcontent').bind('blur.wpevent_InsertTab', function() {
    511                 if ( this.lastKey && 9 == this.lastKey )
    512                         this.focus();
    513         });
    514 
    515508        if ( pageInput.length ) {
    516509                pageInput.closest('form').submit( function() {
    517510
  • src/wp-admin/plugin-editor.php

     
    130130                '<p>' . __('You can use the 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>' .
    131131                '<p>' . __('Choose a plugin to edit from the menu in the upper right 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>' .
    132132                '<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>' .
    133                 '<p id="newcontent-description">' . __('In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key.') . '</p>' .
     133                '<p id="newcontent-description">' . __( 'In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue.' ) . '</p>' .
    134134                '<p>' . __('If you want to make changes but don&#8217;t want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below.') . '</p>' .
    135135                ( is_network_admin() ? '<p>' . __('Any edits to files from this screen will be reflected on all sites in the network.') . '</p>' : '' )
    136136        ) );
  • src/wp-admin/theme-editor.php

     
    2727        '<p>' . __('You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.') . '</p>
    2828        <p>' . __('Begin by choosing a theme to edit from the dropdown menu and clicking Select. A list then appears of all the template files. Clicking once on any file name causes the file to appear in the large Editor box.') . '</p>
    2929        <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>
    30         <p id="newcontent-description">' . __('In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key.') . '</p>
     30        <p id="newcontent-description">' . __( 'In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue.' ) . '</p>
    3131        <p>' . __('After typing in your edits, click Update File.') . '</p>
    3232        <p>' . __('<strong>Advice:</strong> think very carefully about your site crashing if you are live-editing the theme currently in use.') . '</p>
    3333        <p>' . sprintf( __('Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a <a href="%s" target="_blank">child theme</a> instead.'), __('http://codex.wordpress.org/Child_Themes') ) . '</p>' .