Changeset 61410
- Timestamp:
- 12/26/2025 01:05:01 PM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/update-core.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update-core.php
r61408 r61410 527 527 if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $cur_wp_version, '>=' ) ) { 528 528 /* 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 ); 530 530 } else { 531 531 /* 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 ); 533 533 } 534 534 // Get plugin compat for updated version of WordPress. … … 536 536 if ( isset( $plugin_data->update->tested ) && version_compare( $plugin_data->update->tested, $core_update_version, '>=' ) ) { 537 537 /* 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 ); 539 539 } else { 540 540 /* 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 ); 542 542 } 543 543 }
Note: See TracChangeset
for help on using the changeset viewer.