Skip to content

Commit 6233c0e

Browse files
fix: intl zh-hant
1 parent bec718c commit 6233c0e

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

lib/l10n/intl_zh_Hant.arb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,103 @@
11
{
22
"@@last_modified": "2021-12-24T02:25:04.576038Z",
33
"@@locale": "zh_Hant",
4-
"requiredErrorText": "此字段不能為空。",
4+
"requiredErrorText": "此欄位不能為空。",
55
"@requiredErrorText": {
66
"description": "Error Text for required field",
77
"type": "text",
88
"placeholders": {}
99
},
10-
"equalErrorText": "此字段必須與{value}相符",
10+
"equalErrorText": "此欄位必須與{value}相符",
1111
"@equalErrorText": {
1212
"type": "text",
1313
"description": "Error Text for equal validator",
1414
"placeholders": {
1515
"value": {}
1616
}
1717
},
18-
"notEqualErrorText": "此字段不得等於{value}",
18+
"notEqualErrorText": "此欄位不得等於{value}",
1919
"@notEqualErrorText": {
2020
"type": "text",
2121
"description": "Error Text for not-equal validator",
2222
"placeholders": {
2323
"value": {}
2424
}
2525
},
26-
"minErrorText": "此字段必須大於或等於{min}",
26+
"minErrorText": "此欄位必須大於或等於{min}",
2727
"@minErrorText": {
2828
"type": "text",
2929
"description": "Error Text for required field",
3030
"placeholders": {
3131
"min": {}
3232
}
3333
},
34-
"minLengthErrorText": "此字段的長度必須大於或等於{minLength}",
34+
"minLengthErrorText": "此欄位的長度必須大於或等於{minLength}",
3535
"@minLengthErrorText": {
3636
"type": "text",
3737
"description": "Error Text for required field",
3838
"placeholders": {
3939
"minLength": {}
4040
}
4141
},
42-
"maxErrorText": "此字段必須小於或等於{max}",
42+
"maxErrorText": "此欄位必須小於或等於{max}",
4343
"@maxErrorText": {
4444
"type": "text",
4545
"description": "Error Text for required field",
4646
"placeholders": {
4747
"max": {}
4848
}
4949
},
50-
"maxLengthErrorText": "此字段的長度必須小於或等於{maxLength}",
50+
"maxLengthErrorText": "此欄位的長度必須小於或等於{maxLength}",
5151
"@maxLengthErrorText": {
5252
"type": "text",
5353
"description": "Error Text for required field",
5454
"placeholders": {
5555
"maxLength": {}
5656
}
5757
},
58-
"emailErrorText": "此字段需要有效的電子郵件地址。",
58+
"emailErrorText": "此欄位需要有效的電子郵件地址。",
5959
"@emailErrorText": {
6060
"type": "text",
6161
"description": "Error Text for email field",
6262
"placeholders": {}
6363
},
64-
"urlErrorText": "此字段需要有效的URL地址。",
64+
"urlErrorText": "此欄位需要有效的URL地址。",
6565
"@urlErrorText": {
6666
"type": "text",
6767
"description": "Error Text for URL field",
6868
"placeholders": {}
6969
},
70-
"matchErrorText": "此字段與格式不匹配。",
70+
"matchErrorText": "此欄位與格式不匹配。",
7171
"@matchErrorText": {
7272
"type": "text",
7373
"description": "Error Text for pattern field",
7474
"placeholders": {}
7575
},
76-
"numericErrorText": "此字段必須是數字。",
76+
"numericErrorText": "此欄位必須是數字。",
7777
"@numericErrorText": {
7878
"type": "text",
7979
"description": "Error Text for numeric field",
8080
"placeholders": {}
8181
},
82-
"integerErrorText": "此字段需要有效的整數。",
82+
"integerErrorText": "此欄位需要有效的整數。",
8383
"@integerErrorText": {
8484
"type": "text",
8585
"description": "Error Text for integer validator",
8686
"placeholders": {}
8787
},
88-
"creditCardErrorText": "此字段需要有效的信用卡號碼。",
88+
"creditCardErrorText": "此欄位需要有效的信用卡號碼。",
8989
"@creditCardErrorText": {
9090
"type": "text",
9191
"description": "Error Text for credit card field",
9292
"placeholders": {}
9393
},
94-
"dateStringErrorText": "此字段需要有效的日期字符串。",
94+
"dateStringErrorText": "此欄位需要有效的日期字符串。",
9595
"@dateStringErrorText": {
9696
"type": "text",
9797
"description": "Error Text for date string field",
9898
"placeholders": {}
9999
},
100-
"ipErrorText": "此字段需要有效的IP。",
100+
"ipErrorText": "此欄位需要有效的IP。",
101101
"@ipErrorText": {
102102
"type": "text",
103103
"description": "Error Text for IP address field",

lib/localization/intl/messages_zh_Hant.dart

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,37 +20,37 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
2020
class MessageLookup extends MessageLookupByLibrary {
2121
String get localeName => 'zh_Hant';
2222

23-
static String m0(value) => "此字段必須與${value}相符";
23+
static String m0(value) => "此欄位必須與${value}相符";
2424

25-
static String m1(max) => "此字段必須小於或等於${max}";
25+
static String m1(max) => "此欄位必須小於或等於${max}";
2626

27-
static String m2(maxLength) => "此字段的長度必須小於或等於${maxLength}";
27+
static String m2(maxLength) => "此欄位的長度必須小於或等於${maxLength}";
2828

29-
static String m3(min) => "此字段必須大於或等於${min}";
29+
static String m3(min) => "此欄位必須大於或等於${min}";
3030

31-
static String m4(minLength) => "此字段的長度必須大於或等於${minLength}";
31+
static String m4(minLength) => "此欄位的長度必須大於或等於${minLength}";
3232

33-
static String m5(value) => "此字段不得等於${value}";
33+
static String m5(value) => "此欄位不得等於${value}";
3434

3535
final messages = _notInlinedMessages(_notInlinedMessages);
3636
static Map<String, Function> _notInlinedMessages(_) => <String, Function>{
3737
"creditCardErrorText":
38-
MessageLookupByLibrary.simpleMessage("此字段需要有效的信用卡號碼。"),
38+
MessageLookupByLibrary.simpleMessage("此欄位需要有效的信用卡號碼。"),
3939
"dateStringErrorText":
40-
MessageLookupByLibrary.simpleMessage("此字段需要有效的日期字符串。"),
40+
MessageLookupByLibrary.simpleMessage("此欄位需要有效的日期字符串。"),
4141
"emailErrorText":
42-
MessageLookupByLibrary.simpleMessage("此字段需要有效的電子郵件地址。"),
42+
MessageLookupByLibrary.simpleMessage("此欄位需要有效的電子郵件地址。"),
4343
"equalErrorText": m0,
44-
"integerErrorText": MessageLookupByLibrary.simpleMessage("此字段需要有效的整數。"),
45-
"ipErrorText": MessageLookupByLibrary.simpleMessage("此字段需要有效的IP。"),
46-
"matchErrorText": MessageLookupByLibrary.simpleMessage("此字段與格式不匹配。"),
44+
"integerErrorText": MessageLookupByLibrary.simpleMessage("此欄位需要有效的整數。"),
45+
"ipErrorText": MessageLookupByLibrary.simpleMessage("此欄位需要有效的IP。"),
46+
"matchErrorText": MessageLookupByLibrary.simpleMessage("此欄位與格式不匹配。"),
4747
"maxErrorText": m1,
4848
"maxLengthErrorText": m2,
4949
"minErrorText": m3,
5050
"minLengthErrorText": m4,
5151
"notEqualErrorText": m5,
52-
"numericErrorText": MessageLookupByLibrary.simpleMessage("此字段必須是數字。"),
53-
"requiredErrorText": MessageLookupByLibrary.simpleMessage("此字段不能為空。"),
54-
"urlErrorText": MessageLookupByLibrary.simpleMessage("此字段需要有效的URL地址。")
52+
"numericErrorText": MessageLookupByLibrary.simpleMessage("此欄位必須是數字。"),
53+
"requiredErrorText": MessageLookupByLibrary.simpleMessage("此欄位不能為空。"),
54+
"urlErrorText": MessageLookupByLibrary.simpleMessage("此欄位需要有效的URL地址。")
5555
};
5656
}

0 commit comments

Comments
 (0)