From 9c4728942f7333c2698ebf275b2c64d1378fdaf3 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 27 Oct 2011 21:14:14 +0000 Subject: [PATCH] gettext fix. Props ocean90. fixes #18770 git-svn-id: http://svn.automattic.com/wordpress/trunk@19073 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/maint/repair.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/maint/repair.php b/wp-admin/maint/repair.php index 783eb5a8eb..3f5718876d 100644 --- a/wp-admin/maint/repair.php +++ b/wp-admin/maint/repair.php @@ -78,10 +78,10 @@ if ( !defined('WP_ALLOW_REPAIR') ) { echo '
    '; if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) { /* translators: %s: table name */ - printf( __( 'Successfully optimized the $table table.' ), $table ); + printf( __( 'Successfully optimized the %s table.' ), $table ); } else { /* translators: 1: table name, 2: error message, */ - printf( __( 'Failed to optimize the $table table. Error: $check->Msg_text' ), $table,"$check->Msg_text" ); + printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), $table, "$check->Msg_text" ); } } }