]> BookStack Code Mirror - bookstack/blob - resources/lang/ko/validation.php
Updated styles to use logical properties/values
[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(을)를 유효한 주소로 구성하세요.',
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킬로바이트로 구성하세요.',
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자리로 구성하세요.',
31     'digits_between'       => ':attribute(을)를 :min~:max자리로 구성하세요.',
32     'email'                => ':attribute(을)를 유효한 메일 주소로 구성하세요.',
33     'ends_with' => ':attribute(을)를 :values(으)로 끝나게 구성하세요.',
34     'filled'               => ':attribute(을)를 구성하세요.',
35     'gt'                   => [
36         'numeric' => ':attribute(을)를 :value(이)가 넘게 구성하세요.',
37         'file'    => ':attribute(을)를 :value킬로바이트가 넘게 구성하세요.',
38         'string'  => ':attribute(을)를 :value바이트가 넘게 구성하세요.',
39         'array'   => ':attribute(을)를 :value개가 넘게 구성하세요.',
40     ],
41     'gte'                  => [
42         'numeric' => ':attribute(을)를 적어도 :value(으)로 구성하세요.',
43         'file'    => ':attribute(을)를 적어도 :value킬로바이트로 구성하세요.',
44         'string'  => ':attribute(을)를 적어도 :value바이트로 구성하세요.',
45         'array'   => ':attribute(을)를 적어도 :value개로 구성하세요..',
46     ],
47     'exists'               => '고른 :attribute(이)가 유효하지 않습니다.',
48     'image'                => ':attribute(을)를 이미지로 구성하세요.',
49     'image_extension'      => ':attribute(을)를 유효한 이미지 확장자로 구성하세요.',
50     'in'                   => '고른 :attribute(이)가 유효하지 않습니다.',
51     'integer'              => ':attribute(을)를 정수로 구성하세요.',
52     'ip'                   => ':attribute(을)를 유효한 IP 주소로 구성하세요.',
53     'ipv4'                 => ':attribute(을)를 유효한 IPv4 주소로 구성하세요.',
54     'ipv6'                 => ':attribute(을)를 유효한 IPv6 주소로 구성하세요.',
55     'json'                 => ':attribute(을)를 유효한 JSON으로 구성하세요.',
56     'lt'                   => [
57         'numeric' => ':attribute(을)를 :value(이)가 안 되게 구성하세요.',
58         'file'    => ':attribute(을)를 :value킬로바이트가 안 되게 구성하세요.',
59         'string'  => ':attribute(을)를 :value바이트가 안 되게 구성하세요.',
60         'array'   => ':attribute(을)를 :value개가 안 되게 구성하세요.',
61     ],
62     'lte'                  => [
63         'numeric' => ':attribute(을)를 많아야 :max(으)로 구성하세요.',
64         'file'    => ':attribute(을)를 많아야 :max킬로바이트로 구성하세요.',
65         'string'  => ':attribute(을)를 많아야 :max바이트로 구성하세요.',
66         'array'   => ':attribute(을)를 많아야 :max개로 구성하세요.',
67     ],
68     'max'                  => [
69         'numeric' => ':attribute(을)를 많아야 :max(으)로 구성하세요.',
70         'file'    => ':attribute(을)를 많아야 :max킬로바이트로 구성하세요.',
71         'string'  => ':attribute(을)를 많아야 :max바이트로 구성하세요.',
72         'array'   => ':attribute(을)를 많아야 :max개로 구성하세요.',
73     ],
74     'mimes'                => ':attribute(을)를 :values 형식으로 구성하세요.',
75     'min'                  => [
76         'numeric' => ':attribute(을)를 적어도 :value(으)로 구성하세요.',
77         'file'    => ':attribute(을)를 적어도 :value킬로바이트로 구성하세요.',
78         'string'  => ':attribute(을)를 적어도 :value바이트로 구성하세요.',
79         'array'   => ':attribute(을)를 적어도 :value개로 구성하세요..',
80     ],
81     'no_double_extension'  => ':attribute(이)가 단일한 확장자를 가져야 합니다.',
82     'not_in'               => '고른 :attribute(이)가 유효하지 않습니다.',
83     'not_regex'            => ':attribute(은)는 유효하지 않은 형식입니다.',
84     'numeric'              => ':attribute(을)를 숫자로만 구성하세요.',
85     'regex'                => ':attribute(은)는 유효하지 않은 형식입니다.',
86     'required'             => ':attribute(을)를 구성하세요.',
87     'required_if'          => ':other(이)가 :value일 때 :attribute(을)를 구성해야 합니다.',
88     'required_with'        => ':values(이)가 있을 때 :attribute(을)를 구성해야 합니다.',
89     'required_with_all'    => ':values(이)가 모두 있을 때 :attribute(을)를 구성해야 합니다.',
90     'required_without'     => ':values(이)가 없을 때 :attribute(을)를 구성해야 합니다.',
91     'required_without_all' => ':values(이)가 모두 없을 때 :attribute(을)를 구성해야 합니다.',
92     'same'                 => ':attribute(와)과 :other(을)를 똑같이 구성하세요.',
93     'size'                 => [
94         'numeric' => ':attribute(을)를 :size(으)로 구성하세요.',
95         'file'    => ':attribute(을)를 :size킬로바이트로 구성하세요.',
96         'string'  => ':attribute(을)를 :size바이트로 구성하세요.',
97         'array'   => ':attribute(을)를 :size개로 구성하세요..',
98     ],
99     'string'               => ':attribute(을)를 문자로 구성하세요.',
100     'timezone'             => ':attribute(을)를 유효한 시간대로 구성하세요.',
101     'unique'               => ':attribute(은)는 이미 있습니다.',
102     'url'                  => ':attribute(은)는 유효하지 않은 형식입니다.',
103     'uploaded'             => '파일 크기가 서버에서 허용하는 수치를 넘습니다.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => '같은 비밀번호를 다시 입력하세요.',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];