Make WordPress Core

Changeset 19073


Ignore:
Timestamp:
10/27/2011 09:14:14 PM (13 years ago)
Author:
ryan
Message:

gettext fix. Props ocean90. fixes #18770

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/maint/repair.php

    r19070 r19073  
    7979                if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) {
    8080                    /* translators: %s: table name */
    81                     printf( __( 'Successfully optimized the $table table.' ), $table );
     81                    printf( __( 'Successfully optimized the %s table.' ), $table );
    8282                } else {
    8383                    /* 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>" );
    8585                }
    8686            }
Note: See TracChangeset for help on using the changeset viewer.