<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => ':attribute ph?i ???c ch?p nh?n.',
'active_url' => ':attribute không ph?i là URL h?p l?.',
'after' => ':attribute ph?i là ngày sau :date.',
'after_or_equal' => ':attribute ph?i là m?t ngày sau ho?c b?ng ngày :date.',
'alpha' => ':attribute ph?i là ch? cái.',
'alpha_dash' => ':attribute ph?i là ch? cái, s? ho?c d?u g?ch ngang.',
'alpha_num' => ':attribute ph?i là ch? cái ho?c s?.',
'array' => ':attribute ph?i là m?ng.',
'before' => ':attribute ph?i là ngày tr??c ngày :date.',
'before_or_equal' => ':attribute ph?i là m?t ngày tr??c ho?c b?ng v?i ngày :date.',
'between' => [
'numeric' => ':attribute ph?i l?n h?n :min và nh? h?n :max.',
'file' => ':attribute ph?i l?n h?n :min và nh? h?n :max kilobytes.',
'string' => ':attribute ph?i l?n h?n :min và nh? h?n :max kí t?.',
'array' => ':attribute ph?i l?n h?n :min và nh? h?n :max items.',
],
'boolean' => 'Tr??ng :attribute ph?i là giá tr? ?úng ho?c sai.',
'confirmed' => ':attribute không chính xác.',
'date' => ':attribute không ph?i là ngày.',
'date_format' => ':attribute không ?úng ??nh d?ng v?i :format.',
'different' => ':attribute ph?i khác :other.',
'digits' => ':attribute ph?i có :digits ch? s?.',
'digits_between' => ':attribute ph?i l?n h?n :min và nh? h?n :max ch? s?.',
'dimensions' => ':attribute kích th??c không h?p l?.',
'distinct' => 'Tr??ng :attribute b? trùng giá tr?.',
'email' => ':attribute ph?i là m?t email h?p l?.',
'exists' => 'M?c ?ă ch?n :attribute không h?p l?.',
'file' => ':attribute ph?i là t?p tin.',
'filled' => 'Tr??ng :attribute không ???c ?? tr?ng.',
'image' => ':attribute ph?i là h́nh ?nh.',
'in' => 'M?c ?ă ch?n :attribute không h?p l?.',
'in_array' => 'Tr??ng :attribute không t?n t?i trong :other.',
'integer' => ':attribute ph?i là m?t s? nguyên.',
'ip' => ':attribute ph?i là m?t ??a ch? IP h?p l?.',
'ipv4' => ':attribute ph?i là ??a ch? IPv4 h?p l?.',
'ipv6' => ':attribute ph?i là ??a ch? IPv6 h?p l?.',
'json' => ':attribute ph?i là chu?i JSON h?p l?.',
'max' => [
'numeric' => ':attribute không ???c l?n h?n :max.',
'file' => ':attribute không ???c l?n h?n :max kilobytes.',
'string' => ':attribute không ???c l?n h?n :max kí t?.',
'array' => ':attribute không ???c l?n h?n :max items.',
],
'mimes' => 'Lo?i file c?a :attribute ph?i là: :values.',
'mimetypes' => 'Lo?i file c?a :attribute ph?i là: :values.',
'min' => [
'numeric' => ':attribute ph?i l?n h?n :min.',
'file' => ':attribute ph?i l?n h?n :min kilobytes.',
'string' => ':attribute ph?i nhi?u h?n :min kí t?.',
'array' => ':attribute ph?i có nhi?u h?n :min item.',
],
'not_in' => 'M?c ?ă ch?n :attribute không h?p l?.',
'numeric' => ':attribute ph?i là s?.',
'present' => 'Ph?i có tr??ng :attribute.',
'regex' => '??nh d?ng c?a :attribute không h?p l?.',
'required' => 'Tr??ng :attribute là b?t bu?c.',
'required_if' => 'Tr??ng :attribute là b?t bu?c khi :other là :value.',
'required_unless' => 'Tr??ng :attribute là b?t bu?c tr? khi :other là :values.',
'required_with' => 'Tr??ng :attribute là b?t bu?c khi có :values.',
'required_with_all' => 'Tr??ng :attribute là b?t bu?c khi có :values.',
'required_without' => 'Tr??ng :attribute là b?t bu?c khi không có :values.',
'required_without_all' => 'Tr??ng :attribute là b?t bu?c khi không có :values.',
'same' => ':attribute ph?i trùng kh?p v?i :other.',
'size' => [
'numeric' => ':attribute ph?i có kích th??c :size.',
'file' => ':attribute ph?i có kích th??c :size kilobytes.',
'string' => ':attribute ph?i có :size kí t?.',
'array' => ':attribute ph?i có :size items.',
],
'string' => ':attribute ph?i là chu?i.',
'timezone' => ':attribute ph?i là múi là h?p l?.',
'unique' => ':attribute ?ă t?n t?i.',
'uploaded' => ':attribute b? l?i khi t?i lên.',
'url' => ':attribute sai ??nh d?ng.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of "email". This simply helps us make messages a little cleaner.
|
*/
'attributes' => [],
];
|