diff --git a/wp-admin/edit.php b/wp-admin/edit.php index e141d56e1f..df4d020c92 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -229,7 +229,7 @@ if ( isset($_GET['deleted']) && (int) $_GET['deleted'] ) { } 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; echo ' ' . __('Undo') . '
'; unset($_GET['trashed']);