| 1 | | <?php |
| 2 | | /** |
| 3 | | * @package TinyMCE |
| 4 | | * @author Moxiecode |
| 5 | | * @copyright Copyright © 2005-2006, Moxiecode Systems AB, All rights reserved. |
| 6 | | */ |
| 7 | | |
| 8 | | /** @ignore */ |
| 9 | | require_once( dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/wp-load.php' ); |
| 10 | | header('Content-Type: text/html; charset=' . get_bloginfo('charset')); |
| 11 | | ?> |
| 12 | | <!DOCTYPE html> |
| 13 | | <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
| 14 | | <head> |
| 15 | | <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" /> |
| 16 | | <title><?php _e('Keyboard Shortcuts'); ?></title> |
| 17 | | |
| 18 | | <?php wp_admin_css( 'wp-admin', true ); ?> |
| 19 | | <style type="text/css"> |
| 20 | | |
| 21 | | html { |
| 22 | | background: #fcfcfc; |
| 23 | | overflow: hidden; |
| 24 | | } |
| 25 | | |
| 26 | | body { |
| 27 | | min-width: 0; |
| 28 | | } |
| 29 | | |
| 30 | | .wrap { |
| 31 | | background-color: #fff; |
| 32 | | border-top: 1px solid #ddd; |
| 33 | | height: 390px; |
| 34 | | margin: 0; |
| 35 | | overflow: auto; |
| 36 | | padding: 10px 16px; |
| 37 | | } |
| 38 | | |
| 39 | | th { |
| 40 | | text-align: center; |
| 41 | | } |
| 42 | | |
| 43 | | .top th { |
| 44 | | text-decoration: underline; |
| 45 | | } |
| 46 | | |
| 47 | | .top .key { |
| 48 | | text-align: center; |
| 49 | | width: 5em; |
| 50 | | } |
| 51 | | |
| 52 | | .keys { |
| 53 | | border: 0 none; |
| 54 | | margin-bottom: 15px; |
| 55 | | width: 100%; |
| 56 | | } |
| 57 | | |
| 58 | | .keys p { |
| 59 | | display: inline-block; |
| 60 | | margin: 0px; |
| 61 | | padding: 0px; |
| 62 | | } |
| 63 | | |
| 64 | | .keys .left { |
| 65 | | text-align: left; |
| 66 | | } |
| 67 | | |
| 68 | | .keys .center { |
| 69 | | text-align: center; |
| 70 | | } |
| 71 | | |
| 72 | | .keys .right { |
| 73 | | text-align: right; |
| 74 | | } |
| 75 | | </style> |
| 76 | | <?php if ( is_rtl() ) : ?> |
| 77 | | <style type="text/css"> |
| 78 | | |
| 79 | | .keys .left { |
| 80 | | text-align: right; |
| 81 | | } |
| 82 | | |
| 83 | | .keys .right { |
| 84 | | text-align: left; |
| 85 | | } |
| 86 | | |
| 87 | | </style> |
| 88 | | <?php endif; ?> |
| 89 | | </head> |
| 90 | | <body class="windows wp-core-ui"> |
| 91 | | |
| 92 | | <div class="wrap"> |
| 93 | | |
| 94 | | <div> |
| 95 | | <p><?php _e('Rather than reaching for your mouse to click on the toolbar, use these access keys. Windows and Linux use Ctrl + letter. Macintosh uses Command + letter.'); ?></p> |
| 96 | | |
| 97 | | <table class="keys"> |
| 98 | | <tr class="top"><th class="key center"><?php _e('Letter'); ?></th><th class="left"><?php _e('Action'); ?></th><th class="key center"><?php _e('Letter'); ?></th><th class="left"><?php _e('Action'); ?></th></tr> |
| 99 | | <tr><th>c</th><td><?php _e('Copy'); ?></td><th>v</th><td><?php _e('Paste'); ?></td></tr> |
| 100 | | <tr><th>a</th><td><?php _e('Select all'); ?></td><th>x</th><td><?php _e('Cut'); ?></td></tr> |
| 101 | | <tr><th>z</th><td><?php _e('Undo'); ?></td><th>y</th><td><?php _e('Redo'); ?></td></tr> |
| 102 | | <tr><th>b</th><td><?php _e('Bold'); ?></td><th>i</th><td><?php _e('Italic'); ?></td></tr> |
| 103 | | <tr><th>u</th><td><?php _e('Underline'); ?></td><th>k</th><td><?php _e('Insert/edit link'); ?></td></tr> |
| 104 | | </table> |
| 105 | | |
| 106 | | <p> |
| 107 | | <?php _e('The following shortcuts use different access keys: Alt + Shift + letter.'); ?> |
| 108 | | <?php _e('Macintosh uses Ctrl + Alt + letter.'); ?> |
| 109 | | </p> |
| 110 | | <table class="keys"> |
| 111 | | <tr class="top"><th class="key center"><?php _e('Letter'); ?></th><th class="left"><?php _e('Action'); ?></th><th class="key center"><?php _e('Letter'); ?></th><th class="left"><?php _e('Action'); ?></th></tr> |
| 112 | | |
| 113 | | <tr><th>1</th><td><?php _e('Heading 1'); ?></td><th>2</th><td><?php _e('Heading 2'); ?></td></tr> |
| 114 | | <tr><th>3</th><td><?php _e('Heading 3'); ?></td><th>4</th><td><?php _e('Heading 4'); ?></td></tr> |
| 115 | | <tr><th>5</th><td><?php _e('Heading 5'); ?></td><th>6</th><td><?php _e('Heading 6'); ?></td></tr> |
| 116 | | |
| 117 | | <tr><th>n</th><td><?php _e('Check Spelling'); ?></td><th>l</th><td><?php _e('Align Left'); ?></td></tr> |
| 118 | | <tr><th>j</th><td><?php _e('Justify Text'); ?></td><th>c</th><td><?php _e('Align Center'); ?></td></tr> |
| 119 | | <tr><th>d</th><td><span style="text-decoration: line-through;"><?php _e('Strikethrough'); ?></span></td><th>r</th><td><?php _e('Align Right'); ?></td></tr> |
| 120 | | <tr><th>u</th><td><strong>•</strong> <?php _e('List'); ?></td><th>a</th><td><?php _e('Insert link'); ?></td></tr> |
| 121 | | <tr><th>o</th><td>1. <?php _e('List'); ?></td><th>s</th><td><?php _e('Remove link'); ?></td></tr> |
| 122 | | <tr><th>q</th><td><?php _e('Quote'); ?></td><th>m</th><td><?php _e('Insert Image'); ?></td></tr> |
| 123 | | <tr><th>w</th><td><?php _e('Distraction-free writing mode'); ?></td><th>t</th><td><?php _e('Insert More Tag'); ?></td></tr> |
| 124 | | <tr><th>p</th><td><?php _e('Insert Page Break tag'); ?></td><th>h</th><td><?php _e('Help'); ?></td></tr> |
| 125 | | <tr><th>x</th><td><?php _e('Add/remove code tag'); ?></td><th> </th><td> </td></tr> |
| 126 | | </table> |
| 127 | | |
| 128 | | <p><?php _e('Focus shortcuts:'); ?></p> |
| 129 | | |
| 130 | | <table class="keys focus"> |
| 131 | | <tr><th class="left">Alt + F8</th><td><?php _e('Image toolbar (when an image is selected)'); ?></td></tr> |
| 132 | | <tr><th class="left">Alt + F9</th><td><?php _e('Editor menu (when enabled)'); ?></td></tr> |
| 133 | | <tr><th class="left">Alt + F10</th><td><?php _e('Editor toolbar'); ?></td></tr> |
| 134 | | <tr><th class="left">Alt + F11</th><td><?php _e('Elements path'); ?></td></tr> |
| 135 | | </table> |
| 136 | | |
| 137 | | <p><?php _e('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.'); ?></p> |
| 138 | | </div> |
| 139 | | |
| 140 | | </div> |
| 141 | | </body> |
| 142 | | </html> |