use german locale in epoch_to_dt helper

This commit is contained in:
Daniel Friesel 2020-04-19 17:09:02 +02:00
parent ec83af2523
commit a3cfa598a6

View file

@ -39,7 +39,8 @@ sub epoch_to_dt {
return DateTime->from_epoch(
epoch => $epoch,
time_zone => 'Europe/Berlin'
time_zone => 'Europe/Berlin',
locale => 'de-DE',
);
}