File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/form_builder_validators/lib Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 51
51
"type": "text",
52
52
"placeholders": {}
53
53
},
54
- "equalErrorText": "Bu alanın değeri, {değer } değerine eşit olmalıdır.",
54
+ "equalErrorText": "Bu alanın değeri, {value } değerine eşit olmalıdır.",
55
55
"@equalErrorText": {
56
56
"description": "Error Text for equal validator",
57
57
"type": "text",
58
58
"placeholders": {
59
59
"value": {}
60
60
}
61
61
},
62
- "notEqualErrorText": "Bu alanın değeri, {değer } değerine eşit olmamalıdır.",
62
+ "notEqualErrorText": "Bu alanın değeri, {value } değerine eşit olmamalıdır.",
63
63
"@notEqualErrorText": {
64
64
"description": "Error Text for not-equal validator",
65
65
"type": "text",
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class MessageLookup extends MessageLookupByLibrary {
21
21
String get localeName => 'tr' ;
22
22
23
23
static String m0 (value) =>
24
- "Bu alanın değeri, {değer } değerine eşit olmalıdır." ;
24
+ "Bu alanın değeri, ${ value } değerine eşit olmalıdır." ;
25
25
26
26
static String m1 (max) => "Değer ${max } değerinden küçük veya eşit olmalıdır." ;
27
27
@@ -34,7 +34,7 @@ class MessageLookup extends MessageLookupByLibrary {
34
34
"Değerin uzunluğu ${minLength } değerinden büyük veya eşit olmalıdır." ;
35
35
36
36
static String m5 (value) =>
37
- "Bu alanın değeri, {değer } değerine eşit olmamalıdır." ;
37
+ "Bu alanın değeri, ${ value } değerine eşit olmamalıdır." ;
38
38
39
39
final messages = _notInlinedMessages (_notInlinedMessages);
40
40
static Map <String , Function > _notInlinedMessages (_) => < String , Function > {
You can’t perform that action at this time.
0 commit comments