Make WordPress Core

Ticket #31849: 31849.2.patch

File 31849.2.patch, 805 bytes (added by ramiy, 9 years ago)
  • wp-admin/includes/class-wp-ms-sites-list-table.php

     
    265265                                                        <?php
    266266                                                        if ( 'list' != $mode ) {
    267267                                                                switch_to_blog( $blog['blog_id'] );
    268                                                                 echo '<p>' . sprintf( _x( '%1$s &#8211; <em>%2$s</em>', '%1$s: site name. %2$s: site tagline.' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '</p>';
     268                                                                /* translators: 1: site name. 2: site tagline. */
     269                                                                echo '<p>' . sprintf( __( '%1$s &#8211; <em>%2$s</em>', get_option( 'blogname' ), get_option( 'blogdescription ' ) ) ) . '</p>';
    269270                                                                restore_current_blog();
    270271                                                        }
    271272