cmdx 1.6.1 → 1.7.0

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 (105) hide show
  1. checksums.yaml +4 -4
  2. data/.cursor/rules/cursor-instructions.mdc +2 -2
  3. data/CHANGELOG.md +16 -1
  4. data/LLM.md +168 -2
  5. data/docs/attributes/coercions.md +2 -0
  6. data/docs/attributes/validations.md +2 -0
  7. data/docs/callbacks.md +2 -0
  8. data/docs/getting_started.md +8 -0
  9. data/docs/internationalization.md +106 -2
  10. data/docs/middlewares.md +2 -0
  11. data/docs/workflows.md +48 -0
  12. data/lib/cmdx/pipeline.rb +43 -11
  13. data/lib/cmdx/railtie.rb +2 -2
  14. data/lib/cmdx/version.rb +1 -1
  15. data/lib/cmdx.rb +2 -0
  16. data/lib/generators/cmdx/locale_generator.rb +39 -0
  17. data/lib/generators/cmdx/templates/install.rb +7 -0
  18. data/lib/generators/cmdx/templates/workflow.rb.tt +8 -0
  19. data/lib/generators/cmdx/workflow_generator.rb +57 -0
  20. data/lib/locales/af.yml +49 -0
  21. data/lib/locales/ar.yml +49 -0
  22. data/lib/locales/az.yml +49 -0
  23. data/lib/locales/be.yml +49 -0
  24. data/lib/locales/bg.yml +49 -0
  25. data/lib/locales/bn.yml +49 -0
  26. data/lib/locales/bs.yml +49 -0
  27. data/lib/locales/ca.yml +49 -0
  28. data/lib/locales/cnr.yml +49 -0
  29. data/lib/locales/cs.yml +49 -0
  30. data/lib/locales/cy.yml +49 -0
  31. data/lib/locales/da.yml +49 -0
  32. data/lib/locales/de.yml +49 -0
  33. data/lib/locales/dz.yml +49 -0
  34. data/lib/locales/el.yml +49 -0
  35. data/lib/locales/eo.yml +49 -0
  36. data/lib/locales/es.yml +49 -0
  37. data/lib/locales/et.yml +49 -0
  38. data/lib/locales/eu.yml +49 -0
  39. data/lib/locales/fa.yml +49 -0
  40. data/lib/locales/fi.yml +49 -0
  41. data/lib/locales/fr.yml +49 -0
  42. data/lib/locales/fy.yml +49 -0
  43. data/lib/locales/gd.yml +49 -0
  44. data/lib/locales/gl.yml +49 -0
  45. data/lib/locales/he.yml +49 -0
  46. data/lib/locales/hi.yml +49 -0
  47. data/lib/locales/hr.yml +49 -0
  48. data/lib/locales/hu.yml +49 -0
  49. data/lib/locales/hy.yml +49 -0
  50. data/lib/locales/id.yml +49 -0
  51. data/lib/locales/is.yml +49 -0
  52. data/lib/locales/it.yml +49 -0
  53. data/lib/locales/ja.yml +49 -0
  54. data/lib/locales/ka.yml +49 -0
  55. data/lib/locales/kk.yml +49 -0
  56. data/lib/locales/km.yml +49 -0
  57. data/lib/locales/kn.yml +49 -0
  58. data/lib/locales/ko.yml +49 -0
  59. data/lib/locales/lb.yml +49 -0
  60. data/lib/locales/lo.yml +49 -0
  61. data/lib/locales/lt.yml +49 -0
  62. data/lib/locales/lv.yml +49 -0
  63. data/lib/locales/mg.yml +49 -0
  64. data/lib/locales/mk.yml +49 -0
  65. data/lib/locales/ml.yml +49 -0
  66. data/lib/locales/mn.yml +49 -0
  67. data/lib/locales/mr-IN.yml +49 -0
  68. data/lib/locales/ms.yml +49 -0
  69. data/lib/locales/nb.yml +49 -0
  70. data/lib/locales/ne.yml +49 -0
  71. data/lib/locales/nl.yml +49 -0
  72. data/lib/locales/nn.yml +49 -0
  73. data/lib/locales/oc.yml +49 -0
  74. data/lib/locales/or.yml +49 -0
  75. data/lib/locales/pa.yml +49 -0
  76. data/lib/locales/pl.yml +49 -0
  77. data/lib/locales/pt.yml +49 -0
  78. data/lib/locales/rm.yml +49 -0
  79. data/lib/locales/ro.yml +49 -0
  80. data/lib/locales/ru.yml +49 -0
  81. data/lib/locales/sc.yml +49 -0
  82. data/lib/locales/sk.yml +49 -0
  83. data/lib/locales/sl.yml +49 -0
  84. data/lib/locales/sq.yml +49 -0
  85. data/lib/locales/sr.yml +49 -0
  86. data/lib/locales/st.yml +49 -0
  87. data/lib/locales/sv.yml +49 -0
  88. data/lib/locales/sw.yml +49 -0
  89. data/lib/locales/ta.yml +49 -0
  90. data/lib/locales/te.yml +49 -0
  91. data/lib/locales/th.yml +49 -0
  92. data/lib/locales/tl.yml +49 -0
  93. data/lib/locales/tr.yml +49 -0
  94. data/lib/locales/tt.yml +49 -0
  95. data/lib/locales/ug.yml +49 -0
  96. data/lib/locales/uk.yml +49 -0
  97. data/lib/locales/ur.yml +49 -0
  98. data/lib/locales/uz.yml +49 -0
  99. data/lib/locales/vi.yml +49 -0
  100. data/lib/locales/wo.yml +49 -0
  101. data/lib/locales/zh-CN.yml +49 -0
  102. data/lib/locales/zh-HK.yml +49 -0
  103. data/lib/locales/zh-TW.yml +49 -0
  104. data/lib/locales/zh-YUE.yml +49 -0
  105. metadata +117 -1
