Compare commits

...

4 commits

Author SHA1 Message Date
2462383fd4
spcd_txt_locale
Some checks failed
/ arch (push) Successful in 2m37s
/ alpine (push) Successful in 1m53s
/ fedora (push) Successful in 12m24s
/ opensuse (push) Successful in 3m28s
/ alma (push) Successful in 12m5s
/ rocky (push) Successful in 12m31s
/ ubuntu (push) Successful in 5m28s
/ debian (push) Failing after 3m31s
2024-08-30 10:20:53 +02:00
4869917a49
gitlint 2024-08-30 10:05:52 +02:00
cd0bd63ff9
tasks/locales 2024-08-30 09:16:40 +02:00
dde9f276bf
txt/constants 2024-08-30 09:14:44 +02:00
3 changed files with 37 additions and 2 deletions

View file

@ -224,6 +224,9 @@ Handle project workflows in a unified way:
* comment
* drawing characters constants
* handle errors
* locales
* set unicode C
* set unicode language
* packages
* configure
* apk

View file

@ -62,6 +62,7 @@ def install_python_packages() -> None:
run("pip", "install", "--upgrade", "pip")
split()
packages = [
"gitlint",
"hatch",
"mypy",
"pelican",

View file

@ -176,8 +176,10 @@ _spcd_step_wipe() {
# │ _ │ txt │
# ╰───┴─────╯
_SPCD_TXT_LANGUAGE_ENGLISH="en"
_SPCD_TXT_LANGUAGE_FRENCH="fr"
_SPCD_TXT_CHARSET="utf8"
_SPCD_TXT_LANGUAGE_DEFAULT="C"
_SPCD_TXT_LANGUAGE_ENGLISH="en_US"
_SPCD_TXT_LANGUAGE_FRENCH="fr_FR"
_spcd_txt_pick() {
case "${SPCD_TXT_LANGUAGE}" in
@ -329,6 +331,33 @@ spcd_txt_get() {
esac
}
spcd_txt_locale() {
# LANGUAGE
if [ -n "${1}" ]; then
spcd_step__locale__value="${1}"
else
spcd_step__locale__value="${_SPCD_TXT_LANGUAGE_DEFAULT}"
fi
spcd_step__locale__value="${spcd_step__locale__value}.${_SPCD_TXT_CHARSET}"
set -- \
"LANG" \
"LC_CTYPE" \
"LC_NUMERIC" \
"LC_TIME" \
"LC_COLLATE" \
"LC_MONETARY" \
"LC_MESSAGES" \
"LC_PAPER" \
"LC_NAME" \
"LC_ADDRESS" \
"LC_TELEPHONE" \
"LC_MEASUREMENT" \
"LC_IDENTIFICATION"
for spcd_step__locale__name in "${@}"; do
export "${spcd_step__locale__name}=\"${spcd_step__locale__value}\""
done
}
# ╭──────╮
# │ step │
# ╰──────╯
@ -1324,6 +1353,8 @@ ${SPCD_PYTHON_ALIAS} / ${spcd_stp__name}"
spcd_main() {
# environment
spcd_txt_locale
#
spcd_step_in "Environment"
spcd_step_in "Defaults"
spcd_step "Print defined"