added translations to StatisticsInfo
This commit is contained in:
@@ -128,5 +128,12 @@
|
|||||||
"orderDetails": "Bestelldetails",
|
"orderDetails": "Bestelldetails",
|
||||||
"orderId": "Bestellnummer",
|
"orderId": "Bestellnummer",
|
||||||
"date": "Datum",
|
"date": "Datum",
|
||||||
"moveToNextStatus": "Zum nächsten Status"
|
"moveToNextStatus": "Zum nächsten Status",
|
||||||
}
|
"salesStatistics": "Verkaufsstatistiken",
|
||||||
|
"monthlySalesVolume": "Monatliches Verkaufsvolumen",
|
||||||
|
"monthlySalesRevenue": "Monatlicher Umsatz in €",
|
||||||
|
"itemVolumeDistribution": "Verteilung der Artikelmenge",
|
||||||
|
"itemRevenueDistribution": "Verteilung des Artikelumsatzes",
|
||||||
|
"stockFulfillment": "Bestandserfüllung",
|
||||||
|
"orderStatus": "Bestellstatus"
|
||||||
|
}
|
||||||
@@ -128,5 +128,12 @@
|
|||||||
"orderDetails": "Order Details",
|
"orderDetails": "Order Details",
|
||||||
"orderId": "Order Number",
|
"orderId": "Order Number",
|
||||||
"date": "Date",
|
"date": "Date",
|
||||||
"moveToNextStatus": "Move to Next Status"
|
"moveToNextStatus": "Move to Next Status",
|
||||||
|
"salesStatistics": "Sales Statistics",
|
||||||
|
"monthlySalesVolume": "Monthly Sales Volume",
|
||||||
|
"monthlySalesRevenue": "Monthly Sales Revenue in €",
|
||||||
|
"itemVolumeDistribution": "Item Volume Distribution",
|
||||||
|
"itemRevenueDistribution": "Item Revenue Distribution",
|
||||||
|
"stockFulfillment": "Stock fulfillment",
|
||||||
|
"orderStatus": "Order Status"
|
||||||
}
|
}
|
||||||
@@ -160,12 +160,12 @@ export default function StatisticsInfo() {
|
|||||||
return (
|
return (
|
||||||
<Box className="" sx={{ color: theme.palette.text.primary }}>
|
<Box className="" sx={{ color: theme.palette.text.primary }}>
|
||||||
<Typography mt={4} variant="h4" align="center" gutterBottom>
|
<Typography mt={4} variant="h4" align="center" gutterBottom>
|
||||||
Sales Statistics
|
{t("salesStatistics")}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Box sx={{ mb: 4 }}>
|
<Box sx={{ mb: 4 }}>
|
||||||
<Typography variant="h6" align="center" gutterBottom>
|
<Typography variant="h6" align="center" gutterBottom>
|
||||||
Monthly Sales Volume
|
{t("monthlySalesVolume")}
|
||||||
</Typography>
|
</Typography>
|
||||||
<BarChart
|
<BarChart
|
||||||
series={monthlyVolume}
|
series={monthlyVolume}
|
||||||
@@ -175,7 +175,7 @@ export default function StatisticsInfo() {
|
|||||||
</Box>
|
</Box>
|
||||||
<Box sx={{ mb: 4 }}>
|
<Box sx={{ mb: 4 }}>
|
||||||
<Typography variant="h6" align="center" gutterBottom>
|
<Typography variant="h6" align="center" gutterBottom>
|
||||||
Monthly Sales Revenue in €
|
{t("monthlySalesRevenue")}
|
||||||
</Typography>
|
</Typography>
|
||||||
<BarChart
|
<BarChart
|
||||||
series={monthlyRevenue}
|
series={monthlyRevenue}
|
||||||
@@ -186,7 +186,7 @@ export default function StatisticsInfo() {
|
|||||||
<Box display={"flex"} mb={9}>
|
<Box display={"flex"} mb={9}>
|
||||||
<Box className="vw20" sx={{ m: 2 }}>
|
<Box className="vw20" sx={{ m: 2 }}>
|
||||||
<Typography variant="h6" align="center" gutterBottom>
|
<Typography variant="h6" align="center" gutterBottom>
|
||||||
Item Volume Distribution
|
{t("itemVolumeDistribution")}
|
||||||
</Typography>
|
</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
series={[{
|
series={[{
|
||||||
@@ -201,7 +201,7 @@ export default function StatisticsInfo() {
|
|||||||
|
|
||||||
<Box className="vw20" sx={{ m: 2 }}>
|
<Box className="vw20" sx={{ m: 2 }}>
|
||||||
<Typography variant="h6" align="center" gutterBottom>
|
<Typography variant="h6" align="center" gutterBottom>
|
||||||
Item Revenue Distribution
|
{t("itemRevenueDistribution")}
|
||||||
</Typography>
|
</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
series={[{
|
series={[{
|
||||||
@@ -215,7 +215,7 @@ export default function StatisticsInfo() {
|
|||||||
</Box>
|
</Box>
|
||||||
<Box className="vw20" sx={{ m: 2 }}>
|
<Box className="vw20" sx={{ m: 2 }}>
|
||||||
<Typography variant="h6" align="center" gutterBottom>
|
<Typography variant="h6" align="center" gutterBottom>
|
||||||
Stock fulfillment
|
{t("stockFulfillment")}
|
||||||
</Typography>
|
</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
series={[{
|
series={[{
|
||||||
@@ -231,7 +231,7 @@ export default function StatisticsInfo() {
|
|||||||
</Box>
|
</Box>
|
||||||
<Box className="vw20" sx={{ m: 2 }}>
|
<Box className="vw20" sx={{ m: 2 }}>
|
||||||
<Typography variant="h6" align="center" gutterBottom>
|
<Typography variant="h6" align="center" gutterBottom>
|
||||||
Order Status
|
{t("orderStatus")}
|
||||||
</Typography>
|
</Typography>
|
||||||
<PieChart
|
<PieChart
|
||||||
series={[{
|
series={[{
|
||||||
|
|||||||
Reference in New Issue
Block a user