Make WordPress Core

Ticket #37777: 37777.patch

File 37777.patch, 922 bytes (added by ramiy, 9 years ago)
  • wp-admin/includes/network.php

     
    144144                $error_codes = $errors->get_error_codes();
    145145        }
    146146
    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' ) );
    148149        $admin_email = ( ! empty( $_POST['email'] ) && ! in_array( 'invalid_email', $error_codes ) ) ? $_POST['email'] : get_option( 'admin_email' );
    149150        ?>
    150151        <p><?php _e( 'Welcome to the Network installation process!' ); ?></p>