Editor: Allow the “Add Media” button tooltip to be translated in the Classic block.
In the Classic Editor, the “Add Media” button was outside of the TinyMCE editor. In the Block Editor, the “Add Media” button was moved into the TinyMCE toolbar in the Classic block, but the tooltip was not added to the list of translatable strings. This adds “Add Media” to that list. The corresponding keyboard shortcut is also specified for the “Add Media” button. Props afercia. Merges [44398-44399] to the 5.0 branch. Fixes #45788. Built from https://develop.svn.wordpress.org/branches/5.0@44400 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44230 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
06a721c9a1
commit
194e7eb034
|
@ -1265,6 +1265,7 @@ final class _WP_Editors {
|
||||||
'Link options' => __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog
|
'Link options' => __( 'Link options' ), // Tooltip for the 'link options' button in the inline link dialog
|
||||||
'Visual' => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label
|
'Visual' => _x( 'Visual', 'Name for the Visual editor tab' ), // Editor switch tab label
|
||||||
'Text' => _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ), // Editor switch tab label
|
'Text' => _x( 'Text', 'Name for the Text editor tab (formerly HTML)' ), // Editor switch tab label
|
||||||
|
'Add Media' => array( __( 'Add Media' ), 'accessM' ), // Tooltip for the 'Add Media' button in the Block Editor Classic block
|
||||||
|
|
||||||
// Shortcuts help modal
|
// Shortcuts help modal
|
||||||
'Keyboard Shortcuts' => array( __( 'Keyboard Shortcuts' ), 'accessH' ),
|
'Keyboard Shortcuts' => array( __( 'Keyboard Shortcuts' ), 'accessH' ),
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.0.3-alpha-44393';
|
$wp_version = '5.0.3-alpha-44400';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue