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>
65 lines
2.2 KiB
JSON
65 lines
2.2 KiB
JSON
{
|
|
"customers": {
|
|
"title": "Kunden",
|
|
"customer": "Kunde",
|
|
"add_customer": "Kunde hinzufügen",
|
|
"edit_customer": "Kunde bearbeiten",
|
|
"customer_name": "Kundenname",
|
|
"customer_email": "Kunden-E-Mail",
|
|
"customer_phone": "Kundentelefon",
|
|
"customer_number": "Kundennummer",
|
|
"first_name": "Vorname",
|
|
"last_name": "Nachname",
|
|
"merchant": "Firma",
|
|
"total_orders": "Bestellungen gesamt",
|
|
"total_spent": "Gesamtausgaben",
|
|
"last_order": "Letzte Bestellung",
|
|
"registered": "Registriert",
|
|
"no_customers": "Keine Kunden gefunden",
|
|
"search_customers": "Kunden suchen..."
|
|
},
|
|
"features": {
|
|
"customer_view": {
|
|
"name": "Kundenansicht",
|
|
"description": "Kundeninformationen anzeigen und verwalten"
|
|
},
|
|
"customer_export": {
|
|
"name": "Kundenexport",
|
|
"description": "Kundendaten exportieren"
|
|
},
|
|
"customer_messaging": {
|
|
"name": "Kundennachrichten",
|
|
"description": "Nachrichten an Kunden senden"
|
|
}
|
|
},
|
|
"messages": {
|
|
"failed_to_toggle_customer_status": "Kundenstatus konnte nicht geändert werden",
|
|
"failed_to_load_customer_details": "Kundendetails konnten nicht geladen werden",
|
|
"failed_to_load_customer_orders": "Kundenbestellungen konnten nicht geladen werden"
|
|
},
|
|
"menu": {
|
|
"store_operations": "Shop-Betrieb",
|
|
"customers_section": "Kunden",
|
|
"customers": "Kunden",
|
|
"all_customers": "Alle Kunden"
|
|
},
|
|
"permissions": {
|
|
"customers_view": "Kunden anzeigen",
|
|
"customers_view_desc": "Kundenliste und Details anzeigen",
|
|
"customers_edit": "Kunden bearbeiten",
|
|
"customers_edit_desc": "Kundeninformationen ändern",
|
|
"customers_delete": "Kunden löschen",
|
|
"customers_delete_desc": "Kundendatensätze entfernen",
|
|
"customers_export": "Kunden exportieren",
|
|
"customers_export_desc": "Kundendaten exportieren"
|
|
},
|
|
"storefront": {
|
|
"account": {
|
|
"dashboard": "Dashboard",
|
|
"profile": "Profil",
|
|
"addresses": "Adressen",
|
|
"settings": "Einstellungen"
|
|
}
|
|
}
|
|
}
|