FleetCart/Modules/Report/Resources/lang/en/admin.php

113 lines
3.5 KiB
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
return [
'reports' => 'Reports',
'no_data' => 'No data available!',
'filter' => 'Filter',
'filters' => [
'report_type' => 'Report Type',
'report_types' => [
'coupons_report' => 'Coupons Report',
'customers_order_report' => 'Customers Order Report',
'products_purchase_report' => 'Products Purchase Report',
'products_stock_report' => 'Products Stock Report',
'products_view_report' => 'Products View Report',
'branded_products_report' => 'Branded Products Report',
'categorized_products_report' => 'Categorized Products Report',
'taxed_products_report' => 'Taxed Products Report',
'tagged_products_report' => 'Tagged Products Report',
'sales_report' => 'Sales Report',
'search_report' => 'Search Report',
'shipping_report' => 'Shipping Report',
'tax_report' => 'Tax Report',
],
'date_start' => 'Date Start',
'date_end' => 'Date End',
'group_by' => 'Group By',
'groups' => [
'days' => 'Days',
'weeks' => 'Weeks',
'months' => 'Months',
'years' => 'Years',
],
'please_select' => 'Please Select',
'status' => 'Order Status',
'coupon_code' => 'Coupon Code',
'customer_name' => 'Customer Name',
'customer_email' => 'Customer Email',
'product' => 'Product',
'sku' => 'SKU',
'brand' => 'Brand',
'category' => 'Category',
'tax_class' => 'Tax Class',
'tag' => 'Tag',
'keyword' => 'Keyword',
'quantity_below' => 'Quantity Below',
'quantity_above' => 'Quantity Above',
'stock_availability' => 'Stock Availability',
'stock_availability_states' => [
'in_stock' => 'In Stock',
'out_of_stock' => 'Out of Stock',
],
'shipping_method' => 'Shipping Method',
'tax_name' => 'Tax Name',
],
'table' => [
'date' => 'Date',
'orders' => 'Orders',
'products' => 'Products',
'product' => 'Product',
'products_count' => 'Products Count',
'total' => 'Total',
2023-12-03 14:07:47 +00:00
# coupons_report
2023-06-11 12:14:03 +00:00
'coupon_name' => 'Coupon Name',
'coupon_code' => 'Coupon Code',
2023-12-03 14:07:47 +00:00
# customer orders report
2023-06-11 12:14:03 +00:00
'customer_name' => 'Customer Email',
'customer_email' => 'Customer Email',
'customer_group' => 'Customer Group',
'guest' => 'Guest',
'registered' => 'Registered',
2023-12-03 14:07:47 +00:00
# products purchase report
2023-06-11 12:14:03 +00:00
'qty' => 'Qty',
2023-12-03 14:07:47 +00:00
# products stock report
2023-06-11 12:14:03 +00:00
'stock_availability' => 'Stock Availability',
2023-12-03 14:07:47 +00:00
# products view report
2023-06-11 12:14:03 +00:00
'views' => 'Views',
2023-12-03 14:07:47 +00:00
# branded products report
2023-06-11 12:14:03 +00:00
'brand' => 'Brand',
2023-12-03 14:07:47 +00:00
# category products report
2023-06-11 12:14:03 +00:00
'category' => 'Category',
2023-12-03 14:07:47 +00:00
# taxed products report
2023-06-11 12:14:03 +00:00
'tax_class' => 'Tax Class',
2023-12-03 14:07:47 +00:00
# tagged products report
2023-06-11 12:14:03 +00:00
'tag' => 'Tag',
2023-12-03 14:07:47 +00:00
# sales report
2023-06-11 12:14:03 +00:00
'subtotal' => 'Subtotal',
'shipping' => 'Shipping',
'discount' => 'Discount',
'tax' => 'Tax',
2023-12-03 14:07:47 +00:00
# search report
2023-06-11 12:14:03 +00:00
'keyword' => 'Keyword',
'results' => 'Results',
'hits' => 'Hits',
2023-12-03 14:07:47 +00:00
# shipping report
2023-06-11 12:14:03 +00:00
'shipping_method' => 'Shipping Method',
2023-12-03 14:07:47 +00:00
# tax report
2023-06-11 12:14:03 +00:00
'tax_name' => 'Tax Name',
],
];