|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +return [ |
| 6 | + 'accepted' => 'Il campo :attribute deve essere accettato.', |
| 7 | + 'accepted_if' => 'Il campo :attribute deve essere accettato quando :other è :value.', |
| 8 | + 'active_url' => 'Il campo :attribute deve essere un URL valido.', |
| 9 | + 'after' => 'Il campo :attribute deve essere una data successiva a :date.', |
| 10 | + 'after_or_equal' => 'Il campo :attribute deve essere una data successiva o uguale a :date.', |
| 11 | + 'alpha' => 'Il campo :attribute può contenere solo lettere.', |
| 12 | + 'alpha_dash' => 'Il campo :attribute può contenere solo lettere, numeri, trattini e underscore.', |
| 13 | + 'alpha_num' => 'Il campo :attribute può contenere solo lettere e numeri.', |
| 14 | + 'array' => 'Il campo :attribute deve contenere :size elementi.', |
| 15 | + 'ascii' => 'Il campo :attribute può contenere solo caratteri alfanumerici e simboli a singolo byte.', |
| 16 | + 'before' => 'Il campo :attribute deve essere una data precedente a :date.', |
| 17 | + 'before_or_equal' => 'Il campo :attribute deve essere una data precedente o uguale a :date.', |
| 18 | + 'boolean' => 'Il campo :attribute deve essere vero o falso.', |
| 19 | + 'can' => 'Il campo :attribute contiene un valore non autorizzato.', |
| 20 | + 'confirmed' => 'La conferma del campo :attribute non corrisponde.', |
| 21 | + 'contains' => 'Al campo :attribute manca un valore richiesto.', |
| 22 | + 'current_password' => 'La password non è corretta.', |
| 23 | + 'date' => 'Il campo :attribute deve essere una data valida.', |
| 24 | + 'date_equals' => 'Il campo :attribute deve essere una data uguale a :date.', |
| 25 | + 'date_format' => 'Il campo :attribute deve corrispondere al formato :format.', |
| 26 | + 'decimal' => 'Il campo :attribute deve avere :decimal cifre decimali.', |
| 27 | + 'declined' => 'Il campo :attribute deve essere rifiutato.', |
| 28 | + 'declined_if' => 'Il campo :attribute deve essere rifiutato quando :other è :value.', |
| 29 | + 'different' => 'Il campo :attribute e :other devono essere diversi.', |
| 30 | + 'digits' => 'Il campo :attribute deve essere di :digits cifre.', |
| 31 | + 'digits_between' => 'Il campo :attribute deve essere tra :min e :max cifre.', |
| 32 | + 'dimensions' => 'Il campo :attribute ha dimensioni immagine non valide.', |
| 33 | + 'distinct' => 'Il campo :attribute ha un valore duplicato.', |
| 34 | + 'doesnt_end_with' => 'Il campo :attribute non deve terminare con uno dei seguenti valori: :values.', |
| 35 | + 'doesnt_start_with' => 'Il campo :attribute non deve iniziare con uno dei seguenti valori: :values.', |
| 36 | + 'email' => 'Il campo :attribute deve essere un indirizzo email valido.', |
| 37 | + 'ends_with' => 'Il campo :attribute deve terminare con uno dei seguenti valori: :values.', |
| 38 | + 'enum' => 'Il valore selezionato per :attribute non è valido.', |
| 39 | + 'exists' => 'Il valore selezionato per :attribute non è valido.', |
| 40 | + 'extensions' => 'Il campo :attribute deve avere una delle seguenti estensioni: :values.', |
| 41 | + 'file' => 'Il campo :attribute deve avere dimensione di :size kilobyte.', |
| 42 | + 'filled' => 'Il campo :attribute deve avere un valore.', |
| 43 | + 'hex_color' => 'Il campo :attribute deve essere un colore esadecimale valido.', |
| 44 | + 'image' => 'Il campo :attribute deve essere un\'immagine.', |
| 45 | + 'in' => 'Il valore selezionato per :attribute non è valido.', |
| 46 | + 'in_array' => 'Il campo :attribute deve esistere in :other.', |
| 47 | + 'integer' => 'Il campo :attribute deve essere un intero.', |
| 48 | + 'ip' => 'Il campo :attribute deve essere un indirizzo IP valido.', |
| 49 | + 'ipv4' => 'Il campo :attribute deve essere un indirizzo IPv4 valido.', |
| 50 | + 'ipv6' => 'Il campo :attribute deve essere un indirizzo IPv6 valido.', |
| 51 | + 'json' => 'Il campo :attribute deve essere una stringa JSON valida.', |
| 52 | + 'letters' => 'Il campo :attribute deve contenere almeno una lettera.', |
| 53 | + 'list' => 'Il campo :attribute deve essere una lista.', |
| 54 | + 'lowercase' => 'Il campo :attribute deve essere in minuscolo.', |
| 55 | + 'mac_address' => 'Il campo :attribute deve essere un indirizzo MAC valido.', |
| 56 | + 'max_digits' => 'Il campo :attribute non deve avere più di :max cifre.', |
| 57 | + 'mimes' => 'Il campo :attribute deve essere un file di tipo: :values.', |
| 58 | + 'mimetypes' => 'Il campo :attribute deve essere un file di tipo: :values.', |
| 59 | + 'min_digits' => 'Il campo :attribute deve avere almeno :min cifre.', |
| 60 | + 'missing' => 'Il campo :attribute deve essere assente.', |
| 61 | + 'missing_if' => 'Il campo :attribute deve essere assente quando :other è :value.', |
| 62 | + 'missing_unless' => 'Il campo :attribute deve essere assente a meno che :other non sia :value.', |
| 63 | + 'missing_with' => 'Il campo :attribute deve essere assente quando :values è presente.', |
| 64 | + 'missing_with_all' => 'Il campo :attribute deve essere assente quando :values sono presenti.', |
| 65 | + 'mixed' => 'Il campo :attribute deve contenere almeno una lettera maiuscola e una minuscola.', |
| 66 | + 'multiple_of' => 'Il campo :attribute deve essere un multiplo di :value.', |
| 67 | + 'not_in' => 'Il valore selezionato per :attribute non è valido.', |
| 68 | + 'not_regex' => 'Il formato del campo :attribute non è valido.', |
| 69 | + 'numbers' => 'Il campo :attribute deve contenere almeno un numero.', |
| 70 | + 'numeric' => 'Il campo :attribute deve essere numerico.', |
| 71 | + 'present' => 'Il campo :attribute deve essere presente.', |
| 72 | + 'present_if' => 'Il campo :attribute deve essere presente quando :other è :value.', |
| 73 | + 'present_unless' => 'Il campo :attribute deve essere presente a meno che :other non sia :value.', |
| 74 | + 'present_with' => 'Il campo :attribute deve essere presente quando :values è presente.', |
| 75 | + 'present_with_all' => 'Il campo :attribute deve essere presente quando :values sono presenti.', |
| 76 | + 'prohibited' => 'Il campo :attribute è proibito.', |
| 77 | + 'prohibited_if' => 'Il campo :attribute è proibito quando :other è :value.', |
| 78 | + 'prohibited_if_accepted' => 'Il campo :attribute è proibito quando :other è accettato.', |
| 79 | + 'prohibited_if_declined' => 'Il campo :attribute è proibito quando :other è rifiutato.', |
| 80 | + 'prohibited_unless' => 'Il campo :attribute è proibito a meno che :other non sia in :values.', |
| 81 | + 'prohibits' => 'Il campo :attribute impedisce la presenza di :other.', |
| 82 | + 'regex' => 'Il formato del campo :attribute non è valido.', |
| 83 | + 'required' => 'Il campo :attribute è obbligatorio.', |
| 84 | + 'required_array_keys' => 'Il campo :attribute deve contenere voci per: :values.', |
| 85 | + 'required_if' => 'Il campo :attribute è obbligatorio quando :other è :value.', |
| 86 | + 'required_if_accepted' => 'Il campo :attribute è obbligatorio quando :other è accettato.', |
| 87 | + 'required_if_declined' => 'Il campo :attribute è obbligatorio quando :other è rifiutato.', |
| 88 | + 'required_unless' => 'Il campo :attribute è obbligatorio a meno che :other sia in :values.', |
| 89 | + 'required_with' => 'Il campo :attribute è obbligatorio quando :values è presente.', |
| 90 | + 'required_with_all' => 'Il campo :attribute è obbligatorio quando :values sono presenti.', |
| 91 | + 'required_without' => 'Il campo :attribute è obbligatorio quando :values non è presente.', |
| 92 | + 'required_without_all' => 'Il campo :attribute è obbligatorio quando nessuno di :values è presente.', |
| 93 | + 'rule-name' => 'messaggio-personalizzato', |
| 94 | + 'same' => 'Il campo :attribute deve corrispondere a :other.', |
| 95 | + 'starts_with' => 'Il campo :attribute deve iniziare con uno dei seguenti valori: :values.', |
| 96 | + 'string' => 'Il campo :attribute deve essere una stringa.', |
| 97 | + 'symbols' => 'Il campo :attribute deve contenere almeno un simbolo.', |
| 98 | + 'timezone' => 'Il campo :attribute deve essere un fuso orario valido.', |
| 99 | + 'ulid' => 'Il campo :attribute deve essere un ULID valido.', |
| 100 | + 'uncompromised' => 'Il valore fornito per :attribute è comparso in una perdita di dati. Scegli un :attribute diverso.', |
| 101 | + 'unique' => 'Il valore di :attribute è già in uso.', |
| 102 | + 'uploaded' => 'Il caricamento di :attribute non è riuscito.', |
| 103 | + 'uppercase' => 'Il campo :attribute deve essere in maiuscolo.', |
| 104 | + 'url' => 'Il campo :attribute deve essere un URL valido.', |
| 105 | + 'uuid' => 'Il campo :attribute deve essere un UUID valido.', |
| 106 | +]; |
0 commit comments