<?php
-
+/**
+ * Validation 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.
+ */
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.
- |
- */
-
+ // Standard laravel validation lines
'accepted' => ':attribute가 반드시 허용되어야 합니다.',
'active_url' => ':attribute가 올바른 URL이 아닙니다.',
'after' => ':attribute는 :date이후 날짜여야 합니다.',
'digits' => ':attribute 는 반드시 :digits 숫자(digit)여야 합니다.',
'digits_between' => ':attribute 는 반드시 :min이상 :max이하 숫자여야 합니다.',
'email' => ':attribute 는 반드시 이메일 이어야 합니다.',
+ 'ends_with' => 'The :attribute must end with one of the following: :values',
'filled' => ':attribute 항목이 꼭 필요합니다.',
+ 'gt' => [
+ 'numeric' => 'The :attribute must be greater than :value.',
+ 'file' => 'The :attribute must be greater than :value kilobytes.',
+ 'string' => 'The :attribute must be greater than :value characters.',
+ 'array' => 'The :attribute must have more than :value items.',
+ ],
+ 'gte' => [
+ 'numeric' => 'The :attribute must be greater than or equal :value.',
+ 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be greater than or equal :value characters.',
+ 'array' => 'The :attribute must have :value items or more.',
+ ],
'exists' => '선택된 :attribute 은(는) 사용 불가합니다.',
'image' => ':attribute 는 반드시 이미지여야 합니다.',
+ 'image_extension' => 'The :attribute must have a valid & supported image extension.',
'in' => '선택된 :attribute 은(는) 사용 불가합니다.',
'integer' => ':attribute 는 반드시(integer)여야 합니다.',
'ip' => ':attribute 는 반드시 IP주소 여야 합니다.',
+ 'ipv4' => 'The :attribute must be a valid IPv4 address.',
+ 'ipv6' => 'The :attribute must be a valid IPv6 address.',
+ 'json' => 'The :attribute must be a valid JSON string.',
+ 'lt' => [
+ 'numeric' => 'The :attribute must be less than :value.',
+ 'file' => 'The :attribute must be less than :value kilobytes.',
+ 'string' => 'The :attribute must be less than :value characters.',
+ 'array' => 'The :attribute must have less than :value items.',
+ ],
+ 'lte' => [
+ 'numeric' => 'The :attribute must be less than or equal :value.',
+ 'file' => 'The :attribute must be less than or equal :value kilobytes.',
+ 'string' => 'The :attribute must be less than or equal :value characters.',
+ 'array' => 'The :attribute must not have more than :value items.',
+ ],
'max' => [
'numeric' => ':attribute :max 보다 크면 안됩니다.',
'file' => ':attribute :max kilobytes보다 크면 안됩니다.',
'string' => ':attribute 은(는) 최소한 :min 개 문자여야 합니다.',
'array' => ':attribute 은(는) 적어도 :min 개의 항목이어야 합니다.',
],
+ 'no_double_extension' => 'The :attribute must only have a single file extension.',
'not_in' => '선택된 :attribute 는 사용할 수 없습니다',
+ 'not_regex' => 'The :attribute format is invalid.',
'numeric' => ':attribute 반드시 숫자여야 합니다.',
'regex' => ':attribute 포멧이 잘못되었습니다.',
'required' => ':attribute 항목은 필수입니다..',
'timezone' => ':attribute 정상적인 지역(zone)이어야 합니다.',
'unique' => ':attribute 은(는) 이미 사용중입니다..',
'url' => ':attribute 포멧이 사용 불가합니다.',
+ 'uploaded' => 'The file could not be uploaded. The server may not accept files of this size.',
- /*
- |--------------------------------------------------------------------------
- | 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 validation lines
'custom' => [
'password-confirm' => [
'required_with' => '비밀번호 확인이 필요합니다.',
],
],
- /*
- |--------------------------------------------------------------------------
- | 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.
- |
- */
-
+ // Custom validation attributes
'attributes' => [],
-
];