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.

188 lines
12 KiB
PHTML

2 years ago
<?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을(를) 동의해야 합니다.',
'accepted_if' => ':other이(가) :value이면 :attribute을(를) 동의해야 합니다.',
'active_url' => ':attribute은(는) 유효한 URL이 아닙니다.',
'after' => ':attribute은(는) :date 이후 날짜여야 합니다.',
'after_or_equal' => ':attribute은(는) :date 이후 날짜이거나 같은 날짜여야 합니다.',
'alpha' => ':attribute은(는) 문자만 포함할 수 있습니다.',
'alpha_dash' => ':attribute은(는) 문자, 숫자, 대쉬(-), 밑줄(_)만 포함할 수 있습니다.',
'alpha_num' => ':attribute은(는) 문자와 숫자만 포함할 수 있습니다.',
'array' => ':attribute은(는) 배열이어야 합니다.',
'before' => ':attribute은(는) :date 이전 날짜여야 합니다.',
'before_or_equal' => ':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 확인 항목이 일치하지 않습니다.',
'current_password' => '비밀번호가 일치하지 않습니다.',
'date' => ':attribute은(는) 유효한 날짜가 아닙니다.',
'date_equals' => ':attribute은(는) :date과(와) 같은 날짜여야 합니다.',
'date_format' => ':attribute이(가) :format 형식과 일치하지 않습니다.',
'declined' => ':attribute은(는) 반드시 선언되어야 합니다.',
'declined_if' => ':other이(가) :value이면 :attribute은(는) 선언되어야 합니다.',
'different' => ':attribute와(과) :other은(는) 서로 달라야 합니다.',
'digits' => ':attribute은(는) :digits 자리 숫자여야 합니다.',
'digits_between' => ':attribute)은(는) :min에서 :max 자리 사이여야 합니다.',
'dimensions' => ':attribute은(는) 올바르지 않는 이미지 크기입니다.',
'distinct' => ':attribute 필드에 중복된 값이 있습니다.',
'email' => ':attribute은(는) 유효한 이메일 주소여야 합니다.',
'ends_with' => ':attribute은(는) 다음 중 하나로 끝나야 합니다: :values.',
'enum' => '선택된 :attribute은(는) 올바르지 않습니다.',
'exists' => '선택된 :attribute은(는) 올바르지 않습니다.',
'file' => ':attribute은(는) 파일이어야 합니다.',
'filled' => ':attribute 값은 필수 항목입니다.',
'gt' => [
'array' => ':attribute의 항목 수는 :value개 보다 많아야 합니다.',
'file' => ':attribute의 용량은 :value킬로바이트보다 커야 합니다.',
'numeric' => ':attribute의 값은 :value보다 커야 합니다.',
'string' => ':attribute의 길이는 :value보다 길어야 합니다.',
],
'gte' => [
'array' => ':attribute의 항목 수는 :value개 보다 같거나 많아야 합니다.',
'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 커야 합니다.',
'numeric' => ':attribute의 값은 :value보다 같거나 커야 합니다.',
'string' => ':attribute의 길이는 :value보다 같거나 길어야 합니다.',
],
'image' => ':attribute 값이 이미지가 아닙니다.',
'in' => '선택된 :attribute은(는) 올바르지 않습니다.',
'in_array' => ':attribute 필드는 :other에 존재하지 않습니다.',
'integer' => ':attribute은(는) 정수여야 합니다.',
'ip' => ':attribute은(는) 유효한 IP 주소여야 합니다.',
'ipv4' => ':attribute은(는) 유효한 IPv4 주소여야 합니다.',
'ipv6' => ':attribute은(는) 유효한 IPv6 주소여야 합니다.',
'json' => ':attribute은(는) JSON 문자열이어야 합니다.',
'lt' => [
'array' => ':attribute의 항목 수는 :value개 보다 작아야 합니다.',
'file' => ':attribute의 용량은 :value킬로바이트보다 작아야 합니다.',
'numeric' => ':attribute의 값은 :value보다 작아야 합니다.',
'string' => ':attribute의 길이는 :value보다 짧아야 합니다.',
],
'lte' => [
'array' => ':attribute의 항목 수는 :value개 보다 같거나 작아야 합니다.',
'file' => ':attribute의 용량은 :value킬로바이트보다 같거나 작아야 합니다.',
'numeric' => ':attribute의 값은 :value보다 같거나 작아야 합니다.',
'string' => ':attribute의 길이는 :value보다 같거나 짧아야 합니다.',
],
'max' => [
'array' => ':attribute은(는) :max개보다 많을 수 없습니다.',
'file' => ':attribute은(는) :max킬로바이트보다 클 수 없습니다.',
'numeric' => ':attribute은(는) :max보다 클 수 없습니다.',
'string' => ':attribute은(는) :max자보다 클 수 없습니다.',
],
'mac_address' => ':attribute은(는) 유효한 MAC address가 아닙니다.',
'mimes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
'mimetypes' => ':attribute은(는) 다음의 파일 형식이어야 합니다: :values.',
'min' => [
'array' => ':attribute은(는) 최소한 :min개의 항목이 있어야 합니다.',
'file' => ':attribute은(는) 최소한 :min킬로바이트이어야 합니다.',
'numeric' => ':attribute은(는) 최소한 :min이어야 합니다.',
'string' => ':attribute은(는) 최소한 :min자이어야 합니다.',
],
'multiple_of' => ':attribute 는 :value 의 배수여야 합니다.',
'not_in' => '선택된 :attribute이(가) 올바르지 않습니다.',
'not_regex' => ':attribute의 형식이 올바르지 않습니다.',
'numeric' => ':attribute은(는) 숫자여야 합니다.',
'password' => '비밀번호가 올바르지 않습니다.',
'present' => ':attribute 힝목이 있어야 합니다.',
'prohibited' => ':attribute 항목은 금지되어 있습니다.',
'prohibited_if' => ':other이(가) :value이면 :attribute 항목은 금지됩니다.',
'prohibited_unless' => ':other가 :values에 있지 않으면 :attribute는 금지됩니다.',
'relatable' => ':attribute는 이 리소스와 연결되어 있지 않을 수 있습니다.',
'prohibits' => 'The :attribute field prohibits :other from being present.',
'regex' => ':attribute 형식이 올바르지 않습니다.',
'required' => ':attribute은(는) 필수 항목입니다.',
'required_array_keys' => ':attribute 항목은 다음 중 하나에 포함되어야 합니다.: :values.',
'required_if' => ':attribute 값이 누락되었습니다 (:other 값이 :value 일 때는 필수).',
'required_unless' => ':attribute 값이 누락되었습니다 (:other 값이 :value 이(가) 아닐 때는 필수).',
'required_with' => ':attribute 값이 누락되었습니다 (:values 값이 있을 때는 필수).',
'required_with_all' => ':attribute 값이 누락되었습니다 (:values 값이 있을 때는 필수).',
'required_without' => ':attribute 값이 누락되었습니다 (:values 값이 없을 때는 필수).',
'required_without_all' => ':attribute 값이 누락되었습니다 (:values 값이 없을 때는 필수).',
'same' => ':attribute와(과) :other은(는) 일치해야 합니다.',
'size' => [
'array' => ':attribute은(는) :size개의 항목을 포함해야 합니다.',
'file' => ':attribute은(는) :size킬로바이트여야 합니다.',
'numeric' => ':attribute은(는) :size (이)여야 합니다.',
'string' => ':attribute은(는) :size자여야 합니다.',
],
'starts_with' => ':attribute은(는) :values 중 하나로 시작해야 합니다.',
'string' => ':attribute은(는) 문자열이어야 합니다.',
'timezone' => ':attribute은(는) 올바른 시간대이어야 합니다.',
'unique' => ':attribute은(는) 이미 사용 중입니다.',
'uploaded' => ':attribute을(를) 업로드하지 못했습니다.',
'url' => ':attribute 형식은 올바르지 않습니다.',
'uuid' => ':attribute은(는) 유효한 UUID이어야 합니다.',
/*
|--------------------------------------------------------------------------
| 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',
'phone.unique' => '이미 가입된 전화번호입니다.',
],
'phone' => [
'unique' => '이미 가입된 전화번호입니다.',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [
'title' => '제목',
'content' => '내용',
'tags' => '태그',
'files' => '파일',
'files.*' => '파일',
'name' => '이름',
'email' => '이메일',
'password' => '비밀번호',
'password_confirmation' => '비밀번호 확인',
'code'=> '제품 ID',
'price'=> '가격',
'context'=> '상세설명',
'phone'=> '전화번호',
],
'is_sms_auth' => 'SMS 인증이 완료되지 않았습니다.',
'sms_auth_expire' => 'SMS 인증코드 입력시간이 만료되었습니다.',
'password_pattern' => '비밀번호는 영문+숫자로 입력해 주세요.',
'korea_mobile_pattern' => '올바르지 않은 휴대폰 번호입니다.',
'duplicate_phone' => '이미 가입된 전화번호입니다.',
];