From f58a5ced8b56c15c732cc10929191dc59143d920 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 29 Jun 2010 08:47:43 +0000 Subject: [PATCH] s/trash/Trash/ git-svn-id: https://develop.svn.wordpress.org/trunk@15345 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 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']);