Make WordPress Core

Changeset 52808


Ignore:
Timestamp:
02/27/2022 10:47:19 PM (15 months ago)
Author:
audrasjb
Message:

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.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/vendor/tinymce/langs/wp-langs-en.js

    r48115 r52808  
    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: {
  • trunk/src/wp-admin/options-permalink.php

    r51892 r52808  
    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                );
     
    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            ?>
     
    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        ?>
Note: See TracChangeset for help on using the changeset viewer.