gettext fix. Props ocean90. fixes #18770

git-svn-id: http://svn.automattic.com/wordpress/trunk@19073 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2011-10-27 21:14:14 +00:00
parent e261ac43e7
commit 9c4728942f

View File

@ -78,10 +78,10 @@ if ( !defined('WP_ALLOW_REPAIR') ) {
echo '<br />&nbsp;&nbsp;&nbsp;&nbsp';
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,"<code>$check->Msg_text</code>" );
printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), $table, "<code>$check->Msg_text</code>" );
}
}
}