s/trash/Trash/
git-svn-id: http://svn.automattic.com/wordpress/trunk@15345 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1017822b6f
commit
91ef1974d8
|
@ -229,7 +229,7 @@ if ( isset($_GET['deleted']) && (int) $_GET['deleted'] ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( isset($_GET['trashed']) && (int) $_GET['trashed'] ) {
|
if ( isset($_GET['trashed']) && (int) $_GET['trashed'] ) {
|
||||||
printf( _n( 'Item moved to the trash.', '%s items moved to the trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) );
|
printf( _n( 'Item moved to the Trash.', '%s items moved to the Trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) );
|
||||||
$ids = isset($_GET['ids']) ? $_GET['ids'] : 0;
|
$ids = isset($_GET['ids']) ? $_GET['ids'] : 0;
|
||||||
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 />';
|
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 />';
|
||||||
unset($_GET['trashed']);
|
unset($_GET['trashed']);
|
||||||
|
|
Loading…
Reference in New Issue