2016-03-25 01:18:05 -07:00
|
|
|
|
<?php
|
|
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
|
return [
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'accepted' => '必须接受 :attribute 字段。',
|
|
|
|
|
'accepted_if' => '当 :other 是 :value 时必须接受 :attribute 字段。',
|
|
|
|
|
'active_url' => ':attribute 字段必须是一个有效的 URL。',
|
|
|
|
|
'after' => ':attribute 字段必须在 :date 之后。',
|
|
|
|
|
'after_or_equal' => ':attribute 字段必须是晚于或等于 :date 的日期。',
|
|
|
|
|
'alpha' => ':attribute 字段只能包含字母',
|
|
|
|
|
'alpha_dash' => ':attribute 字段只能包含字母、数字、破折号和下划线。',
|
|
|
|
|
'alpha_num' => ':attribute 字段只能包含字母和数字。',
|
|
|
|
|
'array' => ':attribute 字段必须是一个数组。',
|
|
|
|
|
'ascii' => ':attribute 字段只能包含单字节字母和符号。',
|
|
|
|
|
'before' => ':attribute 字段必须在 :date 之前。',
|
|
|
|
|
'before_or_equal' => ':attribute 字段必须早于或等于 :date 的日期。',
|
|
|
|
|
'between' => [
|
|
|
|
|
'array' => ':attribute 字段必须在 :min 与 :max 之间。',
|
|
|
|
|
'file' => ':attribute 字段必须介于 :min 到 :max kb 之间。',
|
|
|
|
|
'numeric' => ':attribute 字段必须在 :min 到 :max 之间。',
|
|
|
|
|
'string' => ':attribute 字段必须在 :min 和 :max 字符之间。',
|
2017-09-06 18:05:32 -07:00
|
|
|
|
],
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'boolean' => ':属性字段必须为true或false。',
|
|
|
|
|
'can' => ':attribute 字段包含一个未授权的值。',
|
|
|
|
|
'confirmed' => ':attribute 字段确认不匹配。',
|
|
|
|
|
'contains' => ':attribute 字段缺少必需的值。',
|
|
|
|
|
'current_password' => '密码不正确。',
|
|
|
|
|
'date' => ':attribute 字段必须是一个有效的日期。',
|
|
|
|
|
'date_equals' => ':attribute 字段必须等于 :date 的日期。',
|
|
|
|
|
'date_format' => ':attribute 字段必须与格式 :format 匹配。',
|
|
|
|
|
'decimal' => ':attribute 字段必须有 :decimal 十进制小数位。',
|
|
|
|
|
'declined' => ':attribute 字段必须被拒绝。',
|
|
|
|
|
'declined_if' => '当 :other 是 :value 时必须拒绝 :attribute 字段。',
|
|
|
|
|
'different' => ':attribute 字段和 :other 必须不同。',
|
|
|
|
|
'digits' => ':attribute 字段必须是 :digits 数字',
|
|
|
|
|
'digits_between' => ':attribute 字段必须介于 :min 到 :max 位数字之间。',
|
|
|
|
|
'dimensions' => ':attribute 字段的图像尺寸无效。',
|
|
|
|
|
'distinct' => ':属性字段具有重复值。',
|
|
|
|
|
'doesnt_end_with' => ':attribute 字段不能以下列之一结尾::values 。',
|
|
|
|
|
'doesnt_start_with' => ':attribute 字段不能以下列之一开始::values 。',
|
|
|
|
|
'email' => ':attribute 字段必须是一个有效的电子邮件地址。',
|
|
|
|
|
'ends_with' => ':attribute 字段必须以下列之一结尾::values 。',
|
|
|
|
|
'enum' => '选择的 :attribute 无效',
|
|
|
|
|
'exists' => '选择的 :attribute 无效',
|
|
|
|
|
'extensions' => ':attribute 字段必须有以下扩展之一: :values 。',
|
|
|
|
|
'file' => ':attribute 字段必须是一个文件。',
|
|
|
|
|
'filled' => ':属性字段必须有一个值。',
|
|
|
|
|
'gt' => [
|
|
|
|
|
'array' => ':attribute 字段必须超过 :value 项。',
|
|
|
|
|
'file' => ':attribute 字段必须大于 :value kb。',
|
|
|
|
|
'numeric' => ':attribute 字段必须大于 :value 。',
|
|
|
|
|
'string' => ':attribute 字段必须大于 :value 字符。',
|
|
|
|
|
],
|
|
|
|
|
'gte' => [
|
|
|
|
|
'array' => ':attribute 字段必须包含 :value 项或更多项。',
|
|
|
|
|
'file' => ':attribute 字段必须大于或等于 :value kb。',
|
|
|
|
|
'numeric' => ':attribute 字段必须大于或等于 :value 。',
|
|
|
|
|
'string' => ':attribute 必须大于或等于 :value 字符。',
|
|
|
|
|
],
|
|
|
|
|
'hex_color' => ':attribute 必须是一个有效的十六进制颜色。',
|
|
|
|
|
'image' => ':attribute 字段必须是一个图像。',
|
2023-02-21 03:54:55 -08:00
|
|
|
|
'import_field_empty' => ':fieldname 的值不能为空。',
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'in' => '选择的 :attribute 无效',
|
|
|
|
|
'in_array' => ':attribute 字段必须在 :other 中存在。',
|
|
|
|
|
'integer' => ':attribute 字段必须是整数。',
|
|
|
|
|
'ip' => ':attribute 字段必须是一个有效的 IP 地址。',
|
|
|
|
|
'ipv4' => ':attribute 字段必须是有效的 IPv4 地址。',
|
|
|
|
|
'ipv6' => ':attribute 字段必须是有效的 IPv6 地址。',
|
|
|
|
|
'json' => ':attribute 字段必须是有效的 JSON 字符串。',
|
|
|
|
|
'list' => ':attribute 字段必须是一个列表。',
|
|
|
|
|
'lowercase' => ':attribute 字段必须是小写。',
|
|
|
|
|
'lt' => [
|
|
|
|
|
'array' => ':attribute 字段必须小于 :value 项。',
|
|
|
|
|
'file' => ':attribute 字段必须小于 :value kb。',
|
|
|
|
|
'numeric' => 'The :attribute field must be less than :value.',
|
|
|
|
|
'string' => 'The :attribute field must be less than :value characters.',
|
2017-09-06 18:05:32 -07:00
|
|
|
|
],
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'lte' => [
|
|
|
|
|
'array' => 'The :attribute field must not have more than :value items.',
|
|
|
|
|
'file' => 'The :attribute field must be less than or equal to :value kilobytes.',
|
|
|
|
|
'numeric' => 'The :attribute field must be less than or equal to :value.',
|
|
|
|
|
'string' => 'The :attribute field must be less than or equal to :value characters.',
|
2017-09-06 18:05:32 -07:00
|
|
|
|
],
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'mac_address' => 'The :attribute field must be a valid MAC address.',
|
|
|
|
|
'max' => [
|
|
|
|
|
'array' => 'The :attribute field must not have more than :max items.',
|
|
|
|
|
'file' => 'The :attribute field must not be greater than :max kilobytes.',
|
|
|
|
|
'numeric' => 'The :attribute field must not be greater than :max.',
|
|
|
|
|
'string' => 'The :attribute field must not be greater than :max characters.',
|
|
|
|
|
],
|
|
|
|
|
'max_digits' => 'The :attribute field must not have more than :max digits.',
|
|
|
|
|
'mimes' => 'The :attribute field must be a file of type: :values.',
|
|
|
|
|
'mimetypes' => 'The :attribute field must be a file of type: :values.',
|
|
|
|
|
'min' => [
|
|
|
|
|
'array' => 'The :attribute field must have at least :min items.',
|
|
|
|
|
'file' => 'The :attribute field must be at least :min kilobytes.',
|
|
|
|
|
'numeric' => 'The :attribute field must be at least :min.',
|
|
|
|
|
'string' => 'The :attribute field must be at least :min characters.',
|
|
|
|
|
],
|
|
|
|
|
'min_digits' => 'The :attribute field must have at least :min digits.',
|
|
|
|
|
'missing' => 'The :attribute field must be missing.',
|
|
|
|
|
'missing_if' => 'The :attribute field must be missing when :other is :value.',
|
|
|
|
|
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
|
|
|
|
|
'missing_with' => 'The :attribute field must be missing when :values is present.',
|
|
|
|
|
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
|
|
|
|
|
'multiple_of' => 'The :attribute field must be a multiple of :value.',
|
|
|
|
|
'not_in' => '选择的 :attribute 无效',
|
|
|
|
|
'not_regex' => 'The :attribute field format is invalid.',
|
|
|
|
|
'numeric' => 'The :attribute field must be a number.',
|
|
|
|
|
'password' => [
|
|
|
|
|
'letters' => 'The :attribute field must contain at least one letter.',
|
|
|
|
|
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.',
|
|
|
|
|
'numbers' => 'The :attribute field must contain at least one number.',
|
|
|
|
|
'symbols' => 'The :attribute field must contain at least one symbol.',
|
|
|
|
|
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
|
|
|
|
],
|
|
|
|
|
'present' => ':属性字段必须存在。',
|
|
|
|
|
'present_if' => 'The :attribute field must be present when :other is :value.',
|
|
|
|
|
'present_unless' => 'The :attribute field must be present unless :other is :value.',
|
|
|
|
|
'present_with' => 'The :attribute field must be present when :values is present.',
|
|
|
|
|
'present_with_all' => 'The :attribute field must be present when :values are present.',
|
|
|
|
|
'prohibited' => 'The :attribute field is prohibited.',
|
|
|
|
|
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
|
|
|
|
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
|
|
|
|
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
|
|
|
|
'regex' => 'The :attribute field format is invalid.',
|
|
|
|
|
'required' => ':attribute 字段必填',
|
|
|
|
|
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
|
|
|
|
'required_if' => ':attribute 字段在 :other 是 :value 时是必须的',
|
|
|
|
|
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
|
|
|
|
'required_if_declined' => 'The :attribute field is required when :other is declined.',
|
|
|
|
|
'required_unless' => '需要:属性字段,除非:other is in:values。',
|
|
|
|
|
'required_with' => ' 当:values 是现在 :attribute 是必需的',
|
|
|
|
|
'required_with_all' => '当 :values 存在时 :attribute 字段是必需的。',
|
|
|
|
|
'required_without' => '当:values 是现在 :attribute 是必需的',
|
2017-10-17 18:52:20 -07:00
|
|
|
|
'required_without_all' => '当不存在:值时,需要:属性字段。',
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'same' => ':attribute 字段必须匹配 :other 。',
|
|
|
|
|
'size' => [
|
|
|
|
|
'array' => ':attribute 字段必须包含 :size 项。',
|
|
|
|
|
'file' => ':attribute 字段必须是 :size kb。',
|
|
|
|
|
'numeric' => ':attribute 字段必须是 :size 。',
|
|
|
|
|
'string' => ':attribute 字段必须是 :size 个字符。',
|
2017-09-06 18:05:32 -07:00
|
|
|
|
],
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'starts_with' => ':attribute 字段必须以下列之一开始::values 。',
|
2017-10-17 18:52:20 -07:00
|
|
|
|
'string' => ':属性必须是字符串。',
|
2023-11-27 06:43:16 -08:00
|
|
|
|
'two_column_unique_undeleted' => ':attribute 在 :table1 和 :table2 中必须是唯一的。 ',
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'unique_undeleted' => ':attribute 属性必须唯一。',
|
|
|
|
|
'non_circular' => ':attribute 不能创建循环引用。',
|
2024-01-24 07:29:39 -08:00
|
|
|
|
'not_array' => ':attribute 不能是一个数组。',
|
2022-07-05 16:18:53 -07:00
|
|
|
|
'disallow_same_pwd_as_user_fields' => '密码不能和用户名相同。',
|
|
|
|
|
'letters' => '密码必须包含至少一个字母。',
|
|
|
|
|
'numbers' => '密码必须包含至少一个数字。',
|
|
|
|
|
'case_diff' => '密码必须使用混合大小写。',
|
|
|
|
|
'symbols' => '密码必须包含符号。',
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'timezone' => ':attribute 字段必须是一个有效的时区。',
|
|
|
|
|
'unique' => ':attribute 已经被采用',
|
|
|
|
|
'uploaded' => ':属性无法上传。',
|
|
|
|
|
'uppercase' => ':attribute 字段必须是大写。',
|
|
|
|
|
'url' => ':attribute 字段必须是一个有效的 URL。',
|
|
|
|
|
'ulid' => ':attribute 字段必须是个有效的 ULID。',
|
|
|
|
|
'uuid' => ':attribute 字段必须是一个有效的 UUID。',
|
2017-09-06 18:05:32 -07:00
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
|
'custom' => [
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'alpha_space' => ':属性字段包含不允许的字符。',
|
|
|
|
|
'email_array' => '一个或多个电子邮件地址无效。',
|
|
|
|
|
'hashed_pass' => '您当前的密码不正确',
|
2017-10-17 18:52:20 -07:00
|
|
|
|
'dumbpwd' => '那个密码太常见了。',
|
2022-01-13 21:27:29 -08:00
|
|
|
|
'statuslabel_type' => '您必须选择有效的状态标签类型',
|
2023-02-21 03:54:55 -08:00
|
|
|
|
|
|
|
|
|
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
|
|
|
|
|
// We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP
|
2024-07-19 09:47:22 -07:00
|
|
|
|
// people won't know how to format.
|
2023-04-06 19:56:43 -07:00
|
|
|
|
'purchase_date.date_format' => ':attribute 必须是 YYYY-MM-DD 格式的有效日期',
|
|
|
|
|
'last_audit_date.date_format' => ':attribute 必须是 YYYY-MM-DD hh:mm:ss 格式的有效日期',
|
|
|
|
|
'expiration_date.date_format' => ':attribute 必须是 YYYY-MM-DD 格式的有效日期',
|
|
|
|
|
'termination_date.date_format' => ':attribute 必须是 YYYY-MM-DD 格式的有效日期',
|
|
|
|
|
'expected_checkin.date_format' => ':attribute 必须是 YYYY-MM-DD 格式的有效日期',
|
|
|
|
|
'start_date.date_format' => ':attribute 必须是 YYYY-MM-DD 格式的有效日期',
|
|
|
|
|
'end_date.date_format' => ':attribute 必须是 YYYY-MM-DD 格式的有效日期',
|
2024-07-19 09:47:22 -07:00
|
|
|
|
'checkboxes' => ':attribute 包含无效的选项。',
|
|
|
|
|
'radio_buttons' => ':attribute 无效。',
|
|
|
|
|
'invalid_value_in_field' => '此字段中包含的值无效',
|
|
|
|
|
],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-06 18:05:32 -07:00
|
|
|
|
'attributes' => [],
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
2024-03-27 11:59:28 -07:00
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
2024-07-19 09:47:22 -07:00
|
|
|
|
| Generic Validation Messages - we use these in the jquery validation where we don't have
|
|
|
|
|
| access to the :attribute
|
2024-03-27 11:59:28 -07:00
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
*/
|
2024-07-19 09:47:22 -07:00
|
|
|
|
|
|
|
|
|
'generic' => [
|
|
|
|
|
'invalid_value_in_field' => '此字段中包含的值无效',
|
|
|
|
|
'required' => '此字段是必填项',
|
|
|
|
|
'email' => '请输入一个有效的电子邮件地址',
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
2022-01-13 21:27:29 -08:00
|
|
|
|
];
|