From 4c0fb53ba79b32c6b455c435d1e525d789eaf29f Mon Sep 17 00:00:00 2001 From: Davide Bellini Date: Fri, 2 Oct 2015 15:48:13 +0200 Subject: [PATCH] Fixed style, again ;) --- resources/lang/it/validation.php | 108 +++++++++++++++---------------- 1 file changed, 54 insertions(+), 54 deletions(-) diff --git a/resources/lang/it/validation.php b/resources/lang/it/validation.php index d001c872..8aae0147 100644 --- a/resources/lang/it/validation.php +++ b/resources/lang/it/validation.php @@ -22,70 +22,70 @@ return [ | */ - 'accepted' => ":attribute deve essere accettato.", - 'active_url' => ":attribute non è un URL valido.", - 'after' => ":attribute deve essere una data successiva al :date.", - 'alpha' => ":attribute può contenere solo lettere.", - 'alpha_dash' => ":attribute può contenere solo lettere, numeri e trattini.", - 'alpha_num' => ":attribute può contenere solo lettere e numeri.", - 'array' => ":attribute deve essere un array.", - 'before' => ":attribute deve essere una data precedente al :date.", + 'accepted' => ':attribute deve essere accettato.', + 'active_url' => ':attribute non è un URL valido.', + 'after' => ':attribute deve essere una data successiva al :date.', + 'alpha' => ':attribute può contenere solo lettere.', + 'alpha_dash' => ':attribute può contenere solo lettere, numeri e trattini.', + 'alpha_num' => ':attribute può contenere solo lettere e numeri.', + 'array' => ':attribute deve essere un array.', + 'before' => ':attribute deve essere una data precedente al :date.', 'between' => [ - 'numeric' => ":attribute deve trovarsi tra :min - :max.", - 'file' => ":attribute deve trovarsi tra :min - :max kilobytes.", - 'string' => ":attribute deve trovarsi tra :min - :max caratteri.", - 'array' => ":attribute deve avere tra :min - :max elementi.", + 'numeric' => ':attribute deve trovarsi tra :min - :max.', + 'file' => ':attribute deve trovarsi tra :min - :max kilobytes.', + 'string' => ':attribute deve trovarsi tra :min - :max caratteri.', + 'array' => ':attribute deve avere tra :min - :max elementi.', ], - 'boolean' => "Il campo :attribute deve essere vero o falso.", - 'confirmed' => "Il campo di conferma per :attribute non coincide.", - 'date' => ":attribute non è una data valida.", - 'date_format' => ":attribute non coincide con il formato :format.", - 'different' => ":attribute e :other devono essere differenti.", - 'digits' => ":attribute deve essere di :digits cifre.", - 'digits_between' => ":attribute deve essere tra :min e :max cifre.", - 'email' => ":attribute non è valido.", - 'exists' => ":attribute selezionato/a non è valido.", - 'filled' => "Il campo :attribute è richiesto.", - 'image' => ":attribute deve essere un'immagine.", - 'in' => ":attribute selezionato non è valido.", - 'integer' => ":attribute deve essere un numero intero.", - 'ip' => ":attribute deve essere un indirizzo IP valido.", - 'json' => ":attribute deve essere una stringa JSON valida.", + 'boolean' => 'Il campo :attribute deve essere vero o falso.', + 'confirmed' => 'Il campo di conferma per :attribute non coincide.', + 'date' => ':attribute non è una data valida.', + 'date_format' => ':attribute non coincide con il formato :format.', + 'different' => ':attribute e :other devono essere differenti.', + 'digits' => ':attribute deve essere di :digits cifre.', + 'digits_between' => ':attribute deve essere tra :min e :max cifre.', + 'email' => ':attribute non è valido.', + 'exists' => ':attribute selezionato/a non è valido.', + 'filled' => 'Il campo :attribute è richiesto.', + 'image' => ':attribute deve essere un\'immagine.', + 'in' => ':attribute selezionato non è valido.', + 'integer' => ':attribute deve essere un numero intero.', + 'ip' => ':attribute deve essere un indirizzo IP valido.', + 'json' => ':attribute deve essere una stringa JSON valida.', 'max' => [ - 'numeric' => ":attribute non può essere superiore a :max.", - 'file' => ":attribute non può essere superiore a :max kilobytes.", - 'string' => ":attribute non può contenere più di :max caratteri.", - 'array' => ":attribute non può avere più di :max elementi.", + 'numeric' => ':attribute non può essere superiore a :max.', + 'file' => ':attribute non può essere superiore a :max kilobytes.', + 'string' => ':attribute non può contenere più di :max caratteri.', + 'array' => ':attribute non può avere più di :max elementi.', ], - 'mimes' => ":attribute deve essere del tipo: :values.", + 'mimes' => ':attribute deve essere del tipo: :values.', 'min' => [ - 'numeric' => ":attribute deve essere almeno :min.", - 'file' => ":attribute deve essere almeno di :min kilobytes.", - 'string' => ":attribute deve contenere almeno :min caratteri.", - 'array' => ":attribute deve avere almeno :min elementi.", + 'numeric' => ':attribute deve essere almeno :min.', + 'file' => ':attribute deve essere almeno di :min kilobytes.', + 'string' => ':attribute deve contenere almeno :min caratteri.', + 'array' => ':attribute deve avere almeno :min elementi.', ], - 'not_in' => "Il valore selezionato per :attribute non è valido.", - 'numeric' => ":attribute deve essere un numero.", - 'regex' => "Il formato del campo :attribute non è valido.", - 'required' => "Il campo :attribute è richiesto.", - 'required_if' => "Il campo :attribute è richiesto quando :other è :value.", - 'required_with' => "Il campo :attribute è richiesto quando :values è presente.", - 'required_with_all' => "Il campo :attribute è richiesto quando :values è presente.", - 'required_without' => "Il campo :attribute è richiesto quando :values non è presente.", - 'required_without_all' => "Il campo :attribute è richiesto quando nessuno di :values è presente.", - 'same' => ":attribute e :other devono coincidere.", + 'not_in' => 'Il valore selezionato per :attribute non è valido.', + 'numeric' => ':attribute deve essere un numero.', + 'regex' => 'Il formato del campo :attribute non è valido.', + 'required' => 'Il campo :attribute è richiesto.', + 'required_if' => 'Il campo :attribute è richiesto quando :other è :value.', + 'required_with' => 'Il campo :attribute è richiesto quando :values è presente.', + 'required_with_all' => 'Il campo :attribute è richiesto quando :values è presente.', + 'required_without' => 'Il campo :attribute è richiesto quando :values non è presente.', + 'required_without_all' => 'Il campo :attribute è richiesto quando nessuno di :values è presente.', + 'same' => ':attribute e :other devono coincidere.', 'size' => [ - 'numeric' => ":attribute deve essere :size.", - 'file' => ":attribute deve essere :size kilobytes.", - 'string' => ":attribute deve contenere :size caratteri.", - 'array' => ":attribute deve contenere :size elementi.", + 'numeric' => ':attribute deve essere :size.', + 'file' => ':attribute deve essere :size kilobytes.', + 'string' => ':attribute deve contenere :size caratteri.', + 'array' => ':attribute deve contenere :size elementi.', ], - 'string' => ":attribute deve essere una stringa.", - 'timezone' => ":attribute deve essere una zona valida.", - 'unique' => ":attribute è stato già utilizzato.", - 'url' => "Il formato del campo :attribute non è valido.", + 'string' => ':attribute deve essere una stringa.', + 'timezone' => ':attribute deve essere una zona valida.', + 'unique' => ':attribute è stato già utilizzato.', + 'url' => 'Il formato del campo :attribute non è valido.', /* |--------------------------------------------------------------------------