Make WordPress Core


Ignore:
Timestamp:
06/13/2004 04:14:58 PM (22 years ago)
Author:
rboren
Message:

Mark some strings for translation and improve string consistency. From Albert. http://mosquito.wordpress.org/bug_view_page.php?bug_id=0000024

File:
1 edited

Legend:

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

    r1411 r1420  
    22require_once('../wp-includes/wp-l10n.php');
    33
    4 $title = 'Discussion Options';
     4$title = __('Discussion Options');
    55$parent_file = 'options-general.php';
    66
     
    6969</fieldset>
    7070<fieldset class="options">
    71         <legend><?php _e('Email me whenever:') ?></legend>
     71        <legend><?php _e('E-mail me whenever:') ?></legend>
    7272        <ul>
    7373            <li>
     
    9494                <label for="require_name_email">
    9595                <input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked('1', get_settings('require_name_email')); ?> />
    96                 <?php _e('User must fill out name and email') ?> </label>
     96                <?php _e('User must fill out name and e-mail') ?> </label>
    9797            </li>
    9898        </ul>
     
    102102    <p><?php printf(__('Hold a comment in the queue if it contains more than %s links. (A common characteristic of comment spam is a large number of hyperlinks.)'), '<input name="comment_max_links" type="text" id="comment_max_links" size="3" value="' . get_settings('comment_max_links'). '" />' ) ?></p>
    103103
    104     <p><?php _e('When a comment contains any of these words in its content, name, URI,  email, or IP, hold it in the moderation queue: (Separate multiple words with new lines.) <a href="http://wiki.wordpress.org/index.php/SpamWords">Common spam words</a>.') ?></p>
     104    <p><?php _e('When a comment contains any of these words in its content, name, URI, e-mail, or IP, hold it in the moderation queue: (Separate multiple words with new lines.) <a href="http://wiki.wordpress.org/index.php/SpamWords">Common spam words</a>.') ?></p>
    105105        <p>
    106106            <textarea name="moderation_keys" cols="60" rows="4" id="moderation_keys" style="width: 98%; font-size: 12px;" class="code"><?php echo get_settings('moderation_keys'); ?></textarea>
Note: See TracChangeset for help on using the changeset viewer.