Make WordPress Core

Changeset 32472


Ignore:
Timestamp:
05/09/2015 07:18:00 PM (10 years ago)
Author:
ocean90
Message:

Sites List Table: Replace context with a translators comment for the site name and tagline.

props ramiy.
fixes #31849.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php

    r31833 r32472  
    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                            }
Note: See TracChangeset for help on using the changeset viewer.