mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
137 lines
7.6 KiB
PHP
137 lines
7.6 KiB
PHP
<?php
|
|
|
|
return array(
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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
|
|
| such as the size rules. Feel free to tweak each of these messages.
|
|
|
|
|
*/
|
|
|
|
'accepted' => ':attribute 가 수락되었습니다.',
|
|
'active_url' => ':attribute 는 잘못된 URL 입니다.',
|
|
'after' => ':attribute 는 :date 뒤에 오는 날짜 형식이어야 합니다.',
|
|
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
|
'alpha' => ':attribute 는 문자만 포함해야 합니다.',
|
|
'alpha_dash' => ':attribute는 문자, 숫자, 대쉬기호만 포함 할 수 있습니다.',
|
|
'alpha_num' => ':attribute 는 문자와 숫자만 포함할 수 있습니다.',
|
|
'array' => 'The :attribute must be an array.',
|
|
'before' => ':attribute 는 :date 앞의 날짜 형식이 되야 합니다.',
|
|
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
|
'between' => [
|
|
'numeric' => ':attribute 는 :min - :max 사이의 값입니다.',
|
|
'file' => ':attribute 는 :min - :max Kbyte 사이의 값입니다.',
|
|
'string' => ':attribute 는 :min - :max 자 사이의 문자입니다.',
|
|
'array' => 'The :attribute must have between :min and :max items.',
|
|
],
|
|
'boolean' => ':attribute 는 참 또는 거짓의 속성만 지정 가능합니다.',
|
|
'confirmed' => ':attribute 확인이 일치 하지 않습니다.',
|
|
'date' => ':attribute 는 잘못된 날짜 입니다.',
|
|
'date_format' => ':attribute 는 :format 형식과 일치하지 않습니다.',
|
|
'different' => ':attribute 와 :other 는 서로 달라야 합니다.',
|
|
'digits' => ':attribute 는 :digits 자리수여야 합니다.',
|
|
'digits_between' => ':attribute 는 :min - :max 자릿수 사이여야 합니다.',
|
|
'dimensions' => 'The :attribute has invalid image dimensions.',
|
|
'distinct' => 'The :attribute field has a duplicate value.',
|
|
'email' => ':attribute 형식이 부정확 합니다.',
|
|
'exists' => '선택한 :attribute 가 부정확 합니다.',
|
|
'file' => 'The :attribute must be a file.',
|
|
'filled' => 'The :attribute field must have a value.',
|
|
'image' => ':attribute 는 이미지 형식만 가능합니다.',
|
|
'in' => '선택한 :attribute 가 부정확 합니다.',
|
|
'in_array' => 'The :attribute field does not exist in :other.',
|
|
'integer' => ':attribute 는 정수이어야 합니다.',
|
|
'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.',
|
|
'max' => [
|
|
'numeric' => ':attribute 는 :max 보다 작아야 합니다.',
|
|
'file' => ':attribute 는 :max Kbyte보다 작아야 합니다.',
|
|
'string' => ':attribute 는 :max 자보다 작아야 합니다.',
|
|
'array' => 'The :attribute may not have more than :max items.',
|
|
],
|
|
'mimes' => ':attribute 는 :values 형식의 파일만 가능합니다.',
|
|
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
|
'min' => [
|
|
'numeric' => ':attribute 는 최소 :min 이어야 합니다.',
|
|
'file' => ':attribute 는 최소 :min Kbyte 이어야 합니다.',
|
|
'string' => ':attribute 는 최소 :min 자 이어야 합니다.',
|
|
'array' => 'The :attribute must have at least :min items.',
|
|
],
|
|
'not_in' => '선택한 :attribute 가 부정확 합니다.',
|
|
'numeric' => ':attribute 는 숫자만 가능합니다.',
|
|
'present' => 'The :attribute field must be present.',
|
|
'regex' => ':attribute 형식이 부정확 합니다.',
|
|
'required' => ':attribute 항목을 입력해 주세요.',
|
|
'required_if' => ':attribute 항목은 :other가 :value 일때 필요합니다.',
|
|
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
|
'required_with' => ':attribute 항목은 :values 가 존재할 때 필요합니다.',
|
|
'required_with_all' => 'The :attribute field is required when :values is present.',
|
|
'required_without' => ':attribute 항목은 :values 가 존재하지 않을 때 필요합니다.',
|
|
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
|
'same' => ':attribute 와 :other 는 일치해야 합니다.',
|
|
'size' => [
|
|
'numeric' => ':attribute 는 :size 가 되야 합니다.',
|
|
'file' => ':attribute 는 :size Kbyte 가 되야 합니다.',
|
|
'string' => ':attribute 는 :size 자가 되야 합니다.',
|
|
'array' => 'The :attribute must contain :size items.',
|
|
],
|
|
'string' => 'The :attribute must be a string.',
|
|
'timezone' => 'The :attribute must be a valid zone.',
|
|
'unique' => ':attribute 는 이미 획득하였습니다.',
|
|
'uploaded' => 'The :attribute failed to upload.',
|
|
'url' => ':attribute 형식이 부정확 합니다.',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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 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' => [
|
|
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
|
"email_array" => "One or more email addresses is invalid.",
|
|
"hashed_pass" => "Your current password is incorrect",
|
|
'dumbpwd' => 'That password is too common.',
|
|
"statuslabel_type" => "You must select a valid status label type",
|
|
"unique_undeleted" => "The :attribute must be unique.",
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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.
|
|
|
|
|
*/
|
|
|
|
'attributes' => [],
|
|
|
|
);
|