Make WordPress Core


Ignore:
Timestamp:
03/02/2009 07:20:19 PM (16 years ago)
Author:
ryan
Message:

Use _x() and extracted comments. Props nbachiyski. see #9112

File:
1 edited

Legend:

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

    r10670 r10680  
    192192
    193193<?php
    194 $datef = _c( 'M j, Y @ G:i|Publish box date format');
     194// translators: Publish box date formt, see http://php.net/date
     195$datef = __( 'M j, Y @ G:i' );
    195196if ( 0 != $post->ID ) {
    196197    if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
     
    469470    <tr>
    470471    <th scope="col" class="column-author"><?php _e('Author') ?></th>
    471     <th scope="col" class="column-comment"><?php echo _c('Comment|noun') ?></th>
     472    <th scope="col" class="column-comment">
     473        <?php /* translators: field name in comment form */ echo _x('Comment', 'noun'); ?>
     474    </th>
    472475  </tr>
    473476</thead>
Note: See TracChangeset for help on using the changeset viewer.