diff --git a/app/templates/shop/account/order-detail.html b/app/templates/shop/account/order-detail.html index 1ee071b3..84e9ffcb 100644 --- a/app/templates/shop/account/order-detail.html +++ b/app/templates/shop/account/order-detail.html @@ -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); diff --git a/app/templates/shop/account/orders.html b/app/templates/shop/account/orders.html index fe3345bc..5a6f190b 100644 --- a/app/templates/shop/account/orders.html +++ b/app/templates/shop/account/orders.html @@ -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); diff --git a/app/templates/shop/account/profile.html b/app/templates/shop/account/profile.html index cf681aa5..75e8000b 100644 --- a/app/templates/shop/account/profile.html +++ b/app/templates/shop/account/profile.html @@ -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); diff --git a/app/templates/shop/products.html b/app/templates/shop/products.html index 7c4e2ddf..8265bfa7 100644 --- a/app/templates/shop/products.html +++ b/app/templates/shop/products.html @@ -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);