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": "Customers",
|
|
"customer": "Customer",
|
|
"add_customer": "Add Customer",
|
|
"edit_customer": "Edit Customer",
|
|
"customer_name": "Customer Name",
|
|
"customer_email": "Customer Email",
|
|
"customer_phone": "Customer Phone",
|
|
"customer_number": "Customer Number",
|
|
"first_name": "First Name",
|
|
"last_name": "Last Name",
|
|
"merchant": "Merchant",
|
|
"total_orders": "Total Orders",
|
|
"total_spent": "Total Spent",
|
|
"last_order": "Last Order",
|
|
"registered": "Registered",
|
|
"no_customers": "No customers found",
|
|
"search_customers": "Search customers..."
|
|
},
|
|
"permissions": {
|
|
"customers_view": "View Customers",
|
|
"customers_view_desc": "View customer list and details",
|
|
"customers_edit": "Edit Customers",
|
|
"customers_edit_desc": "Modify customer information",
|
|
"customers_delete": "Delete Customers",
|
|
"customers_delete_desc": "Remove customer records",
|
|
"customers_export": "Export Customers",
|
|
"customers_export_desc": "Export customer data to files"
|
|
},
|
|
"messages": {
|
|
"failed_to_toggle_customer_status": "Failed to toggle customer status",
|
|
"failed_to_load_customer_details": "Failed to load customer details",
|
|
"failed_to_load_customer_orders": "Failed to load customer orders"
|
|
},
|
|
"features": {
|
|
"customer_view": {
|
|
"name": "Customer View",
|
|
"description": "View and manage customer information"
|
|
},
|
|
"customer_export": {
|
|
"name": "Customer Export",
|
|
"description": "Export customer data"
|
|
},
|
|
"customer_messaging": {
|
|
"name": "Customer Messaging",
|
|
"description": "Send messages to customers"
|
|
}
|
|
},
|
|
"menu": {
|
|
"store_operations": "Store Operations",
|
|
"customers_section": "Customers",
|
|
"customers": "Customers",
|
|
"all_customers": "All Customers"
|
|
},
|
|
"storefront": {
|
|
"account": {
|
|
"dashboard": "Dashboard",
|
|
"profile": "Profile",
|
|
"addresses": "Addresses",
|
|
"settings": "Settings"
|
|
}
|
|
}
|
|
}
|