@impelsys/validatorjs 3.22.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/.eslintrc.js +27 -0
  2. package/CONTRIBUTE.md +34 -0
  3. package/LICENSE +20 -0
  4. package/README.md +607 -0
  5. package/dist/lang/ar.js +66 -0
  6. package/dist/lang/az.js +104 -0
  7. package/dist/lang/be.js +105 -0
  8. package/dist/lang/bg.js +105 -0
  9. package/dist/lang/bs.js +106 -0
  10. package/dist/lang/ca.js +40 -0
  11. package/dist/lang/cs.js +107 -0
  12. package/dist/lang/cy.js +106 -0
  13. package/dist/lang/da.js +51 -0
  14. package/dist/lang/de.js +46 -0
  15. package/dist/lang/el.js +43 -0
  16. package/dist/lang/en.js +54 -0
  17. package/dist/lang/es.js +40 -0
  18. package/dist/lang/et.js +106 -0
  19. package/dist/lang/eu.js +106 -0
  20. package/dist/lang/fa.js +42 -0
  21. package/dist/lang/fi.js +51 -0
  22. package/dist/lang/fr.js +40 -0
  23. package/dist/lang/hr.js +106 -0
  24. package/dist/lang/hu.js +106 -0
  25. package/dist/lang/id.js +51 -0
  26. package/dist/lang/it.js +41 -0
  27. package/dist/lang/ja.js +54 -0
  28. package/dist/lang/ka.js +106 -0
  29. package/dist/lang/ko.js +106 -0
  30. package/dist/lang/lt.js +106 -0
  31. package/dist/lang/lv.js +106 -0
  32. package/dist/lang/mk.js +106 -0
  33. package/dist/lang/mn.js +106 -0
  34. package/dist/lang/ms.js +106 -0
  35. package/dist/lang/nb_NO.js +42 -0
  36. package/dist/lang/nl.js +51 -0
  37. package/dist/lang/pl.js +42 -0
  38. package/dist/lang/pt.js +110 -0
  39. package/dist/lang/pt_BR.js +105 -0
  40. package/dist/lang/ro.js +51 -0
  41. package/dist/lang/ru.js +40 -0
  42. package/dist/lang/se.js +106 -0
  43. package/dist/lang/sl.js +106 -0
  44. package/dist/lang/sq.js +106 -0
  45. package/dist/lang/sr.js +106 -0
  46. package/dist/lang/sv.js +105 -0
  47. package/dist/lang/tr.js +51 -0
  48. package/dist/lang/ua.js +40 -0
  49. package/dist/lang/uk.js +106 -0
  50. package/dist/lang/vi.js +42 -0
  51. package/dist/lang/zh.js +42 -0
  52. package/dist/lang/zh_TW.js +42 -0
  53. package/dist/validator.js +2183 -0
  54. package/package.json +78 -0
  55. package/src/async.js +81 -0
  56. package/src/attributes.js +199 -0
  57. package/src/errors.js +77 -0
  58. package/src/lang/ar.js +63 -0
  59. package/src/lang/az.js +101 -0
  60. package/src/lang/be.js +102 -0
  61. package/src/lang/bg.js +102 -0
  62. package/src/lang/bs.js +103 -0
  63. package/src/lang/ca.js +37 -0
  64. package/src/lang/cs.js +104 -0
  65. package/src/lang/cy.js +103 -0
  66. package/src/lang/da.js +48 -0
  67. package/src/lang/de.js +43 -0
  68. package/src/lang/el.js +40 -0
  69. package/src/lang/en.js +51 -0
  70. package/src/lang/es.js +37 -0
  71. package/src/lang/et.js +103 -0
  72. package/src/lang/eu.js +103 -0
  73. package/src/lang/fa.js +39 -0
  74. package/src/lang/fi.js +48 -0
  75. package/src/lang/fr.js +37 -0
  76. package/src/lang/hr.js +103 -0
  77. package/src/lang/hu.js +103 -0
  78. package/src/lang/id.js +48 -0
  79. package/src/lang/it.js +38 -0
  80. package/src/lang/ja.js +51 -0
  81. package/src/lang/ka.js +103 -0
  82. package/src/lang/ko.js +103 -0
  83. package/src/lang/lt.js +103 -0
  84. package/src/lang/lv.js +103 -0
  85. package/src/lang/mk.js +103 -0
  86. package/src/lang/mn.js +103 -0
  87. package/src/lang/ms.js +103 -0
  88. package/src/lang/nb_NO.js +39 -0
  89. package/src/lang/nl.js +48 -0
  90. package/src/lang/pl.js +39 -0
  91. package/src/lang/pt.js +107 -0
  92. package/src/lang/pt_BR.js +102 -0
  93. package/src/lang/ro.js +48 -0
  94. package/src/lang/ru.js +37 -0
  95. package/src/lang/se.js +47 -0
  96. package/src/lang/sl.js +103 -0
  97. package/src/lang/sq.js +103 -0
  98. package/src/lang/sr.js +103 -0
  99. package/src/lang/sv.js +102 -0
  100. package/src/lang/tr.js +48 -0
  101. package/src/lang/ua.js +37 -0
  102. package/src/lang/uk.js +103 -0
  103. package/src/lang/vi.js +39 -0
  104. package/src/lang/zh.js +39 -0
  105. package/src/lang/zh_TW.js +39 -0
  106. package/src/lang.js +78 -0
  107. package/src/messages.js +152 -0
  108. package/src/rules.js +864 -0
  109. package/src/validator.js +662 -0
