Changeset 19073
- Timestamp:
- 10/27/2011 09:14:14 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/maint/repair.php
r19070 r19073 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 }
Note: See TracChangeset
for help on using the changeset viewer.