On 31/07/2026 07:49, Collin Funk wrote:
+  for loc in C "$LOCALE_FR" "$LOCALE_FR_UTF8"; do
+    test -z "$loc" && continue
+    thousands_sep=$(LC_ALL=$loc locale thousands_sep)
+    test -z "$thousands_sep" && continue
+    for f in exp exp1; do
+      LC_ALL=$loc \
+        sed 's/^\([0-9][0-9]*\)\([0-9]\{3\}\)/\1'"$thousands_sep"'\2/g' $f \
+          >$loc$f || framework_failure_
+    done

It's probably worth verifying "grouping" also.

  grouping=$(LC_ALL=$loc locale grouping)
  test "$grouping" != 3 && continue

cheers,
Padraig

Reply via email to