first commit

This commit is contained in:
2026-03-30 16:55:04 +08:00
commit 8d04a0fd6e
133 changed files with 11587 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
# Authentication messages
auth.register.success=User registered successfully
auth.login.success=Login successful
auth.login.failure=Invalid username or password
auth.username.required=Username is required
auth.password.required=Password is required
auth.email.required=Email is required
auth.email.invalid=Invalid email format
auth.password.minlength=Password must be at least 6 characters
auth.username.minlength=Username must be at least 3 characters
auth.username.exists=Username already exists
# Product messages
product.create.success=Product created successfully
product.update.success=Product updated successfully
product.delete.success=Product deleted successfully
product.not.found=Product not found
product.title.required=Product title is required
product.price.required=Product price is required
product.price.positive=Product price must be positive
# Order messages
order.create.success=Order created successfully
order.update.success=Order updated successfully
order.not.found=Order not found
order.status.updated=Order status updated successfully
# Payment messages
payment.create.success=Payment created successfully
payment.update.success=Payment updated successfully
payment.not.found=Payment not found
payment.status.updated=Payment status updated successfully
# Logistics messages
logistics.create.success=Logistics created successfully
logistics.update.success=Logistics updated successfully
logistics.not.found=Logistics not found
logistics.status.updated=Logistics status updated successfully
# Alert messages
alert.create.success=Alert created successfully
alert.update.success=Alert updated successfully
alert.resolve.success=Alert resolved successfully
alert.not.found=Alert not found
# Monitoring messages
monitoring.health.ok=System health is OK
monitoring.health.error=System health check failed
monitoring.metrics.success=Performance metrics retrieved successfully
monitoring.services.success=Service status retrieved successfully
monitoring.database.success=Database status retrieved successfully
monitoring.cache.success=Cache status retrieved successfully
monitoring.stats.success=System stats retrieved successfully
# Common messages
common.success=Operation successful
common.error=Operation failed
common.invalid.request=Invalid request
common.missing.parameter=Missing required parameter
common.not.found=Resource not found
common.access.denied=Access denied
common.server.error=Server internal error