From 683c1d2d8768d213d53d695ebbaeb1a8f18d357a Mon Sep 17 00:00:00 2001 From: gziolo Date: Thu, 5 Mar 2026 12:09:16 +0000 Subject: [PATCH] Connectors: Update the translation when Gutenberg files missing Follow-up [61825]. Props swissspidy. Built from https://develop.svn.wordpress.org/trunk@61845 git-svn-id: http://core.svn.wordpress.org/trunk@61132 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-connectors.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/options-connectors.php b/wp-admin/options-connectors.php index 30a42e575a..c67d857b2b 100644 --- a/wp-admin/options-connectors.php +++ b/wp-admin/options-connectors.php @@ -20,7 +20,7 @@ if ( ! current_user_can( 'manage_options' ) ) { if ( ! class_exists( '\WordPress\AiClient\AiClient' ) || ! function_exists( 'wp_options_connectors_wp_admin_render_page' ) ) { wp_die( - '

' . __( 'Connectors is not available.' ) . '

' . + '

' . __( 'Connectors are not available.' ) . '

' . '

' . __( 'The Connectors page requires build files. Please run npm install to build the necessary files.' ) . '

', 503 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index a815e94220..12dca02980 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '7.0-beta2-61844'; +$wp_version = '7.0-beta2-61845'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.