Skip to content

Commit d241c8c

Browse files
committed
Administration: Consistency fixes on keyboard shortcuts instructions.
This changeset capitalizes the letter of keyboard shortcuts and replaces `CTRL` with `Ctrl`, for better consistency. Props Presskopp, sabernhardt, joyously, SergeyBiryukov, audrasjb. Fixes #40582. git-svn-id: https://develop.svn.wordpress.org/trunk@52808 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 33048b9 commit d241c8c

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/js/_enqueues/vendor/tinymce/langs/wp-langs-en.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@
152152
plaintext_mode: "Paste is now in plain text mode. Click again to toggle back to regular paste mode."
153153
},
154154
paste_dlg: {
155-
text_title: "Use CTRL + V on your keyboard to paste the text into the window.",
155+
text_title: "Use Ctrl + V on your keyboard to paste the text into the window.",
156156
text_linebreaks: "Keep linebreaks",
157-
word_title: "Use CTRL + V on your keyboard to paste the text into the window."
157+
word_title: "Use Ctrl + V on your keyboard to paste the text into the window."
158158
},
159159
table: {
160160
desc: "Inserts a new table",

src/wp-admin/options-permalink.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,11 +367,11 @@ class="button button-secondary"
367367
<p id="iis-description-a">
368368
<?php
369369
printf(
370-
/* translators: 1: web.config, 2: Documentation URL, 3: CTRL + a, 4: Element code. */
370+
/* translators: 1: web.config, 2: Documentation URL, 3: Ctrl + A, 4: Element code. */
371371
__( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your %1$s file. Click in the field and press %3$s to select all. Then insert this rule inside of the %4$s element in %1$s file.' ),
372372
'<code>web.config</code>',
373373
__( 'https://wordpress.org/support/article/changing-file-permissions/' ),
374-
'<kbd>CTRL + a</kbd>',
374+
'<kbd>Ctrl + A</kbd>',
375375
'<code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code>'
376376
);
377377
?>
@@ -393,11 +393,11 @@ class="button button-secondary"
393393
<p id="iis-description-b">
394394
<?php
395395
printf(
396-
/* translators: 1: Documentation URL, 2: web.config, 3: CTRL + a */
396+
/* translators: 1: Documentation URL, 2: web.config, 3: Ctrl + A */
397397
__( 'If the root directory of your site was <a href="%1$s">writable</a>, we could do this automatically, but it isn&#8217;t so this is the url rewrite rule you should have in your %2$s file. Create a new file, called %2$s in the root directory of your site. Click in the field and press %3$s to select all. Then insert this code into the %2$s file.' ),
398398
__( 'https://wordpress.org/support/article/changing-file-permissions/' ),
399399
'<code>web.config</code>',
400-
'<kbd>CTRL + a</kbd>'
400+
'<kbd>Ctrl + A</kbd>'
401401
);
402402
?>
403403
</p>
@@ -423,11 +423,11 @@ class="button button-secondary"
423423
<p id="htaccess-description">
424424
<?php
425425
printf(
426-
/* translators: 1: .htaccess, 2: Documentation URL, 3: CTRL + a */
426+
/* translators: 1: .htaccess, 2: Documentation URL, 3: Ctrl + A */
427427
__( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn&#8217;t so these are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s to select all.' ),
428428
'<code>.htaccess</code>',
429429
__( 'https://wordpress.org/support/article/changing-file-permissions/' ),
430-
'<kbd>CTRL + a</kbd>'
430+
'<kbd>Ctrl + A</kbd>'
431431
);
432432
?>
433433
</p>

0 commit comments

Comments
 (0)