Commit bb7b1208b6 for wordpress.org

commit bb7b1208b657497711c0f191235abccbc374a4e6
Author: afercia <afercia@git.wordpress.org>
Date:   Tue Sep 8 12:31:55 2026 +0000

    Administration: Correct Font Library and Connectors message when build files are not available.

    The previous message asked to run `npm install`, which is no longer the right command to build Gutenberg files in Core. Uses simpler messages instead.

    Developed in https://github.com/WordPress/wordpress-develop/pull/13365

    Props iamchitti, afercia.
    Fixes #66022.

    Built from https://develop.svn.wordpress.org/trunk@63531


    git-svn-id: http://core.svn.wordpress.org/trunk@62707 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/font-library.php b/wp-admin/font-library.php
index abc2ea4f4d..0daff32ba5 100644
--- a/wp-admin/font-library.php
+++ b/wp-admin/font-library.php
@@ -18,11 +18,11 @@ if ( ! current_user_can( 'edit_theme_options' ) ) {
 	);
 }

-// Check if Gutenberg build files are available
+// Check if the build files are available.
 if ( ! function_exists( 'wp_font_library_wp_admin_render_page' ) ) {
 	wp_die(
-		'<h1>' . __( 'Font Library is not available.' ) . '</h1>' .
-		'<p>' . __( 'The Font Library requires Gutenberg build files. Please run <code>npm install</code> to build the necessary files.' ) . '</p>',
+		'<h1>' . __( 'The Font Library is not available.' ) . '</h1>' .
+		'<p>' . __( 'The Font Library requires build files. Please build WordPress and try again.' ) . '</p>',
 		503
 	);
 }
diff --git a/wp-admin/options-connectors.php b/wp-admin/options-connectors.php
index c67d857b2b..ddad78f4f1 100644
--- a/wp-admin/options-connectors.php
+++ b/wp-admin/options-connectors.php
@@ -20,8 +20,8 @@ if ( ! current_user_can( 'manage_options' ) ) {

 if ( ! class_exists( '\WordPress\AiClient\AiClient' ) || ! function_exists( 'wp_options_connectors_wp_admin_render_page' ) ) {
 	wp_die(
-		'<h1>' . __( 'Connectors are not available.' ) . '</h1>' .
-		'<p>' . __( 'The Connectors page requires build files. Please run <code>npm install</code> to build the necessary files.' ) . '</p>',
+		'<h1>' . __( 'The Connectors are not available.' ) . '</h1>' .
+		'<p>' . __( 'The Connectors page requires build files. Please build WordPress and try again.' ) . '</p>',
 		503
 	);
 }
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 823a4ec357..653aaaf313 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63530';
+$wp_version = '7.2-alpha-63531';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.