Skip to content

Commit bec718c

Browse files
Merge pull request #9 from abratanovic/bratan
Bosnian and Croatian support, Slovenian update
2 parents 091af26 + 3100eca commit bec718c

File tree

9 files changed

+494
-109
lines changed

9 files changed

+494
-109
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,11 @@ Validators support default errorText messages in this languages:
6565

6666
- Arabic (ar)
6767
- Bangla (bn)
68+
- Bosnian (bs)
6869
- Catalan (ca)
6970
- Chinese Simplified (zh_Hans)
7071
- Chinese Traditional (zh_Hant)
72+
- Croatian (hr)
7173
- Czech (cs)
7274
- English (en)
7375
- Estonian (et)

lib/l10n/intl_bs.arb

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"@@last_modified": "2020-11-13T10:38:27.938366",
3+
"@@locale": "bs",
4+
"requiredErrorText": "Ovo polje ne smije biti prazno.",
5+
"@requiredErrorText": {
6+
"description": "Error Text for required validator",
7+
"type": "text",
8+
"placeholders": {}
9+
},
10+
"equalErrorText": "Vrijednost mora biti jednaka {value}.",
11+
"@equalErrorText": {
12+
"description": "Error Text for equal validator",
13+
"type": "text",
14+
"placeholders": {
15+
"value": {}
16+
}
17+
},
18+
"notEqualErrorText": "Vrijednost ne smije biti jednaka {value}.",
19+
"@notEqualErrorText": {
20+
"description": "Error Text for not-equal validator",
21+
"type": "text",
22+
"placeholders": {
23+
"value": {}
24+
}
25+
},
26+
"minErrorText": "Vrijednost mora biti veća ili jednaka {min}.",
27+
"@minErrorText": {
28+
"description": "Error Text for required field",
29+
"type": "text",
30+
"placeholders": {
31+
"min": {}
32+
}
33+
},
34+
"minLengthErrorText": "Vrijednost mora biti duža ili jednaka {minLength} znakova.",
35+
"@minLengthErrorText": {
36+
"description": "Error Text for minLength validator",
37+
"type": "text",
38+
"placeholders": {
39+
"minLength": {}
40+
}
41+
},
42+
"maxErrorText": "Vrijednost mora biti manja ili jednaka {max}",
43+
"@maxErrorText": {
44+
"description": "Error Text for max validator",
45+
"type": "text",
46+
"placeholders": {
47+
"max": {}
48+
}
49+
},
50+
"maxLengthErrorText": "Vrijednost mora biti kraća ili jednaka {maxLength} znakova.",
51+
"@maxLengthErrorText": {
52+
"description": "Error Text for required field",
53+
"type": "text",
54+
"placeholders": {
55+
"maxLength": {}
56+
}
57+
},
58+
"equalLengthErrorText": "Vrijednost mora biti duga {length} znakova.",
59+
"@equalLengthErrorText": {
60+
"description": "Error Text for required field",
61+
"type": "text",
62+
"placeholders": {
63+
"length": {}
64+
}
65+
},
66+
"emailErrorText": "Unesite validnu e-mail adresu.",
67+
"@emailErrorText": {
68+
"description": "Error Text for email validator",
69+
"type": "text",
70+
"placeholders": {}
71+
},
72+
"urlErrorText": "Unesite validnu URL adresu.",
73+
"@urlErrorText": {
74+
"description": "Error Text for URL validator",
75+
"type": "text",
76+
"placeholders": {}
77+
},
78+
"matchErrorText": "Vrijednost ne odgovara uzorku.",
79+
"@matchErrorText": {
80+
"description": "Error Text for pattern validator",
81+
"type": "text",
82+
"placeholders": {}
83+
},
84+
"numericErrorText": "Vrijednost mora biti brojčana.",
85+
"@numericErrorText": {
86+
"description": "Error Text for numeric validator",
87+
"type": "text",
88+
"placeholders": {}
89+
},
90+
"integerErrorText": "Vrijednost mora biti cijeli broj.",
91+
"@integerErrorText": {
92+
"description": "Error Text for integer validator",
93+
"type": "text",
94+
"placeholders": {}
95+
},
96+
"creditCardErrorText": "Unesite validan broj kreditne kartice.",
97+
"@creditCardErrorText": {
98+
"description": "Error Text for credit card validator",
99+
"type": "text",
100+
"placeholders": {}
101+
},
102+
"ipErrorText": "Unesite validnu IP adresu.",
103+
"@ipErrorText": {
104+
"description": "Error Text for IP address validator",
105+
"type": "text",
106+
"placeholders": {}
107+
},
108+
"dateStringErrorText": "Unesite validan datum.",
109+
"@dateStringErrorText": {
110+
"description": "Error Text for date string validator",
111+
"type": "text",
112+
"placeholders": {}
113+
}
114+
}

