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

View File

@@ -0,0 +1,62 @@
# Authentication messages
auth.register.success=用户注册成功
auth.login.success=登录成功
auth.login.failure=用户名或密码错误
auth.username.required=用户名不能为空
auth.password.required=密码不能为空
auth.email.required=邮箱不能为空
auth.email.invalid=邮箱格式错误
auth.password.minlength=密码至少6个字符
auth.username.minlength=用户名至少3个字符
auth.username.exists=用户名已存在
# Product messages
product.create.success=商品创建成功
product.update.success=商品更新成功
product.delete.success=商品删除成功
product.not.found=商品不存在
product.title.required=商品标题不能为空
product.price.required=商品价格不能为空
product.price.positive=商品价格必须大于0
# Order messages
order.create.success=订单创建成功
order.update.success=订单更新成功
order.not.found=订单不存在
order.status.updated=订单状态更新成功
# Payment messages
payment.create.success=支付创建成功
payment.update.success=支付更新成功
payment.not.found=支付不存在
payment.status.updated=支付状态更新成功
# Logistics messages
logistics.create.success=物流创建成功
logistics.update.success=物流更新成功
logistics.not.found=物流不存在
logistics.status.updated=物流状态更新成功
# Alert messages
alert.create.success=告警创建成功
alert.update.success=告警更新成功
alert.resolve.success=告警已解决
alert.not.found=告警不存在
# Monitoring messages
monitoring.health.ok=系统健康状态良好
monitoring.health.error=系统健康检查失败
monitoring.metrics.success=性能指标获取成功
monitoring.services.success=服务状态获取成功
monitoring.database.success=数据库状态获取成功
monitoring.cache.success=缓存状态获取成功
monitoring.stats.success=系统统计信息获取成功
# Common messages
common.success=操作成功
common.error=操作失败
common.invalid.request=无效的请求
common.missing.parameter=缺少必要参数
common.not.found=资源不存在
common.access.denied=访问被拒绝
common.server.error=服务器内部错误