Make WordPress Core


Ignore:
Timestamp:
04/01/2015 01:25:55 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Add translator comments for placeholders in network-related strings.

props ramiy.
fixes #31834.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network.php

    r31941 r31956  
    224224            <tr>
    225225                <th><label><input type="radio" name="subdomain_install" value="1"<?php checked( $subdomain_install ); ?> /> <?php _e( 'Sub-domains' ); ?></label></th>
    226                 <td><?php printf( _x( 'like <code>site1.%1$s</code> and <code>site2.%1$s</code>', 'subdomain examples' ), $hostname ); ?></td>
     226                <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
     230                ); ?></td>
    227231            </tr>
    228232            <tr>
    229233                <th><label><input type="radio" name="subdomain_install" value="0"<?php checked( ! $subdomain_install ); ?> /> <?php _e( 'Sub-directories' ); ?></label></th>
    230                 <td><?php printf( _x( 'like <code>%1$s/site1</code> and <code>%1$s/site2</code>', 'subdirectory examples' ), $hostname ); ?></td>
     234                <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
     238                ); ?></td>
    231239            </tr>
    232240        </table>
Note: See TracChangeset for help on using the changeset viewer.