laravel表单中文错误提示本地化
<?php 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.
|
*/ 'accepted' => '注意: :attribute 为必填.',
'active_url' => '注意: :attribute 是不可用的链接.',
'after' => '注意: :attribute 必须为一个在 :date 之后的时间.',
'alpha' => '注意: :attribute 只允许全部为字母.',
'alpha_dash' => '注意: :attribute 只允许字幕,数字和_连接符.',
'alpha_num' => '注意: :attribute 只允许字幕和数字.',
'array' => '注意: :attribute 必须为数组.',
'before' => '注意: :attribute 必须为一个在 :date 之前的时间.',
'between' => [
'numeric' => '注意: :attribute 必须在 :min 至 :max 之间.',
'file' => '注意: :attribute 必须限制在 :min 至 :max k.',
'string' => '注意: :attribute 必须在 :min 至 :max 字符.',
'array' => '注意: :attribute 必须包含 :min 至 :max 键.',
],
'boolean' => '注意: :attribute 字段必须为 true 或 false.',
'confirmed' => '注意: :attribute 确认不匹配.',
'date' => '注意: :attribute 是一个不可用的时间.',
'date_format' => '注意: :attribute 不匹配: format :format.',
'different' => '注意: :attribute 和 :other 必须不同.',
'digits' => '注意: :attribute 必须 :digits 数值.',
'digits_between' => '注意: :attribute 必须在 :min 至 :max 数值之间.',
'dimensions' => '注意: :attribute 有无效的图片尺寸.',
'distinct' => '注意: :attribute 字段具有重复的值.',
'email' => '注意: :attribute 必须为可用的邮箱地址.',
'exists' => '注意: 选中的 :attribute 不可用.',
'file' => '注意: :attribute 必须为一个文件.',
'filled' => '注意: :attribute 字段必填.',
'image' => '注意: :attribute 必须为图片.',
'in' => '注意: 选中的 :attribute 不可以.',
'in_array' => '注意: :attribute 字段未出现在 :other 其中.',
'integer' => '注意: :attribute 必须为整数.',
'ip' => '注意: :attribute 必须为合法的IP地址.',
'json' => '注意: :attribute 必须为合法的JSON格式数据.',
'max' => [
'numeric' => '注意: :attribute 不可以比 :max 大.',
'file' => '注意: :attribute 不能超过 :max 千字节.',
'string' => '注意: :attribute 不可超过 :max 个字符.',
'array' => '注意: :attribute 不能超过 :max 个键值对.',
],
'mimes' => '注意: :attribute 必须为: :values 类型的文件.',
'min' => [
'numeric' => '注意: :attribute 必须最小为 :min.',
'file' => '注意: :attribute 必须至少 :min 千字节.',
'string' => '注意: :attribute 必须至少 :min 字符.',
'array' => '注意: :attribute 必须至少包含 :min 个键值对.',
],
'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 必须保持一致.',
'size' => [
'numeric' => '注意: :attribute 必须 :size.',
'file' => '注意: :attribute 必须包含 :size 千字节.',
'string' => '注意: :attribute 必须包含 :size 字符.',
'array' => '注意: :attribute 必须包含 :size 键.',
],
'string' => '注意: :attribute 必须为字符.',
'timezone' => '注意: :attribute 时区必须为合理的时区.',
'unique' => '注意: :attribute 已经被占用,请更换.',
'url' => '注意: :attribute 格式不可用.', /*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using 注意:
| convention "attribute.rule" to name 注意: lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/ 'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
], /*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| 注意: 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' => [], ];
1.找到laravel框架中的resources\lang\找到en文件夹复制一份重命名zh
2.然后复制以上代码到validation.php
3.更改指定配置,找到config\app.php 找到'locale' => 'en',把en改成zh
4.大功告成。
laravel表单中文错误提示本地化的更多相关文章
- Laravel表单验证提示设置多语言
默认表单提示是英文的,我们可以安装语言包构建多语言环境. 根据版本选择命令 For Laravel 7.x : run composer require caouecs/laravel-lang:~6 ...
- Fort.js – 时尚、现代的表单填写进度提示效果
Fort.js 是一款用于时尚.现代的表单填写进度提示效果的 JavaScript 库,你需要做的就是添加表单,剩下的任务就交给 Fort.js 算法了,使用非常简单.提供了Default.Gradi ...
- Laravel表单传值
仔细阅读过Laravel官方文档的就不用看啦~ 整理下之前遇到的关于Laravel表单的一些小问题 表单传值无法传过去,因为laravel做了表单的防护 只需要将{{ csrf_field() }}放 ...
- django中ModelForm save方法 以及快速生成空表单或包含数据的表单 包含错误信息
django中ModelForm学习系列一~save方法 Model代码 from django.db import models # Create your models here. class P ...
- Laravel 表单验证创建“表单请求”实现自定义请求类
按照文档创建表单请求自定义类以后,调用总是403页面,咨询大佬说: public function authorize() { // 在表单验证类的这个方法这里要返回true,默认返回false,这个 ...
- 社群系统 ThinkSNS+ 中如何利用 Laravel 表单验证来验证用户名的?(我朝独有需求,两个字母占一个汉字。。。)
ThinkSNS+后端框架使用laravel,每周和 laravel master 保持同步,而后台和 html 5 则采用 vue 开发.语言特性方面,采用 php 7 的严格模式. 言归正传,之所 ...
- laravel表单验证
效果展示: 代码 实现: 后台: use Validator; public function login() { if($input = Input::all()){ //验证提交的 ...
- Servlet 快速开始 表单中文字段
req.getParameter | getParameterValue 一大特点是 返回null表示没有. [web.xml] <servlet> <serlvlet-mappin ...
- Spring MVC 3 表单中文提交post请求和get请求乱码问题的解决方法
在spring mvc 3.0 框架中,通过JSP页面.HTML页面以POST方式提交表单时,表单的参数传递到对应的servlet后会出现中文显示乱码的问题.解决办法可采用spring自带的过滤技术, ...
随机推荐
- fastDFS多线程并发执行出现的问题
--------------------- 原作者:Java高级开发 来源:CSDN 原文:https://blog.csdn.net/hang1995/article/details/7924 ...
- js时间戳转为日期格式的方法
Date.prototype.Format = function(fmt){ var o = { "M+" : this.getMonth()+1, //月份 "d+&q ...
- intellij tomcat
VMOption -server -XX:PermSize=128M -XX:MaxPermSize=256m
- 为什么说OC是运行时语言?什么是动态类型、动态绑定、动态加载?
转载:https://www.cnblogs.com/dxb123456/p/5525343.html 动态: 主要是将数据类型的确定由编译时,推迟到了运行时. 这个问题其实浅涉及到两个概念,运行时和 ...
- mybatis的一堆多映射使用配置
自己仿站jeep官网在制作商城时,商品详情页面需要带着一个商品的信息,商品的配置,配置对应的颜色,商品的图片 如图 首先设计业务bean 一辆车的信息 业务一对多的大业务bean,继承Car.ja ...
- Unity中激活子物体
void GetChildrenAndSetActive() { Transform[] imageTargetObjects = GetComponentsInChildren<Transfo ...
- Java 泛型与集合
1.List练习,请用泛型的写法来完成. 已知有一个Worker 类如下: public class Worker { private int age; private String name; p ...
- 发光加载环动画-纯CSS动画效果-如何创建CSS3旋转预加载器(参照https://www.bilibili.com/video/BV1V4411C7z5?from=search&seid=9741275927942612817)
//css部分 body{ margin:; padding:; background: #262626; } .ring{ position: absolute; top:50%; left: 50 ...
- 脚本学习一(echo、echo off、@、start)
1.echo表示显示此命令后的字符 脚本: 输出结果: 2.echo off表示在此语句后所有运行的命令都不显示命令行本身 脚本: 输出结果: 3.@与echo off相象,但它是加在每个命令行的最前 ...
- [PHP学习教程 - 网络]002.获取网页内容(URL Content)
引言:获取网页内容是我们实现网页操作的基本之基本,今天这一讲,我们和大家讲一下基本请求网页内容的几种方法. 我们似乎每天都要做这样一件事情,打开一个浏览器,输入网址,回车,一个空白的页面顿时有了东西, ...