| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Validation Language Lines
- |--------------------------------------------------------------------------
- */
- 'mimetypes' => ':attribute 的文件类型必须是::values。',
- 'mimes' => ':attribute 的文件格式必须是::values。',
- 'max' => [
- 'string' => ':attribute 不能超过 :max 个字符。',
- 'file' => ':attribute 不能超过 :max KB。',
- 'array' => ':attribute 不能超过 :max 项。',
- 'numeric' => ':attribute 不能大于 :max。',
- ],
- 'min' => [
- 'string' => ':attribute 不能少于 :min 个字符。',
- 'file' => ':attribute 不能小于 :min KB。',
- 'array' => ':attribute 不能少于 :min 项。',
- 'numeric' => ':attribute 不能小于 :min。',
- ],
- 'attributes' => [
- 'markdown_file' => 'Markdown 文件',
- 'original_markdown' => 'Markdown 内容',
- 'file_name' => '文件名(来源名称)',
- ],
- ];
|