Make WordPress Core

Changeset 1233


Ignore:
Timestamp:
05/05/2004 08:27:43 AM (21 years ago)
Author:
saxmatt
Message:

Some consistancy errors.

Location:
trunk/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-advanced.php

    r1215 r1233  
    2323    $form_pingback = '<input type="checkbox" class="checkbox" name="post_pingback" value="1" ';
    2424    if ( get_settings('default_pingback_flag') ) $form_pingback .= 'checked="checked" ';
    25     $form_pingback .= 'tabindex="7" id="pingback" /> <label for="pingback">' . __('<strong>PingBack</strong> the <acronym title="Uniform Resource Locators">URL</acronym>s in this post') . '</label> <a href="http://wordpress.org/docs/reference/post/#pingback" title="' . __('Help on Pingbacks') . '">?</a><br />';
     25    $form_pingback .= 'tabindex="7" id="pingback" /> <label for="pingback">' . __('<strong>PingBack</strong> the <abbr title="Universal Resource Identifier">URI</abbr>s in this post') . '</label> <a href="http://wordpress.org/docs/reference/post/#pingback" title="' . __('Help on Pingbacks') . '">?</a><br />';
    2626} else {
    2727    $form_pingback = '';
     
    3131$form_prevstatus = '<input type="hidden" name="prev_status" value="'.$post_status.'" />';
    3232if (get_settings('use_trackback')) {
    33     $form_trackback = '<p><label for="trackback"><a href="http://wordpress.org/docs/reference/post/#trackback" title="' . __('Help on trackbacks') . '">' . __('<strong>TrackBack</strong> an <acronym title="Uniform Resource Locator">URL</acronym></a>') . '</label> ' . __('(Separate multiple <acronym title="Uniform Resource Locator">URL</acronym>s with spaces.)') . '<br />
     33    $form_trackback = '<p><label for="trackback"><a href="http://wordpress.org/docs/reference/post/#trackback" title="' . __('Help on trackbacks') . '">' . __('<strong>TrackBack</strong> an <abbr title="Universal Resource Identifier">URI</abbr></a>') . '</label> ' . __('(Separate multiple <abbr title="Universal Resource Identifier">URI</abbr>s with spaces.)') . '<br />
    3434    <input type="text" name="trackback_url" style="width: 415px" id="trackback" tabindex="7" value="'. str_replace("\n", ' ', $to_ping) .'" /></p>';
    3535    if ('' != $pinged) {
  • trunk/wp-admin/edit-form.php

    r1148 r1233  
    1212    $form_pingback = '<input type="checkbox" class="checkbox" name="post_pingback" value="1" ';
    1313    if ($post_pingback) $form_pingback .= 'checked="checked" ';
    14     $form_pingback .= 'tabindex="7" id="pingback" /> <label for="pingback">' . sprintf(__('<strong>PingBack</strong> the <acronym title="Uniform Resource Locators">URL</acronym>s in this post</label> <a href="%s" title="Help on Pingbacks">?</a><br />'), 'http://wordpress.org/docs/reference/post/#pingback');
     14    $form_pingback .= 'tabindex="7" id="pingback" /> <label for="pingback">' . sprintf(__('<strong>PingBack</strong> the <abbr title="Universal Resource Identifier">URI</abbr>s in this post</label> <a href="%s" title="Help on Pingbacks">?</a><br />'), 'http://wordpress.org/docs/reference/post/#pingback');
    1515} else {
    1616    $form_pingback = '';
    1717}
    1818if (get_settings('use_trackback')) {
    19     $form_trackback = '<p><label for="trackback">' . sprintf(__('<a href="%s" title="Help on trackbacks"><strong>TrackBack</strong> an <acronym title="Uniform Resource Locator">URL</acronym></a>:</label> (Separate multiple <acronym title="Uniform Resource Locator">URL</acronym>s with spaces.)<br />'), 'http://wordpress.org/docs/reference/post/#trackback') .
     19    $form_trackback = '<p><label for="trackback">' . sprintf(__('<a href="%s" title="Help on trackbacks"><strong>TrackBack</strong> an <acronym title="Uniform Resource Locator">URL</acronym></a>:</label> (Separate multiple <abbr title="Universal Resource Identifier">URI</abbr>s with spaces.)<br />'), 'http://wordpress.org/docs/reference/post/#trackback') .
    2020    '<input type="text" name="trackback_url" style="width: 360px" id="trackback" tabindex="7" /></p>';
    2121    if ('' != $pinged) {
  • trunk/wp-admin/users.php

    r1211 r1233  
    176176    <th><?php _e('Name') ?></th>
    177177    <th><?php _e('E-mail') ?></th>
    178     <th><?php _e('URI') ?></th>
     178    <th><?php _e('Website') ?></th>
    179179    <th><?php _e('Level') ?></th>
    180180    <th><?php _e('Posts') ?></th>
     
    229229        <th><?php _e('Name') ?></th>
    230230        <th><?php _e('E-mail') ?></th>
    231         <th><?php _e('URI') ?></th>
     231        <th><?php _e('Website') ?></th>
    232232        <th><?php _e('Level') ?></th>
    233233    </tr>
     
    271271<?php printf(__('<p>Users can <a href="%s/wp-register.php">register themselves</a> or you can manually create users here.</p>'), get_settings('siteurl')); ?>
    272272<form action="" method="post" name="adduser" id="adduser">
    273   <table border="0" cellspacing="5" cellpadding="3">
    274     <tr>
    275       <th scope="row"><?php _e('Nickname') ?>
     273  <table class="editform" width="100%" cellspacing="2" cellpadding="5">
     274    <tr>
     275      <th scope="row" width="33%"><?php _e('Nickname') ?>
    276276      <input name="action" type="hidden" id="action" value="adduser" /></th>
    277       <td><input name="user_login" type="text" id="user_login" /></td>
     277      <td width="66%"><input name="user_login" type="text" id="user_login" /></td>
    278278    </tr>
    279279    <tr>
     
    286286    </tr>
    287287    <tr>
    288       <th scope="row"><?php _e('Email') ?></th>
     288      <th scope="row"><?php _e('E-mail') ?></th>
    289289      <td><input name="email" type="text" id="email" /></td>
    290290    </tr>
    291291    <tr>
    292       <th scope="row"><?php _e('URI') ?></th>
     292      <th scope="row"><?php _e('Website') ?></th>
    293293      <td><input name="uri" type="text" id="uri" /></td>
    294294    </tr>
Note: See TracChangeset for help on using the changeset viewer.