Skip to content

Commit c22d74d

Browse files
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. git-svn-id: https://develop.svn.wordpress.org/trunk@61410 602fd350-edb4-49c9-b593-d223f7449a82
1 parent bd57a12 commit c22d74d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/wp-admin/update-core.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -526,19 +526,19 @@ function list_plugin_updates() {
526526
// Get plugin compat for running version of WordPress.
527527
if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $cur_wp_version, '>=' ) ) {
528528
/* translators: %s: WordPress version. */
529-
$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: 100%% (according to its author)' ), $cur_wp_version );
529+
$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Yes (according to its author)' ), $cur_wp_version );
530530
} else {
531531
/* translators: %s: WordPress version. */
532-
$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Unknown' ), $cur_wp_version );
532+
$compat = '<br />' . sprintf( __( 'Compatibility with WordPress %s: Not tested' ), $cur_wp_version );
533533
}
534534
// Get plugin compat for updated version of WordPress.
535535
if ( $core_update_version ) {
536536
if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $core_update_version, '>=' ) ) {
537537
/* translators: %s: WordPress version. */
538-
$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: 100%% (according to its author)' ), $core_update_version );
538+
$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Yes (according to its author)' ), $core_update_version );
539539
} else {
540540
/* translators: %s: WordPress version. */
541-
$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Unknown' ), $core_update_version );
541+
$compat .= '<br />' . sprintf( __( 'Compatibility with WordPress %s: Not tested' ), $core_update_version );
542542
}
543543
}
544544

0 commit comments

Comments
 (0)