Make WordPress Core


Ignore:
Timestamp:
04/05/2010 09:15:35 AM (16 years ago)
Author:
dd32
Message:

Update broken translation. S/post thumbnail/featured image/

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/ms.php

    r13998 r14007  
    478478        <table>
    479479                <tr class="first">
    480                         <td class="first b b-posts"><?php printf( __( '<a href="' . esc_url( admin_url( 'upload.php' ) ) . '" title="Manage Uploads" class="musublink">%sMB</a>' ), $quota ); ?></td>
     480                        <td class="first b b-posts"><?php printf( __( '<a href="%1$s" title="Manage Uploads" class="musublink">%2$sMB</a>' ), esc_url( admin_url( 'upload.php' ) ), $quota ); ?></td>
    481481                        <td class="t posts"><?php _e( 'Space Allowed' ); ?></td>
    482482                </tr>
     
    486486        <table>
    487487                <tr class="first">
    488                         <td class="b b-comments"><?php printf( __( '<a href="' . esc_url( admin_url( 'upload.php' ) ) . '" title="Manage Uploads" class="musublink">%1sMB (%2$s%%)</a>' ), $used, $percentused ); ?></td>
     488                        <td class="b b-comments"><?php printf( __( '<a href="%1$s" title="Manage Uploads" class="musublink">%2$sMB (%3$s%%)</a>' ), esc_url( admin_url( 'upload.php' ) ), $used, $percentused ); ?></td>
    489489                        <td class="last t comments <?php echo $used_color;?>"><?php _e( 'Space Used' );?></td>
    490490                </tr>
     
    776776        $mu_media_buttons = get_site_option( 'mu_media_buttons', array() );
    777777        if ( empty($mu_media_buttons['image']) && current_theme_supports( 'post-thumbnails' ) ) {
    778                 echo "<div id='update-nag'>" . sprintf( __( "Warning! The current theme supports post thumbnails. You must enable image uploads on <a href='%s'>the options page</a> for it to work." ), esc_url( admin_url( 'ms-options.php' ) ) ) . "</div>";
     778                echo "<div id='update-nag'>" . sprintf( __( "Warning! The current theme supports Featured Images. You must enable image uploads on <a href='%s'>the options page</a> for it to work." ), esc_url( admin_url( 'ms-options.php' ) ) ) . "</div>";
    779779        }
    780780}
Note: See TracChangeset for help on using the changeset viewer.