Changeset 57136 for trunk/src/wp-admin/update-core.php
- Timestamp:
- 11/26/2023 04:41:34 PM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/update-core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/update-core.php
r56665 r57136 1106 1106 1107 1107 echo '<p class="update-last-checked">'; 1108 /* translators: 1: Date, 2: Time. */ 1109 printf( __( 'Last checked on %1$s at %2$s.' ), date_i18n( __( 'F j, Y' ), $last_update_check ), date_i18n( __( 'g:i a T' ), $last_update_check ) ); 1108 1109 printf( 1110 /* translators: 1: Date, 2: Time. */ 1111 __( 'Last checked on %1$s at %2$s.' ), 1112 /* translators: Last update date format. See https://www.php.net/manual/datetime.format.php */ 1113 date_i18n( __( 'F j, Y' ), $last_update_check ), 1114 /* translators: Last update time format. See https://www.php.net/manual/datetime.format.php */ 1115 date_i18n( __( 'g:i a T' ), $last_update_check ) 1116 ); 1110 1117 echo ' <a href="' . esc_url( self_admin_url( 'update-core.php?force-check=1' ) ) . '">' . __( 'Check again.' ) . '</a>'; 1111 1118 echo '</p>';
Note: See TracChangeset
for help on using the changeset viewer.