dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit a50cc947ab184ccf770b23b316aa17b3467a3a16
parent 66cd010825737135b1df8389be1a089c7e6aac3b
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed,  8 Sep 2021 16:54:43 -0700

Make en_CA.UTF-8 locale default other than money

Both FreeBSD and Linux understand that Canadian spelling is just UK
spelling with -ize endings (which are what the OED prefers for that
matter).

Unfortunately macOS/iOS assume that Canadian English is US English.
Google products, for the most part, ignore the existence of Canadian
English, but do recognize Canadian French, leading to lovely behaviours
like YouTube defaulting to Français (Canada) when viewed with a browser
set to English (Canada). *shrug*

This sets the values back to their proper values since, for the most
part, I don't use macOS if I can avoid it.

Diffstat:
M.zshenv | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.zshenv b/.zshenv @@ -8,14 +8,14 @@ export EDITOR=vim export PAGER=less # Set language to Australian English, currency to Japanese Yen. -export LANG=en_AU.UTF-8 -export LANGUAGE=en_AU.UTF-8 -export LC_COLLATE=en_AU.UTF-8 -export LC_CTYPE=en_AU.UTF-8 -export LC_MESSAGES=en_AU.UTF-8 +export LANG=en_CA.UTF-8 +export LANGUAGE=en_CA.UTF-8 +export LC_COLLATE=en_CA.UTF-8 +export LC_CTYPE=en_CA.UTF-8 +export LC_MESSAGES=en_CA.UTF-8 export LC_MONETARY=ja_JP.UTF-8 -export LC_NUMERIC=en_AU.UTF-8 -export LC_TIME=en_AU.UTF-8 +export LC_NUMERIC=en_CA.UTF-8 +export LC_TIME=en_CA.UTF-8 # GPG directory and TTY used for pinentry. export GNUPGHOME="$HOME/.gnupg"