From 8ae2f92fe81a454abe7029fc82314489306917ce Mon Sep 17 00:00:00 2001 From: Pig Monkey Date: Tue, 16 Jan 2024 15:59:40 -0800 Subject: [PATCH] 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. --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 2541b6e..969b363 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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