diff --git a/resources/lang/zh/validation.php b/resources/lang/zh/validation.php index 932a39479..201880ec9 100644 --- a/resources/lang/zh/validation.php +++ b/resources/lang/zh/validation.php @@ -12,78 +12,78 @@ return [ | */ - 'accepted' => ' :attribute 被接受.', - 'active_url' => ' :attribute 不是一个有效的URL.', - 'after' => ' :attribute 必须是一个位于 :date 之后的日期.', - 'after_or_equal' => ' :attribute 必须是 :date 之后或同样的日期.', - 'alpha' => ' :attribute 只能含有字母.', - 'alpha_dash' => ':attribute 只能含有数字字母和分隔线.', - 'alpha_num' => ' :attribute 只能含有数字和字母.', - 'array' => ' :attribute 必须是个数组.', - 'before' => ' :attribute 必须是一个位于 :date 之前的日前.', - 'before_or_equal' => ' :attribute 必须是 :date 之前或同样的日期.', + 'accepted' => 'The :attribute must be accepted.', + 'active_url' => 'The :attribute is not a valid URL.', + 'after' => 'The :attribute must be a date after :date.', + 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + 'alpha' => 'The :attribute may only contain letters.', + 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', + 'alpha_num' => 'The :attribute may only contain letters and numbers.', + 'array' => 'The :attribute must be an array.', + 'before' => 'The :attribute must be a date before :date.', + 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ - 'numeric' => ' :attribute 必须在 :min 到 :max 之间.', - 'file' => ' :attribute 必须在 :min 到 :max KB 之间.', - 'string' => ' :attribute m必须在 :min 到 :max 个字符之间.', - 'array' => ' :attribute 必须在 :min 到 :max 个项目之间.', + 'numeric' => 'The :attribute must be between :min and :max.', + 'file' => 'The :attribute must be between :min and :max kilobytes.', + 'string' => 'The :attribute must be between :min and :max characters.', + 'array' => 'The :attribute must have between :min and :max items.', ], - 'boolean' => ' :attribute 填入的必须为 true 或 false.', - 'confirmed' => ' :attribute 确认不匹配.', - 'date' => ' :attribute 不是一个合法的日期.', - 'date_format' => ' :attribute 不是正确的格式: :format.', - 'different' => ' :attribute 和 :other 必须不同.', - 'digits' => ' :attribute 必须为 :digits 个数字.', - 'digits_between' => ' :attribute 必须在 :min 到 :max 个数字间.', - 'dimensions' => ' :attribute 有一个非法的镜像大小.', - 'distinct' => ' :attribute 填入了一个重复的值.', - 'email' => ' :attribute 必须是一个合法的Email地址.', - 'exists' => '所选择的 :attribute 无效.', - 'file' => ' :attribute 必须为一个文件.', - 'filled' => ' :attribute 为必填项目.', - 'image' => ' :attribute 必须是一个镜像.', - 'in' => '所选择的 :attribute 无效.', - 'in_array' => ' :attribute 填入的信息在 :other 不存在.', - 'integer' => ' :attribute 必须是一个整数.', - 'ip' => ' :attribute 必须是一个合法的IP地址.', - 'json' => ' :attribute 必须是一个合法的JSON字符串.', + 'boolean' => 'The :attribute field must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + 'date' => 'The :attribute is not a valid date.', + 'date_format' => 'The :attribute does not match the format :format.', + 'different' => 'The :attribute and :other must be different.', + 'digits' => 'The :attribute must be :digits digits.', + 'digits_between' => 'The :attribute must be between :min and :max digits.', + 'dimensions' => 'The :attribute has invalid image dimensions.', + 'distinct' => 'The :attribute field has a duplicate value.', + 'email' => 'The :attribute must be a valid email address.', + 'exists' => 'The selected :attribute is invalid.', + 'file' => 'The :attribute must be a file.', + 'filled' => 'The :attribute field is required.', + 'image' => 'The :attribute must be an image.', + 'in' => 'The selected :attribute is invalid.', + 'in_array' => 'The :attribute field does not exist in :other.', + 'integer' => 'The :attribute must be an integer.', + 'ip' => 'The :attribute must be a valid IP address.', + 'json' => 'The :attribute must be a valid JSON string.', 'max' => [ - 'numeric' => ' :attribute 不能大于 :max.', - 'file' => ' :attribute 不能大于 :max KB.', - 'string' => ' :attribute 不能多于 :max 个字符.', - 'array' => ' :attribute 不能多于 :max 个项目.', + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', + 'array' => 'The :attribute may not have more than :max items.', ], - 'mimes' => ' :attribute 文件类型必须为: :values.', - 'mimetypes' => ' :attribute 文件类型必须为: :values.', + 'mimes' => 'The :attribute must be a file of type: :values.', + 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ - 'numeric' => ' :attribute 至少应在 :min.', - 'file' => ' :attribute 至少应在 :min KB.', - 'string' => ' :attribute 至少应在 :min 个字符.', - 'array' => ' :attribute 至少应有 :min 个项目.', + 'numeric' => 'The :attribute must be at least :min.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => '所选择的 :attribute 不正确.', - 'numeric' => ' :attribute 必须是个数字.', - 'present' => ' :attribute 填入的必须存在.', - 'regex' => ' :attribute 格式不正确.', - 'required' => ' :attribute 为必填.', - 'required_if' => ' :attribute 被要求填入, 当 :other 为 :value 的时候.', - 'required_unless' => ' :attribute 被要求填入,除非 :other 为 :values.', - 'required_with' => ' :attribute 被要求填入,当 :values 存在的时候.', - 'required_with_all' => ' :attribute 被要求填入,当 :values 存在.', - 'required_without' => ' :attribute 被要求填入,当 :values 不存在.', - 'required_without_all' => ' :attribute 被要求填入,当 :values 都不存在.', - 'same' => ' :attribute 和 :other 必须相同.', + 'not_in' => 'The selected :attribute is invalid.', + 'numeric' => 'The :attribute must be a number.', + 'present' => 'The :attribute field must be present.', + 'regex' => 'The :attribute format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute and :other must match.', 'size' => [ - 'numeric' => ' :attribute 必须为 :size.', - 'file' => ' :attribute 必须为 :size KB.', - 'string' => ' :attribute 必须为 :size 个字符.', - 'array' => ' :attribute 必须包含 :size 个项目.', + 'numeric' => 'The :attribute must be :size.', + 'file' => 'The :attribute must be :size kilobytes.', + 'string' => 'The :attribute must be :size characters.', + 'array' => 'The :attribute must contain :size items.', ], - 'string' => ' :attribute 必须为字符串.', - 'timezone' => ' :attribute 必须是一个有效的时区.', - 'unique' => ' :attribute 已经被使用.', - 'uploaded' => ' :attribute 上传失败.', - 'url' => ' :attribute 格式不合法.', + 'string' => 'The :attribute must be a string.', + 'timezone' => 'The :attribute must be a valid zone.', + 'unique' => 'The :attribute has already been taken.', + 'uploaded' => 'The :attribute failed to upload.', + 'url' => 'The :attribute format is invalid.', /* |--------------------------------------------------------------------------