mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-15 15:16:29 +01:00
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:
parent
e261ac43e7
commit
9c4728942f
@ -78,10 +78,10 @@ if ( !defined('WP_ALLOW_REPAIR') ) {
|
||||
echo '<br />  ';
|
||||
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>" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user