Make WordPress Core


Ignore:
Timestamp:
04/11/2010 10:41:54 AM (15 years ago)
Author:
dd32
Message:

Tweak new strings for better typography. Props demetris. Fixes #12962

File:
1 edited

Legend:

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

    r13750 r14070  
    5353<input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked('1', get_option('comment_registration')); ?> />
    5454<?php _e('Users must be registered and logged in to comment') ?>
    55 <?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment)' ); ?>
     55<?php if ( !get_option( 'users_can_register' ) && is_multisite() ) _e( ' (Signup has been disabled. Only members of this site can comment.)' ); ?>
    5656</label>
    5757<br />
     
    161161<td><fieldset><legend class="screen-reader-text"><span><?php _e('Avatar Display') ?></span></legend>
    162162<?php
    163     $yesorno = array(0 => __("Don&#8217;t show Avatars"), 1 => __('Show Avatars'));
     163    $yesorno = array( 0 => __( 'Don&#8217;t show Avatars' ), 1 => __( 'Show Avatars' ) );
    164164    foreach ( $yesorno as $key => $value) {
    165165        $selected = (get_option('show_avatars') == $key) ? 'checked="checked"' : '';
Note: See TracChangeset for help on using the changeset viewer.