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>
99 lines
3.5 KiB
JSON
99 lines
3.5 KiB
JSON
{
|
|
"orders": {
|
|
"title": "Orders",
|
|
"order": "Order",
|
|
"order_id": "Order ID",
|
|
"order_number": "Order Number",
|
|
"order_date": "Order Date",
|
|
"order_status": "Order Status",
|
|
"order_details": "Order Details",
|
|
"order_items": "Order Items",
|
|
"order_total": "Order Total",
|
|
"subtotal": "Subtotal",
|
|
"shipping": "Shipping",
|
|
"tax": "Tax",
|
|
"discount": "Discount",
|
|
"customer": "Customer",
|
|
"shipping_address": "Shipping Address",
|
|
"billing_address": "Billing Address",
|
|
"payment_method": "Payment Method",
|
|
"payment_status": "Payment Status",
|
|
"tracking": "Tracking",
|
|
"tracking_number": "Tracking Number",
|
|
"carrier": "Carrier",
|
|
"no_orders": "No orders found",
|
|
"search_orders": "Search orders...",
|
|
"filter_by_status": "Filter by status",
|
|
"status_pending": "Pending",
|
|
"status_processing": "Processing",
|
|
"status_shipped": "Shipped",
|
|
"status_delivered": "Delivered",
|
|
"status_cancelled": "Cancelled",
|
|
"status_refunded": "Refunded",
|
|
"status_confirmed": "Confirmed",
|
|
"status_rejected": "Rejected",
|
|
"confirm_order": "Confirm Order",
|
|
"reject_order": "Reject Order",
|
|
"set_tracking": "Set Tracking",
|
|
"view_details": "View Details"
|
|
},
|
|
"permissions": {
|
|
"orders_view": "View Orders",
|
|
"orders_view_desc": "View order list and details",
|
|
"orders_edit": "Edit Orders",
|
|
"orders_edit_desc": "Update order status and details",
|
|
"orders_cancel": "Cancel Orders",
|
|
"orders_cancel_desc": "Cancel pending or processing orders",
|
|
"orders_refund": "Refund Orders",
|
|
"orders_refund_desc": "Process refunds for orders"
|
|
},
|
|
"messages": {
|
|
"order_status_updated": "Order status updated",
|
|
"item_shipped_successfully": "Item shipped successfully",
|
|
"all_items_shipped": "All items shipped",
|
|
"invoice_downloaded": "Invoice downloaded",
|
|
"failed_to_load_order_details": "Failed to load order details.",
|
|
"order_status_updated_successfully": "Order status updated successfully.",
|
|
"order_marked_as_shipped_successfully": "Order marked as shipped successfully.",
|
|
"no_shipping_label_url_available_for_this": "No shipping label URL available for this order."
|
|
},
|
|
"features": {
|
|
"orders_per_month": {
|
|
"name": "Monthly Orders",
|
|
"description": "Maximum orders per month",
|
|
"unit": "orders/month"
|
|
},
|
|
"order_history_months": {
|
|
"name": "Order History",
|
|
"description": "Months of order history retained",
|
|
"unit": "months"
|
|
},
|
|
"order_management": {
|
|
"name": "Order Management",
|
|
"description": "Full order management capabilities"
|
|
},
|
|
"order_bulk_actions": {
|
|
"name": "Bulk Actions",
|
|
"description": "Perform bulk actions on orders"
|
|
},
|
|
"order_export": {
|
|
"name": "Order Export",
|
|
"description": "Export order data"
|
|
},
|
|
"automation_rules": {
|
|
"name": "Automation Rules",
|
|
"description": "Automated order processing rules"
|
|
}
|
|
},
|
|
"menu": {
|
|
"store_operations": "Store Operations",
|
|
"sales_orders": "Sales & Orders",
|
|
"orders": "Orders"
|
|
},
|
|
"storefront": {
|
|
"account": {
|
|
"orders": "Orders"
|
|
}
|
|
}
|
|
}
|