TinyMCE: make the tooltip for the remove button in the image toolbar translatable.
Merges [30835] to the 4.1 branch. Props pavelevap Fixes #30694 Built from https://develop.svn.wordpress.org/branches/4.1@30861 git-svn-id: http://core.svn.wordpress.org/branches/4.1@30851 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5d800b2ea7
commit
23baee556e
|
@ -984,7 +984,7 @@ final class _WP_Editors {
|
||||||
// TinyMCE menus
|
// TinyMCE menus
|
||||||
'Insert' => _x( 'Insert', 'TinyMCE menu' ),
|
'Insert' => _x( 'Insert', 'TinyMCE menu' ),
|
||||||
'File' => _x( 'File', 'TinyMCE menu' ),
|
'File' => _x( 'File', 'TinyMCE menu' ),
|
||||||
'Edit' => _x( 'Edit', 'TinyMCE menu' ),
|
'Edit' => _x( 'Edit', 'TinyMCE menu and tooltip for the Edit button in the image toolbar' ),
|
||||||
'Tools' => _x( 'Tools', 'TinyMCE menu' ),
|
'Tools' => _x( 'Tools', 'TinyMCE menu' ),
|
||||||
'View' => _x( 'View', 'TinyMCE menu' ),
|
'View' => _x( 'View', 'TinyMCE menu' ),
|
||||||
'Table' => _x( 'Table', 'TinyMCE menu' ),
|
'Table' => _x( 'Table', 'TinyMCE menu' ),
|
||||||
|
@ -997,6 +997,7 @@ final class _WP_Editors {
|
||||||
'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
|
'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
|
||||||
'Distraction Free Writing' => __( 'Distraction Free Writing' ),
|
'Distraction Free Writing' => __( 'Distraction Free Writing' ),
|
||||||
'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
|
'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
|
||||||
|
'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue