Ticket #50489: 50489.patch
File 50489.patch, 1.1 KB (added by , 4 years ago) |
---|
-
src/wp-admin/includes/update.php
984 984 985 985 // Check if the event exists. 986 986 if ( false === $next_update_time ) { 987 $message = __( 'Auto -updateupdate not scheduled. There may be a problem with WP-Cron.' );987 $message = __( 'Automatic update not scheduled. There may be a problem with WP-Cron.' ); 988 988 } else { 989 989 $time_to_next_update = human_time_diff( intval( $next_update_time ) ); 990 990 … … 994 994 if ( $overdue ) { 995 995 $message = sprintf( 996 996 /* translators: %s: Duration that WP-Cron has been overdue. */ 997 __( 'Auto -updateupdate overdue by %s. There may be a problem with WP-Cron.' ),997 __( 'Automatic update overdue by %s. There may be a problem with WP-Cron.' ), 998 998 $time_to_next_update 999 999 ); 1000 1000 } else { 1001 1001 $message = sprintf( 1002 1002 /* translators: %s: Time until the next update. */ 1003 __( 'Auto -updateupdate scheduled in %s.' ),1003 __( 'Automatic update scheduled in %s.' ), 1004 1004 $time_to_next_update 1005 1005 ); 1006 1006 }