lib/l10n/intl_hr.arb

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
"@@last_modified": "2020-11-13T10:38:27.938366",
3+
"@@locale": "hr",
4+
"requiredErrorText": "Ovo polje ne smije biti prazno.",
5+
"@requiredErrorText": {
6+
"description": "Error Text for required validator",
7+
"type": "text",
8+
"placeholders": {}
9+
},
10+
"equalErrorText": "Vrijednost mora biti jednaka {value}.",
11+
"@equalErrorText": {
12+
"description": "Error Text for equal validator",
13+
"type": "text",
14+
"placeholders": {
15+
"value": {}
16+
}
17+
},
18+
"notEqualErrorText": "Vrijednost ne smije biti jednaka {value}.",
19+
"@notEqualErrorText": {
20+
"description": "Error Text for not-equal validator",
21+
"type": "text",
22+
"placeholders": {
23+
"value": {}
24+
}
25+
},
26+
"minErrorText": "Vrijednost mora biti veća ili jednaka {min}.",
27+
"@minErrorText": {
28+
"description": "Error Text for required field",
29+
"type": "text",
30+
"placeholders": {
31+
"min": {}
32+
}
33+
},
34+
"minLengthErrorText": "Vrijednost mora biti duža ili jednaka {minLength} znakova.",
35+
"@minLengthErrorText": {
36+
"description": "Error Text for minLength validator",
37+
"type": "text",
38+
"placeholders": {
39+
"minLength": {}
40+
}
41+
},
42+
"maxErrorText": "Vrijednost mora biti manja ili jednaka {max}",
43+
"@maxErrorText": {
44+
"description": "Error Text for max validator",
45+
"type": "text",
46+
"placeholders": {
47+
"max": {}
48+
}
49+
},
50+
"maxLengthErrorText": "Vrijednost mora biti kraća ili jednaka {maxLength} znakova.",
51+
"@maxLengthErrorText": {
52+
"description": "Error Text for required field",
53+
"type": "text",
54+
"placeholders": {
55+
"maxLength": {}
56+
}
57+
},
58+
"equalLengthErrorText": "Vrijednost mora biti duga {length} znakova.",
59+
"@equalLengthErrorText": {
60+
"description": "Error Text for required field",
61+
"type": "text",
62+
"placeholders": {
63+
"length": {}
64+
}
65+
},
66+
"emailErrorText": "Unesite validnu e-mail adresu.",
67+
"@emailErrorText": {
68+
"description": "Error Text for email validator",
69+
"type": "text",
70+
"placeholders": {}
71+
},
72+
"urlErrorText": "Unesite validnu URL adresu.",
73+
"@urlErrorText": {
74+
"description": "Error Text for URL validator",
75+
"type": "text",
76+
"placeholders": {}
77+
},
78+
"matchErrorText": "Vrijednost ne odgovara uzorku.",
79+
"@matchErrorText": {
80+
"description": "Error Text for pattern validator",
81+
"type": "text",
82+
"placeholders": {}
83+
},
84+
"numericErrorText": "Vrijednost mora biti brojčana.",
85+
"@numericErrorText": {
86+
"description": "Error Text for numeric validator",
87+
"type": "text",
88+
"placeholders": {}
89+
},
90+
"integerErrorText": "Vrijednost mora biti cijeli broj.",
91+
"@integerErrorText": {
92+
"description": "Error Text for integer validator",
93+
"type": "text",
94+
"placeholders": {}
95+
},
96+
"creditCardErrorText": "Unesite validan broj kreditne kartice.",
97+
"@creditCardErrorText": {
98+
"description": "Error Text for credit card validator",
99+
"type": "text",
100+
"placeholders": {}
101+
},
102+
"ipErrorText": "Unesite validnu IP adresu.",
103+
"@ipErrorText": {
104+
"description": "Error Text for IP address validator",
105+
"type": "text",
106+
"placeholders": {}
107+
},
108+
"dateStringErrorText": "Unesite validan datum.",
109+
"@dateStringErrorText": {
110+
"description": "Error Text for date string validator",
111+
"type": "text",
112+
"placeholders": {}
113+
}
114+
}

0 commit comments

Comments
 (0)