Ticket #31835: 31835.patch
File 31835.patch, 1.3 KB (added by , 10 years ago) |
---|
-
network.php
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 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 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>' 230 231 ); ?></td> 231 232 </tr> 232 233 <tr> 233 234 <th><label><input type="radio" name="subdomain_install" value="0"<?php checked( ! $subdomain_install ); ?> /> <?php _e( 'Sub-directories' ); ?></label></th> 234 235 <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>' 238 240 ); ?></td> 239 241 </tr> 240 242 </table>