From 91ef1974d8fa605a4d7c25b74a4f414596a7695e Mon Sep 17 00:00:00 2001 From: nacin Date: Tue, 29 Jun 2010 08:47:43 +0000 Subject: [PATCH] s/trash/Trash/ git-svn-id: http://svn.automattic.com/wordpress/trunk@15345 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/edit.php b/wp-admin/edit.php index e141d56e1..df4d020c9 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']);