From d43e5d37ed4b176d6e393030308c1d9e1a37a11a Mon Sep 17 00:00:00 2001 From: MROS Date: Mon, 26 Feb 2024 01:22:22 +0800 Subject: [PATCH] Update tranditional chinese translation about "exact" case --- packages/core/locales/zh-TW/zod.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/core/locales/zh-TW/zod.json b/packages/core/locales/zh-TW/zod.json index d9efc6e..0138020 100644 --- a/packages/core/locales/zh-TW/zod.json +++ b/packages/core/locales/zh-TW/zod.json @@ -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}}" }, @@ -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}}" }, @@ -102,4 +108,4 @@ "map": "Map", "set": "Set" } -} \ No newline at end of file +}