Compare commits
4 commits
c82def7c7f
...
2462383fd4
Author | SHA1 | Date | |
---|---|---|---|
2462383fd4 | |||
4869917a49 | |||
cd0bd63ff9 | |||
dde9f276bf |
3 changed files with 37 additions and 2 deletions
|
@ -224,6 +224,9 @@ Handle project workflows in a unified way:
|
||||||
* comment
|
* comment
|
||||||
* drawing characters constants
|
* drawing characters constants
|
||||||
* handle errors
|
* handle errors
|
||||||
|
* locales
|
||||||
|
* set unicode C
|
||||||
|
* set unicode language
|
||||||
* packages
|
* packages
|
||||||
* configure
|
* configure
|
||||||
* apk
|
* apk
|
||||||
|
|
|
@ -62,6 +62,7 @@ def install_python_packages() -> None:
|
||||||
run("pip", "install", "--upgrade", "pip")
|
run("pip", "install", "--upgrade", "pip")
|
||||||
split()
|
split()
|
||||||
packages = [
|
packages = [
|
||||||
|
"gitlint",
|
||||||
"hatch",
|
"hatch",
|
||||||
"mypy",
|
"mypy",
|
||||||
"pelican",
|
"pelican",
|
||||||
|
|
|
@ -176,8 +176,10 @@ _spcd_step_wipe() {
|
||||||
# │ _ │ txt │
|
# │ _ │ txt │
|
||||||
# ╰───┴─────╯
|
# ╰───┴─────╯
|
||||||
|
|
||||||
_SPCD_TXT_LANGUAGE_ENGLISH="en"
|
_SPCD_TXT_CHARSET="utf8"
|
||||||
_SPCD_TXT_LANGUAGE_FRENCH="fr"
|
_SPCD_TXT_LANGUAGE_DEFAULT="C"
|
||||||
|
_SPCD_TXT_LANGUAGE_ENGLISH="en_US"
|
||||||
|
_SPCD_TXT_LANGUAGE_FRENCH="fr_FR"
|
||||||
|
|
||||||
_spcd_txt_pick() {
|
_spcd_txt_pick() {
|
||||||
case "${SPCD_TXT_LANGUAGE}" in
|
case "${SPCD_TXT_LANGUAGE}" in
|
||||||
|
@ -329,6 +331,33 @@ spcd_txt_get() {
|
||||||
esac
|
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 │
|
# │ step │
|
||||||
# ╰──────╯
|
# ╰──────╯
|
||||||
|
@ -1324,6 +1353,8 @@ ${SPCD_PYTHON_ALIAS} / ${spcd_stp__name}"
|
||||||
|
|
||||||
spcd_main() {
|
spcd_main() {
|
||||||
# environment
|
# environment
|
||||||
|
spcd_txt_locale
|
||||||
|
#
|
||||||
spcd_step_in "Environment"
|
spcd_step_in "Environment"
|
||||||
spcd_step_in "Defaults"
|
spcd_step_in "Defaults"
|
||||||
spcd_step "Print defined"
|
spcd_step "Print defined"
|
||||||
|
|
Loading…
Reference in a new issue