Make WordPress Core


Ignore:
Timestamp:
11/18/2015 05:41:21 PM (9 years ago)
Author:
SergeyBiryukov
Message:

I18N: Move translatable Codex URLs to separate strings in wp-includes/ms-load.php.

Props ramiy.
Fixes #34687.

File:
1 edited

Legend:

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

    r35573 r35668  
    306306    }
    307307    $msg .= '<p><strong>' . __( 'What do I do now?' ) . '</strong> ';
    308     $msg .= __( 'Read the <a target="_blank" href="https://codex.wordpress.org/Debugging_a_WordPress_Network">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' );
     308    /* translators: %s: Codex URL */
     309    $msg .= sprintf( __( 'Read the <a href="%s" target="_blank">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ),
     310        __( 'https://codex.wordpress.org/Debugging_a_WordPress_Network' )
     311    );
    309312    $msg .= ' ' . __( 'If you&#8217;re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>';
    310313    foreach ( $wpdb->tables('global') as $t => $table ) {
Note: See TracChangeset for help on using the changeset viewer.