Changeset 48202
- Timestamp:
- 06/28/2020 02:16:51 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r48148 r48202 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 ) ); … … 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 ); … … 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 );
Note: See TracChangeset
for help on using the changeset viewer.