Ticket #18770: 18770.2.patch
File 18770.2.patch, 861 bytes (added by , 13 years ago) |
---|
-
wp-admin/maint/repair.php
78 78 echo '<br />  '; 79 79 if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) { 80 80 /* translators: %s: table name */ 81 printf( __( 'Successfully optimized the $tabletable.' ), $table );81 printf( __( 'Successfully optimized the %s table.' ), $table ); 82 82 } else { 83 83 /* translators: 1: table name, 2: error message, */ 84 printf( __( 'Failed to optimize the $table table. Error: $check->Msg_text' ), $table,"<code>$check->Msg_text</code>" );84 printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), $table, "<code>$check->Msg_text</code>" ); 85 85 } 86 86 } 87 87 }