Compare commits

...

8 commits

Author SHA1 Message Date
4e645dfc0c
test/numeric
Some checks failed
/ arch (push) Failing after 8s
/ alpine (push) Failing after 7s
/ fedora (push) Failing after 7s
/ debian (push) Failing after 8s
/ opensuse (push) Failing after 7s
/ ubuntu (push) Failing after 7s
/ alma (push) Failing after 7s
/ rocky (push) Failing after 7s
2024-09-06 18:30:10 +02:00
0108214a37
test/monetary 2024-09-06 18:23:07 +02:00
f315142e24
test/name 2024-09-06 18:16:18 +02:00
fc79e9d394
test/measure 2024-09-06 18:02:17 +02:00
c23ef10014
test/paper 2024-09-06 17:40:50 +02:00
0e4073755b
test/addr 2024-09-06 17:29:15 +02:00
f83166cbfd
test/phone 2024-09-06 17:24:39 +02:00
8eb88e4a88
test/id 2024-09-06 17:20:33 +02:00

View file

@ -1234,21 +1234,38 @@ spcd_step__packages_install_locales() {
spcd_step "Test"
# CTYPE
# NUMERIC
spcd_split
locale --keyword-name LC_NUMERIC | grep "^\(decimal\|thousands\|grouping\)"
# TIME
spcd_split
locale --keyword-name LC_TIME | grep "^\(day\|mon\)"
# COLLATE
# MONETARY
spcd_split
locale --keyword-name LC_MONETARY | grep "^\(int_curr\|currency\|mon_\)"
# MESSAGES
spcd_split
locale --keyword-name LC_MESSAGES | grep "^\(yes\|no\)"
#
# PAPER
spcd_split
locale --keyword-name LC_PAPER | grep "^\(height\|width\)"
# NAME
spcd_split
locale --keyword-name LC_NAME | grep "^name_m"
# ADDRESS
spcd_split
locale --keyword-name LC_ADDRESS | grep "^\(country\|lang\)_name"
# TELEPHONE
spcd_split
locale --keyword-name LC_TELEPHONE | grep "^int_"
# MEASUREMENT
spcd_split
locale --keyword-name LC_MEASUREMENT | grep "^measurement="
# IDENTIFICATION
spcd_split
locale --keyword-name LC_IDENTIFICATION |
grep "^\(language\|territory\|title\)"
spcd_step_out
}