Improve the frontend 2
This commit is contained in:
100
frontend/src/locales/en/models.json
Normal file
100
frontend/src/locales/en/models.json
Normal file
@@ -0,0 +1,100 @@
|
||||
{
|
||||
"page_title": "AI Models Configuration",
|
||||
"page_description": "Manage training and configuration of prediction models for each ingredient",
|
||||
|
||||
"status": {
|
||||
"active": "Active",
|
||||
"no_model": "No Model",
|
||||
"training": "Training",
|
||||
"retraining": "Retraining",
|
||||
"error": "Error"
|
||||
},
|
||||
|
||||
"retrain": {
|
||||
"title": "Retrain Model",
|
||||
"subtitle": "Update the prediction model with recent data",
|
||||
|
||||
"modes": {
|
||||
"quick": "Quick",
|
||||
"preset": "Preset",
|
||||
"advanced": "Advanced"
|
||||
},
|
||||
|
||||
"quick": {
|
||||
"title": "Quick Retrain",
|
||||
"ingredient": "Ingredient",
|
||||
"current_accuracy": "Current Accuracy",
|
||||
"last_training": "Last Training",
|
||||
"description": "Description",
|
||||
"description_text": "Quick retraining uses the same configuration as the current model but with the most recent data. This keeps the model accuracy up to date without changing its behavior."
|
||||
},
|
||||
|
||||
"preset": {
|
||||
"title": "Select Configuration",
|
||||
"ingredient": "Ingredient",
|
||||
"select": "Product Type",
|
||||
"description": "Description",
|
||||
"seasonality_mode": "Seasonality Mode",
|
||||
"daily": "Daily Seasonality",
|
||||
"weekly": "Weekly Seasonality",
|
||||
"yearly": "Yearly Seasonality"
|
||||
},
|
||||
|
||||
"advanced": {
|
||||
"title": "Advanced Configuration",
|
||||
"ingredient": "Ingredient",
|
||||
"start_date": "Start Date",
|
||||
"start_date_help": "Leave empty to use all available data",
|
||||
"end_date": "End Date",
|
||||
"end_date_help": "Leave empty to use up to current date",
|
||||
"seasonality_mode": "Seasonality Mode",
|
||||
"seasonality_mode_help": "Additive: constant changes. Multiplicative: proportional changes.",
|
||||
"seasonality_patterns": "Seasonal Patterns",
|
||||
"daily_seasonality": "Daily Seasonality",
|
||||
"daily_seasonality_help": "Patterns that repeat every day",
|
||||
"weekly_seasonality": "Weekly Seasonality",
|
||||
"weekly_seasonality_help": "Patterns that repeat every week",
|
||||
"yearly_seasonality": "Yearly Seasonality",
|
||||
"yearly_seasonality_help": "Patterns that repeat every year (holidays, seasons)"
|
||||
}
|
||||
},
|
||||
|
||||
"presets": {
|
||||
"standard": {
|
||||
"name": "Standard Bakery",
|
||||
"description": "Recommended for products with weekly patterns and daily cycles. Ideal for bread and daily baked goods."
|
||||
},
|
||||
"seasonal": {
|
||||
"name": "Seasonal Products",
|
||||
"description": "For products with seasonal or seasonal demand. Includes annual patterns for holidays and special events."
|
||||
},
|
||||
"stable": {
|
||||
"name": "Stable Demand",
|
||||
"description": "For basic ingredients with constant demand. Minimal seasonality."
|
||||
},
|
||||
"custom": {
|
||||
"name": "Custom",
|
||||
"description": "Advanced configuration with full control over parameters."
|
||||
}
|
||||
},
|
||||
|
||||
"seasonality": {
|
||||
"additive": "Additive",
|
||||
"multiplicative": "Multiplicative"
|
||||
},
|
||||
|
||||
"actions": {
|
||||
"train": "Train",
|
||||
"retrain": "Retrain",
|
||||
"view_details": "View Details",
|
||||
"cancel": "Cancel",
|
||||
"save": "Save"
|
||||
},
|
||||
|
||||
"messages": {
|
||||
"training_started": "Training started for {{name}}",
|
||||
"training_error": "Error starting training",
|
||||
"retraining_started": "Retraining started for {{name}}",
|
||||
"retraining_error": "Error retraining model"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user