Make WordPress Core

Changeset 30385


Ignore:
Timestamp:
11/19/2014 05:26:18 PM (10 years ago)
Author:
azaozz
Message:

TinyMCE: fix the tooltip for 'alignnone' button on the image toolbar. Props johnbillion, see #30147.

Location:
trunk/src/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-editor.php

    r30338 r30385  
    968968            'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
    969969            'Distraction Free Writing' => __( 'Distraction Free Writing' ),
    970             'Remove alignment' => __( 'Remove alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
     970            'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
    971971        );
    972972
  • trunk/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js

    r30362 r30385  
    3434        aligncenter: 'Align center',
    3535        alignright: 'Align right',
    36         alignnone: 'Remove alignment'
     36        alignnone: 'No alignment'
    3737    }, function( tooltip, name ) {
    3838        var direction = name.slice( 5 );
Note: See TracChangeset for help on using the changeset viewer.