It was from WP QUADS plugin the problem. Thank you
Thank you ,
i tried the filter and it is works
add_filter( ‘gettext’, ‘custom_admin_time_format’, 20, 3 );
function custom_admin_time_format( $translated_text, $untranslated_text, $domain ) {
if ( ‘g:i a’ === $untranslated_text ) {
return ‘H:i’;
}
}
return $translated_text;
}
Yes i downgrade to 6.7 and everything works again .