Make WordPress Core

Changeset 55431


Ignore:
Timestamp:
02/28/2023 12:46:10 PM (14 months ago)
Author:
audrasjb
Message:

Help/About: Use a consistent capitalization for "Support forums" links across WP Admin.

This partially reverts [55415] and fix a few inconsistencies found in "support forums" links.

Follow-up to [55412], [55413], [55415].

Props sabernhardt, audrasjb.
See #57726.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentyone/inc/starter-content.php

    r55415 r55431  
    126126                    <!-- wp:column -->
    127127                    <div class="wp-block-column"><!-- wp:paragraph -->
    128                     <p><a href="https://wordpress.org/support/theme/twentytwentyone/">' . esc_html_x( 'Check out the Support forums', 'Theme starter content', 'twentytwentyone' ) . '</a></p>
     128                    <p><a href="https://wordpress.org/support/theme/twentytwentyone/">' . esc_html_x( 'Check out the Support Forums', 'Theme starter content', 'twentytwentyone' ) . '</a></p>
    129129                    <!-- /wp:paragraph --></div>
    130130                    <!-- /wp:column --></div>
  • trunk/src/wp-includes/class-wpdb.php

    r55415 r55431  
    12681268                $message .= '<p>' . sprintf(
    12691269                    /* translators: %s: Support forums URL. */
    1270                     __( 'If you do not know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress Support forums</a>.' ),
     1270                    __( 'If you do not know how to set up a database you should <strong>contact your host</strong>. If all else fails you may find help at the <a href="%s">WordPress support forums</a>.' ),
    12711271                    __( 'https://wordpress.org/support/forums/' )
    12721272                ) . "</p>\n";
     
    20822082            $message .= '<p>' . sprintf(
    20832083                /* translators: %s: Support forums URL. */
    2084                 __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support forums</a>.' ),
     2084                __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress support forums</a>.' ),
    20852085                __( 'https://wordpress.org/support/forums/' )
    20862086            ) . "</p>\n";
     
    22422242        $message .= '<p>' . sprintf(
    22432243            /* translators: %s: Support forums URL. */
    2244             __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support forums</a>.' ),
     2244            __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress support forums</a>.' ),
    22452245            __( 'https://wordpress.org/support/forums/' )
    22462246        ) . "</p>\n";
  • trunk/src/wp-includes/load.php

    r55415 r55431  
    177177        $message .= '<p>' . sprintf(
    178178            /* translators: %s: Support forums URL. */
    179             __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress Support forums</a>.' ),
     179            __( 'If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href="%s">WordPress support forums</a>.' ),
    180180            __( 'https://wordpress.org/support/forums/' )
    181181        ) . "</p>\n";
Note: See TracChangeset for help on using the changeset viewer.