Commit 4b738b966a for wordpress.org

commit 4b738b966a9e7255cddc9d8827916a779da7e936
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Fri Dec 26 13:06:38 2025 +0000

    Plugins: Update plugin compatibility text to remove obsolete percentage-based number.

    Follow-up to [12157], [12407], [42631].

    Props danieltj, bridgetwillard, davidbaumwald, subrataemfluence, garrett-eclipse, SergeyBiryukov.
    Fixes #44090.
    Built from https://develop.svn.wordpress.org/trunk@61410


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

diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php
index 564b22d431..aab3bdd259 100644
--- a/wp-admin/update-core.php
+++ b/wp-admin/update-core.php
@@ -526,19 +526,19 @@ function list_plugin_updates() {
 		// Get plugin compat for running version of WordPress.
 		if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $cur_wp_version, '>=' ) ) {
 			/* translators: %s: WordPress version. */
-			$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: 100%% (according to its author)' ), $cur_wp_version );
+			$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Yes (according to its author)' ), $cur_wp_version );
 		} else {
 			/* translators: %s: WordPress version. */
-			$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Unknown' ), $cur_wp_version );
+			$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Not tested' ), $cur_wp_version );
 		}
 		// Get plugin compat for updated version of WordPress.
 		if ( $core_update_version ) {
 			if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $core_update_version, '>=' ) ) {
 				/* translators: %s: WordPress version. */
-				$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: 100%% (according to its author)' ), $core_update_version );
+				$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Yes (according to its author)' ), $core_update_version );
 			} else {
 				/* translators: %s: WordPress version. */
-				$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Unknown' ), $core_update_version );
+				$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Not tested' ), $core_update_version );
 			}
 		}

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 5ef1c7f177..bb0679409f 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61409';
+$wp_version = '7.0-alpha-61410';

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