Ticket #31441: 31441.20.patch
| File 31441.20.patch, 2.7 KB (added by , 11 years ago) |
|---|
-
src/wp-includes/class-wp-editor.php
1045 1045 'Action' => __( 'Action' ), 1046 1046 'To move focus to other buttons use Tab or the arrow keys. To return focus to the editor press Escape or use one of the buttons.' => 1047 1047 __( 'To move focus to other buttons use Tab or the arrow keys. To return focus to the editor press Escape or use one of the buttons.' ), 1048 'When starting a new paragraph with one of these patterns followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.' => 1049 __( 'When starting a new paragraph with one of these patterns followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.' ), 1048 1050 ); 1049 1051 1050 1052 /** -
src/wp-includes/css/editor.css
150 150 .mce-window .wp-editor-help th { 151 151 font-weight: bold; 152 152 padding: 5px 0 0; 153 } 154 155 .mce-window .wp-editor-help .wp-help-center-th th { 153 156 text-align: center; 154 157 } 155 158 -
src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
258 258 html: ( 259 259 '<div class="wp-editor-help">' + 260 260 '<p>' + __( 'Default shortcuts,' ) + ' ' + meta + '</p>' + 261 '<table >' +261 '<table class="wp-help-center-th">' + 262 262 header + 263 263 table1.join('') + 264 264 '</table>' + 265 265 '<p>' + __( 'Additional shortcuts,' ) + ' ' + access + '</p>' + 266 '<table >' +266 '<table class="wp-help-center-th">' + 267 267 header + 268 268 table2.join('') + 269 269 '</table>' + 270 '<p>' + __( 'When starting a new paragraph with one of these patterns followed by a space, the formatting will be applied automatically. Press Backspace or Escape to undo.' ) + '</p>' + 271 '<table>' + 272 tr({ '* or -': 'Bullet list' }) + 273 tr({ '1. or 1)': 'Numbered list' }) + 274 tr({ '>': 'Blockquote' }) + 275 tr({ '##': 'Heading 2' }) + 276 tr({ '###': 'Heading 3' }) + 277 tr({ '####': 'Heading 4' }) + 278 tr({ '#####': 'Heading 5' }) + 279 tr({ '######': 'Heading 6' }) + 280 '</table>' + 270 281 '<p>' + __( 'Focus shortcuts:' ) + '</p>' + 271 282 '<table>' + 272 283 tr({ 'Alt + F8': 'Inline toolbar (when an image, link or preview is selected)' }) +