Make WordPress Core


Ignore:
Timestamp:
06/29/2010 08:47:43 AM (15 years ago)
Author:
nacin
Message:

s/trash/Trash/

File:
1 edited

Legend:

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

    r15132 r15345  
    230230
    231231if ( isset($_GET['trashed']) && (int) $_GET['trashed'] ) {
    232     printf( _n( 'Item moved to the trash.', '%s items moved to the trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) );
     232    printf( _n( 'Item moved to the Trash.', '%s items moved to the Trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) );
    233233    $ids = isset($_GET['ids']) ? $_GET['ids'] : 0;
    234234    echo ' <a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a><br />';
Note: See TracChangeset for help on using the changeset viewer.