Make WordPress Core

Ticket #35679: 35679.patch

File 35679.patch, 1.4 KB (added by ramiy, 10 years ago)
  • wp-admin/plugins.php

     
    302302                                                $data_to_delete = false;
    303303                                                foreach ( $plugin_info as $plugin ) {
    304304                                                        if ( $plugin['is_uninstallable'] ) {
    305                                                                 /* translators: 1: plugin name, 2: plugin author */
    306                                                                 echo '<li>', sprintf( __( '<strong>%1$s</strong> by <em>%2$s</em> (will also <strong>delete its data</strong>)' ), $plugin['Name'], $plugin['AuthorName'] ), '</li>';
     305                                                                echo '<li>';
     306                                                                printf(
     307                                                                        /* translators: 1: plugin name, 2: plugin author */
     308                                                                        __( '%1$s by %2$s (will also <strong>delete its data</strong>)' ),
     309                                                                        '<strong>' . $plugin['Name'] . '</strong>',
     310                                                                        '<em>' . $plugin['AuthorName'] . '</em>'
     311                                                                );
     312                                                                echo '</li>';
    307313                                                                $data_to_delete = true;
    308314                                                        } else {
    309                                                                 /* translators: 1: plugin name, 2: plugin author */
    310                                                                 echo '<li>', sprintf( __('<strong>%1$s</strong> by <em>%2$s</em>' ), $plugin['Name'], $plugin['AuthorName'] ), '</li>';
     315                                                                echo '<li>';
     316                                                                printf(
     317                                                                        /* translators: 1: plugin name, 2: plugin author */
     318                                                                        __( '%1$s by %2$s' ),
     319                                                                        '<strong>' . $plugin['Name'] . '</strong>',
     320                                                                        '<em>' . $plugin['AuthorName'] . '</em>'
     321                                                                );
     322                                                                echo '</li>';
    311323                                                        }
    312324                                                }
    313325                                                ?>