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. Built from https://develop.svn.wordpress.org/trunk@52808 git-svn-id: http://core.svn.wordpress.org/trunk@52397 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
01d22d18e6
commit
7e2b01d127
|
@ -367,11 +367,11 @@ printf( __( 'If you like, you may enter custom structures for your category and
|
|||
<p id="iis-description-a">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: web.config, 2: Documentation URL, 3: CTRL + a, 4: Element code. */
|
||||
/* translators: 1: web.config, 2: Documentation URL, 3: Ctrl + A, 4: Element code. */
|
||||
__( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn’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.' ),
|
||||
'<code>web.config</code>',
|
||||
__( 'https://wordpress.org/support/article/changing-file-permissions/' ),
|
||||
'<kbd>CTRL + a</kbd>',
|
||||
'<kbd>Ctrl + A</kbd>',
|
||||
'<code>/<configuration>/<system.webServer>/<rewrite>/<rules></code>'
|
||||
);
|
||||
?>
|
||||
|
@ -393,11 +393,11 @@ printf( __( 'If you like, you may enter custom structures for your category and
|
|||
<p id="iis-description-b">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: Documentation URL, 2: web.config, 3: CTRL + a */
|
||||
/* translators: 1: Documentation URL, 2: web.config, 3: Ctrl + A */
|
||||
__( 'If the root directory of your site was <a href="%1$s">writable</a>, we could do this automatically, but it isn’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.' ),
|
||||
__( 'https://wordpress.org/support/article/changing-file-permissions/' ),
|
||||
'<code>web.config</code>',
|
||||
'<kbd>CTRL + a</kbd>'
|
||||
'<kbd>Ctrl + A</kbd>'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
@ -423,11 +423,11 @@ else :
|
|||
<p id="htaccess-description">
|
||||
<?php
|
||||
printf(
|
||||
/* translators: 1: .htaccess, 2: Documentation URL, 3: CTRL + a */
|
||||
/* translators: 1: .htaccess, 2: Documentation URL, 3: Ctrl + A */
|
||||
__( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn’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.' ),
|
||||
'<code>.htaccess</code>',
|
||||
__( 'https://wordpress.org/support/article/changing-file-permissions/' ),
|
||||
'<kbd>CTRL + a</kbd>'
|
||||
'<kbd>Ctrl + A</kbd>'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
|
|
|
@ -152,9 +152,9 @@
|
|||
plaintext_mode: "Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg: {
|
||||
text_title: "Use CTRL + V on your keyboard to paste the text into the window.",
|
||||
text_title: "Use Ctrl + V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks: "Keep linebreaks",
|
||||
word_title: "Use CTRL + V on your keyboard to paste the text into the window."
|
||||
word_title: "Use Ctrl + V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table: {
|
||||
desc: "Inserts a new table",
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.0-alpha-52807';
|
||||
$wp_version = '6.0-alpha-52808';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue