You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
6.6 KiB
PHP

<?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
| such as the size rules. Feel free to tweak each of these messages.
|
*/
'accepted' => ':attribute을(를) 반드시 동의해야 합니다.',
'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.',
'after' => ':attribute은(는) 반드시 :date 이후 날짜여야 합니다.',
'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.',
'alpha_dash' => ':attribute은(는) 문자, 숫자, 대쉬(-)만 포함할 수 있습니다.',
'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.',
'array' => ':attribute은(는) 반드시 배열이어야 합니다.',
'before' => ':attribute은(는) 반드시 :date 이전 날짜여야 합니다.',
'between' => [
'numeric' => ':attribute은(는) 반드시 :min에서 :max 사이여야 합니다.',
'file' => ':attribute은(는) 반드시 :min에서 :max 킬로바이트 사이여야 합니다.',
'string' => ':attribute은(는) 반드시 :min에서 :max 문자 사이여야 합니다.',
'array' => ':attribute은(는) 반드시 :min에서 :max 아이템 사이여야 합니다.',
],
'boolean' => ':attribute은(는) true 또는 false 이어야 합니다.',
'confirmed' => ':attribute 확인 항목이 일치하지 않습니다.',
'date' => ':attribute은(는) 유효한 날짜가 아닙니다.',
'date_format' => ':attribute은(는) :format 형식과 일치하지 않습니다.',
'different' => ':attribute와(과) :other은(는) 반드시 서로 달라야 합니다.',
'digits' => ':attribute은(는) 반드시 :digits 자릿수여야 합니다.',
'digits_between' => ':attribute은(는) 반드시 :min에서 :max 자릿수 사이여야 합니다.',
'email' => ':attribute 형식은 유효하지 않습니다.',
'exists' => '선택된 :attribute은(는) 유효하지 않습니다.',
'filled' => ':attribute 필드는 필수입니다.',
'image' => ':attribute은(는) 반드시 이미지여야 합니다.',
'in' => '선택된 :attribute은(는) 유효하지 않습니다.',
'integer' => ':attribute은(는) 반드시 정수여야 합니다.',
'ip' => ':attribute은(는) 반드시 유효한 IP 주소여야 합니다.',
'json' => 'The :attribute must be a valid JSON string.',
'max' => [
'numeric' => ':attribute은(는) 반드시 :max 보다 작아야 합니다.',
'file' => ':attribute은(는) 반드시 :max 킬로바이트보다 작아야 합니다.',
'string' => ':attribute은(는) 반드시 :max 자리보다 작아야 합니다.',
'array' => ':attribute은(는) 반드시 :max 아이템보다 작아야 합니다.',
],
'mimes' => ':attribute은(는) 반드시 다음의 파일 형식이어야 합니다: :values.',
'min' => [
'numeric' => ':attribute은(는) 반드시 :min 보다 커야 합니다.',
'file' => ':attribute은(는) 반드시 :min 킬로바이트보다 커야 합니다.',
'string' => ':attribute은(는) 반드시 :min 자리보다 커야 합니다.',
'array' => ':attribute은(는) 반드시 :max 아이템보다 커야 합니다.',
],
'not_in' => '선택된 :attribute은(는) 유효하지 않습니다.',
'numeric' => ':attribute은(는) 반드시 숫자여야 합니다.',
'regex' => ':attribute 형식은 유효하지 않습니다.',
'required' => ':attribute 필드는 필수입니다.',
'required_if' => ':other이(가) :value 일때 :attribute 필드는 필수입니다.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => ':values이(가) 있는 경우 :attribute 필드는 필수입니다.',
'required_with_all' => ':values이(가) 모두 있는 경우 :attribute 필드는 필수입니다.',
'required_without' => ':values이(가) 없는 경우 :attribute 필드는 필수입니다.',
'required_without_all' => ':values이(가) 모두 없는 경우 :attribute 필드는 필수입니다.',
'same' => ':attribute와(과) :other은(는) 반드시 일치해야 합니다.',
'size' => [
'numeric' => ':attribute은(는) 반드시 :size (이)여야 합니다.',
'file' => ':attribute은(는) 반드시 :size 킬로바이트여야 합니다.',
'string' => ':attribute은(는) 반드시 :size 자릿수여야 합니다.',
'array' => ':attribute은(는) 반드시 :max 개의 아이템을 포함해야 합니다.',
],
'string' => 'The :attribute must be a string.',
'timezone' => ':attribute은(는) 올바른 시간대 이어야 합니다.',
'unique' => ':attribute은(는) 이미 사용중 입니다.',
'url' => ':attribute 형식은 유효하지 않습니다.',
/*
|--------------------------------------------------------------------------
| 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' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| 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' => [
//
],
];