diff --git a/src/wp-includes/class-wp-editor.php b/src/wp-includes/class-wp-editor.php index 98daeb8351..52c7bd3738 100644 --- a/src/wp-includes/class-wp-editor.php +++ b/src/wp-includes/class-wp-editor.php @@ -967,7 +967,7 @@ final class _WP_Editors { 'Insert Read More tag' => __( 'Insert Read More tag' ), 'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor 'Distraction Free Writing' => __( 'Distraction Free Writing' ), - 'Remove alignment' => __( 'Remove alignment' ), // Tooltip for the 'alignnone' button in the image toolbar + 'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar ); /** diff --git a/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js b/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js index 0b7a2da5c5..45ad3893a2 100644 --- a/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js +++ b/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js @@ -33,7 +33,7 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) { alignleft: 'Align left', aligncenter: 'Align center', alignright: 'Align right', - alignnone: 'Remove alignment' + alignnone: 'No alignment' }, function( tooltip, name ) { var direction = name.slice( 5 );