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>
54 lines
1.8 KiB
JSON
54 lines
1.8 KiB
JSON
{
|
|
"title": "Warenkorb",
|
|
"description": "Warenkorbverwaltung für Kunden",
|
|
"cart": {
|
|
"title": "Ihr Warenkorb",
|
|
"empty": "Ihr Warenkorb ist leer",
|
|
"empty_subtitle": "Fügen Sie Artikel hinzu, um einzukaufen",
|
|
"continue_shopping": "Weiter einkaufen",
|
|
"proceed_to_checkout": "Zur Kasse"
|
|
},
|
|
"item": {
|
|
"product": "Produkt",
|
|
"quantity": "Menge",
|
|
"price": "Preis",
|
|
"total": "Gesamt",
|
|
"remove": "Entfernen",
|
|
"update": "Aktualisieren"
|
|
},
|
|
"summary": {
|
|
"title": "Bestellübersicht",
|
|
"subtotal": "Zwischensumme",
|
|
"shipping": "Versand",
|
|
"estimated_shipping": "Wird an der Kasse berechnet",
|
|
"tax": "MwSt.",
|
|
"total": "Gesamtsumme"
|
|
},
|
|
"validation": {
|
|
"invalid_quantity": "Ungültige Menge",
|
|
"min_quantity": "Mindestmenge ist {min}",
|
|
"max_quantity": "Höchstmenge ist {max}",
|
|
"insufficient_inventory": "Nur {available} verfügbar"
|
|
},
|
|
"messages": {
|
|
"item_added": "Artikel zum Warenkorb hinzugefügt",
|
|
"item_updated": "Warenkorb aktualisiert",
|
|
"item_removed": "Artikel aus dem Warenkorb entfernt",
|
|
"cart_cleared": "Warenkorb geleert",
|
|
"product_not_available": "Produkt nicht verfügbar",
|
|
"error_adding": "Fehler beim Hinzufügen zum Warenkorb",
|
|
"error_updating": "Fehler beim Aktualisieren des Warenkorbs"
|
|
},
|
|
"permissions": {
|
|
"view": "Warenkörbe anzeigen",
|
|
"view_desc": "Warenkörbe der Kunden anzeigen",
|
|
"manage": "Warenkörbe verwalten",
|
|
"manage_desc": "Warenkörbe der Kunden bearbeiten und verwalten"
|
|
},
|
|
"storefront": {
|
|
"actions": {
|
|
"cart": "Warenkorb"
|
|
}
|
|
}
|
|
}
|