|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + 'accepted' => 'El camp :attribute ha de ser acceptat.', |
| 5 | + 'active_url' => 'El camp :attribute no és una URL vàlida.', |
| 6 | + 'after' => 'El camp :attribute ha de ser una data posterior a :date.', |
| 7 | + 'after_or_equal' => 'El camp :attribute ha de ser una data posterior o igual a :date.', |
| 8 | + 'alpha' => 'El camp :attribute només pot contenir lletres.', |
| 9 | + 'alpha_dash' => 'El camp :attribute només pot contenir lletres, números, guions i guions baixos.', |
| 10 | + 'alpha_num' => 'El camp :attribute només pot contenir lletres i números.', |
| 11 | + 'array' => 'El camp :attribute ha de ser un array.', |
| 12 | + 'before' => 'El camp :attribute ha de ser una data anterior a :date.', |
| 13 | + 'before_or_equal' => 'El camp :attribute ha de ser una data anterior o igual a :date.', |
| 14 | + 'between' => [ |
| 15 | + 'numeric' => 'El camp :attribute ha d\'estar entre :min i :max.', |
| 16 | + 'file' => 'El camp :attribute ha de tenir entre :min i :max kilobytes.', |
| 17 | + 'string' => 'El camp :attribute ha de tenir entre :min i :max caràcters.', |
| 18 | + 'array' => 'El camp :attribute ha de tenir entre :min i :max elements.', |
| 19 | + ], |
| 20 | + 'boolean' => 'El camp :attribute ha de ser verdader o fals.', |
| 21 | + 'confirmed' => 'La confirmació del camp :attribute no coincideix.', |
| 22 | + 'date' => 'El camp :attribute no és una data vàlida.', |
| 23 | + 'date_equals' => 'El camp :attribute ha de ser una data igual a :date.', |
| 24 | + 'date_format' => 'El camp :attribute no concorda amb el format :format.', |
| 25 | + 'different' => 'Els camps :attribute i :other han de ser diferents.', |
| 26 | + 'digits' => 'El camp :attribute ha de tenir :digits dígits.', |
| 27 | + 'digits_between' => 'El camp :attribute ha de tenir entre :min i :max dígits.', |
| 28 | + 'dimensions' => 'El camp :attribute té dimensions d\'imatge no vàlides.', |
| 29 | + 'distinct' => 'El camp :attribute té un valor duplicat.', |
| 30 | + 'email' => 'El camp :attribute ha de ser una adreça de correu electrònic vàlida.', |
| 31 | + 'ends_with' => 'El camp :attribute ha d\'acabar amb un dels següents valors: :values', |
| 32 | + 'exists' => 'El camp :attribute seleccionat no és vàlid.', |
| 33 | + 'file' => 'El camp :attribute ha de ser un arxiu.', |
| 34 | + 'filled' => 'El camp :attribute ha de tenir un valor.', |
| 35 | + 'gt' => [ |
| 36 | + 'numeric' => 'El camp :attribute ha de ser més gran que :value.', |
| 37 | + 'file' => 'El camp :attribute ha de ser més gran que :value kilobytes.', |
| 38 | + 'string' => 'El camp :attribute ha de tenir més de :value caràcters.', |
| 39 | + 'array' => 'El camp :attribute ha de tenir més de :value elements.', |
| 40 | + ], |
| 41 | + 'gte' => [ |
| 42 | + 'numeric' => 'El camp :attribute ha de ser més gran o igual que :value.', |
| 43 | + 'file' => 'El camp :attribute ha de ser més gran o igual que :value kilobytes.', |
| 44 | + 'string' => 'El camp :attribute ha de tenir :value caràcters o més.', |
| 45 | + 'array' => 'El camp :attribute ha de tenir :value elements o més.', |
| 46 | + ], |
| 47 | + 'image' => 'El camp :attribute ha de ser una imatge.', |
| 48 | + 'in' => 'El camp :attribute seleccionat no és vàlid.', |
| 49 | + 'in_array' => 'El camp :attribute no existeix a :other.', |
| 50 | + 'integer' => 'El camp :attribute ha de ser un nombre enter.', |
| 51 | + 'ip' => 'El camp :attribute ha de ser una adreça IP vàlida.', |
| 52 | + 'ipv4' => 'El camp :attribute ha de ser una adreça IPv4 vàlida.', |
| 53 | + 'ipv6' => 'El camp :attribute ha de ser una adreça IPv6 vàlida.', |
| 54 | + 'json' => 'El camp :attribute ha de ser una cadena JSON vàlida.', |
| 55 | + 'lt' => [ |
| 56 | + 'numeric' => 'El camp :attribute ha de ser menor que :value.', |
| 57 | + 'file' => 'El camp :attribute ha de ser menor que :value kilobytes.', |
| 58 | + 'string' => 'El camp :attribute ha de tenir menys de :value caràcters.', |
| 59 | + 'array' => 'El camp :attribute ha de tenir menys de :value elements.', |
| 60 | + ], |
| 61 | + 'lte' => [ |
| 62 | + 'numeric' => 'El camp :attribute ha de ser menor o igual que :value.', |
| 63 | + 'file' => 'El camp :attribute ha de ser menor o igual que :value kilobytes.', |
| 64 | + 'string' => 'El camp :attribute ha de tenir :value caràcters o menys.', |
| 65 | + 'array' => 'El camp :attribute no pot tenir més de :value elements.', |
| 66 | + ], |
| 67 | + 'max' => [ |
| 68 | + 'numeric' => 'El camp :attribute no pot ser més gran que :max.', |
| 69 | + 'file' => 'El camp :attribute no pot ser més gran que :max kilobytes.', |
| 70 | + 'string' => 'El camp :attribute no pot tenir més de :max caràcters.', |
| 71 | + 'array' => 'El camp :attribute no pot tenir més de :max elements.', |
| 72 | + ], |
| 73 | + 'mimes' => 'El camp :attribute ha de ser un arxiu de tipus: :values.', |
| 74 | + 'mimetypes' => 'El camp :attribute ha de ser un arxiu de tipus: :values.', |
| 75 | + 'min' => [ |
| 76 | + 'numeric' => 'El camp :attribute ha de ser almenys :min.', |
| 77 | + 'file' => 'El camp :attribute ha de tenir almenys :min kilobytes.', |
| 78 | + 'string' => 'El camp :attribute ha de tenir almenys :min caràcters.', |
| 79 | + 'array' => 'El camp :attribute ha de tenir almenys :min elements.', |
| 80 | + ], |
| 81 | + 'multiple_of' => 'El camp :attribute ha de ser múltiple de :value', |
| 82 | + 'not_in' => 'El camp :attribute seleccionat no és vàlid.', |
| 83 | + 'not_regex' => 'El format del camp :attribute no és vàlid.', |
| 84 | + 'numeric' => 'El camp :attribute ha de ser un número.', |
| 85 | + 'password' => 'La contrasenya és incorrecta.', |
| 86 | + 'present' => 'El camp :attribute ha d\'estar present.', |
| 87 | + 'regex' => 'El format del camp :attribute no és vàlid.', |
| 88 | + 'required' => 'El camp :attribute és obligatori.', |
| 89 | + 'required_if' => 'El camp :attribute és obligatori quan :other és :value.', |
| 90 | + 'required_unless' => 'El camp :attribute és obligatori a menys que :other estigui en :values.', |
| 91 | + 'required_with' => 'El camp :attribute és obligatori quan :values està present.', |
| 92 | + 'required_with_all' => 'El camp :attribute és obligatori quan :values estan presents.', |
| 93 | + 'required_without' => 'El camp :attribute és obligatori quan :values no està present.', |
| 94 | + 'required_without_all' => 'El camp :attribute és obligatori quan cap dels :values estan presents.', |
| 95 | + 'same' => 'Els camps :attribute i :other han de coincidir.', |
| 96 | + 'size' => [ |
| 97 | + 'numeric' => 'El camp :attribute ha de ser :size.', |
| 98 | + 'file' => 'El camp :attribute ha de tenir :size kilobytes.', |
| 99 | + 'string' => 'El camp :attribute ha de tenir :size caràcters.', |
| 100 | + 'array' => 'El camp :attribute ha de contenir :size elements.', |
| 101 | + ], |
| 102 | + 'starts_with' => 'El camp :attribute ha de començar amb un dels següents valors: :values', |
| 103 | + 'string' => 'El camp :attribute ha de ser una cadena de caràcters.', |
| 104 | + 'timezone' => 'El camp :attribute ha de ser una zona horària vàlida.', |
| 105 | + 'unique' => 'El valor del camp :attribute ja està en ús.', |
| 106 | + 'uploaded' => 'El camp :attribute ha fallat en pujar.', |
| 107 | + 'url' => 'El format del camp :attribute no és vàlid.', |
| 108 | + 'uuid' => 'El camp :attribute ha de ser un UUID vàlid.', |
| 109 | + |
| 110 | + 'custom' => [ |
| 111 | + 'attribute-name' => [ |
| 112 | + 'rule-name' => 'custom-message', |
| 113 | + ], |
| 114 | + ], |
| 115 | + |
| 116 | + 'attributes' => [], |
| 117 | + |
| 118 | + 'invalid_json' => 'Entrada no vàlida. Corregeix-la i torna-ho a provar.', |
| 119 | + 'invalid_captcha' => 'CAPTCHA no vàlid. Corregeix-lo i torna-ho a provar.', |
| 120 | + 'complete_captcha' => 'Si us plau, completa el CAPTCHA.', |
| 121 | +]; |
0 commit comments