Make WordPress Core

Ticket #31835: 31835.patch

File 31835.patch, 1.3 KB (added by ramiy, 10 years ago)
  • network.php

     
    224224                        <tr>
    225225                                <th><label><input type="radio" name="subdomain_install" value="1"<?php checked( $subdomain_install ); ?> /> <?php _e( 'Sub-domains' ); ?></label></th>
    226226                                <td><?php printf(
    227                                         /* translators: 1: hostname */
    228                                         _x( 'like <code>site1.%1$s</code> and <code>site2.%1$s</code>', 'subdomain examples' ),
    229                                         $hostname
     227                                        /* translators: 1: sub-domain example 1. 2: sub-domain example 2. */
     228                                        __( 'like %1$s and %2$s' ),
     229                                        '<code>site1.' . $hostname . '</code>',
     230                                        '<code>site2.' . $hostname . '</code>'
    230231                                ); ?></td>
    231232                        </tr>
    232233                        <tr>
    233234                                <th><label><input type="radio" name="subdomain_install" value="0"<?php checked( ! $subdomain_install ); ?> /> <?php _e( 'Sub-directories' ); ?></label></th>
    234235                                <td><?php printf(
    235                                         /* translators: 1: hostname */
    236                                         _x( 'like <code>%1$s/site1</code> and <code>%1$s/site2</code>', 'subdirectory examples' ),
    237                                         $hostname
     236                                        /* translators: 1: sub-directory example 1. 2: sub-directory example 2. */
     237                                        __( 'like %1$s and %2$s' ),
     238                                        '<code>' . $hostname . '/site1</code>',
     239                                        '<code>' . $hostname . '/site2</code>'
    238240                                ); ?></td>
    239241                        </tr>
    240242                </table>