gettext fix. Props ocean90. fixes #18770
git-svn-id: https://develop.svn.wordpress.org/trunk@19073 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f8ed38f26c
commit
d85938ec7a
@ -78,10 +78,10 @@ if ( !defined('WP_ALLOW_REPAIR') ) {
|
|||||||
echo '<br />  ';
|
echo '<br />  ';
|
||||||
if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
|
if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
|
||||||
/* translators: %s: table name */
|
/* translators: %s: table name */
|
||||||
printf( __( 'Successfully optimized the $table table.' ), $table );
|
printf( __( 'Successfully optimized the %s table.' ), $table );
|
||||||
} else {
|
} else {
|
||||||
/* translators: 1: table name, 2: error message, */
|
/* 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