Ticket #37777: 37777.patch
| File 37777.patch, 922 bytes (added by , 9 years ago) |
|---|
-
wp-admin/includes/network.php
144 144 $error_codes = $errors->get_error_codes(); 145 145 } 146 146 147 $site_name = ( ! empty( $_POST['sitename'] ) && ! in_array( 'empty_sitename', $error_codes ) ) ? $_POST['sitename'] : sprintf( _x('%s Sites', 'Default network name' ), get_option( 'blogname' ) ); 147 /* translators: %s: Default network name */ 148 $site_name = ( ! empty( $_POST['sitename'] ) && ! in_array( 'empty_sitename', $error_codes ) ) ? $_POST['sitename'] : sprintf( __( '%s Sites' ), get_option( 'blogname' ) ); 148 149 $admin_email = ( ! empty( $_POST['email'] ) && ! in_array( 'invalid_email', $error_codes ) ) ? $_POST['email'] : get_option( 'admin_email' ); 149 150 ?> 150 151 <p><?php _e( 'Welcome to the Network installation process!' ); ?></p>