diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/init.sh | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/include/init.sh b/include/init.sh index 9d7bbd41..a0d44555 100644 --- a/include/init.sh +++ b/include/init.sh @@ -5,9 +5,23 @@ # Copyright (c) 2020-2026 Leah Rowe <leah@libreboot.org> # Copyright (c) 2025 Alper Nebi Yasak <alpernebiyasak@gmail.com> -export LANG=C.UTF-8 -export LC_COLLATE=C.UTF-8 -export LC_ALL=C.UTF-8 +utf_8="C.UTF-8" + +export LANG="$utf_8" +export LANGUAGE="$utf_8" +export LC_CTYPE="$utf_8" +export LC_NUMERIC="$utf_8" +export LC_TIME="$utf_8" +export LC_COLLATE="$utf_8" +export LC_MONETARY="$utf_8" +export LC_MESSAGES="$utf_8" +export LC_PAPER="$utf_8" +export LC_NAME="$utf_8" +export LC_ADDRESS="$utf_8" +export LC_TELEPHONE="$utf_8" +export LC_MEASUREMENT="$utf_8" +export LC_IDENTIFICATION="$utf_8" +export LC_ALL="$utf_8" projectname="libreboot" projectsite="https://libreboot.org/" |
