change time locale from en_DK to en_CA

I use en_DK purely to get YYYY-MM-DD date formats and 24 hour time, but
for some reason the Javascript Intl object considers en-DK to be
DD/MM/YYYY, so dates in my web browser are all nonsensical.

en_CA also uses YYYY-MM-DD and 24 hour time, and Javascript seems to
recognize this, so this change gets me sane dates in my browser.
This commit is contained in:
Pig Monkey 2024-01-16 15:59:40 -08:00
parent 3771432d0e
commit 8ae2f92fe8

View file

@ -83,7 +83,7 @@ Change root into the base install and perform base configuration tasks.
$ arch-chroot /mnt /bin/bash
$ export LANG=en_US.UTF-8
$ export TIME=en_DK.UTF-8
$ export TIME=en_CA.UTF-8
$ echo $LANG UTF-8 >> /etc/locale.gen
$ echo $TIME UTF-8 >> /etc/locale.gen
$ locale-gen