index-shop/site/languages/fr.php
isUnknown b3940bba08 Add i18n support and cart total to Shopify integration
Implement multilingual support for shop interface and add total calculation to cart drawer:
- Add FR/EN translations for all shop-related texts (cart, checkout, stock status)
- Update templates and JavaScript to use translation system
- Add cart total calculation with formatted currency display
- Refactor cart drawer styles to SASS with improved button styling (black borders on +/-)
- Fix English product content (replace JSON with proper HTML)
- Extract cart drawer to separate snippet for better organization

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-14 12:02:55 +01:00

52 lines
1.8 KiB
PHP

<?php
return [
'code' => 'fr',
'default' => true,
'direction' => 'ltr',
'locale' => 'fr_FR',
'name' => 'Français',
'url' => '/',
'translations' => [
// Général
'backToHome' => 'Retour à l\'accueil',
'backToShop' => 'Retour à la boutique',
'supportText' => 'Pour nous soutenir, vous&nbsp;pouvez&nbsp;aussi',
'makeDonation' => 'faire un don',
// Shop / Cart
'addToCart' => 'Ajouter au panier',
'cart' => 'Panier',
'cartEmpty' => 'Votre panier est vide',
'total' => 'Total',
'checkout' => 'Passer commande',
'remove' => 'Retirer',
'inStock' => 'En stock',
'outOfStock' => 'Rupture de stock',
'addingToCart' => 'Ajout en cours...',
'addedToCart' => 'Ajouté ! ✓',
'errorAddToCart' => 'Erreur - Réessayer',
'closeCart' => 'Fermer le panier',
// Blueprints - Home
'home.title' => 'Accueil',
'home.baseline.label' => 'Baseline',
'home.products.headline' => 'Produits',
'home.settings.headline' => 'Paramètres',
// Blueprints - Product
'product.title' => 'Produit',
'product.description.label' => 'Description',
'product.details.label' => 'Détails',
'product.details.item.label' => 'Détail',
'product.price.label' => 'Prix (€)',
'product.backgroundColor.label' => 'Couleur de fond',
'product.stock.label' => 'Stock',
'product.stock.help' => 'Partagé entre les versions FR et EN',
'product.snipcartId.label' => 'Identifiant Snipcart',
'product.sizes.label' => 'Tailles disponibles',
'product.images.headline' => 'Images du produit',
'product.meta.headline' => 'Métadonnées',
'product.tab.content' => 'Contenu',
]
];