fix: use fr-LU locale for currency formatting (29,99 €)

Update all shop templates to use French Luxembourg locale which
displays the Euro sign after the number: 29,99 €

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-02 20:40:45 +01:00
parent 25a2eef979
commit d9d34ab102
4 changed files with 4 additions and 4 deletions

View File

@@ -464,7 +464,7 @@ function shopOrderDetailPage() {
formatPrice(amount) {
if (!amount && amount !== 0) return '-';
return new Intl.NumberFormat('de-DE', {
return new Intl.NumberFormat('fr-LU', {
style: 'currency',
currency: 'EUR'
}).format(amount);

View File

@@ -219,7 +219,7 @@ function shopOrdersPage() {
formatPrice(amount) {
if (!amount && amount !== 0) return '-';
return new Intl.NumberFormat('de-DE', {
return new Intl.NumberFormat('fr-LU', {
style: 'currency',
currency: 'EUR'
}).format(amount);

View File

@@ -525,7 +525,7 @@ function shopProfilePage() {
formatPrice(amount) {
if (!amount && amount !== 0) return '-';
return new Intl.NumberFormat('de-DE', {
return new Intl.NumberFormat('fr-LU', {
style: 'currency',
currency: 'EUR'
}).format(amount);

View File

@@ -209,7 +209,7 @@ document.addEventListener('alpine:init', () => {
formatPrice(amount) {
if (!amount && amount !== 0) return '';
return new Intl.NumberFormat('de-DE', {
return new Intl.NumberFormat('fr-LU', {
style: 'currency',
currency: 'EUR'
}).format(amount);