]> BookStack Code Mirror - bookstack/blob - resources/lang/ko/validation.php
Update entities.php
[bookstack] / resources / lang / ko / validation.php
1 <?php
2 /**
3  * Validation Lines
4  * The following language lines contain the default error messages used by
5  * the validator class. Some of these rules have multiple versions such
6  * as the size rules. Feel free to tweak each of these messages here.
7  */
8 return [
9
10     // Standard laravel validation lines
11     'accepted'             => ':attribute가 반드시 허용되어야 합니다.',
12     'active_url'           => ':attribute가 올바른 URL이 아닙니다.',
13     'after'                => ':attribute는 :date이후 날짜여야 합니다.',
14     'alpha'                => ':attribute는 문자만 포함해야 합니다.',
15     'alpha_dash'           => ':attribute는 문자, 숫자, 대시만 포함해야 합니다.',
16     'alpha_num'            => ':attribute는 문자와 숫자만 포함됩니다.',
17     'array'                => ':attribute는 배열이어야 합니다.',
18     'before'               => ':attribute는 :date이전 날짜여야 합니다.',
19     'between'              => [
20         'numeric' => ':attribute는 반드시 :min이상 :max이하여야 합니다.',
21         'file'    => ':attribute는 반드시 :min이상 :max kilobytes이하여야 합니다.',
22         'string'  => ':attribute는 반드시 :min이상 :max 문자 이하여야 합니다.',
23         'array'   => ':attribute는 반드시 :min이상 :max이하 항목이어야 합니다.',
24     ],
25     'boolean'              => ':attribute 는 true혹은 false값만 가능합니다.',
26     'confirmed'            => ':attribute 확인이 일치하지 않습니다.',
27     'date'                 => ':attribute 는 잘못된 날짜입니다.',
28     'date_format'          => ':attribute 이 :format 포멧과 일치하지 않습니다.',
29     'different'            => ':attribute 와 :other는 반드시 달라야 합니다.',
30     'digits'               => ':attribute 는 반드시 :digits 숫자(digit)여야 합니다.',
31     'digits_between'       => ':attribute 는 반드시 :min이상 :max이하 숫자여야 합니다.',
32     'email'                => ':attribute 는 반드시 이메일 이어야 합니다.',
33     'ends_with' => 'The :attribute must end with one of the following: :values',
34     'filled'               => ':attribute 항목이 꼭 필요합니다.',
35     'gt'                   => [
36         'numeric' => 'The :attribute must be greater than :value.',
37         'file'    => 'The :attribute must be greater than :value kilobytes.',
38         'string'  => 'The :attribute must be greater than :value characters.',
39         'array'   => 'The :attribute must have more than :value items.',
40     ],
41     'gte'                  => [
42         'numeric' => 'The :attribute must be greater than or equal :value.',
43         'file'    => 'The :attribute must be greater than or equal :value kilobytes.',
44         'string'  => 'The :attribute must be greater than or equal :value characters.',
45         'array'   => 'The :attribute must have :value items or more.',
46     ],
47     'exists'               => '선택된 :attribute 은(는) 사용 불가합니다.',
48     'image'                => ':attribute 는 반드시 이미지여야 합니다.',
49     'image_extension'      => 'The :attribute must have a valid & supported image extension.',
50     'in'                   => '선택된 :attribute 은(는) 사용 불가합니다.',
51     'integer'              => ':attribute 는 반드시(integer)여야 합니다.',
52     'ip'                   => ':attribute 는 반드시 IP주소 여야 합니다.',
53     'ipv4'                 => 'The :attribute must be a valid IPv4 address.',
54     'ipv6'                 => 'The :attribute must be a valid IPv6 address.',
55     'json'                 => 'The :attribute must be a valid JSON string.',
56     'lt'                   => [
57         'numeric' => 'The :attribute must be less than :value.',
58         'file'    => 'The :attribute must be less than :value kilobytes.',
59         'string'  => 'The :attribute must be less than :value characters.',
60         'array'   => 'The :attribute must have less than :value items.',
61     ],
62     'lte'                  => [
63         'numeric' => 'The :attribute must be less than or equal :value.',
64         'file'    => 'The :attribute must be less than or equal :value kilobytes.',
65         'string'  => 'The :attribute must be less than or equal :value characters.',
66         'array'   => 'The :attribute must not have more than :value items.',
67     ],
68     'max'                  => [
69         'numeric' => ':attribute :max 보다 크면 안됩니다.',
70         'file'    => ':attribute :max kilobytes보다 크면 안됩니다.',
71         'string'  => ':attribute :max 문자보다 길면 안됩니다.',
72         'array'   => ':attribute :max 를 초과하면 안됩니다.',
73     ],
74     'mimes'                => ':attribute 은(는) 반드시 :values 타입이어야 합니다.',
75     'min'                  => [
76         'numeric' => ':attribute 은(는) 최소한 :min 이어야 합니다.',
77         'file'    => ':attribute 은(는) 최소한 :min kilobytes여야 합니다.',
78         'string'  => ':attribute 은(는) 최소한 :min 개 문자여야 합니다.',
79         'array'   => ':attribute 은(는) 적어도 :min 개의 항목이어야 합니다.',
80     ],
81     'no_double_extension'  => 'The :attribute must only have a single file extension.',
82     'not_in'               => '선택된 :attribute 는 사용할 수 없습니다',
83     'not_regex'            => 'The :attribute format is invalid.',
84     'numeric'              => ':attribute 반드시 숫자여야 합니다.',
85     'regex'                => ':attribute 포멧이 잘못되었습니다.',
86     'required'             => ':attribute 항목은 필수입니다..',
87     'required_if'          => ':attribute 은(는) :other 가 :value 일때 필수항목입니다.',
88     'required_with'        => ':attribute 은(는) :values 가 있을때 필수항목입니다.',
89     'required_with_all'    => ':attribute 은(는) :values 가 있을때 필수항목입니다.',
90     'required_without'     => ':attribute 은(는) :values 가 없을때 필수항목입니다.',
91     'required_without_all' => ':attribute 은(는) :values 가 전혀 없을때 필수항목입니다.',
92     'same'                 => ':attribute 와 :other 은(는) 반드시 일치해야합니다.',
93     'size'                 => [
94         'numeric' => ':attribute 은(는) :size 여야합니다.',
95         'file'    => ':attribute 은(는) :size kilobytes여야합니다.',
96         'string'  => ':attribute 은(는) :size 문자여야합니다.',
97         'array'   => ':attribute 은(는) :size 개 항목을 포함해야 합니다.',
98     ],
99     'string'               => ':attribute 문자열이어야 합니다.',
100     'timezone'             => ':attribute 정상적인 지역(zone)이어야 합니다.',
101     'unique'               => ':attribute 은(는) 이미 사용중입니다..',
102     'url'                  => ':attribute 포멧이 사용 불가합니다.',
103     'uploaded'             => 'The file could not be uploaded. The server may not accept files of this size.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => '비밀번호 확인이 필요합니다.',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];