deploy #1

Merged
smueller merged 30 commits from deploy into main 2026-07-24 08:41:09 +00:00
Showing only changes of commit f1d74f922d - Show all commits

View File

@@ -43,7 +43,9 @@ $formatNumber = static function (int $value) use ($numberLocale): string {
return $formatted; return $formatted;
} }
} }
return number_format($value, 0, $locale === 'de' ? ',' : '.', $locale === 'de' ? '.' : ','); $decimal = $numberLocale === 'de_DE' ? ',' : '.';
$thousands = $numberLocale === 'de_DE' ? '.' : ',';
return number_format($value, 0, $decimal, $thousands);
}; };
/** @var array<string, array{label: string, modules: list<array{label: string, description: string}>}> $groups */ /** @var array<string, array{label: string, modules: list<array{label: string, description: string}>}> $groups */