Make WordPress Core

Ticket #35988: 35988.patch

File 35988.patch, 792 bytes (added by ramiy, 10 years ago)
  • wp-admin/network/themes.php

     
    143143                                        <ul class="ul-disc">
    144144                                        <?php
    145145                                                foreach ( $theme_info as $theme ) {
    146                                                         /* translators: 1: theme name, 2: theme author */
    147                                                         echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $theme->display('Name'), $theme->display('Author') ), '</li>';
     146                                                        echo '<li>' . sprintf(
     147                                                                /* translators: 1: theme name, 2: theme author */
     148                                                                __( '%1$s by %2$s' ),
     149                                                                '<strong>' . $theme->display('Name') . '</strong>',
     150                                                                '<em>' . $theme->display('Author') . '</em>'
     151                                                        ) . '</li>';
    148152                                                }
    149153                                        ?>
    150154                                        </ul>