New translations validation.php (Korean)

This commit is contained in:
Cachet Bot 2018-07-12 08:41:11 +01:00
parent 162ab7895e
commit 76325e1c40

View File

@ -22,24 +22,24 @@ return [
|
*/
'accepted' => ':attribute 는 허용되어야 합니다.',
'active_url' => ':attribute 는 올바른 URL이 아닙니다.',
'after' => ':attribute 는 :date 이후의 날짜 여야 합니다.',
'alpha' => ':attribute 는 문자만 포함할 수 있습니다.',
'accepted' => 'The :attribute must be accepted.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
'alpha' => 'The :attribute may only contain letters.',
'alpha_dash' => ':attribute 는 문자, 숫자, -만 포함할 수 있습니다.',
'alpha_num' => ':attribute 는 문자와 숫자만 포함할 수 있습니다.',
'array' => ':attribute 는 배열이어야 합니다.',
'alpha_num' => 'The :attribute may only contain letters and numbers.',
'array' => 'The :attribute must be an array.',
'before' => ':attribute 는 :date 이전의 날짜 여야 합니다.',
'between' => [
'numeric' => 'The :attribute must be between :min and :max.',
'file' => 'The :attribute must be between :min and :max kilobytes.',
'string' => 'The :attribute must be between :min and :max characters.',
'array' => ':attribute 는 :min 과 :max 사이의 항목을 가져야 합니다.',
'array' => 'The :attribute must have between :min and :max items.',
],
'boolean' => ': attribute 는 true 또는 false 여야 합니다.',
'confirmed' => ':attribute 확인 항목이 일치하지 않습니다.',
'boolean' => 'The :attribute field must be true or false.',
'confirmed' => 'The :attribute confirmation does not match.',
'date' => 'The :attribute is not a valid date.',
'date_format' => ':attribute은(는) :format 형식과 일치하지 않습니다.',
'date_format' => 'The :attribute does not match the format :format.',
'different' => 'The :attribute and :other must be different.',
'digits' => 'The :attribute must be :digits digits.',
'digits_between' => 'The :attribute must be between :min and :max digits.',
@ -47,47 +47,47 @@ return [
'exists' => 'The selected :attribute is invalid.',
'distinct' => 'The :attribute field has a duplicate value.',
'filled' => 'The :attribute field is required.',
'image' => ':attribute 는 이미지여야 합니다.',
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The :attribute must be an integer.',
'ip' => 'The :attribute must be a valid IP address.',
'json' => ':attribute 는 유효한 JSON 문자열이어야 합니다.',
'json' => 'The :attribute must be a valid JSON string.',
'max' => [
'numeric' => 'The :attribute may not be greater than :max.',
'file' => 'The :attribute may not be greater than :max kilobytes.',
'string' => 'The :attribute may not be greater than :max characters.',
'array' => ':attribute 는 :max 개 이상의 항목을 가질 수 없습니다.',
'array' => 'The :attribute may not have more than :max items.',
],
'mimes' => 'The :attribute must be a file of type: :values.',
'min' => [
'numeric' => 'The :attribute must be at least :min.',
'file' => ':attribute 는 최소 :min kilobytes 여야 합니다.',
'file' => 'The :attribute must be at least :min kilobytes.',
'string' => 'The :attribute must be at least :min characters.',
'array' => 'The :attribute must have at least :min items.',
],
'not_in' => 'The selected :attribute is invalid.',
'numeric' => 'The :attribute must be a number.',
'present' => 'The :attribute field must be present.',
'regex' => ':attribute 형식이 올바르지 않습니다.',
'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.',
'required_if' => 'The :attribute field is required when :other is :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => ':attribute 는 :values 가 존재할 때 필요합니다.',
'required_with_all' => ':attribute 는 :values 가 존재할 때 필요합니다.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values is present.',
'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
'same' => 'The :attribute and :other must match.',
'size' => [
'numeric' => 'The :attribute must be :size.',
'file' => ':attribute 는 :size kilobytes 여야 합니다.',
'string' => ':attribute 는 :size 자의 문자여야 합니다.',
'file' => 'The :attribute must be :size kilobytes.',
'string' => 'The :attribute must be :size characters.',
'array' => 'The :attribute must contain :size items.',
],
'string' => 'The :attribute must be a string.',
'timezone' => ':attribute 는 유효한 영역이어야 합니다.',
'unique' => ':attribute 는 이미 사용되었습니다.',
'url' => ':attribute 형식이 올바르지 않습니다.',
'timezone' => 'The :attribute must be a valid zone.',
'unique' => 'The :attribute has already been taken.',
'url' => 'The :attribute format is invalid.',
/*
|--------------------------------------------------------------------------
@ -102,7 +102,7 @@ return [
'custom' => [
'attribute-name' => [
'rule-name' => '사용자 정의 메세지',
'rule-name' => 'custom-message',
],
],