Changeset 38110
- Timestamp:
- 07/20/2016 01:38:12 AM (7 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r38062 r38110 1024 1024 'Words: {0}' => sprintf( __( 'Words: %s' ), '{0}' ), 1025 1025 'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.' => __( 'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.' ) . "\n\n" . __( 'If you’re looking to paste rich content from Microsoft Word, try turning this option off. The editor will clean up text pasted from Word automatically.' ), 1026 'Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help' => __( 'Rich Text Area. Press Alt-Shift-H for help' ), 1026 'Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help' => __( 'Rich Text Area. Press Alt-Shift-H for help.' ), 1027 'Rich Text Area. Press Control-Option-H for help.' => __( 'Rich Text Area. Press Control-Option-H for help.' ), 1027 1028 'You have unsaved changes are you sure you want to navigate away?' => __( 'The changes you made will be lost if you navigate away from this page.' ), 1028 1029 'Your browser doesn\'t support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.' => __( 'Your browser does not support direct access to the clipboard. Please use keyboard shortcuts or your browser’s edit menu instead.' ), -
trunk/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js
r38039 r38110 579 579 if ( window.getUserSetting( 'editor_plain_text_paste_warning' ) > 1 ) { 580 580 editor.settings.paste_plaintext_inform = false; 581 } 582 583 // Change the editor iframe title on MacOS, add the correct help shortcut. 584 if ( tinymce.Env.mac ) { 585 tinymce.$( editor.iframeElement ).attr( 'title', __( 'Rich Text Area. Press Control-Option-H for help.' ) ); 581 586 } 582 587 } );
Note: See TracChangeset
for help on using the changeset viewer.