6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => ':attribute가 반드시 허용되어야 합니다.',
17 'active_url' => ':attribute가 올바른 URL이 아닙니다.',
18 'after' => ':attribute는 :date이후 날짜여야 합니다.',
19 'alpha' => ':attribute는 문자만 포함해야 합니다.',
20 'alpha_dash' => ':attribute는 문자, 숫자, 대시만 포함해야 합니다.',
21 'alpha_num' => ':attribute는 문자와 숫자만 포함됩니다.',
22 'array' => ':attribute는 배열이어야 합니다.',
23 'before' => ':attribute는 :date이전 날짜여야 합니다.',
25 'numeric' => ':attribute는 반드시 :min이상 :max이하여야 합니다.',
26 'file' => ':attribute는 반드시 :min이상 :max kilobytes이하여야 합니다.',
27 'string' => ':attribute는 반드시 :min이상 :max 문자 이하여야 합니다.',
28 'array' => ':attribute는 반드시 :min이상 :max이하 항목이어야 합니다.',
30 'boolean' => ':attribute 는 true혹은 false값만 가능합니다.',
31 'confirmed' => ':attribute 확인이 일치하지 않습니다.',
32 'date' => ':attribute 는 잘못된 날짜입니다.',
33 'date_format' => ':attribute 이 :format 포멧과 일치하지 않습니다.',
34 'different' => ':attribute 와 :other는 반드시 달라야 합니다.',
35 'digits' => ':attribute 는 반드시 :digits 숫자(digit)여야 합니다.',
36 'digits_between' => ':attribute 는 반드시 :min이상 :max이하 숫자여야 합니다.',
37 'email' => ':attribute 는 반드시 이메일 이어야 합니다.',
38 'filled' => ':attribute 항목이 꼭 필요합니다.',
39 'exists' => '선택된 :attribute 은(는) 사용 불가합니다.',
40 'image' => ':attribute 는 반드시 이미지여야 합니다.',
41 'in' => '선택된 :attribute 은(는) 사용 불가합니다.',
42 'integer' => ':attribute 는 반드시(integer)여야 합니다.',
43 'ip' => ':attribute 는 반드시 IP주소 여야 합니다.',
45 'numeric' => ':attribute :max 보다 크면 안됩니다.',
46 'file' => ':attribute :max kilobytes보다 크면 안됩니다.',
47 'string' => ':attribute :max 문자보다 길면 안됩니다.',
48 'array' => ':attribute :max 를 초과하면 안됩니다.',
50 'mimes' => ':attribute 은(는) 반드시 :values 타입이어야 합니다.',
52 'numeric' => ':attribute 은(는) 최소한 :min 이어야 합니다.',
53 'file' => ':attribute 은(는) 최소한 :min kilobytes여야 합니다.',
54 'string' => ':attribute 은(는) 최소한 :min 개 문자여야 합니다.',
55 'array' => ':attribute 은(는) 적어도 :min 개의 항목이어야 합니다.',
57 'not_in' => '선택된 :attribute 는 사용할 수 없습니다',
58 'numeric' => ':attribute 반드시 숫자여야 합니다.',
59 'regex' => ':attribute 포멧이 잘못되었습니다.',
60 'required' => ':attribute 항목은 필수입니다..',
61 'required_if' => ':attribute 은(는) :other 가 :value 일때 필수항목입니다.',
62 'required_with' => ':attribute 은(는) :values 가 있을때 필수항목입니다.',
63 'required_with_all' => ':attribute 은(는) :values 가 있을때 필수항목입니다.',
64 'required_without' => ':attribute 은(는) :values 가 없을때 필수항목입니다.',
65 'required_without_all' => ':attribute 은(는) :values 가 전혀 없을때 필수항목입니다.',
66 'same' => ':attribute 와 :other 은(는) 반드시 일치해야합니다.',
68 'numeric' => ':attribute 은(는) :size 여야합니다.',
69 'file' => ':attribute 은(는) :size kilobytes여야합니다.',
70 'string' => ':attribute 은(는) :size 문자여야합니다.',
71 'array' => ':attribute 은(는) :size 개 항목을 포함해야 합니다.',
73 'string' => ':attribute 문자열이어야 합니다.',
74 'timezone' => ':attribute 정상적인 지역(zone)이어야 합니다.',
75 'unique' => ':attribute 은(는) 이미 사용중입니다..',
76 'url' => ':attribute 포멧이 사용 불가합니다.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => '비밀번호 확인이 필요합니다.',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.