Make WordPress Core

Ticket #50773: 50773.2.diff

File 50773.2.diff, 95.2 KB (added by justinahinon, 4 years ago)
  • src/js/_enqueues/admin/edit-comments.js

     
    613613                        approvedDiff = -1;
    614614                        pendingDiff = 1;
    615615
    616                 // User clicked "Delete Permanently".
     616                // User clicked "Delete permanently".
    617617                } else if ( targetParent.is( 'span.delete' ) ) {
    618618                        if ( spammed ) {
    619619                                spamDiff = -1;
  • src/js/_enqueues/admin/plugin-install.js

     
    207207        });
    208208
    209209        /*
    210          * When a user presses the "Upload Plugin" button, show the upload form in place
     210         * When a user presses the "Upload plugin" button, show the upload form in place
    211211         * rather than sending them to the devoted upload plugin page.
    212212         * The `?tab=upload` page still exists for no-js support and for plugins that
    213213         * might access it directly. When we're in this page, let the link behave
  • src/js/_enqueues/vendor/tinymce/langs/wp-langs-en.js

     
    147147                paste: {
    148148                        paste_text_desc: "Paste as Plain Text",
    149149                        paste_word_desc: "Paste from Word",
    150                         selectall_desc: "Select All",
     150                        selectall_desc: "Select all",
    151151                        plaintext_mode_sticky: "Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.",
    152152                        plaintext_mode: "Paste is now in plain text mode. Click again to toggle back to regular paste mode."
    153153                },
  • src/js/_enqueues/wp/customize/loader.js

     
    119119                                return window.location = src;
    120120                        }
    121121
    122                         // Store the document title prior to opening the Live Preview.
     122                        // Store the document title prior to opening the Live preview.
    123123                        this.originalDocumentTitle = document.title;
    124124
    125125                        this.active = true;
     
    223223                                        self.active = false;
    224224                                        self.trigger( 'close' );
    225225
    226                                         // Restore document title prior to opening the Live Preview.
     226                                        // Restore document title prior to opening the Live preview.
    227227                                        if ( self.originalDocumentTitle ) {
    228228                                                document.title = self.originalDocumentTitle;
    229229                                        }
  • src/js/_enqueues/wp/editor/base.js

     
    732732
    733733                                /**
    734734                                 * Marking the start and end element with `data-mce-object-selection` helps
    735                                  * discern when the selected object is a Live Preview selection.
     735                                 * discern when the selected object is a Live preview selection.
    736736                                 *
    737737                                 * This way we can adjust the selection to properly select only the content, ignoring
    738738                                 * whitespace inserted around the selected object by the Editor.
     
    792792
    793793                        if (endMatch) {
    794794                                /**
    795                                  * Adjust the selection index, if the selection contains a Live Preview object or not.
     795                                 * Adjust the selection index, if the selection contains a Live preview object or not.
    796796                                 *
    797797                                 * Check where the `data-mce-object-selection` attribute is set above for more context.
    798798                                 */
  • src/js/_enqueues/wp/updates.js

     
    622622
    623623                                        $card.find( '.update-now' )
    624624                                                .attr( 'aria-label', false )
    625                                                 .text( __( 'Update Now' ) );
     625                                                .text( __( 'Update now' ) );
    626626                                }, 200 );
    627627                        } );
    628628                }
     
    727727                                                        'aria-label',
    728728                                                        sprintf(
    729729                                                                /* translators: %s: Plugin name. */
    730                                                                 _x( 'Network Activate %s', 'plugin' ),
     730                                                                _x( 'Network activate %s', 'plugin' ),
    731731                                                                response.pluginName
    732732                                                        )
    733733                                                )
    734                                                 .text( __( 'Network Activate' ) );
     734                                                .text( __( 'Network activate' ) );
    735735                                } else {
    736736                                        $message
    737737                                                .attr(
     
    892892                                        pluginName
    893893                                )
    894894                        )
    895                         .text( __( 'Install Now' ) );
     895                        .text( __( 'Install now' ) );
    896896
    897897                wp.a11y.speak( errorMessage, 'assertive' );
    898898
     
    13481348                                                        'aria-label',
    13491349                                                        sprintf(
    13501350                                                                /* translators: %s: Theme name. */
    1351                                                                 _x( 'Network Activate %s', 'theme' ),
     1351                                                                _x( 'Network activate %s', 'theme' ),
    13521352                                                                response.themeName
    13531353                                                        )
    13541354                                                )
    1355                                                 .text( __( 'Network Enable' ) );
     1355                                                .text( __( 'Network enable' ) );
    13561356                                } else {
    13571357                                        $message
    13581358                                                .attr(
     
    13691369
    13701370                        if ( response.customizeUrl ) {
    13711371
    1372                                 // Transform the 'Preview' button into a 'Live Preview' button.
     1372                                // Transform the 'Preview' button into a 'Live preview' button.
    13731373                                $message.siblings( '.preview' ).replaceWith( function () {
    13741374                                        return $( '<a>' )
    13751375                                                .attr( 'href', response.customizeUrl )
    13761376                                                .addClass( 'button load-customize' )
    1377                                                 .text( __( 'Live Preview' ) );
     1377                                                .text( __( 'Live preview' ) );
    13781378                                } );
    13791379                        }
    13801380                }, 1000 );
     
    21472147
    21482148                                        $message
    21492149                                                .removeClass( 'updating-message' )
    2150                                                 .text( __( 'Install Now' ) );
     2150                                                .text( __( 'Install now' ) );
    21512151
    21522152                                        wp.a11y.speak( __( 'Update canceled.' ) );
    21532153                                } );
     
    21902190                                                                pluginName
    21912191                                                        )
    21922192                                                )
    2193                                                 .text( __( 'Install Now' ) );
     2193                                                .text( __( 'Install now' ) );
    21942194
    21952195                                        wp.a11y.speak( __( 'Update canceled.' ) );
    21962196                                } );
     
    24902490                                        .append( $( '<a />', {
    24912491                                                'class': 'current',
    24922492                                                'href': searchLocation,
    2493                                                 'text': __( 'Search Results' )
     2493                                                'text': __( 'Search results' )
    24942494                                        } ) );
    24952495
    24962496                                $( '.wp-filter .filter-links .current' )
     
    26242624                } );
    26252625
    26262626                /**
    2627                  * Trigger a search event when the "Try Again" button is clicked.
     2627                 * Trigger a search event when the "Try again" button is clicked.
    26282628                 *
    26292629                 * @since 4.9.0
    26302630                 */
  • src/js/media/views/button/delete-selected-permanently.js

     
    55/**
    66 * wp.media.view.DeleteSelectedPermanentlyButton
    77 *
    8  * When MEDIA_TRASH is true, a button that handles bulk Delete Permanently logic
     8 * When MEDIA_TRASH is true, a button that handles bulk Delete permanently logic
    99 *
    1010 * @memberOf wp.media.view
    1111 *
  • src/wp-admin/about.php

     
    9898                                                <source src="https://s.w.org/images/core/5.5/auto-updates.mp4" type="video/mp4" />
    9999                                                <source src="https://s.w.org/images/core/5.5/auto-updates.webm" type="video/webm" />
    100100                                        </video>
    101                                         <figcaption id="about-security" class="screen-reader-text"><?php _e( 'Video: Installed plugin screen, which shows a new column, Automatic Updates. In this column are buttons that say "Enable auto-updates". When clicked, the auto-updates feature is turned on for that plugin, and the button switches to say "Disable auto-updates".' ); ?></figcaption>
     101                                        <figcaption id="about-security" class="screen-reader-text"><?php _e( 'Video: Installed plugin screen, which shows a new column, Automatic updates. In this column are buttons that say "Enable auto-updates". When clicked, the auto-updates feature is turned on for that plugin, and the button switches to say "Disable auto-updates".' ); ?></figcaption>
    102102                                </figure>
    103103                        </div>
    104104                </div>
  • src/wp-admin/edit-form-comment.php

     
    202202
    203203<div id="major-publishing-actions">
    204204<div id="delete-action">
    205 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url( 'comment.php?action=' . ( ! EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&amp;c=$comment->comment_ID&amp;_wp_original_http_referer=" . urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" . ( ! EMPTY_TRASH_DAYS ? __( 'Delete Permanently' ) : __( 'Move to Trash' ) ) . "</a>\n"; ?>
     205<?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url( 'comment.php?action=' . ( ! EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&amp;c=$comment->comment_ID&amp;_wp_original_http_referer=" . urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" . ( ! EMPTY_TRASH_DAYS ? __( 'Delete permanently' ) : __( 'Move to Trash' ) ) . "</a>\n"; ?>
    206206</div>
    207207<div id="publishing-action">
    208208<?php submit_button( __( 'Update' ), 'primary large', 'save', false ); ?>
  • src/wp-admin/erase-personal-data.php

     
    11<?php
    22/**
    3  * Privacy tools, Erase Personal Data screen.
     3 * Privacy tools, Erase personal data screen.
    44 *
    55 * @package WordPress
    66 * @subpackage Administration
     
    5151?>
    5252
    5353<div class="wrap nosubsub">
    54         <h1><?php esc_html_e( 'Erase Personal Data' ); ?></h1>
     54        <h1><?php esc_html_e( 'Erase personal data' ); ?></h1>
    5555        <hr class="wp-header-end" />
    5656
    5757        <?php settings_errors(); ?>
    5858
    5959        <form action="<?php echo esc_url( admin_url( 'erase-personal-data.php' ) ); ?>" method="post" class="wp-privacy-request-form">
    60                 <h2><?php esc_html_e( 'Add Data Erasure Request' ); ?></h2>
     60                <h2><?php esc_html_e( 'Add Data erasure Request' ); ?></h2>
    6161                <p><?php esc_html_e( 'An email will be sent to the user at this email address asking them to verify the request.' ); ?></p>
    6262
    6363                <div class="wp-privacy-request-form-field">
  • src/wp-admin/import.php

     
    2121        array(
    2222                'id'      => 'overview',
    2323                'title'   => __( 'Overview' ),
    24                 'content' => '<p>' . __( 'This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.' ) . '</p>' .
     24                'content' => '<p>' . __( 'This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.' ) . '</p>' .
    2525                        '<p>' . __( 'In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.' ) . '</p>',
    2626        )
    2727);
     
    157157                                                esc_attr( $data[0] ),
    158158                                                /* translators: %s: Importer name. */
    159159                                                esc_attr( sprintf( _x( 'Install %s now', 'plugin' ), $data[0] ) ),
    160                                                 __( 'Install Now' )
     160                                                __( 'Install now' )
    161161                                        );
    162162                                } else {
    163163                                        $action = sprintf(
  • src/wp-admin/includes/ajax-actions.php

     
    21952195                                $stat = __( 'Scheduled' );
    21962196                                break;
    21972197                        case 'pending':
    2198                                 $stat = __( 'Pending Review' );
     2198                                $stat = __( 'Pending review' );
    21992199                                break;
    22002200                        case 'draft':
    22012201                                $stat = __( 'Draft' );
  • src/wp-admin/includes/class-plugin-installer-skin.php

     
    121121                        $install_actions['network_activate'] = sprintf(
    122122                                '<a class="button button-primary" href="%s" target="_parent">%s</a>',
    123123                                wp_nonce_url( 'plugins.php?action=activate&amp;networkwide=1&amp;plugin=' . urlencode( $plugin_file ), 'activate-plugin_' . $plugin_file ),
    124                                 __( 'Network Activate' )
     124                                __( 'Network activate' )
    125125                        );
    126126                        unset( $install_actions['activate_plugin'] );
    127127                }
  • src/wp-admin/includes/class-theme-installer-skin.php

     
    128128                                '<a href="%s" class="hide-if-no-customize load-customize">' .
    129129                                '<span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>',
    130130                                esc_url( $customize_url ),
    131                                 __( 'Live Preview' ),
     131                                __( 'Live preview' ),
    132132                                /* translators: %s: Theme name. */
    133                                 sprintf( __( 'Live Preview &#8220;%s&#8221;' ), $name )
     133                                sprintf( __( 'Live preview &#8220;%s&#8221;' ), $name )
    134134                        );
    135135                }
    136136
     
    147147                        $install_actions['network_enable'] = sprintf(
    148148                                '<a href="%s" target="_parent">%s</a>',
    149149                                esc_url( wp_nonce_url( 'themes.php?action=enable&amp;theme=' . urlencode( $stylesheet ), 'enable-theme_' . $stylesheet ) ),
    150                                 __( 'Network Enable' )
     150                                __( 'Network enable' )
    151151                        );
    152152                }
    153153
  • src/wp-admin/includes/class-theme-upgrader-skin.php

     
    100100                                                '<a href="%s" class="hide-if-no-customize load-customize">' .
    101101                                                '<span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>',
    102102                                                esc_url( $customize_url ),
    103                                                 __( 'Live Preview' ),
     103                                                __( 'Live preview' ),
    104104                                                /* translators: %s: Theme name. */
    105                                                 sprintf( __( 'Live Preview &#8220;%s&#8221;' ), $name )
     105                                                sprintf( __( 'Live preview &#8220;%s&#8221;' ), $name )
    106106                                        );
    107107                                }
    108108
  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    737737                                $unspam_url,
    738738                                "delete:the-comment-list:comment-{$comment->comment_ID}:66cc66:unspam=1",
    739739                                esc_attr__( 'Restore this comment from the spam' ),
    740                                 _x( 'Not Spam', 'comment' )
     740                                _x( 'Not spam', 'comment' )
    741741                        );
    742742                }
    743743
     
    757757                                $delete_url,
    758758                                "delete:the-comment-list:comment-{$comment->comment_ID}::delete=1",
    759759                                esc_attr__( 'Delete this comment permanently' ),
    760                                 __( 'Delete Permanently' )
     760                                __( 'Delete permanently' )
    761761                        );
    762762                } else {
    763763                        $actions['trash'] = sprintf(
     
    786786                                'edit',
    787787                                'vim-q comment-inline',
    788788                                esc_attr__( 'Quick edit this comment inline' ),
    789                                 __( 'Quick&nbsp;Edit' )
     789                                __( 'Quick&nbsp;edit' )
    790790                        );
    791791
    792792                        $actions['reply'] = sprintf(
  • src/wp-admin/includes/class-wp-debug-data.php

     
    147147                );
    148148
    149149                $info['wp-active-theme'] = array(
    150                         'label'  => __( 'Active Theme' ),
     150                        'label'  => __( 'Active theme' ),
    151151                        'fields' => array(),
    152152                );
    153153
  • src/wp-admin/includes/class-wp-list-table.php

     
    933933
    934934                if ( 'bottom' === $which ) {
    935935                        $html_current_page  = $current;
    936                         $total_pages_before = '<span class="screen-reader-text">' . __( 'Current Page' ) . '</span><span id="table-paging" class="paging-input"><span class="tablenav-paging-text">';
     936                        $total_pages_before = '<span class="screen-reader-text">' . __( 'Current page' ) . '</span><span id="table-paging" class="paging-input"><span class="tablenav-paging-text">';
    937937                } else {
    938938                        $html_current_page = sprintf(
    939939                                "%s<input class='current-page' id='current-page-selector' type='text' name='paged' value='%s' size='%d' aria-describedby='table-paging' /><span class='tablenav-paging-text'>",
    940                                 '<label for="current-page-selector" class="screen-reader-text">' . __( 'Current Page' ) . '</label>',
     940                                '<label for="current-page-selector" class="screen-reader-text">' . __( 'Current page' ) . '</label>',
    941941                                $current,
    942942                                strlen( $total_pages )
    943943                        );
     
    11891189
    11901190                if ( ! empty( $columns['cb'] ) ) {
    11911191                        static $cb_counter = 1;
    1192                         $columns['cb']     = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>'
     1192                        $columns['cb']     = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select all' ) . '</label>'
    11931193                                . '<input id="cb-select-all-' . $cb_counter . '" type="checkbox" />';
    11941194                        $cb_counter++;
    11951195                }
  • src/wp-admin/includes/class-wp-media-list-table.php

     
    411411                                '<a href="%s" aria-label="%s">',
    412412                                get_edit_post_link( $post->ID ),
    413413                                /* translators: %s: Attachment title. */
    414                                 esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $title ) )
     414                                esc_attr( sprintf( __( '&#8220;%s&#8221; (edit)' ), $title ) )
    415415                        );
    416416                        $link_end = '</a>';
    417417                }
     
    711711                                                $delete_ays,
    712712                                                /* translators: %s: Attachment title. */
    713713                                                esc_attr( sprintf( __( 'Delete &#8220;%s&#8221; permanently' ), $att_title ) ),
    714                                                 __( 'Delete Permanently' )
     714                                                __( 'Delete permanently' )
    715715                                        );
    716716                                }
    717717                        }
     
    768768                                                $delete_ays,
    769769                                                /* translators: %s: Attachment title. */
    770770                                                esc_attr( sprintf( __( 'Delete &#8220;%s&#8221; permanently' ), $att_title ) ),
    771                                                 __( 'Delete Permanently' )
     771                                                __( 'Delete permanently' )
    772772                                        );
    773773                                }
    774774                        }
     
    789789                 * @since 2.8.0
    790790                 *
    791791                 * @param string[] $actions  An array of action links for each attachment.
    792                  *                           Default 'Edit', 'Delete Permanently', 'View'.
     792                 *                           Default 'Edit', 'Delete permanently', 'View'.
    793793                 * @param WP_Post  $post     WP_Post object for the current attachment.
    794794                 * @param bool     $detached Whether the list table contains media not attached
    795795                 *                           to any posts. Default true.
  • src/wp-admin/includes/class-wp-ms-sites-list-table.php

     
    361361                $sites_columns = array(
    362362                        'cb'          => '<input type="checkbox" />',
    363363                        'blogname'    => __( 'URL' ),
    364                         'lastupdated' => __( 'Last Updated' ),
     364                        'lastupdated' => __( 'Last updated' ),
    365365                        'registered'  => _x( 'Registered', 'site' ),
    366366                        'users'       => __( 'Users' ),
    367367                );
     
    707707                        }
    708708
    709709                        if ( '1' == $blog['spam'] ) {
    710                                 $actions['unspam'] = '<a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=unspamblog&amp;id=' . $blog['blog_id'] ), 'unspamblog_' . $blog['blog_id'] ) ) . '">' . _x( 'Not Spam', 'site' ) . '</a>';
     710                                $actions['unspam'] = '<a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=unspamblog&amp;id=' . $blog['blog_id'] ), 'unspamblog_' . $blog['blog_id'] ) ) . '">' . _x( 'Not spam', 'site' ) . '</a>';
    711711                        } else {
    712712                                $actions['spam'] = '<a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=spamblog&amp;id=' . $blog['blog_id'] ), 'spamblog_' . $blog['blog_id'] ) ) . '">' . _x( 'Spam', 'site' ) . '</a>';
    713713                        }
     
    725725                 * The 'Edit', 'Dashboard', 'Delete', and 'Visit' links are displayed by
    726726                 * default for each site. The site's status determines whether to show the
    727727                 * 'Activate' or 'Deactivate' link, 'Unarchive' or 'Archive' links, and
    728                  * 'Not Spam' or 'Spam' link for each site.
     728                 * 'Not spam' or 'Spam' link for each site.
    729729                 *
    730730                 * @since 3.1.0
    731731                 *
  • src/wp-admin/includes/class-wp-ms-themes-list-table.php

     
    331331                );
    332332
    333333                if ( $this->show_autoupdates ) {
    334                         $columns['auto-updates'] = __( 'Automatic Updates' );
     334                        $columns['auto-updates'] = __( 'Automatic updates' );
    335335                }
    336336
    337337                return $columns;
     
    402402                                case 'upgrade':
    403403                                        /* translators: %s: Number of themes. */
    404404                                        $text = _nx(
    405                                                 'Update Available <span class="count">(%s)</span>',
    406                                                 'Update Available <span class="count">(%s)</span>',
     405                                                'Update available <span class="count">(%s)</span>',
     406                                                'Update available <span class="count">(%s)</span>',
    407407                                                $count,
    408408                                                'themes'
    409409                                        );
     
    420420                                case 'auto-update-enabled':
    421421                                        /* translators: %s: Number of themes. */
    422422                                        $text = _n(
    423                                                 'Auto-updates Enabled <span class="count">(%s)</span>',
    424                                                 'Auto-updates Enabled <span class="count">(%s)</span>',
     423                                                'Auto-updates enabled <span class="count">(%s)</span>',
     424                                                'Auto-updates enabled <span class="count">(%s)</span>',
    425425                                                $count
    426426                                        );
    427427                                        break;
    428428                                case 'auto-update-disabled':
    429429                                        /* translators: %s: Number of themes. */
    430430                                        $text = _n(
    431                                                 'Auto-updates Disabled <span class="count">(%s)</span>',
    432                                                 'Auto-updates Disabled <span class="count">(%s)</span>',
     431                                                'Auto-updates disabled <span class="count">(%s)</span>',
     432                                                'Auto-updates disabled <span class="count">(%s)</span>',
    433433                                                $count
    434434                                        );
    435435                                        break;
     
    464464
    465465                $actions = array();
    466466                if ( 'enabled' !== $status ) {
    467                         $actions['enable-selected'] = $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' );
     467                        $actions['enable-selected'] = $this->is_site_themes ? __( 'Enable' ) : __( 'Network enable' );
    468468                }
    469469                if ( 'disabled' !== $status ) {
    470                         $actions['disable-selected'] = $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' );
     470                        $actions['disable-selected'] = $this->is_site_themes ? __( 'Disable' ) : __( 'Network disable' );
    471471                }
    472472                if ( ! $this->is_site_themes ) {
    473473                        if ( current_user_can( 'update_themes' ) ) {
     
    480480
    481481                if ( $this->show_autoupdates ) {
    482482                        if ( 'auto-update-enabled' !== $status ) {
    483                                 $actions['enable-auto-update-selected'] = __( 'Enable Auto-updates' );
     483                                $actions['enable-auto-update-selected'] = __( 'Enable auto-updates' );
    484484                        }
    485485
    486486                        if ( 'auto-update-disabled' !== $status ) {
    487                                 $actions['disable-auto-update-selected'] = __( 'Disable Auto-updates' );
     487                                $actions['disable-auto-update-selected'] = __( 'Disable auto-updates' );
    488488                        }
    489489                }
    490490
     
    565565                                        $aria_label = sprintf( __( 'Enable %s' ), $theme->display( 'Name' ) );
    566566                                } else {
    567567                                        /* translators: %s: Theme name. */
    568                                         $aria_label = sprintf( __( 'Network Enable %s' ), $theme->display( 'Name' ) );
     568                                        $aria_label = sprintf( __( 'Network enable %s' ), $theme->display( 'Name' ) );
    569569                                }
    570570
    571571                                $actions['enable'] = sprintf(
    572572                                        '<a href="%s" class="edit" aria-label="%s">%s</a>',
    573573                                        esc_url( wp_nonce_url( $url, 'enable-theme_' . $stylesheet ) ),
    574574                                        esc_attr( $aria_label ),
    575                                         ( $this->is_site_themes ? __( 'Enable' ) : __( 'Network Enable' ) )
     575                                        ( $this->is_site_themes ? __( 'Enable' ) : __( 'Network enable' ) )
    576576                                );
    577577                        }
    578578                } else {
     
    591591                                $aria_label = sprintf( __( 'Disable %s' ), $theme->display( 'Name' ) );
    592592                        } else {
    593593                                /* translators: %s: Theme name. */
    594                                 $aria_label = sprintf( __( 'Network Disable %s' ), $theme->display( 'Name' ) );
     594                                $aria_label = sprintf( __( 'Network disable %s' ), $theme->display( 'Name' ) );
    595595                        }
    596596
    597597                        $actions['disable'] = sprintf(
    598598                                '<a href="%s" aria-label="%s">%s</a>',
    599599                                esc_url( wp_nonce_url( $url, 'disable-theme_' . $stylesheet ) ),
    600600                                esc_attr( $aria_label ),
    601                                 ( $this->is_site_themes ? __( 'Disable' ) : __( 'Network Disable' ) )
     601                                ( $this->is_site_themes ? __( 'Disable' ) : __( 'Network disable' ) )
    602602                        );
    603603                }
    604604
     
    639639                 * non-network enabled themes when editing a site in the Network admin.
    640640                 *
    641641                 * The default action links for the Network themes list table include
    642                  * 'Network Enable', 'Network Disable', and 'Delete'.
     642                 * 'Network enable', 'Network disable', and 'Delete'.
    643643                 *
    644644                 * The default action links for the Site themes list table include
    645645                 * 'Enable', and 'Disable'.
     
    685685                global $status, $totals;
    686686
    687687                if ( $theme->errors() ) {
    688                         $pre = 'broken' === $status ? __( 'Broken Theme:' ) . ' ' : '';
     688                        $pre = 'broken' === $status ? __( 'Broken theme:' ) . ' ' : '';
    689689                        echo '<p><strong class="error-message">' . $pre . $theme->errors()->get_error_message() . '</strong></p>';
    690690                }
    691691
     
    722722                                '<a href="%s" aria-label="%s">%s</a>',
    723723                                $theme->display( 'ThemeURI' ),
    724724                                esc_attr( $aria_label ),
    725                                 __( 'Visit Theme Site' )
     725                                __( 'Visit theme site' )
    726726                        );
    727727                }
    728728
     
    899899
    900900                                                /* Add a label for the active template */
    901901                                                if ( $item->get_template() === $template ) {
    902                                                         $active_theme_label = ' &mdash; ' . __( 'Active Theme' );
     902                                                        $active_theme_label = ' &mdash; ' . __( 'Active theme' );
    903903                                                }
    904904
    905905                                                /* In case this is a child theme, label it properly */
    906906                                                if ( $stylesheet !== $template && $item->get_stylesheet() === $stylesheet ) {
    907                                                         $active_theme_label = ' &mdash; ' . __( 'Active Child Theme' );
     907                                                        $active_theme_label = ' &mdash; ' . __( 'Active child theme' );
    908908                                                }
    909909                                        }
    910910
  • src/wp-admin/includes/class-wp-plugin-install-list-table.php

     
    9999                $tabs = array();
    100100
    101101                if ( 'search' === $tab ) {
    102                         $tabs['search'] = __( 'Search Results' );
     102                        $tabs['search'] = __( 'Search results' );
    103103                }
    104104
    105105                if ( 'beta' === $tab || false !== strpos( get_bloginfo( 'version' ), '-' ) ) {
     
    114114                if ( current_user_can( 'upload_plugins' ) ) {
    115115                        // No longer a real tab. Here for filter compatibility.
    116116                        // Gets skipped in get_views().
    117                         $tabs['upload'] = __( 'Upload Plugin' );
     117                        $tabs['upload'] = __( 'Upload plugin' );
    118118                }
    119119
    120120                $nonmenu_tabs = array( 'plugin-information' ); // Valid actions to perform which do not have a Menu item.
     
    278278        public function no_items() {
    279279                if ( isset( $this->error ) ) { ?>
    280280                        <div class="inline error"><p><?php echo $this->error->get_error_message(); ?></p>
    281                                 <p class="hide-if-no-js"><button class="button try-again"><?php _e( 'Try Again' ); ?></button></p>
     281                                <p class="hide-if-no-js"><button class="button try-again"><?php _e( 'Try again' ); ?></button></p>
    282282                        </div>
    283283                <?php } else { ?>
    284284                        <div class="no-plugin-results"><?php _e( 'No plugins found. Try a different search.' ); ?></div>
     
    534534                                                                        /* translators: %s: Plugin name and version. */
    535535                                                                        esc_attr( sprintf( _x( 'Install %s now', 'plugin' ), $name ) ),
    536536                                                                        esc_attr( $name ),
    537                                                                         __( 'Install Now' )
     537                                                                        __( 'Install now' )
    538538                                                                );
    539539                                                        } else {
    540540                                                                $action_links[] = sprintf(
    541541                                                                        '<button type="button" class="button button-disabled" disabled="disabled">%s</button>',
    542                                                                         _x( 'Cannot Install', 'plugin' )
     542                                                                        _x( 'Cannot install', 'plugin' )
    543543                                                                );
    544544                                                        }
    545545                                                }
     
    556556                                                                        /* translators: %s: Plugin name and version. */
    557557                                                                        esc_attr( sprintf( _x( 'Update %s now', 'plugin' ), $name ) ),
    558558                                                                        esc_attr( $name ),
    559                                                                         __( 'Update Now' )
     559                                                                        __( 'Update now' )
    560560                                                                );
    561561                                                        } else {
    562562                                                                $action_links[] = sprintf(
    563563                                                                        '<button type="button" class="button button-disabled" disabled="disabled">%s</button>',
    564                                                                         _x( 'Cannot Update', 'plugin' )
     564                                                                        _x( 'Cannot update', 'plugin' )
    565565                                                                );
    566566                                                        }
    567567                                                }
     
    588588                                                        );
    589589
    590590                                                        if ( is_network_admin() ) {
    591                                                                 $button_text = __( 'Network Activate' );
     591                                                                $button_text = __( 'Network activate' );
    592592                                                                /* translators: %s: Plugin name. */
    593                                                                 $button_label = _x( 'Network Activate %s', 'plugin' );
     593                                                                $button_label = _x( 'Network activate %s', 'plugin' );
    594594                                                                $activate_url = add_query_arg( array( 'networkwide' => 1 ), $activate_url );
    595595                                                        }
    596596
     
    639639                         *
    640640                         * @since 2.7.0
    641641                         *
    642                          * @param string[] $action_links An array of plugin action links. Defaults are links to Details and Install Now.
     642                         * @param string[] $action_links An array of plugin action links. Defaults are links to Details and Install now.
    643643                         * @param array    $plugin       The plugin currently being listed.
    644644                         */
    645645                        $action_links = apply_filters( 'plugin_install_action_links', $action_links, $plugin );
     
    732732                                        <span class="num-ratings" aria-hidden="true">(<?php echo number_format_i18n( $plugin['num_ratings'] ); ?>)</span>
    733733                                </div>
    734734                                <div class="column-updated">
    735                                         <strong><?php _e( 'Last Updated:' ); ?></strong>
     735                                        <strong><?php _e( 'Last updated:' ); ?></strong>
    736736                                        <?php
    737737                                                /* translators: %s: Human-readable time difference. */
    738738                                                printf( __( '%s ago' ), human_time_diff( $last_updated_timestamp ) );
  • src/wp-admin/includes/class-wp-plugins-list-table.php

     
    464464                );
    465465
    466466                if ( $this->show_autoupdates ) {
    467                         $columns['auto-updates'] = __( 'Automatic Updates' );
     467                        $columns['auto-updates'] = __( 'Automatic updates' );
    468468                }
    469469
    470470                return $columns;
     
    512512                                case 'recently_activated':
    513513                                        /* translators: %s: Number of plugins. */
    514514                                        $text = _n(
    515                                                 'Recently Active <span class="count">(%s)</span>',
    516                                                 'Recently Active <span class="count">(%s)</span>',
     515                                                'Recently active <span class="count">(%s)</span>',
     516                                                'Recently active <span class="count">(%s)</span>',
    517517                                                $count
    518518                                        );
    519519                                        break;
     
    528528                                case 'mustuse':
    529529                                        /* translators: %s: Number of plugins. */
    530530                                        $text = _n(
    531                                                 'Must-Use <span class="count">(%s)</span>',
    532                                                 'Must-Use <span class="count">(%s)</span>',
     531                                                'Must-use <span class="count">(%s)</span>',
     532                                                'Must-use <span class="count">(%s)</span>',
    533533                                                $count
    534534                                        );
    535535                                        break;
     
    552552                                case 'upgrade':
    553553                                        /* translators: %s: Number of plugins. */
    554554                                        $text = _n(
    555                                                 'Update Available <span class="count">(%s)</span>',
    556                                                 'Update Available <span class="count">(%s)</span>',
     555                                                'Update available <span class="count">(%s)</span>',
     556                                                'Update available <span class="count">(%s)</span>',
    557557                                                $count
    558558                                        );
    559559                                        break;
    560560                                case 'auto-update-enabled':
    561561                                        /* translators: %s: Number of plugins. */
    562562                                        $text = _n(
    563                                                 'Auto-updates Enabled <span class="count">(%s)</span>',
    564                                                 'Auto-updates Enabled <span class="count">(%s)</span>',
     563                                                'Auto-updates enabled <span class="count">(%s)</span>',
     564                                                'Auto-updates enabled <span class="count">(%s)</span>',
    565565                                                $count
    566566                                        );
    567567                                        break;
    568568                                case 'auto-update-disabled':
    569569                                        /* translators: %s: Number of plugins. */
    570570                                        $text = _n(
    571                                                 'Auto-updates Disabled <span class="count">(%s)</span>',
    572                                                 'Auto-updates Disabled <span class="count">(%s)</span>',
     571                                                'Auto-updates disabled <span class="count">(%s)</span>',
     572                                                'Auto-updates disabled <span class="count">(%s)</span>',
    573573                                                $count
    574574                                        );
    575575                                        break;
     
    598598                $actions = array();
    599599
    600600                if ( 'active' !== $status ) {
    601                         $actions['activate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Activate' ) : __( 'Activate' );
     601                        $actions['activate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network activate' ) : __( 'Activate' );
    602602                }
    603603
    604604                if ( 'inactive' !== $status && 'recent' !== $status ) {
    605                         $actions['deactivate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network Deactivate' ) : __( 'Deactivate' );
     605                        $actions['deactivate-selected'] = $this->screen->in_admin( 'network' ) ? __( 'Network deactivate' ) : __( 'Deactivate' );
    606606                }
    607607
    608608                if ( ! is_multisite() || $this->screen->in_admin( 'network' ) ) {
     
    616616
    617617                        if ( $this->show_autoupdates ) {
    618618                                if ( 'auto-update-enabled' !== $status ) {
    619                                         $actions['enable-auto-update-selected'] = __( 'Enable Auto-updates' );
     619                                        $actions['enable-auto-update-selected'] = __( 'Enable auto-updates' );
    620620                                }
    621621                                if ( 'auto-update-disabled' !== $status ) {
    622                                         $actions['disable-auto-update-selected'] = __( 'Disable Auto-updates' );
     622                                        $actions['disable-auto-update-selected'] = __( 'Disable auto-updates' );
    623623                                }
    624624                        }
    625625                }
     
    655655                echo '<div class="alignleft actions">';
    656656
    657657                if ( 'recently_activated' === $status ) {
    658                         submit_button( __( 'Clear List' ), '', 'clear-recent-list', false );
     658                        submit_button( __( 'Clear list' ), '', 'clear-recent-list', false );
    659659                } elseif ( 'top' === $which && 'mustuse' === $status ) {
    660660                        echo '<p>' . sprintf(
    661661                                /* translators: %s: mu-plugins directory name. */
     
    786786                                                        wp_nonce_url( 'plugins.php?action=deactivate&amp;plugin=' . urlencode( $plugin_file ) . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file ),
    787787                                                        esc_attr( $plugin_id_attr ),
    788788                                                        /* translators: %s: Plugin name. */
    789                                                         esc_attr( sprintf( _x( 'Network Deactivate %s', 'plugin' ), $plugin_data['Name'] ) ),
    790                                                         __( 'Network Deactivate' )
     789                                                        esc_attr( sprintf( _x( 'Network deactivate %s', 'plugin' ), $plugin_data['Name'] ) ),
     790                                                        __( 'Network deactivate' )
    791791                                                );
    792792                                        }
    793793                                } else {
     
    797797                                                        wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . urlencode( $plugin_file ) . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file ),
    798798                                                        esc_attr( $plugin_id_attr ),
    799799                                                        /* translators: %s: Plugin name. */
    800                                                         esc_attr( sprintf( _x( 'Network Activate %s', 'plugin' ), $plugin_data['Name'] ) ),
    801                                                         __( 'Network Activate' )
     800                                                        esc_attr( sprintf( _x( 'Network activate %s', 'plugin' ), $plugin_data['Name'] ) ),
     801                                                        __( 'Network activate' )
    802802                                                );
    803803                                        }
    804804
     
    816816                        } else {
    817817                                if ( $restrict_network_active ) {
    818818                                        $actions = array(
    819                                                 'network_active' => __( 'Network Active' ),
     819                                                'network_active' => __( 'Network active' ),
    820820                                        );
    821821                                } elseif ( $restrict_network_only ) {
    822822                                        $actions = array(
    823                                                 'network_only' => __( 'Network Only' ),
     823                                                'network_only' => __( 'Network only' ),
    824824                                        );
    825825                                } elseif ( $is_active ) {
    826826                                        if ( current_user_can( 'deactivate_plugin', $plugin_file ) ) {
  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    10271027                                '<a class="row-title" href="%s" aria-label="%s">%s%s</a>',
    10281028                                get_edit_post_link( $post->ID ),
    10291029                                /* translators: %s: Post title. */
    1030                                 esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $title ) ),
     1030                                esc_attr( sprintf( __( '&#8220;%s&#8221; (edit)' ), $title ) ),
    10311031                                $pad,
    10321032                                $title
    10331033                        );
     
    10981098                                $status = __( 'Scheduled' );
    10991099                        }
    11001100                } else {
    1101                         $status = __( 'Last Modified' );
     1101                        $status = __( 'Last modified' );
    11021102                }
    11031103
    11041104                /**
     
    13511351                                        '<button type="button" class="button-link editinline" aria-label="%s" aria-expanded="false">%s</button>',
    13521352                                        /* translators: %s: Post title. */
    13531353                                        esc_attr( sprintf( __( 'Quick edit &#8220;%s&#8221; inline' ), $title ) ),
    1354                                         __( 'Quick&nbsp;Edit' )
     1354                                        __( 'Quick&nbsp;edit' )
    13551355                                );
    13561356                        }
    13571357                }
     
    13801380                                        get_delete_post_link( $post->ID, '', true ),
    13811381                                        /* translators: %s: Post title. */
    13821382                                        esc_attr( sprintf( __( 'Delete &#8220;%s&#8221; permanently' ), $title ) ),
    1383                                         __( 'Delete Permanently' )
     1383                                        __( 'Delete permanently' )
    13841384                                );
    13851385                        }
    13861386                }
     
    14291429                         *
    14301430                         * @param string[] $actions An array of row action links. Defaults are
    14311431                         *                          'Edit', 'Quick Edit', 'Restore', 'Trash',
    1432                          *                          'Delete Permanently', 'Preview', and 'View'.
     1432                         *                          'Delete permanently', 'Preview', and 'View'.
    14331433                         * @param WP_Post  $post    The post object.
    14341434                         */
    14351435                        $actions = apply_filters( 'page_row_actions', $actions, $post );
     
    14441444                         *
    14451445                         * @param string[] $actions An array of row action links. Defaults are
    14461446                         *                          'Edit', 'Quick Edit', 'Restore', 'Trash',
    1447                          *                          'Delete Permanently', 'Preview', and 'View'.
     1447                         *                          'Delete permanently', 'Preview', and 'View'.
    14481448                         * @param WP_Post  $post    The post object.
    14491449                         */
    14501450                        $actions = apply_filters( 'post_row_actions', $actions, $post );
     
    15291529                        <td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
    15301530
    15311531                        <fieldset class="inline-edit-col-left">
    1532                                 <legend class="inline-edit-legend"><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></legend>
     1532                                <legend class="inline-edit-legend"><?php echo $bulk ? __( 'Bulk edit' ) : __( 'Quick edit' ); ?></legend>
    15331533                                <div class="inline-edit-col">
    15341534
    15351535                                <?php if ( post_type_supports( $screen->post_type, 'title' ) ) : ?>
     
    15841584                                                );
    15851585
    15861586                                                if ( $bulk ) {
    1587                                                         $users_opt['show_option_none'] = __( '&mdash; No Change &mdash;' );
     1587                                                        $users_opt['show_option_none'] = __( '&mdash; No change &mdash;' );
    15881588                                                }
    15891589
    15901590                                                /**
     
    16811681                                                                'post_type'         => $post_type_object->name,
    16821682                                                                'selected'          => $post->post_parent,
    16831683                                                                'name'              => 'post_parent',
    1684                                                                 'show_option_none'  => __( 'Main Page (no parent)' ),
     1684                                                                'show_option_none'  => __( 'Main page (no parent)' ),
    16851685                                                                'option_none_value' => 0,
    16861686                                                                'sort_column'       => 'menu_order, post_title',
    16871687                                                        );
    16881688
    16891689                                                        if ( $bulk ) {
    1690                                                                 $dropdown_args['show_option_no_change'] = __( '&mdash; No Change &mdash;' );
     1690                                                                $dropdown_args['show_option_no_change'] = __( '&mdash; No change &mdash;' );
    16911691                                                        }
    16921692
    16931693                                                        /**
     
    17261726                                                <span class="title"><?php _e( 'Template' ); ?></span>
    17271727                                                <select name="page_template">
    17281728                                                        <?php if ( $bulk ) : ?>
    1729                                                         <option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1729                                                        <option value="-1"><?php _e( '&mdash; No change &mdash;' ); ?></option>
    17301730                                                        <?php endif; // $bulk ?>
    17311731                                                        <?php
    17321732                                                        /** This filter is documented in wp-admin/includes/meta-boxes.php */
     
    17681768                                                        <label class="alignleft">
    17691769                                                                <span class="title"><?php _e( 'Comments' ); ?></span>
    17701770                                                                <select name="comment_status">
    1771                                                                         <option value=""><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1771                                                                        <option value=""><?php _e( '&mdash; No change &mdash;' ); ?></option>
    17721772                                                                        <option value="open"><?php _e( 'Allow' ); ?></option>
    17731773                                                                        <option value="closed"><?php _e( 'Do not allow' ); ?></option>
    17741774                                                                </select>
     
    17811781                                                        <label class="alignright">
    17821782                                                                <span class="title"><?php _e( 'Pings' ); ?></span>
    17831783                                                                <select name="ping_status">
    1784                                                                         <option value=""><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1784                                                                        <option value=""><?php _e( '&mdash; No change &mdash;' ); ?></option>
    17851785                                                                        <option value="open"><?php _e( 'Allow' ); ?></option>
    17861786                                                                        <option value="closed"><?php _e( 'Do not allow' ); ?></option>
    17871787                                                                </select>
     
    17991799
    18001800                                                        <label class="alignleft">
    18011801                                                                <input type="checkbox" name="comment_status" value="open" />
    1802                                                                 <span class="checkbox-title"><?php _e( 'Allow Comments' ); ?></span>
     1802                                                                <span class="checkbox-title"><?php _e( 'Allow comments' ); ?></span>
    18031803                                                        </label>
    18041804
    18051805                                                <?php endif; ?>
     
    18081808
    18091809                                                        <label class="alignleft">
    18101810                                                                <input type="checkbox" name="ping_status" value="open" />
    1811                                                                 <span class="checkbox-title"><?php _e( 'Allow Pings' ); ?></span>
     1811                                                                <span class="checkbox-title"><?php _e( 'Allow pings' ); ?></span>
    18121812                                                        </label>
    18131813
    18141814                                                <?php endif; ?>
     
    18251825                                                        <span class="title"><?php _e( 'Status' ); ?></span>
    18261826                                                        <select name="_status">
    18271827                                                                <?php if ( $bulk ) : ?>
    1828                                                                         <option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1828                                                                        <option value="-1"><?php _e( '&mdash; No change &mdash;' ); ?></option>
    18291829                                                                <?php endif; // $bulk ?>
    18301830
    1831                                                                 <?php if ( $can_publish ) : // Contributors only get "Unpublished" and "Pending Review". ?>
     1831                                                                <?php if ( $can_publish ) : // Contributors only get "Unpublished" and "Pending review". ?>
    18321832                                                                        <option value="publish"><?php _e( 'Published' ); ?></option>
    18331833                                                                        <option value="future"><?php _e( 'Scheduled' ); ?></option>
    18341834                                                                        <?php if ( $bulk ) : ?>
     
    18361836                                                                        <?php endif; // $bulk ?>
    18371837                                                                <?php endif; ?>
    18381838
    1839                                                                 <option value="pending"><?php _e( 'Pending Review' ); ?></option>
     1839                                                                <option value="pending"><?php _e( 'Pending review' ); ?></option>
    18401840                                                                <option value="draft"><?php _e( 'Draft' ); ?></option>
    18411841                                                        </select>
    18421842                                                </label>
     
    18481848                                                                <label class="alignright">
    18491849                                                                        <span class="title"><?php _e( 'Sticky' ); ?></span>
    18501850                                                                        <select name="sticky">
    1851                                                                                 <option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1851                                                                                <option value="-1"><?php _e( '&mdash; No change &mdash;' ); ?></option>
    18521852                                                                                <option value="sticky"><?php _e( 'Sticky' ); ?></option>
    1853                                                                                 <option value="unsticky"><?php _e( 'Not Sticky' ); ?></option>
     1853                                                                                <option value="unsticky"><?php _e( 'Not sticky' ); ?></option>
    18541854                                                                        </select>
    18551855                                                                </label>
    18561856
     
    18731873                                        <label class="alignleft">
    18741874                                                <span class="title"><?php _ex( 'Format', 'post format' ); ?></span>
    18751875                                                <select name="post_format">
    1876                                                         <option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1876                                                        <option value="-1"><?php _e( '&mdash; No change &mdash;' ); ?></option>
    18771877                                                        <option value="0"><?php echo get_post_format_string( 'standard' ); ?></option>
    18781878                                                        <?php if ( is_array( $post_formats[0] ) ) : ?>
    18791879                                                                <?php foreach ( $post_formats[0] as $format ) : ?>
  • src/wp-admin/includes/class-wp-site-health-auto-updates.php

     
    164164                if ( ! empty( $failed['critical'] ) ) {
    165165                        $description  = __( 'A previous automatic background update ended with a critical failure, so updates are now disabled.' );
    166166                        $description .= ' ' . __( 'You would have received an email because of this.' );
    167                         $description .= ' ' . __( "When you've been able to update using the \"Update Now\" button on Dashboard > Updates, we'll clear this error for future update attempts." );
     167                        $description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, we'll clear this error for future update attempts." );
    168168                        $description .= ' ' . sprintf(
    169169                                /* translators: %s: Code of error shown. */
    170170                                __( 'The error code was %s.' ),
  • src/wp-admin/includes/class-wp-terms-list-table.php

     
    486486                                '<button type="button" class="button-link editinline" aria-label="%s" aria-expanded="false">%s</button>',
    487487                                /* translators: %s: Taxonomy term name. */
    488488                                esc_attr( sprintf( __( 'Quick edit &#8220;%s&#8221; inline' ), $tag->name ) ),
    489                                 __( 'Quick&nbsp;Edit' )
     489                                __( 'Quick&nbsp;edit' )
    490490                        );
    491491                }
    492492                if ( current_user_can( 'delete_term', $tag->term_id ) ) {
  • src/wp-admin/includes/class-wp-theme-install-list-table.php

     
    5858                $tabs              = array();
    5959                $tabs['dashboard'] = __( 'Search' );
    6060                if ( 'search' === $tab ) {
    61                         $tabs['search'] = __( 'Search Results' );
     61                        $tabs['search'] = __( 'Search results' );
    6262                }
    6363                $tabs['upload']   = __( 'Upload' );
    6464                $tabs['featured'] = _x( 'Featured', 'themes' );
     
    148148                $api = themes_api( 'query_themes', $args );
    149149
    150150                if ( is_wp_error( $api ) ) {
    151                         wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try Again' ) . '</a>' );
     151                        wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again' ) . '</a>' );
    152152                }
    153153
    154154                $this->items = $api->themes;
     
    324324                                        esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ),
    325325                                        /* translators: %s: Theme name. */
    326326                                        esc_attr( sprintf( _x( 'Install %s', 'theme' ), $name ) ),
    327                                         __( 'Install Now' )
     327                                        __( 'Install now' )
    328328                                );
    329329                                break;
    330330                }
     
    343343                 * @since 3.4.0
    344344                 *
    345345                 * @param string[] $actions An array of theme action links. Defaults are
    346                  *                          links to Install Now, Preview, and Details.
     346                 *                          links to Install now, Preview, and Details.
    347347                 * @param WP_Theme $theme   Theme object.
    348348                 */
    349349                $actions = apply_filters( 'theme_install_actions', $actions, $theme );
     
    389389                                        <div class="install-theme-info"></div>
    390390                                </div>
    391391                                <div class="wp-full-overlay-footer">
    392                                         <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
     392                                        <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse sidebar' ); ?>">
    393393                                                <span class="collapse-sidebar-arrow"></span>
    394394                                                <span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
    395395                                        </button>
  • src/wp-admin/includes/class-wp-themes-list-table.php

     
    220220                                $actions['preview'] .= sprintf(
    221221                                        '<a href="%s" class="load-customize hide-if-no-customize">%s</a>',
    222222                                        wp_customize_url( $stylesheet ),
    223                                         __( 'Live Preview' )
     223                                        __( 'Live preview' )
    224224                                );
    225225                        }
    226226
  • src/wp-admin/includes/dashboard.php

     
    733733                                $delete_url,
    734734                                "delete:the-comment-list:comment-{$comment->comment_ID}::trash=1",
    735735                                esc_attr__( 'Delete this comment permanently' ),
    736                                 __( 'Delete Permanently' )
     736                                __( 'Delete permanently' )
    737737                        );
    738738                } else {
    739739                        $actions['trash'] = sprintf(
  • src/wp-admin/includes/file.php

     
    2929        'category.php'          => __( 'Category Template' ),
    3030        'tag.php'               => __( 'Tag Template' ),
    3131        'home.php'              => __( 'Posts Page' ),
    32         'search.php'            => __( 'Search Results' ),
     32        'search.php'            => __( 'Search results' ),
    3333        'date.php'              => __( 'Date Template' ),
    3434        // Content.
    3535        'singular.php'          => __( 'Singular Template' ),
  • src/wp-admin/includes/media.php

     
    17211721        $delete = empty( $parsed_args['delete'] ) ? '' : $parsed_args['delete'];
    17221722        if ( $delete && current_user_can( 'delete_post', $attachment_id ) ) {
    17231723                if ( ! EMPTY_TRASH_DAYS ) {
    1724                         $delete = "<a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete-permanently'>" . __( 'Delete Permanently' ) . '</a>';
     1724                        $delete = "<a href='" . wp_nonce_url( "post.php?action=delete&amp;post=$attachment_id", 'delete-post_' . $attachment_id ) . "' id='del[$attachment_id]' class='delete-permanently'>" . __( 'Delete permanently' ) . '</a>';
    17251725                } elseif ( ! MEDIA_TRASH ) {
    17261726                        $delete = "<a href='#' class='del-link' onclick=\"document.getElementById('del_attachment_$attachment_id').style.display='block';return false;\">" . __( 'Delete' ) . "</a>
    17271727                                <div id='del_attachment_$attachment_id' class='del-attachment' style='display:none;'>" .
  • src/wp-admin/includes/meta-boxes.php

     
    114114                                                _e( 'Scheduled' );
    115115                                                break;
    116116                                        case 'pending':
    117                                                 _e( 'Pending Review' );
     117                                                _e( 'Pending review' );
    118118                                                break;
    119119                                        case 'draft':
    120120                                        case 'auto-draft':
     
    144144                                                <?php elseif ( 'future' === $post->post_status ) : ?>
    145145                                                        <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e( 'Scheduled' ); ?></option>
    146146                                                <?php endif; ?>
    147                                                         <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e( 'Pending Review' ); ?></option>
     147                                                        <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e( 'Pending review' ); ?></option>
    148148                                                <?php if ( 'auto-draft' === $post->post_status ) : ?>
    149149                                                        <option<?php selected( $post->post_status, 'auto-draft' ); ?> value='draft'><?php _e( 'Draft' ); ?></option>
    150150                                                <?php else : ?>
  • src/wp-admin/includes/ms.php

     
    11351135                'title'   => __( 'Overview' ),
    11361136                'content' =>
    11371137                        '<p>' . __( 'The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable.' ) . '</p>' .
    1138                         '<p>' . __( '<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.' ) . '</p>' .
     1138                        '<p>' . __( '<strong>Info</strong> &mdash; The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable.' ) . '</p>' .
    11391139                        '<p>' . __( '<strong>Users</strong> &mdash; This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network.' ) . '</p>' .
    11401140                        '<p>' . sprintf(
    11411141                                /* translators: %s: URL to Network Themes screen. */
  • src/wp-admin/includes/nav-menu.php

     
    660660                <p class="button-controls wp-clearfix" data-items-type="posttype-<?php echo esc_attr( $post_type_name ); ?>">
    661661                        <span class="list-controls hide-if-no-js">
    662662                                <input type="checkbox"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> id="<?php echo esc_attr( $tab_name ); ?>" class="select-all" />
    663                                 <label for="<?php echo esc_attr( $tab_name ); ?>"><?php _e( 'Select All' ); ?></label>
     663                                <label for="<?php echo esc_attr( $tab_name ); ?>"><?php _e( 'Select all' ); ?></label>
    664664                        </span>
    665665
    666666                        <span class="add-to-menu">
     
    891891                <p class="button-controls wp-clearfix" data-items-type="taxonomy-<?php echo esc_attr( $taxonomy_name ); ?>">
    892892                        <span class="list-controls hide-if-no-js">
    893893                                <input type="checkbox"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> id="<?php echo esc_attr( $tab_name ); ?>" class="select-all" />
    894                                 <label for="<?php echo esc_attr( $tab_name ); ?>"><?php _e( 'Select All' ); ?></label>
     894                                <label for="<?php echo esc_attr( $tab_name ); ?>"><?php _e( 'Select all' ); ?></label>
    895895                        </span>
    896896
    897897                        <span class="add-to-menu">
  • src/wp-admin/includes/plugin-install.php

     
    354354                <?php wp_nonce_field( 'plugin-upload' ); ?>
    355355                <label class="screen-reader-text" for="pluginzip"><?php _e( 'Plugin zip file' ); ?></label>
    356356                <input type="file" id="pluginzip" name="pluginzip" accept=".zip" />
    357                 <?php submit_button( __( 'Install Now' ), '', 'install-plugin-submit', false ); ?>
     357                <?php submit_button( __( 'Install now' ), '', 'install-plugin-submit', false ); ?>
    358358        </form>
    359359</div>
    360360        <?php
     
    655655                        <?php } if ( ! empty( $api->author ) ) { ?>
    656656                                <li><strong><?php _e( 'Author:' ); ?></strong> <?php echo links_add_target( $api->author, '_blank' ); ?></li>
    657657                        <?php } if ( ! empty( $api->last_updated ) ) { ?>
    658                                 <li><strong><?php _e( 'Last Updated:' ); ?></strong>
     658                                <li><strong><?php _e( 'Last updated:' ); ?></strong>
    659659                                        <?php
    660660                                        /* translators: %s: Human-readable time difference. */
    661661                                        printf( __( '%s ago' ), human_time_diff( strtotime( $api->last_updated ) ) );
     
    857857                        case 'install':
    858858                                if ( $status['url'] ) {
    859859                                        if ( $compatible_php && $compatible_wp ) {
    860                                                 echo '<a data-slug="' . esc_attr( $api->slug ) . '" id="plugin_install_from_iframe" class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Now' ) . '</a>';
     860                                                echo '<a data-slug="' . esc_attr( $api->slug ) . '" id="plugin_install_from_iframe" class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install now' ) . '</a>';
    861861                                        } else {
    862862                                                printf(
    863863                                                        '<button type="button" class="button button-primary button-disabled right" disabled="disabled">%s</button>',
    864                                                         _x( 'Cannot Install', 'plugin' )
     864                                                        _x( 'Cannot install', 'plugin' )
    865865                                                );
    866866                                        }
    867867                                }
     
    869869                        case 'update_available':
    870870                                if ( $status['url'] ) {
    871871                                        if ( $compatible_php ) {
    872                                                 echo '<a data-slug="' . esc_attr( $api->slug ) . '" data-plugin="' . esc_attr( $status['file'] ) . '" id="plugin_update_from_iframe" class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Update Now' ) . '</a>';
     872                                                echo '<a data-slug="' . esc_attr( $api->slug ) . '" data-plugin="' . esc_attr( $status['file'] ) . '" id="plugin_update_from_iframe" class="button button-primary right" href="' . $status['url'] . '" target="_parent">' . __( 'Install Update now' ) . '</a>';
    873873                                        } else {
    874874                                                printf(
    875875                                                        '<button type="button" class="button button-primary button-disabled right" disabled="disabled">%s</button>',
    876                                                         _x( 'Cannot Update', 'plugin' )
     876                                                        _x( 'Cannot update', 'plugin' )
    877877                                                );
    878878                                        }
    879879                                }
  • src/wp-admin/includes/theme-install.php

     
    184184        <?php wp_nonce_field( 'theme-upload' ); ?>
    185185        <label class="screen-reader-text" for="themezip"><?php _e( 'Theme zip file' ); ?></label>
    186186        <input type="file" id="themezip" name="themezip" accept=".zip"/>
    187         <?php submit_button( __( 'Install Now' ), '', 'install-theme-submit', false ); ?>
     187        <?php submit_button( __( 'Install now' ), '', 'install-theme-submit', false ); ?>
    188188</form>
    189189        <?php
    190190}
  • src/wp-admin/includes/theme.php

     
    834834                                        <# if ( data.hasUpdate ) { #>
    835835                                                <# if ( data.updateResponse.compatibleWP && data.updateResponse.compatiblePHP ) { #>
    836836                                                        <div class="notice notice-warning notice-alt notice-large" data-slug="{{ data.id }}">
    837                                                                 <h3 class="notice-title"><?php _e( 'Update Available' ); ?></h3>
     837                                                                <h3 class="notice-title"><?php _e( 'Update available' ); ?></h3>
    838838                                                                {{{ data.update }}}
    839839                                                        </div>
    840840                                                <# } else { #>
     
    994994                                        <?php } ?>
    995995
    996996                                        <# if ( data.compatibleWP && data.compatiblePHP ) { #>
    997                                                 <button type="button" class="button button-primary preview-theme" data-slug="{{ data.id }}"><?php _e( 'Live Preview' ); ?></button>
     997                                                <button type="button" class="button button-primary preview-theme" data-slug="{{ data.id }}"><?php _e( 'Live preview' ); ?></button>
    998998                                        <# } else { #>
    999                                                 <button class="button button-primary disabled"><?php _e( 'Live Preview' ); ?></button>
     999                                                <button class="button button-primary disabled"><?php _e( 'Live preview' ); ?></button>
    10001000                                        <# } #>
    10011001                                <# } else { #>
    10021002                                        <# if ( data.compatibleWP && data.compatiblePHP ) { #>
    10031003                                                <button type="button" class="button theme-install" data-slug="{{ data.id }}"><?php _e( 'Install' ); ?></button>
    10041004                                                <button type="button" class="button button-primary theme-install preview" data-slug="{{ data.id }}"><?php _e( 'Install &amp; Preview' ); ?></button>
    10051005                                        <# } else { #>
    1006                                                 <button type="button" class="button disabled"><?php _ex( 'Cannot Install', 'theme' ); ?></button>
     1006                                                <button type="button" class="button disabled"><?php _ex( 'Cannot install', 'theme' ); ?></button>
    10071007                                                <button type="button" class="button button-primary disabled"><?php _e( 'Install &amp; Preview' ); ?></button>
    10081008                                        <# } #>
    10091009                                <# } #>
  • src/wp-admin/menu.php

     
    281281        $submenu['tools.php'][15] = array( __( 'Export' ), 'export', 'export.php' );
    282282        $submenu['tools.php'][20] = array( __( 'Site Health' ), 'view_site_health_checks', 'site-health.php' );
    283283        $submenu['tools.php'][25] = array( __( 'Export Personal Data' ), 'export_others_personal_data', 'export-personal-data.php' );
    284         $submenu['tools.php'][30] = array( __( 'Erase Personal Data' ), 'erase_others_personal_data', 'erase-personal-data.php' );
     284        $submenu['tools.php'][30] = array( __( 'Erase personal data' ), 'erase_others_personal_data', 'erase-personal-data.php' );
    285285if ( is_multisite() && ! is_main_site() ) {
    286286        $submenu['tools.php'][35] = array( __( 'Delete Site' ), 'delete_site', 'ms-delete-site.php' );
    287287}
  • src/wp-admin/nav-menus.php

     
    678678                                        admin_url( 'customize.php' )
    679679                                )
    680680                        ),
    681                         __( 'Manage with Live Preview' )
     681                        __( 'Manage with Live preview' )
    682682                );
    683683        endif;
    684684
  • src/wp-admin/network/site-info.php

     
    177177                        <td><input name="blog[registered]" type="text" id="blog_registered" value="<?php echo esc_attr( $details->registered ); ?>" /></td>
    178178                </tr>
    179179                <tr class="form-field">
    180                         <th scope="row"><label for="blog_last_updated"><?php _e( 'Last Updated' ); ?></label></th>
     180                        <th scope="row"><label for="blog_last_updated"><?php _e( 'Last updated' ); ?></label></th>
    181181                        <td><input name="blog[last_updated]" type="text" id="blog_last_updated" value="<?php echo esc_attr( $details->last_updated ); ?>" /></td>
    182182                </tr>
    183183                <?php
  • src/wp-admin/plugin-install.php

     
    100100                                '<p>' . __( 'If you know what you&#8217;re looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.' ) . '</p>' .
    101101                                '<p>' . __( 'If you just want to get an idea of what&#8217;s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly.' ) . '</p>' .
    102102                                '<p>' . __( 'You can also browse a user&#8217;s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username.' ) . '</p>' .
    103                                 '<p>' . __( 'If you want to install a plugin that you&#8217;ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.' ) . '</p>',
     103                                '<p>' . __( 'If you want to install a plugin that you&#8217;ve downloaded elsewhere, click the Upload plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.' ) . '</p>',
    104104        )
    105105);
    106106
     
    135135        printf(
    136136                ' <a href="%s" class="upload-view-toggle page-title-action"><span class="upload">%s</span><span class="browse">%s</span></a>',
    137137                ( 'upload' === $tab ) ? self_admin_url( 'plugin-install.php' ) : self_admin_url( 'plugin-install.php?tab=upload' ),
    138                 __( 'Upload Plugin' ),
     138                __( 'Upload plugin' ),
    139139                __( 'Browse Plugins' )
    140140        );
    141141}
  • src/wp-admin/press-this.php

     
    6060                                        '<a href="%1$s" class="install-now" data-slug="%2$s" data-name="%2$s" aria-label="%3$s">%3$s</a>',
    6161                                        esc_url( $url ),
    6262                                        esc_attr( $plugin_slug ),
    63                                         __( 'Install Now' )
     63                                        __( 'Install now' )
    6464                                );
    6565                        } else {
    6666                                $action = sprintf(
  • src/wp-admin/setup-config.php

     
    277277                        $install .= '?language=en_US';
    278278                }
    279279
    280                 $tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try Again' ) . '</a>';
     280                $tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>';
    281281
    282282                if ( empty( $prefix ) ) {
    283283                        wp_die( __( '<strong>Error</strong>: "Table Prefix" must not be empty.' ) . $tryagain_link );
  • src/wp-admin/theme-install.php

     
    6262                                __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ),
    6363                                __( 'https://wordpress.org/support/forums/' )
    6464                        ),
    65                         'tryAgain'            => __( 'Try Again' ),
     65                        'tryAgain'            => __( 'Try again' ),
    6666                        /* translators: %d: Number of themes. */
    6767                        'themesFound'         => __( 'Number of Themes found: %d' ),
    6868                        'noThemesFound'       => __( 'No themes found. Try a different search.' ),
    69                         'collapseSidebar'     => __( 'Collapse Sidebar' ),
     69                        'collapseSidebar'     => __( 'Collapse sidebar' ),
    7070                        'expandSidebar'       => __( 'Expand Sidebar' ),
    7171                        /* translators: Accessibility text. */
    7272                        'selectFeatureFilter' => __( 'Select one or more Theme features to filter by' ),
     
    116116
    117117$help_installing =
    118118        '<p>' . __( 'Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you&#8217;re interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look.' ) . '</p>' .
    119         '<p>' . __( 'To install the theme so you can preview it with your site&#8217;s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live Preview" link under any installed theme&#8217;s thumbnail image.' ) . '</p>';
     119        '<p>' . __( 'To install the theme so you can preview it with your site&#8217;s content and customize its theme options, click the "Install" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the "Activate" link, or by navigating to your Manage Themes screen and clicking the "Live preview" link under any installed theme&#8217;s thumbnail image.' ) . '</p>';
    120120
    121121get_current_screen()->add_help_tab(
    122122        array(
     
    358358                                        <# } #>
    359359                                        <# if ( data.customize_url ) { #>
    360360                                                <# if ( ! data.active ) { #>
    361                                                         <a class="button load-customize" href="{{ data.customize_url }}"><?php _e( 'Live Preview' ); ?></a>
     361                                                        <a class="button load-customize" href="{{ data.customize_url }}"><?php _e( 'Live preview' ); ?></a>
    362362                                                <# } else { #>
    363363                                                        <a class="button load-customize" href="{{ data.customize_url }}"><?php _e( 'Customize' ); ?></a>
    364364                                                <# } #>
     
    374374                                                <a class="button button-primary disabled" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _ex( 'Cannot Activate', 'theme' ); ?></a>
    375375                                        <# } #>
    376376                                        <# if ( data.customize_url ) { #>
    377                                                 <a class="button disabled"><?php _e( 'Live Preview' ); ?></a>
     377                                                <a class="button disabled"><?php _e( 'Live preview' ); ?></a>
    378378                                        <# } else { #>
    379379                                                <button class="button disabled"><?php _e( 'Preview' ); ?></button>
    380380                                        <# } #>
     
    390390                                <# } else { #>
    391391                                        <?php
    392392                                        /* translators: %s: Theme name. */
    393                                         $aria_label = sprintf( _x( 'Cannot Install %s', 'theme' ), '{{ data.name }}' );
     393                                        $aria_label = sprintf( _x( 'Cannot install %s', 'theme' ), '{{ data.name }}' );
    394394                                        ?>
    395                                         <a class="button button-primary disabled" data-name="{{ data.name }}" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _ex( 'Cannot Install', 'theme' ); ?></a>
     395                                        <a class="button button-primary disabled" data-name="{{ data.name }}" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _ex( 'Cannot install', 'theme' ); ?></a>
    396396                                        <button class="button disabled"><?php _e( 'Preview' ); ?></button>
    397397                                <# } #>
    398398                        <# } #>
     
    424424                                <# if ( data.compatible_wp && data.compatible_php ) { #>
    425425                                        <a href="{{ data.install_url }}" class="button button-primary theme-install" data-name="{{ data.name }}" data-slug="{{ data.id }}"><?php _e( 'Install' ); ?></a>
    426426                                <# } else { #>
    427                                         <a class="button button-primary disabled" ><?php _ex( 'Cannot Install', 'theme' ); ?></a>
     427                                        <a class="button button-primary disabled" ><?php _ex( 'Cannot install', 'theme' ); ?></a>
    428428                                <# } #>
    429429                        <# } #>
    430430                </div>
     
    522522                                </div>
    523523                        </div>
    524524                        <div class="wp-full-overlay-footer">
    525                                 <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse Sidebar' ); ?>">
     525                                <button type="button" class="collapse-sidebar button" aria-expanded="true" aria-label="<?php esc_attr_e( 'Collapse sidebar' ); ?>">
    526526                                        <span class="collapse-sidebar-arrow"></span>
    527527                                        <span class="collapse-sidebar-label"><?php _e( 'Collapse' ); ?></span>
    528528                                </button>
  • src/wp-admin/themes.php

     
    130130if ( current_user_can( 'switch_themes' ) ) {
    131131        $help_overview = '<p>' . __( 'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.' ) . '</p>' .
    132132                '<p>' . __( 'From this screen you can:' ) . '</p>' .
    133                 '<ul><li>' . __( 'Hover or tap to see Activate and Live Preview buttons' ) . '</li>' .
     133                '<ul><li>' . __( 'Hover or tap to see Activate and Live preview buttons' ) . '</li>' .
    134134                '<li>' . __( 'Click on the theme to see the theme name, version, author, description, tags, and the Delete link' ) . '</li>' .
    135                 '<li>' . __( 'Click Customize for the current theme or Live Preview for any other theme to see a live preview' ) . '</li></ul>' .
     135                '<li>' . __( 'Click Customize for the current theme or Live preview for any other theme to see a live preview' ) . '</li></ul>' .
    136136                '<p>' . __( 'The current theme is displayed highlighted as the first theme.' ) . '</p>' .
    137137                '<p>' . __( 'The search for installed themes will search for terms in their name, description, author, or tag.' ) . ' <span id="live-search-desc">' . __( 'The search results will be updated as you type.' ) . '</span></p>';
    138138
     
    169169// Help tab: Previewing and Customizing.
    170170if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) {
    171171        $help_customize =
    172                 '<p>' . __( 'Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.' ) . '</p>' .
     172                '<p>' . __( 'Tap or hover on any theme then click the Live preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.' ) . '</p>' .
    173173                '<p>' . __( 'The theme being previewed is fully interactive &mdash; navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Publish &amp; Activate button above the menu.' ) . '</p>' .
    174174                '<p>' . __( 'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.' ) . '</p>';
    175175
     
    541541                        ?>
    542542                        <a class="button activate" href="<?php echo $theme['actions']['activate']; ?>" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _e( 'Activate' ); ?></a>
    543543                        <?php if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { ?>
    544                                 <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme['actions']['customize']; ?>"><?php _e( 'Live Preview' ); ?></a>
     544                                <a class="button button-primary load-customize hide-if-no-customize" href="<?php echo $theme['actions']['customize']; ?>"><?php _e( 'Live preview' ); ?></a>
    545545                        <?php } ?>
    546546                <?php } else { ?>
    547547                        <?php
     
    550550                        ?>
    551551                        <a class="button disabled" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _ex( 'Cannot Activate', 'theme' ); ?></a>
    552552                        <?php if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { ?>
    553                                 <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live Preview' ); ?></a>
     553                                <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live preview' ); ?></a>
    554554                        <?php } ?>
    555555                <?php } ?>
    556556
     
    888888                                        $aria_label = sprintf( _x( 'Activate %s', 'theme' ), '{{ data.name }}' );
    889889                                        ?>
    890890                                        <a class="button activate" href="{{{ data.actions.activate }}}" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a>
    891                                         <a class="button button-primary load-customize hide-if-no-customize" href="{{{ data.actions.customize }}}"><?php _e( 'Live Preview' ); ?></a>
     891                                        <a class="button button-primary load-customize hide-if-no-customize" href="{{{ data.actions.customize }}}"><?php _e( 'Live preview' ); ?></a>
    892892                                <# } else { #>
    893893                                        <?php
    894894                                        /* translators: %s: Theme name. */
    895895                                        $aria_label = sprintf( _x( 'Cannot Activate %s', 'theme' ), '{{ data.name }}' );
    896896                                        ?>
    897897                                        <a class="button disabled" aria-label="<?php echo esc_attr( $aria_label ); ?>"><?php _ex( 'Cannot Activate', 'theme' ); ?></a>
    898                                         <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live Preview' ); ?></a>
     898                                        <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live preview' ); ?></a>
    899899                                <# } #>
    900900                        <# } #>
    901901                </div>
     
    994994                                <# if ( data.hasUpdate ) { #>
    995995                                        <# if ( data.updateResponse.compatibleWP && data.updateResponse.compatiblePHP ) { #>
    996996                                                <div class="notice notice-warning notice-alt notice-large">
    997                                                         <h3 class="notice-title"><?php _e( 'Update Available' ); ?></h3>
     997                                                        <h3 class="notice-title"><?php _e( 'Update available' ); ?></h3>
    998998                                                        {{{ data.update }}}
    999999                                                </div>
    10001000                                        <# } else { #>
     
    11031103                                        <# if ( data.actions.activate ) { #>
    11041104                                                <a href="{{{ data.actions.activate }}}" class="button activate" aria-label="<?php echo $aria_label; ?>"><?php _e( 'Activate' ); ?></a>
    11051105                                        <# } #>
    1106                                         <a href="{{{ data.actions.customize }}}" class="button button-primary load-customize hide-if-no-customize"><?php _e( 'Live Preview' ); ?></a>
     1106                                        <a href="{{{ data.actions.customize }}}" class="button button-primary load-customize hide-if-no-customize"><?php _e( 'Live preview' ); ?></a>
    11071107                                <# } else { #>
    11081108                                        <?php
    11091109                                        /* translators: %s: Theme name. */
     
    11121112                                        <# if ( data.actions.activate ) { #>
    11131113                                                <a class="button disabled" aria-label="<?php echo $aria_label; ?>"><?php _ex( 'Cannot Activate', 'theme' ); ?></a>
    11141114                                        <# } #>
    1115                                         <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live Preview' ); ?></a>
     1115                                        <a class="button button-primary hide-if-no-customize disabled"><?php _e( 'Live preview' ); ?></a>
    11161116                                <# } #>
    11171117                        </div>
    11181118
  • src/wp-admin/update-core.php

     
    5555                $current = true;
    5656        }
    5757
    58         $submit        = __( 'Update Now' );
     58        $submit        = __( 'Update now' );
    5959        $form_action   = 'update-core.php?action=do-core-upgrade';
    6060        $php_version   = phpversion();
    6161        $mysql_version = $wpdb->db_version();
     
    427427        <thead>
    428428        <tr>
    429429                <td class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></td>
    430                 <td class="manage-column"><label for="plugins-select-all"><?php _e( 'Select All' ); ?></label></td>
     430                <td class="manage-column"><label for="plugins-select-all"><?php _e( 'Select all' ); ?></label></td>
    431431        </tr>
    432432        </thead>
    433433
     
    547547        <tfoot>
    548548        <tr>
    549549                <td class="manage-column check-column"><input type="checkbox" id="plugins-select-all-2" /></td>
    550                 <td class="manage-column"><label for="plugins-select-all-2"><?php _e( 'Select All' ); ?></label></td>
     550                <td class="manage-column"><label for="plugins-select-all-2"><?php _e( 'Select all' ); ?></label></td>
    551551        </tr>
    552552        </tfoot>
    553553</table>
     
    589589        <thead>
    590590        <tr>
    591591                <td class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></td>
    592                 <td class="manage-column"><label for="themes-select-all"><?php _e( 'Select All' ); ?></label></td>
     592                <td class="manage-column"><label for="themes-select-all"><?php _e( 'Select all' ); ?></label></td>
    593593        </tr>
    594594        </thead>
    595595
     
    711711        <tfoot>
    712712        <tr>
    713713                <td class="manage-column check-column"><input type="checkbox" id="themes-select-all-2" /></td>
    714                 <td class="manage-column"><label for="themes-select-all-2"><?php _e( 'Select All' ); ?></label></td>
     714                <td class="manage-column"><label for="themes-select-all-2"><?php _e( 'Select all' ); ?></label></td>
    715715        </tr>
    716716        </tfoot>
    717717</table>
     
    909909        )
    910910);
    911911
    912 $updates_howto  = '<p>' . __( '<strong>WordPress</strong> &mdash; Updating your WordPress installation is a simple one-click procedure: just <strong>click on the &#8220;Update Now&#8221; button</strong> when you are notified that a new version is available.' ) . ' ' . __( 'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.' ) . '</p>';
     912$updates_howto  = '<p>' . __( '<strong>WordPress</strong> &mdash; Updating your WordPress installation is a simple one-click procedure: just <strong>click on the &#8220;Update now&#8221; button</strong> when you are notified that a new version is available.' ) . ' ' . __( 'In most cases, WordPress will automatically apply maintenance and security updates in the background for you.' ) . '</p>';
    913913$updates_howto .= '<p>' . __( '<strong>Themes and Plugins</strong> &mdash; To update individual themes or plugins from this screen, use the checkboxes to make your selection, then <strong>click on the appropriate &#8220;Update&#8221; button</strong>. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button.' ) . '</p>';
    914914
    915915if ( 'en_US' !== get_locale() ) {
  • src/wp-admin/update.php

     
    153153
    154154                $file_upload = new File_Upload_Upgrader( 'pluginzip', 'package' );
    155155
    156                 $title        = __( 'Upload Plugin' );
     156                $title        = __( 'Upload plugin' );
    157157                $parent_file  = 'plugins.php';
    158158                $submenu_file = 'plugin-install.php';
    159159                require_once ABSPATH . 'wp-admin/admin-header.php';
  • src/wp-admin/upload.php

     
    235235                'id'      => 'actions-links',
    236236                'title'   => __( 'Available Actions' ),
    237237                'content' =>
    238                                 '<p>' . __( 'Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file&#8217;s name displays a simple screen to edit that individual file&#8217;s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '</p>',
     238                                '<p>' . __( 'Hovering over a row reveals action links: Edit, Delete permanently, and View. Clicking Edit or on the media file&#8217;s name displays a simple screen to edit that individual file&#8217;s metadata. Clicking Delete permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '</p>',
    239239        )
    240240);
    241241get_current_screen()->add_help_tab(
  • src/wp-admin/widgets.php

     
    406406                                admin_url( 'customize.php' )
    407407                        )
    408408                ),
    409                 __( 'Manage with Live Preview' )
     409                __( 'Manage with Live preview' )
    410410        );
    411411}
    412412
  • src/wp-content/themes/twentyeleven/languages/twentyeleven.pot

     
    565565msgstr ""
    566566
    567567#: search.php:18
    568 msgid "Search Results for: %s"
     568msgid "Search results for: %s"
    569569msgstr ""
    570570
    571571#: search.php:51
  • src/wp-content/themes/twentyeleven/search.php

     
    11<?php
    22/**
    3  * Template for displaying Search Results pages
     3 * Template for displaying Search results pages
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Eleven
     
    1818                                        <h1 class="page-title">
    1919                                        <?php
    2020                                        /* translators: %s: Search query. */
    21                                         printf( __( 'Search Results for: %s', 'twentyeleven' ), '<span>' . get_search_query() . '</span>' );
     21                                        printf( __( 'Search results for: %s', 'twentyeleven' ), '<span>' . get_search_query() . '</span>' );
    2222                                        ?>
    2323                                        </h1>
    2424                                </header>
  • src/wp-content/themes/twentyfifteen/search.php

     
    1818                                <h1 class="page-title">
    1919                                <?php
    2020                                /* translators: %s: Search query. */
    21                                 printf( __( 'Search Results for: %s', 'twentyfifteen' ), get_search_query() );
     21                                printf( __( 'Search results for: %s', 'twentyfifteen' ), get_search_query() );
    2222                                ?>
    2323                                </h1>
    2424                        </header><!-- .page-header -->
  • src/wp-content/themes/twentyfourteen/search.php

     
    11<?php
    22/**
    3  * The template for displaying Search Results pages
     3 * The template for displaying Search results pages
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Fourteen
     
    1818                                <h1 class="page-title">
    1919                                <?php
    2020                                /* translators: %s: Search query. */
    21                                 printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() );
     21                                printf( __( 'Search results for: %s', 'twentyfourteen' ), get_search_query() );
    2222                                ?>
    2323                                </h1>
    2424                        </header><!-- .page-header -->
  • src/wp-content/themes/twentyseventeen/search.php

     
    1919                        <h1 class="page-title">
    2020                        <?php
    2121                        /* translators: Search query. */
    22                         printf( __( 'Search Results for: %s', 'twentyseventeen' ), '<span>' . get_search_query() . '</span>' );
     22                        printf( __( 'Search results for: %s', 'twentyseventeen' ), '<span>' . get_search_query() . '</span>' );
    2323                        ?>
    2424                        </h1>
    2525                <?php else : ?>
  • src/wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php

     
    22/**
    33 * Template part for displaying posts with excerpts
    44 *
    5  * Used in Search Results and for Recent Posts in Front Page panels.
     5 * Used in Search results and for Recent Posts in Front Page panels.
    66 *
    77 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
    88 *
  • src/wp-content/themes/twentysixteen/search.php

     
    1818                                <h1 class="page-title">
    1919                                <?php
    2020                                /* translators: %s: The search query. */
    21                                 printf( __( 'Search Results for: %s', 'twentysixteen' ), '<span>' . esc_html( get_search_query() ) . '</span>' );
     21                                printf( __( 'Search results for: %s', 'twentysixteen' ), '<span>' . esc_html( get_search_query() ) . '</span>' );
    2222                                ?>
    2323                                </h1>
    2424                        </header><!-- .page-header -->
  • src/wp-content/themes/twentyten/languages/twentyten.pot

     
    376376msgstr ""
    377377
    378378#: search.php:16
    379 msgid "Search Results for: %s"
     379msgid "Search results for: %s"
    380380msgstr ""
    381381
    382382#: search.php:27
  • src/wp-content/themes/twentyten/search.php

     
    11<?php
    22/**
    3  * Template for displaying Search Results pages
     3 * Template for displaying Search results pages
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Ten
     
    1616                                <h1 class="page-title">
    1717                                <?php
    1818                                /* translators: %s: Search query. */
    19                                 printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' );
     19                                printf( __( 'Search results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' );
    2020                                ?>
    2121                                </h1>
    2222                                <?php
  • src/wp-content/themes/twentythirteen/rtl.css

     
    2222 *   5.7 - Post/Paging Navigation
    2323 *   5.8 - Author Bio
    2424 *   5.9 - Archives
    25  *   5.10 - Search Results/No posts
     25 *   5.10 - Search results/No posts
    2626 *   5.12 - Comments
    2727 * 6.0 - Sidebar
    2828 *   6.1 - Widgets
     
    422422
    423423
    424424/**
    425  * 5.10 Search Results/No posts
     425 * 5.10 Search results/No posts
    426426 * ----------------------------------------------------------------------------
    427427 */
    428428
  • src/wp-content/themes/twentythirteen/search.php

     
    11<?php
    22/**
    3  * The template for displaying Search Results pages
     3 * The template for displaying Search results pages
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Thirteen
     
    1818                                <h1 class="page-title">
    1919                                <?php
    2020                                /* translators: %s: Search query. */
    21                                 printf( __( 'Search Results for: %s', 'twentythirteen' ), get_search_query() );
     21                                printf( __( 'Search results for: %s', 'twentythirteen' ), get_search_query() );
    2222                                ?>
    2323                                </h1>
    2424                        </header>
  • src/wp-content/themes/twentythirteen/style.css

     
    3636 *   5.7 - Post/Paging Navigation
    3737 *   5.8 - Author Bio
    3838 *   5.9 - Archives
    39  *   5.10 - Search Results/No posts
     39 *   5.10 - Search results/No posts
    4040 *   5.11 - 404
    4141 *   5.12 - Comments
    4242 *   5.13 - Multisite
     
    20792079
    20802080
    20812081/**
    2082  * 5.10 Search Results/No posts
     2082 * 5.10 Search results/No posts
    20832083 * ----------------------------------------------------------------------------
    20842084 */
    20852085
  • src/wp-content/themes/twentytwelve/search.php

     
    11<?php
    22/**
    3  * The template for displaying Search Results pages
     3 * The template for displaying Search results pages
    44 *
    55 * @package WordPress
    66 * @subpackage Twenty_Twelve
     
    1818                                <h1 class="page-title">
    1919                                <?php
    2020                                /* translators: %s: Search query. */
    21                                 printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' );
     21                                printf( __( 'Search results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' );
    2222                                ?>
    2323                                </h1>
    2424                        </header>
  • src/wp-content/themes/twentytwenty/style-rtl.css

     
    23702370}
    23712371
    23722372
    2373 /* Search Results ---------------------------- */
     2373/* Search results ---------------------------- */
    23742374
    23752375.no-search-results-form {
    23762376        padding-top: 5rem;
  • src/wp-content/themes/twentytwenty/style.css

     
    23862386}
    23872387
    23882388
    2389 /* Search Results ---------------------------- */
     2389/* Search results ---------------------------- */
    23902390
    23912391.no-search-results-form {
    23922392        padding-top: 5rem;
  • src/wp-includes/class-wp-customize-manager.php

     
    45434543                        $document_title_tmpl = __( 'Customize: %s' );
    45444544                } else {
    45454545                        /* translators: %s: Document title from the preview. */
    4546                         $document_title_tmpl = __( 'Live Preview: %s' );
     4546                        $document_title_tmpl = __( 'Live preview: %s' );
    45474547                }
    45484548                $document_title_tmpl = html_entity_decode( $document_title_tmpl, ENT_QUOTES, 'UTF-8' ); // Because exported to JS and assigned to document.title.
    45494549                return $document_title_tmpl;
  • src/wp-includes/customize/class-wp-customize-theme-control.php

     
    246246                                        <h3 class="theme-name" id="{{ data.section }}-{{ data.theme.id }}-name">{{ data.theme.name }}</h3>
    247247                                        <div class="theme-actions">
    248248                                                <# if ( data.theme.compatibleWP && data.theme.compatiblePHP ) { #>
    249                                                         <button type="button" class="button button-primary preview-theme" aria-label="<?php echo esc_attr( $preview_label ); ?>" data-slug="{{ data.theme.id }}"><?php _e( 'Live Preview' ); ?></button>
     249                                                        <button type="button" class="button button-primary preview-theme" aria-label="<?php echo esc_attr( $preview_label ); ?>" data-slug="{{ data.theme.id }}"><?php _e( 'Live preview' ); ?></button>
    250250                                                <# } else { #>
    251                                                         <button type="button" class="button button-primary disabled" aria-label="<?php echo esc_attr( $preview_label ); ?>"><?php _e( 'Live Preview' ); ?></button>
     251                                                        <button type="button" class="button button-primary disabled" aria-label="<?php echo esc_attr( $preview_label ); ?>"><?php _e( 'Live preview' ); ?></button>
    252252                                                <# } #>
    253253                                        </div>
    254254                                </div>
  • src/wp-includes/general-template.php

     
    11531153                // If it's a search, use a dynamic search results title.
    11541154        } elseif ( is_search() ) {
    11551155                /* translators: %s: Search query. */
    1156                 $title['title'] = sprintf( __( 'Search Results for &#8220;%s&#8221;' ), get_search_query() );
     1156                $title['title'] = sprintf( __( 'Search results for &#8220;%s&#8221;' ), get_search_query() );
    11571157
    11581158                // If on the front page, use the site title.
    11591159        } elseif ( is_front_page() ) {
     
    13601360        // If it's a search.
    13611361        if ( is_search() ) {
    13621362                /* translators: 1: Separator, 2: Search query. */
    1363                 $title = sprintf( __( 'Search Results %1$s %2$s' ), $t_sep, strip_tags( $search ) );
     1363                $title = sprintf( __( 'Search results %1$s %2$s' ), $t_sep, strip_tags( $search ) );
    13641364        }
    13651365
    13661366        // If it's a 404 page.
     
    31053105                /* translators: 1: Blog name, 2: Separator (raquo), 3: Author name. */
    31063106                'authortitle'   => __( '%1$s %2$s Posts by %3$s Feed' ),
    31073107                /* translators: 1: Blog name, 2: Separator (raquo), 3: Search query. */
    3108                 'searchtitle'   => __( '%1$s %2$s Search Results for &#8220;%3$s&#8221; Feed' ),
     3108                'searchtitle'   => __( '%1$s %2$s Search results for &#8220;%3$s&#8221; Feed' ),
    31093109                /* translators: 1: Blog name, 2: Separator (raquo), 3: Post type name. */
    31103110                'posttypetitle' => __( '%1$s %2$s %3$s Feed' ),
    31113111        );
  • src/wp-includes/post.php

     
    946946function get_post_statuses() {
    947947        $status = array(
    948948                'draft'   => __( 'Draft' ),
    949                 'pending' => __( 'Pending Review' ),
     949                'pending' => __( 'Pending review' ),
    950950                'private' => __( 'Private' ),
    951951                'publish' => __( 'Published' ),
    952952        );
  • src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php

     
    5959
    6060                $lang       = get_language_attributes( 'html' );
    6161                $url        = esc_xml( __( 'URL' ) );
    62                 $lastmod    = esc_xml( __( 'Last Modified' ) );
     62                $lastmod    = esc_xml( __( 'Last modified' ) );
    6363                $changefreq = esc_xml( __( 'Change Frequency' ) );
    6464                $priority   = esc_xml( __( 'Priority' ) );
    6565
     
    173173
    174174                $lang    = get_language_attributes( 'html' );
    175175                $url     = esc_xml( __( 'URL' ) );
    176                 $lastmod = esc_xml( __( 'Last Modified' ) );
     176                $lastmod = esc_xml( __( 'Last modified' ) );
    177177
    178178                $xsl_content = <<<XSL
    179179<?xml version="1.0" encoding="UTF-8"?>
  • src/wp-includes/user.php

     
    38293829                        $description = __( 'Export Personal Data' );
    38303830                        break;
    38313831                case 'remove_personal_data':
    3832                         $description = __( 'Erase Personal Data' );
     3832                        $description = __( 'Erase personal data' );
    38333833                        break;
    38343834                default:
    38353835                        /* translators: %s: Action name. */