Changeset 34299 for trunk/src/wp-admin/includes/network.php
- Timestamp:
- 09/18/2015 06:39:20 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/network.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/network.php
r34292 r34299 121 121 if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443' ) ) ) ) { 122 122 echo '<div class="error"><p><strong>' . __( 'ERROR:') . '</strong> ' . __( 'You cannot install a network of sites with your server address.' ) . '</p></div>'; 123 echo '<p>' . sprintf( __( 'You cannot use port numbers such as %s.' ), '<code>' . $has_ports . '</code>' ) . '</p>'; 123 echo '<p>' . sprintf( 124 /* translators: %s: port number */ 125 __( 'You cannot use port numbers such as %s.' ), 126 '<code>' . $has_ports . '</code>' 127 ) . '</p>'; 124 128 echo '<a href="' . esc_url( admin_url() ) . '">' . __( 'Return to Dashboard' ) . '</a>'; 125 129 echo '</div>'; … … 210 214 <td> 211 215 <?php printf( 212 /* translators: host name */216 /* translators: %s: host name */ 213 217 __( 'The internet address of your network will be %s.' ), 214 218 '<code>' . $hostname . '</code>' … … 254 258 <td> 255 259 <?php printf( 256 /* translators: host name */260 /* translators: %s: host name */ 257 261 __( 'The internet address of your network will be %s.' ), 258 262 '<code>' . $hostname . '</code>'
Note: See TracChangeset
for help on using the changeset viewer.