This commit is contained in:
Hanson.xyz Dev
2026-01-04 17:50:08 -06:00
parent 7e45ce0756
commit acc8ac87a0
4131 changed files with 232562 additions and 250244 deletions
@@ -461,7 +461,7 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
echo esc_html( $status_object->label );
if ( $timestamp ) {
echo ' (' . $this->get_timestamp_as_date( $timestamp ) . ')';
echo '<span class="status-date">' . $this->get_timestamp_as_date( $timestamp ) . '</span>';
}
echo '</span>';
@@ -487,7 +487,14 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
return sprintf( __( '%s ago' ), human_time_diff( $timestamp ) );
}
return date_i18n( get_option( 'date_format' ), $timestamp );
return sprintf(
/* translators: 1: privacy request date format, 2: privacy request time format. */
__( '%1$s at %2$s' ),
/* translators: privacy request date format. See https://www.php.net/manual/en/datetime.format.php */
date_i18n( __( 'Y/m/d' ), $timestamp ),
/* translators: privacy request time format. See https://www.php.net/manual/en/datetime.format.php */
date_i18n( __( 'g:i a' ), $timestamp )
);
}
/**