Hi Ubik,
You lost a lot when you go back to html templates, as a complete
Polish translation was available for php and also, dates formatting
has to be done on each webtag!
Check in your pages all webtags needing data format
<#TpressH format="à h'h'nn, 'le' d mmmm yyyy">
which give this result, in French : à 6h34, le 10 avril 2022
In php templates, you have only 4 lines to modify:
// Date formatted
$to = "to "; // Ex: to 20 may
$pre_time = "at "; // Ex: at 10:45
$pre_date = " on "; // Ex: on 25 may
$only_date = "On "; // Ex: On 25 may
Regards,
Jacques