Make WordPress Core

Changeset 40032


Ignore:
Timestamp:
01/31/2017 07:05:00 AM (8 years ago)
Author:
SergeyBiryukov
Message:

Text Changes: Remove periods from checkbox labels in Discussion meta box to improve consistency throughout the admin.

Checkbox labels generally don't have periods, unless it's a complete sentence.

Props juhise.
Fixes #33780.

File:
1 edited

Legend:

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

    r40029 r40032  
    669669<input name="advanced_view" type="hidden" value="1" />
    670670<p class="meta-options">
    671     <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br />
     671    <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments' ) ?></label><br />
    672672    <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php
    673673        printf(
    674674            /* translators: %s: Codex URL */
    675             __( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page.' ),
     675            __( 'Allow <a href="%s">trackbacks and pingbacks</a> on this page' ),
    676676            __( 'https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) );
    677677        ?></label>
Note: See TracChangeset for help on using the changeset viewer.