Make WordPress Core

Changeset 55415


Ignore:
Timestamp:
02/23/2023 11:11:38 AM (22 months ago)
Author:
audrasjb
Message:

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

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

See #57726.

Location:
trunk/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ms.php

    r55412 r55415  
    11561156    return '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    11571157        '<p>' . __( '<a href="https://wordpress.org/documentation/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' .
    1158         '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>';
    1159 }
     1158        '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>';
     1159}
  • trunk/src/wp-admin/network/index.php

    r55412 r55415  
    5555    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    5656    '<p>' . __( '<a href="https://wordpress.org/documentation/article/network-admin/">Documentation on the Network Admin</a>' ) . '</p>' .
    57     '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
     57    '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>'
    5858);
    5959
  • trunk/src/wp-admin/network/site-new.php

    r55412 r55415  
    3131    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    3232    '<p>' . __( '<a href="https://wordpress.org/documentation/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' .
    33     '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
     33    '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>'
    3434);
    3535
  • trunk/src/wp-admin/network/sites.php

    r55412 r55415  
    4545    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    4646    '<p>' . __( '<a href="https://wordpress.org/documentation/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' .
    47     '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
     47    '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>'
    4848);
    4949
  • trunk/src/wp-admin/network/user-new.php

    r55394 r55415  
    2828    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    2929    '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Users_Screen">Documentation on Network Users</a>' ) . '</p>' .
    30     '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
     30    '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>'
    3131);
    3232
  • trunk/src/wp-admin/network/users.php

    r51499 r55415  
    241241    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
    242242    '<p>' . __( '<a href="https://codex.wordpress.org/Network_Admin_Users_Screen">Documentation on Network Users</a>' ) . '</p>' .
    243     '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>'
     243    '<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>'
    244244);
    245245
  • trunk/src/wp-content/themes/twentytwentyone/inc/starter-content.php

    r55413 r55415  
    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

    r55398 r55415  
    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

    r55367 r55415  
    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.