Some checks failed
Storefront homepage & module gating:
- CMS owns storefront GET / (slug="home" with 3-tier resolution)
- Catalog loses GET / (keeps /products only)
- Store root redirect (GET / → /store/dashboard or /store/login)
- Route gating: non-core modules return 404 when disabled for platform
- Seed store default homepages per platform
Widget protocol for customer dashboard:
- StorefrontDashboardCard contract in widgets.py
- Widget aggregator get_storefront_dashboard_cards()
- Orders and Loyalty module widget providers
- Dashboard template renders contributed cards (no module names)
Landing template module-agnostic:
- CTAs driven by storefront_nav (not hardcoded module names)
- Header actions check nav item IDs (not enabled_modules)
- Remove hardcoded "Add Product" sidebar button
- Remove all enabled_modules checks from storefront templates
i18n fixes:
- Title placeholder resolution ({{store_name}}) for store default pages
- Storefront nav label_keys prefixed with module code
- Add storefront.account.* keys to 6 modules (en/fr/de/lb)
- Header/footer CMS pages use get_translated_title(current_language)
- Footer labels use i18n keys instead of hardcoded English
Icon cleanup:
- Standardize on map-pin (remove location-marker alias)
- Replace all location-marker references across templates and docs
Docs:
- Storefront builder vision proposal (6 phases)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
102 lines
3.9 KiB
JSON
102 lines
3.9 KiB
JSON
{
|
|
"products": {
|
|
"title": "Produits",
|
|
"product": "Produit",
|
|
"add_product": "Ajouter un produit",
|
|
"edit_product": "Modifier le produit",
|
|
"delete_product": "Supprimer le produit",
|
|
"product_name": "Nom du produit",
|
|
"product_code": "Code produit",
|
|
"sku": "SKU",
|
|
"price": "Prix",
|
|
"sale_price": "Prix de vente",
|
|
"cost": "Coût",
|
|
"stock": "Stock",
|
|
"in_stock": "En stock",
|
|
"out_of_stock": "Rupture de stock",
|
|
"low_stock": "Stock faible",
|
|
"availability": "Disponibilité",
|
|
"available": "Disponible",
|
|
"unavailable": "Indisponible",
|
|
"brand": "Marque",
|
|
"category": "Catégorie",
|
|
"categories": "Catégories",
|
|
"image": "Image",
|
|
"images": "Images",
|
|
"main_image": "Image principale",
|
|
"gallery": "Galerie",
|
|
"weight": "Poids",
|
|
"dimensions": "Dimensions",
|
|
"color": "Couleur",
|
|
"size": "Taille",
|
|
"material": "Matériau",
|
|
"condition": "État",
|
|
"new": "Neuf",
|
|
"used": "Occasion",
|
|
"refurbished": "Reconditionné",
|
|
"no_products": "Aucun produit trouvé",
|
|
"search_products": "Rechercher des produits...",
|
|
"filter_by_category": "Filtrer par catégorie",
|
|
"filter_by_status": "Filtrer par statut",
|
|
"sort_by": "Trier par",
|
|
"sort_newest": "Plus récent",
|
|
"sort_oldest": "Plus ancien",
|
|
"sort_price_low": "Prix : croissant",
|
|
"sort_price_high": "Prix : décroissant",
|
|
"sort_name_az": "Nom : A-Z",
|
|
"sort_name_za": "Nom : Z-A"
|
|
},
|
|
"messages": {
|
|
"product_deleted_successfully": "Product deleted successfully",
|
|
"please_fill_in_all_required_fields": "Please fill in all required fields",
|
|
"product_updated_successfully": "Product updated successfully",
|
|
"failed_to_load_media_library": "Failed to load media library",
|
|
"no_store_associated_with_this_product": "No store associated with this product",
|
|
"please_select_an_image_file": "Please select an image file",
|
|
"image_must_be_less_than_10mb": "Image must be less than 10MB",
|
|
"image_uploaded_successfully": "Image uploaded successfully",
|
|
"product_removed_from_store_catalog": "Product removed from store catalog.",
|
|
"please_select_a_store": "Please select a store",
|
|
"please_enter_a_product_title_english": "Please enter a product title (English)",
|
|
"product_created_successfully": "Product created successfully",
|
|
"please_select_a_store_first": "Please select a store first"
|
|
},
|
|
"features": {
|
|
"products_limit": {
|
|
"name": "Produits",
|
|
"description": "Nombre maximum de produits dans le catalogue",
|
|
"unit": "produits"
|
|
},
|
|
"product_import_export": {
|
|
"name": "Import/Export",
|
|
"description": "Import et export en masse de produits"
|
|
}
|
|
},
|
|
"menu": {
|
|
"products_inventory": "Produits et Inventaire",
|
|
"all_products": "Tous les produits"
|
|
},
|
|
"permissions": {
|
|
"products_view": "Voir les produits",
|
|
"products_view_desc": "Voir le catalogue de produits",
|
|
"products_create": "Créer des produits",
|
|
"products_create_desc": "Ajouter de nouveaux produits au catalogue",
|
|
"products_edit": "Modifier les produits",
|
|
"products_edit_desc": "Modifier les détails des produits existants",
|
|
"products_delete": "Supprimer les produits",
|
|
"products_delete_desc": "Retirer des produits du catalogue",
|
|
"products_import": "Importer les produits",
|
|
"products_import_desc": "Importation en masse de produits",
|
|
"products_export": "Exporter les produits",
|
|
"products_export_desc": "Exporter les données produits"
|
|
},
|
|
"storefront": {
|
|
"nav": {
|
|
"products": "Produits"
|
|
},
|
|
"actions": {
|
|
"search": "Rechercher"
|
|
}
|
|
}
|
|
}
|