Files
homarr/public/locales/cn/zod.json
Thomas Camlong fc969e5042 New Crowdin updates (#1529)
Add Chinese traditional and Crowdin pseudo language (CR)
2023-10-31 09:12:59 +01:00

22 lines
785 B
JSON

{
"errors": {
"default": "该字段无效",
"required": "此字段为必填",
"string": {
"startsWith": "该字段必须以 {{startsWith}} 开头",
"endsWith": "该字段必须以 {{endsWith}} 结尾",
"includes": "该字段必须包含 {{includes}}"
},
"tooSmall": {
"string": "该字段的长度必须至少为 {{minimum}} 个字符",
"number": "该字段必须大于或等于 {{minimum}}"
},
"tooBig": {
"string": "该字段的长度不得超过 {{maximum}} 个字符",
"number": "该字段必须小于或等于 {{maximum}}"
},
"custom": {
"passwordMatch": "两次输入的密码必须一致"
}
}
}