monetary/alpine
Some checks failed
/ arch (push) Successful in 3m43s
/ alpine (push) Successful in 1m58s
/ fedora (push) Successful in 12m57s
/ opensuse (push) Failing after 2m57s
/ alma (push) Successful in 12m33s
/ rocky (push) Successful in 13m17s
/ ubuntu (push) Successful in 7m12s
/ debian (push) Failing after 3m41s

This commit is contained in:
Marc Beninca 2024-09-06 22:22:14 +02:00
parent c64014d617
commit 74e2335cdb
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -887,9 +887,6 @@ spcd_txt_locale() {
;;
esac
local name
for name in "${@}"; do
echo "${name}"
done
case "${action}" in
"list")
if ! locale; then
@ -927,7 +924,12 @@ spcd_txt_locale() {
"LC_NUMERIC") regex="^\(decimal\|thousands\|grouping\)" ;;
"LC_TIME") regex="^\(day\|mon\)" ;;
# LC_COLLATE
"LC_MONETARY") regex="^\(int_curr\|currency\|mon_\)" ;;
"LC_MONETARY")
case "${SPCD_OS_ID}" in
"${SPCD_OS_ALPINE}") ;;
*) regex="^\(int_curr\|currency\|mon_\)" ;;
esac
;;
"LC_MESSAGES") regex="^\(yes\|no\)" ;;
"LC_PAPER") regex="^\(height\|width\)" ;;
"LC_NAME") regex="^name_m" ;;