zsh: use english for messages

This commit is contained in:
tastytea 2023-12-21 16:28:51 +01:00
parent 28045ac29d
commit 614bf60479
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -85,6 +85,11 @@ if [[ "${LC_TIME}" != "en_DK.utf8" ]] && command -v locale > /dev/null; then
[[ "$(locale --all-locales)" == *en_DK* ]] && export LC_TIME="en_DK.utf8" [[ "$(locale --all-locales)" == *en_DK* ]] && export LC_TIME="en_DK.utf8"
fi fi
# Use english messages
if [[ "${LC_MESSAGES}" != "en_US.utf8" ]] && command -v locale > /dev/null; then
[[ "$(locale --all-locales)" == *en_US* ]] && export LC_MESSAGES="en_US.utf8"
fi
export CCACHE_DIR="/var/cache/ccache" export CCACHE_DIR="/var/cache/ccache"
# Set terminal # Set terminal