package/src/lang/lv.js ADDED
@@ -0,0 +1,103 @@
1
+ module.exports = {
2
+ accepted: " :attribute ir jābūt pieņemtam.",
3
+ active_url: " :attribute ir ar nederīgu linku.",
4
+ after: " :attribute ir jābūt ar datumu pēc :datums.",
5
+ after_or_equal: " :attribute ir jābūt ar datumu pēc vai vienādu ar :datums.",
6
+ alpha: " :attribute var saturēt tikai burtus.",
7
+ alpha_dash: " :attribute var saturēt tikai burtus, nummurus un atstarpes.",
8
+ alpha_num: " :attribute var tikai saturēt burtus un nummurus.",
9
+ attributes: {},
10
+ array: " :attribute ir jābūt sakārtotam.",
11
+ before: " :attribute ir jābūt ar datumu pirms :datums.",
12
+ before_or_equal: " :attribute ir jābūt ar datumu pirms vai vienādu ar :datums.",
13
+ between: {
14
+ numeric: " :attribute jābūt starp :min un :max.",
15
+ file: " :attribute jābūt starp :min un :max kilobaiti.",
16
+ string: " :attribute jābūt no :min līdz :max zīmēm.",
17
+ array: " :attribute jābūt no :min līdz :max vienībām."
18
+ },
19
+ boolean: " :attribute laiciņam jābūt atbilstošam vai neatbilstošam.",
20
+ confirmed: " :attribute apstiprinājums neatbilst.",
21
+ date: " :attribute nav derīgs.",
22
+ date_format: " :attribute neatbilst formātam :format.",
23
+ different: " :attribute un :other ir jābūt citiem.",
24
+ digits: " :attribute ir jābūt :digits ciparam.",
25
+ digits_between: " :attribute ir jābūt :min un :max ciparam.",
26
+ dimensions: " :attribute ir nederīgs attēla izmērs.",
27
+ distinct: " :attribute laikam ir dubulta vērtība.",
28
+ email: " :attribute derīgam e-pastam.",
29
+ exists: "Izvēlētais :attribute ir nederīgs.",
30
+ file: " :attribute jābūt failam.",
31
+ filled: ":attribute lauks ir nepieciešams.",
32
+ gt: {
33
+ numeric: "The :attribute must be greater than :value.",
34
+ file: "The :attribute must be greater than :value kilobytes.",
35
+ string: "The :attribute must be greater than :value characters.",
36
+ array: "The :attribute must have more than :value items."
37
+ },
38
+ gte: {
39
+ numeric: "The :attribute must be greater than or equal :value.",
40
+ file: "The :attribute must be greater than or equal :value kilobytes.",
41
+ string: "The :attribute must be greater than or equal :value characters.",
42
+ array: "The :attribute must have :value items or more."
43
+ },
44
+ hex: "The :attribute field should have hexadecimal format",
45
+ image: " :attribute jābūt attēlam.",
46
+ in: "Izvēlētais :attribute ir nederīgs.",
47
+ in_array: " :attribute laiks neeksistē :cits.",
48
+ integer: " :attribute ir jabūt skaitim.",
49
+ ip: " :attribute jābūt derīgai IP adresei.",
50
+ ipv4: "The :attribute must be a valid IPv4 address.",
51
+ ipv6: "The :attribute must be a valid IPv6 address.",
52
+ json: " :attribute jābūt derīgai JSON virknei.",
53
+ lt: {
54
+ numeric: "The :attribute must be less than :value.",
55
+ file: "The :attribute must be less than :value kilobytes.",
56
+ string: "The :attribute must be less than :value characters.",
57
+ array: "The :attribute must have less than :value items."
58
+ },
59
+ lte: {
60
+ numeric: "The :attribute must be less than or equal :value.",
61
+ file: "The :attribute must be less than or equal :value kilobytes.",
62
+ string: "The :attribute must be less than or equal :value characters.",
63
+ array: "The :attribute must not have more than :value items."
64
+ },
65
+ max: {
66
+ numeric: " :attribute nedrīkst pārsniegt :max.",
67
+ file: " :attribute nedrīkst pārsniegt :max kilobaiti.",
68
+ string: " :attribute nedrīkst pārsniegt :max zīmes.",
69
+ array: " :attribute nedrīkst pārsniegt :max vienības."
70
+ },
71
+ mimes: " :attribute jābūt faila tipam: :values",
72
+ mimetypes: " :attribute jābūt faile tipam: :values.",
73
+ min: {
74
+ numeric: " :attribute jābūt vismaz :min.",
75
+ file: " :attribute jābūt vismaz :min kilobaiti.",
76
+ string: " :attribute jābūt vismaz :min zīmes.",
77
+ array: " :attribute jāsatur vismaz :min vienības."
78
+ },
79
+ not_in: " izvēlieties :attribute ir nederīgs.",
80
+ not_regex: "The :attribute format is invalid.",
81
+ numeric: " :attribute jābūt skaitlim.",
82
+ present: " :attribute laikums ir nepieciešams.",
83
+ regex: " :attribute formāts ir nederīgs.",
84
+ required: " :attribute laukums ir nepieciešams.",
85
+ required_if: " :attribute laukums ir nepieciešams, ja vien :other ir :values.",
86
+ required_unless: " :attribute laukums ir nepieciešams, ja vien :other ir :values.",
87
+ required_with: " :attribute laukums ir nepieciešams, kad :values ir pieejama.",
88
+ required_with_all: " :attribute laukums ir nepieciešams, kad :values ir pieejama.",
89
+ required_without: " :attribute laukums ir nepieciešams, kad :values nav pieejama.",
90
+ required_without_all: " :attribute laukums ir nepieciešams, kad neviena no :values nav pieejama.",
91
+ same: " :attribute un :citiem ir jāsakrīt.",
92
+ size: {
93
+ numeric: " :attribute jābūt :size.",
94
+ file: " :attribute jābūt :size kilobaiti.",
95
+ string: " :attribute jābūt :size zīmes.",
96
+ array: " :attribute jāsatur :size vienības."
97
+ },
98
+ string: " :attribute jābūt virknē.",
99
+ timezone: " :attribute jābūt derīgā zonā.",
100
+ unique: " :attribute jau ir aizņemts.",
101
+ uploaded: " :attribute netika augšuplādēts.",
102
+ url: " :attribute formāts ir nederīgs."
103
+ };
package/src/lang/mk.js ADDED
@@ -0,0 +1,103 @@
1
+ module.exports = {
2
+ accepted: "Полето :attribute мора да биде прифатено.",
3
+ active_url: "Полето :attribute не е валиден URL.",
4
+ after: "Полето :attribute мора да биде датум после :date.",
5
+ after_or_equal: "The :attribute must be a date after or equal to :date.",
6
+ alpha: "Полето :attribute може да содржи само букви.",
7
+ alpha_dash: "Полето :attribute може да содржи само букви, цифри, долна црта и тире.",
8
+ alpha_num: "Полето :attribute може да содржи само букви и цифри.",
9
+ attributes: {},
10
+ array: "Полето :attribute мора да биде низа.",
11
+ before: "Полето :attribute мора да биде датум пред :date.",
12
+ before_or_equal: "The :attribute must be a date before or equal to :date.",
13
+ between: {
14
+ numeric: "Полето :attribute мора да биде помеѓу :min и :max.",
15
+ file: "Полето :attribute мора да биде помеѓу :min и :max килобајти.",
16
+ string: "Полето :attribute мора да биде помеѓу :min и :max карактери.",
17
+ array: "Полето :attribute мора да има помеѓу :min - :max карактери."
18
+ },
19
+ boolean: "The :attribute field must be true or false",
20
+ confirmed: "Полето :attribute не е потврдено.",
21
+ date: "Полето :attribute не е валиден датум.",
22
+ date_format: "Полето :attribute не е во формат :format.",
23
+ different: "Полињата :attribute и :other треба да се различни.",
24
+ digits: "Полето :attribute треба да има :digits цифри.",
25
+ digits_between: "Полето :attribute треба да има помеѓу :min и :max цифри.",
26
+ dimensions: "The :attribute has invalid image dimensions.",
27
+ distinct: "The :attribute field has a duplicate value.",
28
+ email: "Полето :attribute не е во валиден формат.",
29
+ exists: "Избранато поле :attribute веќе постои.",
30
+ file: "The :attribute must be a file.",
31
+ filled: "Полето :attribute е задолжително.",
32
+ gt: {
33
+ numeric: "The :attribute must be greater than :value.",
34
+ file: "The :attribute must be greater than :value kilobytes.",
35
+ string: "The :attribute must be greater than :value characters.",
36
+ array: "The :attribute must have more than :value items."
37
+ },
38
+ gte: {
39
+ numeric: "The :attribute must be greater than or equal :value.",
40
+ file: "The :attribute must be greater than or equal :value kilobytes.",
41
+ string: "The :attribute must be greater than or equal :value characters.",
42
+ array: "The :attribute must have :value items or more."
43
+ },
44
+ hex: "The :attribute field should have hexadecimal format",
45
+ image: "Полето :attribute мора да биде слика.",
46
+ in: "Избраното поле :attribute е невалидно.",
47
+ in_array: "The :attribute field does not exist in :other.",
48
+ integer: "Полето :attribute мора да биде цел број.",
49
+ ip: "Полето :attribute мора да биде IP адреса.",
50
+ ipv4: "The :attribute must be a valid IPv4 address.",
51
+ ipv6: "The :attribute must be a valid IPv6 address.",
52
+ json: "The :attribute must be a valid JSON string.",
53
+ lt: {
54
+ numeric: "The :attribute must be less than :value.",
55
+ file: "The :attribute must be less than :value kilobytes.",
56
+ string: "The :attribute must be less than :value characters.",
57
+ array: "The :attribute must have less than :value items."
58
+ },
59
+ lte: {
60
+ numeric: "The :attribute must be less than or equal :value.",
61
+ file: "The :attribute must be less than or equal :value kilobytes.",
62
+ string: "The :attribute must be less than or equal :value characters.",
63
+ array: "The :attribute must not have more than :value items."
64
+ },
65
+ max: {
66
+ numeric: "Полето :attribute мора да биде помало од :max.",
67
+ file: "Полето :attribute мора да биде помало од :max килобајти.",
68
+ string: "Полето :attribute мора да има помалку од :max карактери.",
69
+ array: "Полето :attribute не може да има повеќе од :max карактери."
70
+ },
71
+ mimes: "Полето :attribute мора да биде фајл од типот: :values.",
72
+ mimetypes: "Полето :attribute мора да биде фајл од типот: :values.",
73
+ min: {
74
+ numeric: "Полето :attribute мора да биде минимум :min.",
75
+ file: "Полето :attribute мора да биде минимум :min килобајти.",
76
+ string: "Полето :attribute мора да има минимум :min карактери.",
77
+ array: "Полето :attribute мора да има минимум :min карактери."
78
+ },
79
+ not_in: "Избраното поле :attribute е невалидно.",
80
+ not_regex: "The :attribute format is invalid.",
81
+ numeric: "Полето :attribute мора да биде број.",
82
+ present: "The :attribute field must be present.",
83
+ regex: "Полето :attribute е во невалиден формат.",
84
+ required: "Полето :attribute е задолжително.",
85
+ required_if: "Полето :attribute е задолжително, кога :other е :value.",
86
+ required_unless: "The :attribute field is required unless :other is in :values.",
87
+ required_with: "Полето :attribute е задолжително, кога е внесено :values.",
88
+ required_with_all: "The :attribute field is required when :values is present.",
89
+ required_without: "Полето :attribute е задолжително, кога не е внесено :values.",
90
+ required_without_all: "The :attribute field is required when none of :values are present.",
91
+ same: "Полињата :attribute и :other треба да совпаѓаат.",
92
+ size: {
93
+ numeric: "Полето :attribute мора да биде :size.",
94
+ file: "Полето :attribute мора да биде :size килобајти.",
95
+ string: "Полето :attribute мора да има :size карактери.",
96
+ array: "Полето :attribute мора да има :size карактери."
97
+ },
98
+ string: "The :attribute must be a string.",
99
+ timezone: "The :attribute must be a valid zone.",
100
+ unique: "Полето :attribute веќе постои.",
101
+ uploaded: "The :attribute failed to upload.",
102
+ url: "Полето :attribute не е во валиден формат."
103
+ };
package/src/lang/mn.js ADDED
@@ -0,0 +1,103 @@
1
+ module.exports = {
2
+ accepted: ":Attribute баталсан байх шаардлагатай.",
3
+ active_url: ":Attribute талбарт зөв URL хаяг оруулна уу.",
4
+ after: ":Attribute талбарт :date-с хойш огноо оруулна уу.",
5
+ after_or_equal: ":Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.",
6
+ alpha: ":Attribute талбарт латин үсэг оруулна уу.",
7
+ alpha_dash: ":Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.",
8
+ alpha_num: ":Attribute талбарт латин үсэг болон тоо оруулах боломжтой.",
9
+ attributes: {},
10
+ array: ":Attribute талбар массив байх шаардлагатай.",
11
+ before: ":Attribute талбарт :date-с өмнөх огноо оруулна уу.",
12
+ before_or_equal: ":attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.",
13
+ between: {
14
+ numeric: ":Attribute талбарт :min-:max хооронд тоо оруулна уу.",
15
+ file: ":Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.",
16
+ string: ":Attribute талбарт :min-:max урттай текст оруулна уу.",
17
+ array: ":Attribute массивт :min-:max элемэнт байх шаардлагатай."
18
+ },
19
+ boolean: ":Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.",
20
+ confirmed: ":Attribute талбарын баталагажуулалт тохирохгүй байна.",
21
+ date: ":Attribute талбарт оруулсан огноо буруу байна.",
22
+ date_format: ":Attribute талбарт :format хэлбэртэй огноо оруулна уу.",
23
+ different: ":Attribute талбарт :other -с өөр утга оруулах шаардлагатай.",
24
+ digits: ":Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.",
25
+ digits_between: ":Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.",
26
+ dimensions: ":Attribute талбарийн зургийн хэмжээс буруу байна.",
27
+ distinct: ":Attribute талбарт ялгаатай утга оруулах шаардлагатай.",
28
+ email: ":Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.",
29
+ exists: "Сонгогдсон :attribute буруу байна.",
30
+ file: ":Attribute талбарт файл оруулах шаардлагатай.",
31
+ filled: ":Attribute талбар шаардлагатай.",
32
+ gt: {
33
+ numeric: "The :attribute must be greater than :value.",
34
+ file: "The :attribute must be greater than :value kilobytes.",
35
+ string: "The :attribute must be greater than :value characters.",
36
+ array: "The :attribute must have more than :value items."
37
+ },
38
+ gte: {
39
+ numeric: "The :attribute must be greater than or equal :value.",
40
+ file: "The :attribute must be greater than or equal :value kilobytes.",
41
+ string: "The :attribute must be greater than or equal :value characters.",
42
+ array: "The :attribute must have :value items or more."
43
+ },
44
+ hex: "The :attribute field should have hexadecimal format",
45
+ image: ":Attribute талбарт зураг оруулна уу.",
46
+ in: "Сонгогдсон :attribute буруу байна.",
47
+ in_array: ":Attribute талбарт оруулсан утга :other -д байхгүй байна.",
48
+ integer: ":Attribute талбарт бүхэл тоо оруулах шаардлагатай.",
49
+ ip: ":Attribute талбарт зөв IP хаяг оруулах шаардлагатай.",
50
+ ipv4: "The :attribute must be a valid IPv4 address.",
51
+ ipv6: "The :attribute must be a valid IPv6 address.",
52
+ json: ":Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.",
53
+ lt: {
54
+ numeric: "The :attribute must be less than :value.",
55
+ file: "The :attribute must be less than :value kilobytes.",
56
+ string: "The :attribute must be less than :value characters.",
57
+ array: "The :attribute must have less than :value items."
58
+ },
59
+ lte: {
60
+ numeric: "The :attribute must be less than or equal :value.",
61
+ file: "The :attribute must be less than or equal :value kilobytes.",
62
+ string: "The :attribute must be less than or equal :value characters.",
63
+ array: "The :attribute must not have more than :value items."
64
+ },
65
+ max: {
66
+ numeric: ":Attribute талбарт :max буюу түүнээс бага утга оруулна уу.",
67
+ file: ":Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.",
68
+ string: ":Attribute талбарт :max-с бага урттай текст оруулна уу.",
69
+ array: ":Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой."
70
+ },
71
+ mimes: ":Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.",
72
+ mimetypes: ":Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.",
73
+ min: {
74
+ numeric: ":Attribute талбарт :min буюу түүнээс их тоо оруулна уу.",
75
+ file: ":Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.",
76
+ string: ":Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.",
77
+ array: ":Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой."
78
+ },
79
+ not_in: "Буруу :attribute сонгогдсон байна.",
80
+ not_regex: "The :attribute format is invalid.",
81
+ numeric: ":Attribute талбарт тоон утга оруулна уу.",
82
+ present: ":Attribute талбар байх шаардлагатай.",
83
+ regex: ":Attribute талбарт оруулсан утга буруу байна.",
84
+ required: ":Attribute талбар шаардлагатай.",
85
+ required_if: "Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.",
86
+ required_unless: ":other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.",
87
+ required_with: ":values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.",
88
+ required_with_all: ":values утгууд байвал :attribute талбар шаардлагатай.",
89
+ required_without: "The :attribute field is required when :values is not present.",
90
+ required_without_all: "The :attribute field is required when none of :values are present.",
91
+ same: "The :attribute and :other must match.",
92
+ size: {
93
+ numeric: ":Attribute :size хэмжээтэй байх шаардлагатай.",
94
+ file: ":Attribute :size килобайт хэмжээтэй байх шаардлагатай.",
95
+ string: ":Attribute :size тэмдэгтийн урттай байх шаардлагатай.",
96
+ array: ":Attribute :size элемэнттэй байх шаардлагатай."
97
+ },
98
+ string: ":Attribute талбарт текст оруулна уу.",
99
+ timezone: ":Attribute талбарт зөв цагийн бүс оруулна уу.",
100
+ unique: "Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.",
101
+ uploaded: ":Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.",
102
+ url: ":Attribute зөв url хаяг оруулна уу."
103
+ };
package/src/lang/ms.js ADDED
@@ -0,0 +1,103 @@
1
+ module.exports = {
2
+ accepted: ":attribute mesti diterima pakai.",
3
+ active_url: ":attribute bukan URL yang sah.",
4
+ after: ":attribute mesti tarikh selepas :date.",
5
+ after_or_equal: ":attribute mesti tarikh selepas atau sama dengan :date.",
6
+ alpha: ":attribute hanya boleh mengandungi huruf.",
7
+ alpha_dash: ":attribute boleh mengandungi huruf, nombor, dan sengkang.",
8
+ alpha_num: ":attribute boleh mengandungi huruf dan nombor.",
9
+ attributes: {},
10
+ array: ":attribute mesti jujukan.",
11
+ before: ":attribute mesti tarikh sebelum :date.",
12
+ before_or_equal: ":attribute mesti tarikh sebelum atau sama dengan :date.",
13
+ between: {
14
+ numeric: ":attribute mesti mengandungi antara :min dan :max.",
15
+ file: ":attribute mesti mengandungi antara :min dan :max kilobait.",
16
+ string: ":attribute mesti mengandungi antara :min dan :max aksara.",
17
+ array: ":attribute mesti mengandungi antara :min dan :max perkara."
18
+ },
19
+ boolean: ":attribute mesti benar atau salah.",
20
+ confirmed: ":attribute pengesahan yang tidak sepadan.",
21
+ date: ":attribute bukan tarikh yang sah.",
22
+ date_format: ":attribute tidak mengikut format :format.",
23
+ different: ":attribute dan :other mesti berlainan.",
24
+ dimensions: ":attribute tidak sah",
25
+ digits: ":attribute mesti :digits.",
26
+ digits_between: ":attribute mesti mengandungi antara :min dan :max digits.",
27
+ distinct: ":attribute adalah nilai yang berulang",
28
+ email: ":attribute tidak sah.",
29
+ exists: ":attribute tidak sah.",
30
+ file: ":attribute mesti fail yang sah.",
31
+ filled: ":attribute diperlukan.",
32
+ gt: {
33
+ numeric: ":attribute mesti melebihi :value.",
34
+ file: ":attribute mesti melebihi :value kilobait.",
35
+ string: ":attribute mesti melebihi :value aksara.",
36
+ array: ":attribute mesti mengandungi lebih daripada :value perkara."
37
+ },
38
+ gte: {
39
+ numeric: ":attribute mesti melebihi atau bersamaan :value.",
40
+ file: ":attribute mesti melebihi atau bersamaan :value kilobait.",
41
+ string: ":attribute mesti melebihi atau bersamaan :value aksara.",
42
+ array: ":attribute mesti mengandungi :value perkara atau lebih."
43
+ },
44
+ hex: "The :attribute field should have hexadecimal format",
45
+ image: ":attribute mesti imej.",
46
+ in: ":attribute tidak sah.",
47
+ in_array: ":attribute tidak wujud dalam :other.",
48
+ integer: ":attribute mesti integer.",
49
+ ip: ":attribute mesti alamat IP yang sah.",
50
+ ipv4: ":attribute mesti alamat IPv4 yang sah.",
51
+ ipv6: ":attribute mesti alamat IPv6 yang sah",
52
+ json: ":attribute mesti JSON yang sah.",
53
+ lt: {
54
+ numeric: ":attribute mesti kurang daripada :value.",
55
+ file: ":attribute mesti kurang daripada :value kilobait.",
56
+ string: ":attribute mesti kurang daripada :value aksara.",
57
+ array: ":attribute mesti mengandungi kurang daripada :value perkara."
58
+ },
59
+ lte: {
60
+ numeric: ":attribute mesti kurang daripada atau bersamaan dengan :value.",
61
+ file: ":attribute mesti kurang daripada atau bersamaan dengan :value kilobait.",
62
+ string: ":attribute mesti kurang daripada atau bersamaan dengan :value aksara.",
63
+ array: ":attribute mesti mengandungi kurang daripada atau bersamaan dengan :value perkara."
64
+ },
65
+ max: {
66
+ numeric: "Jumlah :attribute mesti tidak melebihi :max.",
67
+ file: "Jumlah :attribute mesti tidak melebihi :max kilobait.",
68
+ string: "Jumlah :attribute mesti tidak melebihi :max aksara.",
69
+ array: "Jumlah :attribute mesti tidak melebihi :max perkara."
70
+ },
71
+ mimes: ":attribute mesti fail type: :values.",
72
+ mimetypes: ":attribute mesti fail type: :values.",
73
+ min: {
74
+ numeric: "Jumlah :attribute mesti sekurang-kurangnya :min.",
75
+ file: "Jumlah :attribute mesti sekurang-kurangnya :min kilobait.",
76
+ string: "Jumlah :attribute mesti sekurang-kurangnya :min aksara.",
77
+ array: "Jumlah :attribute mesti sekurang-kurangnya :min perkara."
78
+ },
79
+ not_in: ":attribute tidak sah.",
80
+ not_regex: "Format :attribute adalah tidak sah.",
81
+ numeric: ":attribute mesti nombor.",
82
+ present: ":attribute mesti wujud.",
83
+ regex: "Format :attribute tidak sah.",
84
+ required: "Ruangan :attribute diperlukan.",
85
+ required_if: "Ruangan :attribute diperlukan bila :other sama dengan :value.",
86
+ required_unless: "Ruangan :attribute diperlukan sekiranya :other ada dalam :values.",
87
+ required_with: "Ruangan :attribute diperlukan bila :values wujud.",
88
+ required_with_all: "Ruangan :attribute diperlukan bila :values wujud.",
89
+ required_without: "Ruangan :attribute diperlukan bila :values tidak wujud.",
90
+ required_without_all: "Ruangan :attribute diperlukan bila kesemua :values wujud.",
91
+ same: "Ruangan :attribute dan :other mesti sepadan.",
92
+ size: {
93
+ numeric: "Saiz :attribute mesti :size.",
94
+ file: "Saiz :attribute mesti :size kilobait.",
95
+ string: "Saiz :attribute mesti :size aksara.",
96
+ array: "Saiz :attribute mesti mengandungi :size perkara."
97
+ },
98
+ string: ":attribute mesti aksara.",
99
+ timezone: ":attribute mesti zon masa yang sah.",
100
+ unique: ":attribute telah wujud.",
101
+ uploaded: ":attribute gagal dimuat naik.",
102
+ url: ":attribute format tidak sah."
103
+ };
@@ -0,0 +1,39 @@
1
+ module.exports = {
2
+ accepted: ':attribute må være akseptert.',
3
+ alpha: ':attribute feltet kan kun inneholde alfabetiske tegn.',
4
+ alpha_dash: ':attribute feltet kan kun inneholde alfanumeriske tegn, i tillegg til bindestreker og understreker.',
5
+ alpha_num: ':attribute feltet må være alfanumerisk.',
6
+ between: ':attribute feltet må være mellom :min og :max.',
7
+ confirmed: ':attribute feltet stemmer ikke overens med bekreftelsen.',
8
+ email: ':attribute formatet er ugyldig.',
9
+ date: ':attribute er et ugyldig datoformat.',
10
+ def: ':attribute attributtet har feil.',
11
+ digits: ':attribute må være på :digits siffer.',
12
+ digits_between: ':attribute må være mellom :min og :max siffer.',
13
+ different: ':attribute og :different må være forskjellige.',
14
+ in: 'Den oppgitte verdien for :attribute er ugyldig.',
15
+ integer: ':attribute må være et heltall.',
16
+ hex: 'The :attribute should have hexadecimal format',
17
+ min: {
18
+ numeric: ':attribute må minst være :min.',
19
+ string: ':attribute må være på minst :min tegn.'
20
+ },
21
+ max: {
22
+ numeric: ':attribute kan ikke være større enn :max.',
23
+ string: ':attribute kan maks ha :max tegn.'
24
+ },
25
+ not_in: 'Den oppgitte verdien for :attribute er ugyldig.',
26
+ numeric: ':attribute må være et tall.',
27
+ present: 'The :attribute field must be present (but can be empty).',
28
+ required: ':attribute feltet er påkrevd.',
29
+ required_if: ':attribute er påkrevd når :other er :value.',
30
+ same: ':attribute og :same må være like.',
31
+ size: {
32
+ numeric: ':attribute må ha størrelsen :size.',
33
+ string: ':attribute må ha :size tegn.'
34
+ },
35
+ string: ':attribute må være tekst.',
36
+ url: ':attribute formatet er ugyldig.',
37
+ regex: ':attribute formatet er ugyldig.',
38
+ attributes: {}
39
+ };
package/src/lang/nl.js ADDED
@@ -0,0 +1,48 @@
1
+ module.exports = {
2
+ accepted: 'Het :attribute veld moet geaccepteerd worden.',
3
+ after: ':attribute moet een datum na :after zijn.',
4
+ after_or_equal: 'De :attribute datum moet op of na :after_or_equal zijn.',
5
+ alpha: 'Het :attribute veld mag alleen maar letters bevatten.',
6
+ alpha_dash: 'Het :attribute veld mag alleen maar letters, cijfers en (liggende) streepjes bevatten.',
7
+ alpha_num: 'Het :attribute veld mag alleen maar letters en cijfers bevatten.',
8
+ before: ':attribute moet vòòr :before zijn.',
9
+ before_or_equal: ':attribute moet vòòr of op :before_or_equal zijn.',
10
+ between: 'Het :attribute veld moet tussen :min en :max liggen.',
11
+ confirmed: 'Het :attribute veld komt niet met de bevestiging overeen.',
12
+ email: 'Het :attribute formaat is ongeldig.',
13
+ date: 'Het :attribute veld moet een geldige datum zijn.',
14
+ def: 'Het :attribute veld bevat fouten.',
15
+ digits: 'Het :attribute veld moet :digits cijfers hebben.',
16
+ digits_between: ':attribute moet bestaan uit minimaal :min en maximaal :max cijfers.',
17
+ different: 'Het :attribute en :different veld moeten verschillend zijn.',
18
+ in: 'De gekozen waarde voor :attribute is ongeldig.',
19
+ integer: 'Het :attribute veld moet een geheel getal zijn.',
20
+ hex: 'Het :attribute veld moet hexadecimaal zijn',
21
+ min: {
22
+ numeric: 'Het :attribute veld moet minstens :min zijn.',
23
+ string: 'Het :attribute veld moet minstens :min karakters bevatten.'
24
+ },
25
+ max: {
26
+ numeric: 'Het :attribute veld mag maximaal :max zijn.',
27
+ string: 'Het :attribute veld mag niet meer dan :max karakters bevatten.'
28
+ },
29
+ not_in: 'De gekozen waarde voor :attribute is ongeldig.',
30
+ numeric: 'Het :attribute veld moet een getal zijn.',
31
+ present: 'Het :attribute veld moet aanwezig zijn (maar mag leeg zijn).',
32
+ required: 'Het :attribute veld moet ingevuld zijn.',
33
+ required_if: 'Het :attribute veld moet ingevuld zijn, wanneer :other :value is.',
34
+ required_unless: 'Het :attribute veld moet ingevuld zijn, wanneer :other niet :value is.',
35
+ required_with: 'Het :attribute veld moet ingevuld zijn, wanneer :field niet leeg is.',
36
+ required_with_all: 'Het :attribute veld moet ingevuld zijn, wanneer :fields niet leeg zijn.',
37
+ required_without: 'Het :attribute veld moet ingevuld zijn, wanneer :field leeg is.',
38
+ required_without_all: 'Het :attribute veld moet ingevuld zijn, wanneer :fields leeg zijn.',
39
+ same: 'De :attribute en :same velden moeten overeenkomen.',
40
+ size: {
41
+ numeric: 'Het :attribute veld moet :size zijn.',
42
+ string: 'Het :attribute veld moet :size karakters bevatten.'
43
+ },
44
+ string: 'Het :attribute veld moet een woord of zin zijn.',
45
+ url: 'Het :attribute veld heeft een ongeldig formaat.',
46
+ regex: 'Het :attribute veld heeft een ongeldig formaat.',
47
+ attributes: {}
48
+ };
package/src/lang/pl.js ADDED
@@ -0,0 +1,39 @@
1
+ module.exports = {
2
+ accepted: 'Pole :attribute musi być zaakceptowane.',
3
+ alpha: 'Pole :attribute może zawierać tylko litery.',
4
+ alpha_dash: 'Pole :attribute moze zawierać tylko litery, myślnik i podrkeślenie.',
5
+ alpha_num: 'Pole :attribute moze zawierac tylko znaki alfanumeryczne.',
6
+ between: 'Pole :attribute musi mieć długość od :min do :max.',
7
+ confirmed: 'Pole :attribute nie spełnia warunku potwierdzenia.',
8
+ email: 'Pole :attribute ma niepoprawny format adresu email.',
9
+ date: 'Pole :attribute musi mieć poprawny format daty.',
10
+ def: 'Pole :attribute zawiera błędy.',
11
+ digits: 'Pole :attribute może zawierać tylko cyfry ze zbioru :digits.',
12
+ digits_between: 'Pole :attribute musi mieć od :min do :max cyfr.',
13
+ different: 'Pola :attribute i :different muszą się różnić.',
14
+ in: 'Pole :attribute musi należeć do zbioru :in.',
15
+ integer: 'Pole :attribute musi być liczbą całkowitą.',
16
+ hex: 'The :attribute should have hexadecimal format',
17
+ min: {
18
+ numeric: 'Pole :attribute musi być równe conajmniej :min.',
19
+ string: 'Pole :attribute musi zawierać conajmniej :min znaków.'
20
+ },
21
+ max: {
22
+ numeric: 'Pole :attribute nie moze być większe :max.',
23
+ string: 'Pole :attribute nie moze być dłuższe niż :max znaków.'
24
+ },
25
+ not_in: 'Pole :attribute nie może należeć do zbioru :not_in.',
26
+ numeric: 'Pole :attribute musi być liczbą.',
27
+ present: 'Polu :attribute musi być obecny (ale może być pusta).',
28
+ required: 'Pole :attribute jest wymagane.',
29
+ required_if: 'Pole :attribute jest wymagane jeśli pole :other jest równe :value.',
30
+ same: 'Pola :attribute i :same muszą być takie same.',
31
+ size: {
32
+ numeric: 'Pole :attribute musi być równe :size.',
33
+ string: 'Pole :attribute musi zawierać :size znaków.'
34
+ },
35
+ string: 'Pole :attribute musi być ciągiem znaków.',
36
+ url: 'Pole :attribute musi być poprawnym adresem URL.',
37
+ regex: 'Pole :attribute nie spełnia warunku.',
38
+ attributes: {}
39
+ };
package/src/lang/pt.js ADDED
@@ -0,0 +1,107 @@
1
+ module.exports = {
2
+ accepted: "O campo :attribute deverá ser aceite.",
3
+ active_url: "O campo :attribute não contém um URL válido.",
4
+ after: "O campo :attribute deverá conter uma data posterior a :date.",
5
+ after_or_equal: "O campo :attribute deverá conter uma data posterior ou igual a :date.",
6
+ alpha: "O campo :attribute deverá conter apenas letras.",
7
+ alpha_dash: "O campo :attribute deverá conter apenas letras, números e traços.",
8
+ alpha_num: "O campo :attribute deverá conter apenas letras e números .",
9
+ attributes: {},
10
+ array: "O campo :attribute deverá conter uma coleção de elementos.",
11
+ before: "O campo :attribute deverá conter uma data anterior a :date.",
12
+ before_or_equal: "O Campo :attribute deverá conter uma data anterior ou igual a :date.",
13
+ between: {
14
+ numeric: "O campo :attribute deverá ter um valor entre :min - :max.",
15
+ file: "O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.",
16
+ string: "O campo :attribute deverá conter entre :min - :max caracteres.",
17
+ array: "O campo :attribute deverá conter entre :min - :max elementos."
18
+ },
19
+ boolean: "O campo :attribute deverá conter o valor verdadeiro ou falso.",
20
+ confirmed: "A confirmação para o campo :attribute não coincide.",
21
+ date: "O campo :attribute não contém uma data válida.",
22
+ date_format: "A data indicada para o campo :attribute não respeita o formato :format.",
23
+ different: "Os campos :attribute e :other deverão conter valores diferentes.",
24
+ digits: "O campo :attribute deverá conter :digits caracteres.",
25
+ digits_between: "O campo :attribute deverá conter entre :min a :max caracteres.",
26
+ dimensions: "O campo :attribute deverá conter uma dimensão de imagem válida.",
27
+ distinct: "O campo :attribute contém um valor duplicado.",
28
+ email: "O campo :attribute não contém um endereço de correio eletrónico válido.",
29
+ exists: "O valor selecionado para o campo :attribute é inválido.",
30
+ file: "O campo :attribute deverá conter um ficheiro.",
31
+ filled: "É obrigatória a indicação de um valor para o campo :attribute.",
32
+ gt: {
33
+ numeric: "The :attribute must be greater than :value.",
34
+ file: "The :attribute must be greater than :value kilobytes.",
35
+ string: "The :attribute must be greater than :value characters.",
36
+ array: "The :attribute must have more than :value items."
37
+ },
38
+ gte: {
39
+ numeric: "The :attribute must be greater than or equal :value.",
40
+ file: "The :attribute must be greater than or equal :value kilobytes.",
41
+ string: "The :attribute must be greater than or equal :value characters.",
42
+ array: "The :attribute must have :value items or more."
43
+ },
44
+ hex: "The :attribute field should have hexadecimal format",
45
+ image: "O campo :attribute deverá conter uma imagem.",
46
+ in: "O campo :attribute não contém um valor válido.",
47
+ in_array: "O campo :attribute não existe em :other.",
48
+ integer: "O campo :attribute deverá conter um número inteiro.",
49
+ ip: "O campo :attribute deverá conter um IP válido.",
50
+ ipv4: "O campo :attribute deverá conter um IPv4 válido.",
51
+ ipv6: "O campo :attribute deverá conter um IPv6 válido.",
52
+ json: "O campo :attribute deverá conter um texto JSON válido.",
53
+ lt: {
54
+ numeric: "The :attribute must be less than :value.",
55
+ file: "The :attribute must be less than :value kilobytes.",
56
+ string: "The :attribute must be less than :value characters.",
57
+ array: "The :attribute must have less than :value items."
58
+ },
59
+ lte: {
60
+ numeric: "The :attribute must be less than or equal :value.",
61
+ file: "The :attribute must be less than or equal :value kilobytes.",
62
+ string: "The :attribute must be less than or equal :value characters.",
63
+ array: "The :attribute must not have more than :value items."
64
+ },
65
+ max: {
66
+ numeric: "O campo :attribute não deverá conter um valor superior a :max.",
67
+ file: "O campo :attribute não deverá ter um tamanho superior a :max kilobytes.",
68
+ string: "O campo :attribute não deverá conter mais de :max caracteres.",
69
+ array: "O campo :attribute não deverá conter mais de :max elementos."
70
+ },
71
+ mimes: "O campo :attribute deverá conter um ficheiro do tipo: :values.",
72
+ mimetypes: "O campo :attribute deverá conter um ficheiro do tipo: :values.",
73
+ min: {
74
+ numeric: "O campo :attribute deverá ter um valor superior ou igual a :min.",
75
+ file: "O campo :attribute deverá ter no mínimo :min kilobytes.",
76
+ string: "O campo :attribute deverá conter no mínimo :min caracteres.",
77
+ array: "O campo :attribute deverá conter no mínimo :min elementos."
78
+ },
79
+ not_in: "O campo :attribute contém um valor inválido.",
80
+ not_regex: "The :attribute format is invalid.",
81
+ numeric: "O campo :attribute deverá conter um valor numérico.",
82
+ present: "O campo :attribute deverá estar presente.",
83
+ regex: "O formato do valor para o campo :attribute é inválido.",
84
+ required: "É obrigatória a indicação de um valor para o campo :attribute.",
85
+ required_if:
86
+ "É obrigatória a indicação de um valor para o campo :attribute quando o valor do campo :other é igual a :value.",
87
+ required_unless:
88
+ "É obrigatória a indicação de um valor para o campo :attribute a menos que :other esteja presente em :values.",
89
+ required_with: "É obrigatória a indicação de um valor para o campo :attribute quando :values está presente.",
90
+ required_with_all:
91
+ "É obrigatória a indicação de um valor para o campo :attribute quando um dos :values está presente.",
92
+ required_without: "É obrigatória a indicação de um valor para o campo :attribute quando :values não está presente.",
93
+ required_without_all:
94
+ "É obrigatória a indicação de um valor para o campo :attribute quando nenhum dos :values está presente.",
95
+ same: "Os campos :attribute e :other deverão conter valores iguais.",
96
+ size: {
97
+ numeric: "O campo :attribute deverá conter o valor :size.",
98
+ file: "O campo :attribute deverá ter o tamanho de :size kilobytes.",
99
+ string: "O campo :attribute deverá conter :size caracteres.",
100
+ array: "O campo :attribute deverá conter :size elementos."
101
+ },
102
+ string: "O campo :attribute deverá conter texto.",
103
+ timezone: "O campo :attribute deverá ter um fuso horário válido.",
104
+ unique: "O valor indicado para o campo :attribute já se encontra registado.",
105
+ uploaded: "O upload do ficheiro :attribute falhou.",
106
+ url: "O formato do URL indicado para o campo :attribute é inválido."
107
+ };