Make WordPress Core

Changeset 50702


Ignore:
Timestamp:
04/12/2021 10:32:11 PM (3 years ago)
Author:
davidbaumwald
Message:

Feeds: Rename "Summary" to "Excerpt" in Reading Settings.

On the "Reading Settings" page, the post excerpt was referred to as a "Summary". For consistency with the rest of Core, this change updates "summary" to "excerpt" both in the setting and the relevant help tab.

Props SergeyBiryukov, ravipatel, mukesh27.
Fixes #52987.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-reading.php

    r49287 r50702  
    3131            '<p>' . sprintf(
    3232                /* translators: %s: Documentation URL. */
    33                 __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. <a href="%s">Learn more about feeds</a>.' ),
     33                __( 'You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or an excerpt. <a href="%s">Learn more about feeds</a>.' ),
    3434                __( 'https://wordpress.org/support/article/wordpress-feeds/' )
    3535            ) . '</p>' .
     
    162162    <p>
    163163        <label><input name="rss_use_excerpt" type="radio" value="0" <?php checked( 0, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Full text' ); ?></label><br />
    164         <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked( 1, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Summary' ); ?></label>
     164        <label><input name="rss_use_excerpt" type="radio" value="1" <?php checked( 1, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Excerpt' ); ?></label>
    165165    </p>
    166166    <p class="description">
Note: See TracChangeset for help on using the changeset viewer.