Changeset 42523
- Timestamp:
- 01/17/2018 06:27:21 AM (7 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r42343 r42523 1276 1276 'No alignment' => __( 'No alignment' ), // Tooltip for the 'alignnone' button in the image toolbar 1277 1277 'Remove' => __( 'Remove' ), // Tooltip for the 'remove' button in the image toolbar 1278 'Edit '=> __( 'Edit' ), // Tooltip for the 'edit' button in the image toolbar1278 'Edit|button' => __( 'Edit' ), // Tooltip for the 'edit' button in the image toolbar 1279 1279 'Paste URL or type to search' => __( 'Paste URL or type to search' ), // Placeholder for the inline link dialog 1280 1280 'Apply' => __( 'Apply' ), // Tooltip for the 'apply' button in the inline link dialog -
trunk/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js
r41319 r42523 19 19 20 20 editor.addButton( 'wp_img_edit', { 21 tooltip: 'Edit ', // trailing space is needed,used for context21 tooltip: 'Edit|button', // '|button' is not displayed, only used for context 22 22 icon: 'dashicon dashicons-edit', 23 23 onclick: function() { -
trunk/src/wp-includes/js/tinymce/plugins/wplink/plugin.js
r42425 r42523 565 565 566 566 editor.addButton( 'wp_link_edit', { 567 tooltip: 'Edit ', // trailing space is needed,used for context567 tooltip: 'Edit|button', // '|button' is not displayed, only used for context 568 568 icon: 'dashicon dashicons-edit', 569 569 cmd: 'WP_Link' -
trunk/src/wp-includes/js/tinymce/plugins/wpview/plugin.js
r41985 r42523 156 156 157 157 editor.addButton( 'wp_view_edit', { 158 tooltip: 'Edit ', // trailing space is needed,used for context158 tooltip: 'Edit|button', // '|button' is not displayed, only used for context 159 159 icon: 'dashicon dashicons-edit', 160 160 onclick: function() {
Note: See TracChangeset
for help on using the changeset viewer.