@@ -0,0 +1,49 @@
1
+ da:
2
+ cmdx:
3
+ attributes:
4
+ required: "skal være tilgængelig via kilden"
5
+ undefined: "delegerer til udefineret metode %{method}"
6
+ coercions:
7
+ into_a: "kunne ikke konverteres til %{type}"
8
+ into_an: "kunne ikke konverteres til %{type}"
9
+ into_any: "kunne ikke konverteres til en af: %{types}"
10
+ unknown: "ukendt %{type} konverteringstype"
11
+ faults:
12
+ unspecified: "ingen grund givet"
13
+ types:
14
+ array: "array"
15
+ big_decimal: "stort decimaltal"
16
+ boolean: "boolesk"
17
+ complex: "kompleks"
18
+ date_time: "dato og tid"
19
+ date: "dato"
20
+ float: "flydetal"
21
+ hash: "hash"
22
+ integer: "heltal"
23
+ rational: "rationelt"
24
+ string: "streng"
25
+ symbol: "symbol"
26
+ time: "tid"
27
+ validators:
28
+ exclusion:
29
+ of: "må ikke være en af: %{values}"
30
+ within: "må ikke være mellem %{min} og %{max}"
31
+ format: "er et ugyldigt format"
32
+ inclusion:
33
+ of: "skal være en af: %{values}"
34
+ within: "skal være mellem %{min} og %{max}"
35
+ length:
36
+ is: "længden skal være %{is}"
37
+ is_not: "længden må ikke være %{is_not}"
38
+ min: "længden skal være mindst %{min}"
39
+ max: "længden må højst være %{max}"
40
+ not_within: "længden må ikke være mellem %{min} og %{max}"
41
+ within: "længden skal være mellem %{min} og %{max}"
42
+ numeric:
43
+ is: "skal være %{is}"
44
+ is_not: "må ikke være %{is_not}"
45
+ min: "skal være mindst %{min}"
46
+ max: "må højst være %{max}"
47
+ not_within: "må ikke være mellem %{min} og %{max}"
48
+ within: "skal være mellem %{min} og %{max}"
49
+ presence: "må ikke være tom"
@@ -0,0 +1,49 @@
1
+ de:
2
+ cmdx:
3
+ attributes:
4
+ required: "muss über die Quelle zugänglich sein"
5
+ undefined: "delegiert an undefinierte Methode %{method}"
6
+ coercions:
7
+ into_a: "konnte nicht in %{type} umgewandelt werden"
8
+ into_an: "konnte nicht in %{type} umgewandelt werden"
9
+ into_any: "konnte nicht in einen von: %{types} umgewandelt werden"
10
+ unknown: "unbekannter %{type} Umwandlungstyp"
11
+ faults:
12
+ unspecified: "kein Grund angegeben"
13
+ types:
14
+ array: "Array"
15
+ big_decimal: "große Dezimalzahl"
16
+ boolean: "Boolean"
17
+ complex: "komplex"
18
+ date_time: "Datum und Zeit"
19
+ date: "Datum"
20
+ float: "Gleitkommazahl"
21
+ hash: "Hash"
22
+ integer: "Ganzzahl"
23
+ rational: "rational"
24
+ string: "Zeichenkette"
25
+ symbol: "Symbol"
26
+ time: "Zeit"
27
+ validators:
28
+ exclusion:
29
+ of: "darf nicht einer von sein: %{values}"
30
+ within: "darf nicht zwischen %{min} und %{max} liegen"
31
+ format: "ist ein ungültiges Format"
32
+ inclusion:
33
+ of: "muss einer von sein: %{values}"
34
+ within: "muss zwischen %{min} und %{max} liegen"
35
+ length:
36
+ is: "Länge muss %{is} sein"
37
+ is_not: "Länge darf nicht %{is_not} sein"
38
+ min: "Länge muss mindestens %{min} sein"
39
+ max: "Länge darf höchstens %{max} sein"
40
+ not_within: "Länge darf nicht zwischen %{min} und %{max} liegen"
41
+ within: "Länge muss zwischen %{min} und %{max} liegen"
42
+ numeric:
43
+ is: "muss %{is} sein"
44
+ is_not: "darf nicht %{is_not} sein"
45
+ min: "muss mindestens %{min} sein"
46
+ max: "darf höchstens %{max} sein"
47
+ not_within: "darf nicht zwischen %{min} und %{max} liegen"
48
+ within: "muss zwischen %{min} und %{max} liegen"
49
+ presence: "darf nicht leer sein"
@@ -0,0 +1,49 @@
1
+ dz:
2
+ cmdx:
3
+ attributes:
4
+ required: "ཁུངས་ཆུང་བརྒྱུད་ནས་འཇུག་ཆོག་པ་ཆེད་དགོས་པ་ཡིན།"
5
+ undefined: "ཚད་མ་ཆག་པའི་ཐབས་ལམ་ %{method} ལ་ཆ་རྐྱེན་བྱེད།"
6
+ coercions:
7
+ into_a: "%{type} ལ་བསྒྱུར་མ་ཐུབ།"
8
+ into_an: "%{type} ལ་བསྒྱུར་མ་ཐུབ།"
9
+ into_any: "འདི་ཚོའི་ནང་ནས་གཅིག་ལ་བསྒྱུར་མ་ཐུབ། %{types}"
10
+ unknown: "མ་ཤེས་པའི་ %{type} བསྒྱུར་པའི་རིགས།"
11
+ faults:
12
+ unspecified: "རྒྱུ་མཚན་མ་བཟུང་།"
13
+ types:
14
+ array: "ཐིག་ཕྲེང་།"
15
+ big_decimal: "ཆེ་བའི་བཅུ་ཆ།"
16
+ boolean: "བུལ།"
17
+ complex: "ཆག་ཆག་ཅན།"
18
+ date_time: "ཟླ་ཚེས་དང་དུས་ཚིགས།"
19
+ date: "ཟླ་ཚེས།"
20
+ float: "གཡོ་བའི་ཐིག་ཕྲེང་།"
21
+ hash: "ཧཱཤ།"
22
+ integer: "ཆ་ཆ་མེད་པའི་ཨང་།"
23
+ rational: "རིག་པ་ཅན།"
24
+ string: "ཡིག་ཚགས།"
25
+ symbol: "མཚན་མ།"
26
+ time: "དུས་ཚིགས།"
27
+ validators:
28
+ exclusion:
29
+ of: "འདི་ཚོའི་ནང་ནས་གཅིག་མི་ཆོག %{values}"
30
+ within: "%{min} དང་ %{max} ཡབ་ཡུམ་ནས་མི་ཆོག"
31
+ format: "ཆ་རྐྱེན་མི་ཆོག་པའི་རྣམ་པ།"
32
+ inclusion:
33
+ of: "འདི་ཚོའི་ནང་ནས་གཅིག་ཆོག་པ་ཆེད་དགོས། %{values}"
34
+ within: "%{min} དང་ %{max} ཡབ་ཡུམ་ནས་ཆོག་པ་ཆེད་དགོས།"
35
+ length:
36
+ is: "རིང་ཚད་ %{is} ཆོག་པ་ཆེད་དགོས།"
37
+ is_not: "རིང་ཚད་ %{is_not} མི་ཆོག"
38
+ min: "རིང་ཚད་ཆུང་ཤོས་ %{min} ཆོག་པ་ཆེད་དགོས།"
39
+ max: "རིང་ཚད་ཆེ་ཤོས་ %{max} ཆོག"
40
+ not_within: "རིང་ཚད་ %{min} དང་ %{max} ཡབ་ཡུམ་ནས་མི་ཆོག"
41
+ within: "རིང་ཚད་ %{min} དང་ %{max} ཡབ་ཡུམ་ནས་ཆོག་པ་ཆེད་དགོས།"
42
+ numeric:
43
+ is: "%{is} ཆོག་པ་ཆེད་དགོས།"
44
+ is_not: "%{is_not} མི་ཆོག"
45
+ min: "ཆུང་ཤོས་ %{min} ཆོག་པ་ཆེད་དགོས།"
46
+ max: "ཆེ་ཤོས་ %{max} ཆོག"
47
+ not_within: "%{min} དང་ %{max} ཡབ་ཡུམ་ནས་མི་ཆོག"
48
+ within: "%{min} དང་ %{max} ཡབ་ཡུམ་ནས་ཆོག་པ་ཆེད་དགོས།"
49
+ presence: "སྟོང་པོ་མི་ཆོག"
@@ -0,0 +1,49 @@
1
+ el:
2
+ cmdx:
3
+ attributes:
4
+ required: "πρέπει να είναι προσβάσιμο μέσω της πηγής"
5
+ undefined: "αντιπροσωπεύει απροσδιόριστη μέθοδο %{method}"
6
+ coercions:
7
+ into_a: "δεν μπόρεσε να μετατραπεί σε %{type}"
8
+ into_an: "δεν μπόρεσε να μετατραπεί σε %{type}"
9
+ into_any: "δεν μπόρεσε να μετατραπεί σε ένα από: %{types}"
10
+ unknown: "άγνωστος τύπος μετατροπής %{type}"
11
+ faults:
12
+ unspecified: "δεν δόθηκε λόγος"
13
+ types:
14
+ array: "πίνακας"
15
+ big_decimal: "μεγάλος δεκαδικός"
16
+ boolean: "δυαδικός"
17
+ complex: "μιγαδικός"
18
+ date_time: "ημερομηνία και ώρα"
19
+ date: "ημερομηνία"
20
+ float: "αριθμός κινητής υποδιαστολής"
21
+ hash: "κατακερματισμός"
22
+ integer: "ακέραιος"
23
+ rational: "ρητός"
24
+ string: "συμβολοσειρά"
25
+ symbol: "σύμβολο"
26
+ time: "ώρα"
27
+ validators:
28
+ exclusion:
29
+ of: "δεν πρέπει να είναι ένα από: %{values}"
30
+ within: "δεν πρέπει να είναι μεταξύ %{min} και %{max}"
31
+ format: "είναι μη έγκυρη μορφή"
32
+ inclusion:
33
+ of: "πρέπει να είναι ένα από: %{values}"
34
+ within: "πρέπει να είναι μεταξύ %{min} και %{max}"
35
+ length:
36
+ is: "το μήκος πρέπει να είναι %{is}"
37
+ is_not: "το μήκος δεν πρέπει να είναι %{is_not}"
38
+ min: "το μήκος πρέπει να είναι τουλάχιστον %{min}"
39
+ max: "το μήκος πρέπει να είναι το πολύ %{max}"
40
+ not_within: "το μήκος δεν πρέπει να είναι μεταξύ %{min} και %{max}"
41
+ within: "το μήκος πρέπει να είναι μεταξύ %{min} και %{max}"
42
+ numeric:
43
+ is: "πρέπει να είναι %{is}"
44
+ is_not: "δεν πρέπει να είναι %{is_not}"
45
+ min: "πρέπει να είναι τουλάχιστον %{min}"
46
+ max: "πρέπει να είναι το πολύ %{max}"
47
+ not_within: "δεν πρέπει να είναι μεταξύ %{min} και %{max}"
48
+ within: "πρέπει να είναι μεταξύ %{min} και %{max}"
49
+ presence: "δεν μπορεί να είναι κενό"
@@ -0,0 +1,49 @@
1
+ eo:
2
+ cmdx:
3
+ attributes:
4
+ required: "devas esti alirebla tra la fonto"
5
+ undefined: "delegas al nedifinita metodo %{method}"
6
+ coercions:
7
+ into_a: "ne povis esti konvertita al %{type}"
8
+ into_an: "ne povis esti konvertita al %{type}"
9
+ into_any: "ne povis esti konvertita al unu el: %{types}"
10
+ unknown: "nekonata %{type} konverta tipo"
11
+ faults:
12
+ unspecified: "neniu kialo donita"
13
+ types:
14
+ array: "tabelo"
15
+ big_decimal: "granda dekuma"
16
+ boolean: "bulea"
17
+ complex: "kompleksa"
18
+ date_time: "dato kaj tempo"
19
+ date: "dato"
20
+ float: "flosanta punkto"
21
+ hash: "hash"
22
+ integer: "entjero"
23
+ rational: "racia"
24
+ string: "ĉeno"
25
+ symbol: "simbolo"
26
+ time: "tempo"
27
+ validators:
28
+ exclusion:
29
+ of: "ne devas esti unu el: %{values}"
30
+ within: "ne devas esti inter %{min} kaj %{max}"
31
+ format: "estas nevalida formato"
32
+ inclusion:
33
+ of: "devas esti unu el: %{values}"
34
+ within: "devas esti inter %{min} kaj %{max}"
35
+ length:
36
+ is: "longo devas esti %{is}"
37
+ is_not: "longo ne devas esti %{is_not}"
38
+ min: "longo devas esti almenaŭ %{min}"
39
+ max: "longo povas esti maksimume %{max}"
40
+ not_within: "longo ne devas esti inter %{min} kaj %{max}"
41
+ within: "longo devas esti inter %{min} kaj %{max}"
42
+ numeric:
43
+ is: "devas esti %{is}"
44
+ is_not: "ne devas esti %{is_not}"
45
+ min: "devas esti almenaŭ %{min}"
46
+ max: "povas esti maksimume %{max}"
47
+ not_within: "ne devas esti inter %{min} kaj %{max}"
48
+ within: "devas esti inter %{min} kaj %{max}"
49
+ presence: "ne povas esti malplena"
@@ -0,0 +1,49 @@
1
+ es:
2
+ cmdx:
3
+ attributes:
4
+ required: "debe ser accesible a través de la fuente"
5
+ undefined: "delega a método indefinido %{method}"
6
+ coercions:
7
+ into_a: "no se pudo convertir en un %{type}"
8
+ into_an: "no se pudo convertir en un %{type}"
9
+ into_any: "no se pudo convertir en uno de: %{types}"
10
+ unknown: "tipo de conversión %{type} desconocido"
11
+ faults:
12
+ unspecified: "sin razón especificada"
13
+ types:
14
+ array: "array"
15
+ big_decimal: "decimal grande"
16
+ boolean: "booleano"
17
+ complex: "complejo"
18
+ date_time: "fecha y hora"
19
+ date: "fecha"
20
+ float: "flotante"
21
+ hash: "hash"
22
+ integer: "entero"
23
+ rational: "racional"
24
+ string: "cadena"
25
+ symbol: "símbolo"
26
+ time: "tiempo"
27
+ validators:
28
+ exclusion:
29
+ of: "no debe ser uno de: %{values}"
30
+ within: "no debe estar dentro de %{min} y %{max}"
31
+ format: "es un formato inválido"
32
+ inclusion:
33
+ of: "debe ser uno de: %{values}"
34
+ within: "debe estar dentro de %{min} y %{max}"
35
+ length:
36
+ is: "la longitud debe ser %{is}"
37
+ is_not: "la longitud no debe ser %{is_not}"
38
+ min: "la longitud debe ser al menos %{min}"
39
+ max: "la longitud debe ser como máximo %{max}"
40
+ not_within: "la longitud no debe estar dentro de %{min} y %{max}"
41
+ within: "la longitud debe estar dentro de %{min} y %{max}"
42
+ numeric:
43
+ is: "debe ser %{is}"
44
+ is_not: "no debe ser %{is_not}"
45
+ min: "debe ser al menos %{min}"
46
+ max: "debe ser como máximo %{max}"
47
+ not_within: "no debe estar dentro de %{min} y %{max}"
48
+ within: "debe estar dentro de %{min} y %{max}"
49
+ presence: "no puede estar vacío"
@@ -0,0 +1,49 @@
1
+ et:
2
+ cmdx:
3
+ attributes:
4
+ required: "peab olema kättesaadav läbi allika"
5
+ undefined: "delegeerib määramata meetodile %{method}"
6
+ coercions:
7
+ into_a: "ei õnnestunud teisendada %{type} tüübiks"
8
+ into_an: "ei õnnestunud teisendada %{type} tüübiks"
9
+ into_any: "ei õnnestunud teisendada üheks järgmistest: %{types}"
10
+ unknown: "tundmatu %{type} teisendustüüp"
11
+ faults:
12
+ unspecified: "põhjust pole antud"
13
+ types:
14
+ array: "massiiv"
15
+ big_decimal: "suur kümnendmurd"
16
+ boolean: "loogiline"
17
+ complex: "kompleksne"
18
+ date_time: "kuupäev ja kellaaeg"
19
+ date: "kuupäev"
20
+ float: "ujukomaarv"
21
+ hash: "räsi"
22
+ integer: "täisarv"
23
+ rational: "ratsionaalne"
24
+ string: "string"
25
+ symbol: "sümbol"
26
+ time: "aeg"
27
+ validators:
28
+ exclusion:
29
+ of: "ei tohi olla üks järgmistest: %{values}"
30
+ within: "ei tohi olla %{min} ja %{max} vahel"
31
+ format: "on kehtetu vorming"
32
+ inclusion:
33
+ of: "peab olema üks järgmistest: %{values}"
34
+ within: "peab olema %{min} ja %{max} vahel"
35
+ length:
36
+ is: "pikkus peab olema %{is}"
37
+ is_not: "pikkus ei tohi olla %{is_not}"
38
+ min: "pikkus peab olema vähemalt %{min}"
39
+ max: "pikkus võib olla maksimaalselt %{max}"
40
+ not_within: "pikkus ei tohi olla %{min} ja %{max} vahel"
41
+ within: "pikkus peab olema %{min} ja %{max} vahel"
42
+ numeric:
43
+ is: "peab olema %{is}"
44
+ is_not: "ei tohi olla %{is_not}"
45
+ min: "peab olema vähemalt %{min}"
46
+ max: "võib olla maksimaalselt %{max}"
47
+ not_within: "ei tohi olla %{min} ja %{max} vahel"
48
+ within: "peab olema %{min} ja %{max} vahel"
49
+ presence: "ei tohi olla tühi"
@@ -0,0 +1,49 @@
1
+ eu:
2
+ cmdx:
3
+ attributes:
4
+ required: "iturriaren bidez eskuragarri izan behar du"
5
+ undefined: "metodo zehaztugabea %{method} delegatzen du"
6
+ coercions:
7
+ into_a: "ezin izan da %{type} ra bihurtu"
8
+ into_an: "ezin izan da %{type} ra bihurtu"
9
+ into_any: "ezin izan da honetako batera bihurtu: %{types}"
10
+ unknown: "%{type} bihurtze mota ezezaguna"
11
+ faults:
12
+ unspecified: "arrazoirik eman gabe"
13
+ types:
14
+ array: "array"
15
+ big_decimal: "hamartar handia"
16
+ boolean: "boolearra"
17
+ complex: "konplexua"
18
+ date_time: "data eta ordua"
19
+ date: "data"
20
+ float: "puntu mugikorra"
21
+ hash: "hash"
22
+ integer: "zenbaki osoa"
23
+ rational: "arrazoizkoa"
24
+ string: "katea"
25
+ symbol: "ikurra"
26
+ time: "ordua"
27
+ validators:
28
+ exclusion:
29
+ of: "ezin da honetako bat izan: %{values}"
30
+ within: "ezin da %{min} eta %{max} artean izan"
31
+ format: "formatu baliogabea da"
32
+ inclusion:
33
+ of: "honetako bat izan behar du: %{values}"
34
+ within: "%{min} eta %{max} artean izan behar du"
35
+ length:
36
+ is: "luzera %{is} izan behar du"
37
+ is_not: "luzera ezin da %{is_not} izan"
38
+ min: "luzera gutxienez %{min} izan behar du"
39
+ max: "luzera gehienez %{max} izan daiteke"
40
+ not_within: "luzera ezin da %{min} eta %{max} artean izan"
41
+ within: "luzera %{min} eta %{max} artean izan behar du"
42
+ numeric:
43
+ is: "%{is} izan behar du"
44
+ is_not: "ezin da %{is_not} izan"
45
+ min: "gutxienez %{min} izan behar du"
46
+ max: "gehienez %{max} izan daiteke"
47
+ not_within: "ezin da %{min} eta %{max} artean izan"
48
+ within: "%{min} eta %{max} artean izan behar du"
49
+ presence: "ezin da hutsik izan"
@@ -0,0 +1,49 @@
1
+ fa:
2
+ cmdx:
3
+ attributes:
4
+ required: "باید از طریق منبع قابل دسترسی باشد"
5
+ undefined: "به متد تعریف نشده %{method} واگذار می‌کند"
6
+ coercions:
7
+ into_a: "نمی‌تواند به %{type} تبدیل شود"
8
+ into_an: "نمی‌تواند به %{type} تبدیل شود"
9
+ into_any: "نمی‌تواند به یکی از اینها تبدیل شود: %{types}"
10
+ unknown: "نوع تبدیل %{type} ناشناخته"
11
+ faults:
12
+ unspecified: "دلیلی ارائه نشده"
13
+ types:
14
+ array: "آرایه"
15
+ big_decimal: "اعشاری بزرگ"
16
+ boolean: "بولین"
17
+ complex: "مرکب"
18
+ date_time: "تاریخ و زمان"
19
+ date: "تاریخ"
20
+ float: "نقطه شناور"
21
+ hash: "هش"
22
+ integer: "عدد صحیح"
23
+ rational: "گویا"
24
+ string: "رشته"
25
+ symbol: "نماد"
26
+ time: "زمان"
27
+ validators:
28
+ exclusion:
29
+ of: "نباید یکی از اینها باشد: %{values}"
30
+ within: "نباید بین %{min} و %{max} باشد"
31
+ format: "فرمت نامعتبر است"
32
+ inclusion:
33
+ of: "باید یکی از اینها باشد: %{values}"
34
+ within: "باید بین %{min} و %{max} باشد"
35
+ length:
36
+ is: "طول باید %{is} باشد"
37
+ is_not: "طول نباید %{is_not} باشد"
38
+ min: "طول باید حداقل %{min} باشد"
39
+ max: "طول می‌تواند حداکثر %{max} باشد"
40
+ not_within: "طول نباید بین %{min} و %{max} باشد"
41
+ within: "طول باید بین %{min} و %{max} باشد"
42
+ numeric:
43
+ is: "باید %{is} باشد"
44
+ is_not: "نباید %{is_not} باشد"
45
+ min: "باید حداقل %{min} باشد"
46
+ max: "می‌تواند حداکثر %{max} باشد"
47
+ not_within: "نباید بین %{min} و %{max} باشد"
48
+ within: "باید بین %{min} و %{max} باشد"
49
+ presence: "نمی‌تواند خالی باشد"
@@ -0,0 +1,49 @@
1
+ fi:
2
+ cmdx:
3
+ attributes:
4
+ required: "täytyy olla saatavilla lähteen kautta"
5
+ undefined: "delegoi määrittelemättömälle metodille %{method}"
6
+ coercions:
7
+ into_a: "ei voitu muuntaa tyypiksi %{type}"
8
+ into_an: "ei voitu muuntaa tyypiksi %{type}"
9
+ into_any: "ei voitu muuntaa yhdeksi seuraavista: %{types}"
10
+ unknown: "tuntematon %{type} muunnostyyppi"
11
+ faults:
12
+ unspecified: "syyä ei annettu"
13
+ types:
14
+ array: "taulukko"
15
+ big_decimal: "iso desimaali"
16
+ boolean: "totuusarvo"
17
+ complex: "kompleksi"
18
+ date_time: "päivämäärä ja aika"
19
+ date: "päivämäärä"
20
+ float: "liukuluku"
21
+ hash: "hajautustaulu"
22
+ integer: "kokonaisluku"
23
+ rational: "rationaaliluku"
24
+ string: "merkkijono"
25
+ symbol: "symboli"
26
+ time: "aika"
27
+ validators:
28
+ exclusion:
29
+ of: "ei saa olla yksi seuraavista: %{values}"
30
+ within: "ei saa olla välillä %{min} ja %{max}"
31
+ format: "on virheellinen muoto"
32
+ inclusion:
33
+ of: "täytyy olla yksi seuraavista: %{values}"
34
+ within: "täytyy olla välillä %{min} ja %{max}"
35
+ length:
36
+ is: "pituuden täytyy olla %{is}"
37
+ is_not: "pituuden ei saa olla %{is_not}"
38
+ min: "pituuden täytyy olla vähintään %{min}"
39
+ max: "pituuden täytyy olla enintään %{max}"
40
+ not_within: "pituuden ei saa olla välillä %{min} ja %{max}"
41
+ within: "pituuden täytyy olla välillä %{min} ja %{max}"
42
+ numeric:
43
+ is: "täytyy olla %{is}"
44
+ is_not: "ei saa olla %{is_not}"
45
+ min: "täytyy olla vähintään %{min}"
46
+ max: "täytyy olla enintään %{max}"
47
+ not_within: "ei saa olla välillä %{min} ja %{max}"
48
+ within: "täytyy olla välillä %{min} ja %{max}"
49
+ presence: "ei saa olla tyhjä"
@@ -0,0 +1,49 @@
1
+ fr:
2
+ cmdx:
3
+ attributes:
4
+ required: "doit être accessible via la source"
5
+ undefined: "délègue à une méthode non définie %{method}"
6
+ coercions:
7
+ into_a: "n'a pas pu être converti en %{type}"
8
+ into_an: "n'a pas pu être converti en %{type}"
9
+ into_any: "n'a pas pu être converti en l'un de : %{types}"
10
+ unknown: "type de conversion %{type} inconnu"
11
+ faults:
12
+ unspecified: "aucune raison donnée"
13
+ types:
14
+ array: "tableau"
15
+ big_decimal: "grand décimal"
16
+ boolean: "booléen"
17
+ complex: "complexe"
18
+ date_time: "date et heure"
19
+ date: "date"
20
+ float: "flottant"
21
+ hash: "hash"
22
+ integer: "entier"
23
+ rational: "rationnel"
24
+ string: "chaîne"
25
+ symbol: "symbole"
26
+ time: "heure"
27
+ validators:
28
+ exclusion:
29
+ of: "ne doit pas être l'un de : %{values}"
30
+ within: "ne doit pas être dans %{min} et %{max}"
31
+ format: "est un format invalide"
32
+ inclusion:
33
+ of: "doit être l'un de : %{values}"
34
+ within: "doit être dans %{min} et %{max}"
35
+ length:
36
+ is: "la longueur doit être %{is}"
37
+ is_not: "la longueur ne doit pas être %{is_not}"
38
+ min: "la longueur doit être au moins %{min}"
39
+ max: "la longueur doit être au plus %{max}"
40
+ not_within: "la longueur ne doit pas être dans %{min} et %{max}"
41
+ within: "la longueur doit être dans %{min} et %{max}"
42
+ numeric:
43
+ is: "doit être %{is}"
44
+ is_not: "ne doit pas être %{is_not}"
45
+ min: "doit être au moins %{min}"
46
+ max: "doit être au plus %{max}"
47
+ not_within: "ne doit pas être dans %{min} et %{max}"
48
+ within: "doit être dans %{min} et %{max}"
49
+ presence: "ne peut pas être vide"
@@ -0,0 +1,49 @@
1
+ fy:
2
+ cmdx:
3
+ attributes:
4
+ required: "moat tagong hawwe fia de boarne"
5
+ undefined: "delegearret nei ûndefiniearre metoade %{method}"
6
+ coercions:
7
+ into_a: "koe net nei %{type} konvertearje"
8
+ into_an: "koe net nei %{type} konvertearje"
9
+ into_any: "koe net nei ien fan: %{types} konvertearje"
10
+ unknown: "ûnbekende %{type} konverzje type"
11
+ faults:
12
+ unspecified: "gjin reden jûn"
13
+ types:
14
+ array: "array"
15
+ big_decimal: "grutte desimaal"
16
+ boolean: "booleaansk"
17
+ complex: "kompleks"
18
+ date_time: "datum en tiid"
19
+ date: "datum"
20
+ float: "driuwpunt"
21
+ hash: "hash"
22
+ integer: "hielgetal"
23
+ rational: "rasjonaal"
24
+ string: "string"
25
+ symbol: "symboal"
26
+ time: "tiid"
27
+ validators:
28
+ exclusion:
29
+ of: "moat net ien fan wêze: %{values}"
30
+ within: "moat net binnen %{min} en %{max} wêze"
31
+ format: "is in ûnjildich formaat"
32
+ inclusion:
33
+ of: "moat ien fan wêze: %{values}"
34
+ within: "moat binnen %{min} en %{max} wêze"
35
+ length:
36
+ is: "lingte moat %{is} wêze"
37
+ is_not: "lingte moat net %{is_not} wêze"
38
+ min: "lingte moat op syn minst %{min} wêze"
39
+ max: "lingte kin maksimaal %{max} wêze"
40
+ not_within: "lingte moat net binnen %{min} en %{max} wêze"
41
+ within: "lingte moat binnen %{min} en %{max} wêze"
42
+ numeric:
43
+ is: "moat %{is} wêze"
44
+ is_not: "moat net %{is_not} wêze"
45
+ min: "moat op syn minst %{min} wêze"
46
+ max: "kin maksimaal %{max} wêze"
47
+ not_within: "moat net binnen %{min} en %{max} wêze"
48
+ within: "moat binnen %{min} en %{max} wêze"
49
+ presence: "kin net leech wêze"
@@ -0,0 +1,49 @@
1
+ gd:
2
+ cmdx:
3
+ attributes:
4
+ required: "feumaidh e a bhith inntinneach tron stòr"
5
+ undefined: "deileigeas gu modh neo-mhìneachaidh %{method}"
6
+ coercions:
7
+ into_a: "cha b' urrainn tionndadh gu %{type}"
8
+ into_an: "cha b' urrainn tionndadh gu %{type}"
9
+ into_any: "cha b' urrainn tionndadh gu aon de: %{types}"
10
+ unknown: "seòrsa tionndaidh %{type} neo-aithnichte"
11
+ faults:
12
+ unspecified: "cha deach adhbhar a thoirt seachad"
13
+ types:
14
+ array: "sreath"
15
+ big_decimal: "deicheamh mòr"
16
+ boolean: "booleach"
17
+ complex: "iom-fhillte"
18
+ date_time: "ceann-latha agus àm"
19
+ date: "ceann-latha"
20
+ float: "puing air itealaich"
21
+ hash: "hash"
22
+ integer: "àireamh shlàn"
23
+ rational: "reusanta"
24
+ string: "sreang"
25
+ symbol: "samhla"
26
+ time: "àm"
27
+ validators:
28
+ exclusion:
29
+ of: "chan fhaod a bhith aon de: %{values}"
30
+ within: "chan fhaod a bhith taobh a-staigh %{min} agus %{max}"
31
+ format: "tha e na chruth neo-dhligheach"
32
+ inclusion:
33
+ of: "feumaidh e a bhith aon de: %{values}"
34
+ within: "feumaidh e a bhith taobh a-staigh %{min} agus %{max}"
35
+ length:
36
+ is: "feumaidh an fhad a bhith %{is}"
37
+ is_not: "chan fhaod an fhad a bhith %{is_not}"
38
+ min: "feumaidh an fhad a bhith co-dhiù %{min}"
39
+ max: "faodaidh an fhad a bhith suas ri %{max}"
40
+ not_within: "chan fhaod an fhad a bhith taobh a-staigh %{min} agus %{max}"
41
+ within: "feumaidh an fhad a bhith taobh a-staigh %{min} agus %{max}"
42
+ numeric:
43
+ is: "feumaidh e a bhith %{is}"
44
+ is_not: "chan fhaod e a bhith %{is_not}"
45
+ min: "feumaidh e a bhith co-dhiù %{min}"
46
+ max: "faodaidh e a bhith suas ri %{max}"
47
+ not_within: "chan fhaod e a bhith taobh a-staigh %{min} agus %{max}"
48
+ within: "feumaidh e a bhith taobh a-staigh %{min} agus %{max}"
49
+ presence: "chan fhaod e a bhith falamh"