Laravel 인증 알림 정 보 를 중국어 로 수정 하 는 예제
resource/lang/en/vaidation.php 주석 을 열 어 영어 알림 정 보 를 설명 합 니 다.
아래 의 알림 정 보 를 영어 알림 정보 로 덮어 씁 니 다.
<?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 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 ',
'between' => [
'numeric' => ':attribute :min :max ',
'file' => ':attribute :min :max KB ',
'string' => ':attribute :min :max ',
'array' => ':attribute :min :max ',
],
'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 ',
'exists' => ' :attribute .',
'file' => ':attribute ',
'filled' => ':attribute ',
'image' => ':attribute jpeg, png, bmp gif ',
'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 KB',
'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 KB',
'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 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' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| 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' => [
// 'name' => ' ',
// 'age' => ' ',
],
];
2.중국어 정보 알림 패키지 설치
composer require "overtrue/laravel-lang:~3.0"
등록 서비스 제공 자:config/app.php
'providers' => [
// Illuminate\Translation\TranslationServiceProvider::class,
Overtrue\LaravelLang\TranslationServiceProvider::class,
]
수정 언어:config/app.php
'locale' => 'zh-CN',
이상 의 이 Laravel 수정 검증 알림 정 보 를 중국어 로 하 는 예 는 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 께 참고 가 되 고 저희 도 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
단순 Laravel+Vue.js에서 VueUI를 사용하여 로그인 및 등록Laravel에는 웹 팩과 같은 Laravel-Mix가 있는데, 이를 이용해서 Laravel에 Vue.js를 실현할 수 있다. 이번에는 몇 가지 명령을 통해 간단하게 VueUI로 로그인하여 로그인을 할 수 있습니다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.