Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tranditional chinese translation about "exact" case #200

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/core/locales/zh-TW/zod.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@
},
"too_small": {
"array": {
"exact": "必須恰好包含 {{minimum}} 個元素",
"inclusive": "至少需要包含 {{minimum}} 個元素",
"not_inclusive": "必須包含多於 {{minimum}} 個元素"
},
"string": {
"exact": "必須恰好 {{minimum}} 個字元",
"inclusive": "至少需要包含 {{minimum}} 個字元",
"not_inclusive": "必須包含多於 {{minimum}} 個字元"
},
"number": {
"exact": "必須是 {{minimum}}",
"inclusive": "必須大於或等於 {{minimum}}",
"not_inclusive": "必須大於 {{minimum}}"
},
Expand All @@ -50,14 +53,17 @@
},
"too_big": {
"array": {
"exact": "必須恰好包含 {{maximum}} 個元素",
"inclusive": "最多只能包含 {{maximum}} 個元素",
"not_inclusive": "必須少於 {{maximum}} 個元素"
},
"string": {
"exact": "必須恰好 {{maximum}} 個字元",
"inclusive": "最多只能包含 {{maximum}} 個字元",
"not_inclusive": "必須少於 {{maximum}} 個字元"
},
"number": {
"exact": "必須是 {{maximum}}",
"inclusive": "必須小於或等於 {{maximum}}",
"not_inclusive": "必須小於 {{maximum}}"
},
Expand Down Expand Up @@ -102,4 +108,4 @@
"map": "Map",
"set": "Set"
}
}
}