#27988 closed defect (bug) (fixed)
wrong string in core
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.0 | Priority: | lowest |
Severity: | minor | Version: | 4.0 |
Component: | Editor | Keywords: | needs-patch |
Focuses: | docs | Cc: |
Description
https://core.trac.wordpress.org/browser/trunk/src/wp-includes/class-wp-editor.php#L947
the text there says that copy paste command is "CTRL + X/C/V/" which actually is "CTRL + x/c/v"
an upper case X or C or V means ctrl+shift+v when in fact the copy/paste/cut command don't use shift key.
Attachments (1)
Change History (11)
#3
@
11 years ago
Note that capitals are usually used for readability. The letters on your keyboard are capitals as well, even though they produce lower case letters without shift.
#5
@
11 years ago
After talking to Nacin at WordCamp Austin contributor day, he suggested that we change the prompt to read 'Please use the edit menu or keyboard shortcuts instead.'
The above patch changes this.
Note: See
TracTickets for help on using
tickets.
Additionally, these commands are incorrect if you're on a Mac. We should either remove the references to the keyboard shortcuts altogether, or put some logic in there to display
ctrl
orcmd
depending on OS.