From 0ee7a4cd101a66bbecc042a9896007e202a7c652 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Sun, 3 Apr 2022 14:32:45 +0530 Subject: [PATCH] locale: Make sure we have a sane locale configuration It is really annoying when a fresh install decides the locale should be en_IN which is nonsense and annoying because it breaks rendering of other symbols. Setting LANG seems not enough and some of the others still default to en_IN. So explicitly set everything to en_US.UTF-8. --- locale/.config/locale.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 locale/.config/locale.conf diff --git a/locale/.config/locale.conf b/locale/.config/locale.conf new file mode 100644 index 0000000..aef08c1 --- /dev/null +++ b/locale/.config/locale.conf @@ -0,0 +1,13 @@ +LANG=en_US.UTF-8 +LC_CTYPE="en_US.UTF-8" +LC_NUMERIC=en_US.UTF-8 +LC_TIME=en_US.UTF-8 +LC_COLLATE="en_US.UTF-8" +LC_MONETARY=en_US.UTF-8 +LC_MESSAGES="en_US.UTF-8" +LC_PAPER=en_US.UTF-8 +LC_NAME=en_US.UTF-8 +LC_ADDRESS=en_US.UTF-8 +LC_TELEPHONE=en_US.UTF-8 +LC_MEASUREMENT=en_US.UTF-8 +LC_IDENTIFICATION=en_US.UTF-8