Changeset 31956 for trunk/src/wp-admin/network.php
- Timestamp:
- 04/01/2015 01:25:55 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network.php
r31941 r31956 224 224 <tr> 225 225 <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> 227 231 </tr> 228 232 <tr> 229 233 <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> 231 239 </tr> 232 240 </table>
Note: See TracChangeset
for help on using the changeset viewer.