Home PHP Framework Laravel laravel modify verification prompt in Chinese

laravel modify verification prompt in Chinese

May 29, 2023 am 10:20 AM

Laravel is an open source PHP web application framework. It has the characteristics of concise code, easy to understand and learn, and full of innovation. Therefore, it is welcomed by more and more developers. Among them, validation is a very important part of the Laravel framework, which helps developers verify and protect form data submitted by users. However, Laravel's default verification prompt information is all in English, which is not convenient for use on Chinese sites. Next, let's discuss how to modify the verification prompt information of the Laravel framework into Chinese.

0. Introduction

Before starting the formal modification work, we need to clarify several concepts.

First, the default validator of the Laravel framework is IlluminateValidationValidator.

Second, the validator component of the Symfony framework is used by default in the Laravel framework.

Third, the Laravel framework itself provides a variety of methods for modifying verification prompt information, such as modifying the messages array in the validator, using language packs, etc.

1. Modify the messages array in the validator

In the Laravel framework, there is a messages array in the Validator class, which stores all verification prompt information. When using the Validator, we can Modify the verification prompt information by modifying the array. The following is a sample code:

$validator = Validator::make($request->all(), [
    'name' => 'required|max:255',
    'email' => 'required|email|unique:users,email',
    'password' => 'required|confirmed|min:6',
]);

$validator->messages()->add(
    'email.unique', '该邮箱已被注册,请使用其他邮箱。'
);
Copy after login

In the above code, we use the Validator::make method to create a validator and set three validation rules: name is required and the length does not exceed 255 characters; Email is required, must be a legal email address, and unique in the users table; password is required, confirm password, and must be no less than 6 characters in length. Then, we added a new prompt message by calling the $validator->messages()->add method, specifying that when the validation rule unique of the email field fails, it should prompt "The email address has been registered, please use Other email addresses." In this way, we can flexibly modify the verification prompt information.

It should be noted that the prompt information modified using this method will only take effect when the current validator is created. If it needs to take effect for all validators, it needs to be added to each validator. .

2. Use language pack

In addition to directly modifying the messages array in Validator, Laravel also provides another convenient method to modify the verification prompt information, which is to use language packs. The Laravel framework provides multiple language packages by default, including English, Spanish, French, German, Japanese, Chinese, etc. We can find the corresponding verification prompt information in the language pack and modify it.

Using language packs in Laravel is very simple. You only need to create the corresponding language pack folder in the resources/lang directory to start modifying the verification prompt information. For example, if we need to change the verification prompt information to Chinese, we need to create the zh-CN folder in the resources/lang directory, create the validation.php file in this folder, and then write the modified verification prompt information Just go to this file. The sample code is as follows:

<?php
// resources/lang/zh-CN/validation.php

return [
    'required' => ' :attribute 为必填项。',
    'max' => [
        'numeric' => ' :attribute 不能大于 :max。',
        'file' => ' :attribute 不能大于 :max kb。',
        'string' => ' :attribute 不能超过 :max 个字符。',
        'array' => ' :attribute 不能超过 :max 个项。',
    ],
    'email' => ' :attribute 必须为合法的邮箱地址。',
    'unique' => ' :attribute 已存在,请使用其他 :attribute。',
    'confirmed' => '两次输入的 :attribute 不一致。',
];
Copy after login

In the above code, we define prompt information for multiple verification rules such as required and max. This information will be used in the Laravel framework to verify the form data submitted by the user and prompt when the verification fails. This method is more suitable for modifying the verification prompt information site-wide, without adding it to each Validator object.

3. Translation of Symfony verification component

In addition to the above two methods, the Symfony verification component also provides a built-in translation function. We can use this function to translate the verification prompt information in the Laravel framework. translate to Chinese.

To use the translation function of the Symfony verification component, we first need to install the symfony/translation component as follows:

composer require symfony/translation
Copy after login

Then, we need to set up the translator in the Laravel framework, in the AppServiceProvider class Add the following code to the boot method:

use IlluminateSupportFacadesLang;

class AppServiceProvider extends ServiceProvider
{
    public function boot()
    {
        $this->app->singleton('translator', function($app){
            $loader = new SymfonyComponentTranslationLoaderArrayLoader;
            $translator = new SymfonyComponentTranslationTranslator('zh');
            $translator->addLoader('array', $loader);
            $translator->addResource('array', require __DIR__ . '/../vendor/symfony/validator/Resources/translations/validators.zh.xlf', 'zh');
            $loader->load($this->getTranslatorMessages());

            return new IlluminateTranslationTranslator($translator);
        });
    }

    public function getTranslatorMessages()
    {
        $messages = [
            'required' => ':attribute 为必填项。',
            'max' => [
                'numeric' => ':attribute 不能大于 :max。',
            ],
            'email' => ':attribute 必须为合法的邮箱地址。',
            'unique' => ':attribute 已存在,请使用其他 :attribute。',
            'confirmed' => '两次输入的 :attribute 不一致。',
        ];

        return $messages;
    }
}
Copy after login

In the above code, we use the translation function provided by the Symfony verification component in the AppServiceProvider. Among them, we set the language of the translator to Chinese and loaded the translation file validators.zh.xlf that comes with the Symfony verification component. In the getTranslatorMessages method, we define the verification prompt messages that need to be translated. In this way, when the Laravel framework validates the form data, the Symfony translation component will automatically translate the English validation prompt information into Chinese.

It should be noted that this method is more troublesome and requires installing new components and modifying the ServiceProvider class of the Laravel framework.

4. Summary

The above are methods for modifying the Laravel framework verification prompt information, including directly modifying the messages array in the Validator, using language packs, and translation of the Symfony verification component. Different methods are suitable for different scenarios, and you can choose according to your own needs.

In actual development, we usually use a combination of the above methods, such as adding customized verification prompt information in Validator, and covering and adjusting it in the language pack, so as to ensure refined control, and can easily manage and maintain the entire site.

The above is the detailed content of laravel modify verification prompt in Chinese. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

Which is better, Django or Laravel? Which is better, Django or Laravel? Mar 28, 2025 am 10:41 AM

Both Django and Laravel are full-stack frameworks. Django is suitable for Python developers and complex business logic, while Laravel is suitable for PHP developers and elegant syntax. 1.Django is based on Python and follows the "battery-complete" philosophy, suitable for rapid development and high concurrency. 2.Laravel is based on PHP, emphasizing the developer experience, and is suitable for small to medium-sized projects.

Laravel and the Backend: Powering Web Application Logic Laravel and the Backend: Powering Web Application Logic Apr 11, 2025 am 11:29 AM

How does Laravel play a role in backend logic? It simplifies and enhances backend development through routing systems, EloquentORM, authentication and authorization, event and listeners, and performance optimization. 1. The routing system allows the definition of URL structure and request processing logic. 2.EloquentORM simplifies database interaction. 3. The authentication and authorization system is convenient for user management. 4. The event and listener implement loosely coupled code structure. 5. Performance optimization improves application efficiency through caching and queueing.

Laravel user login function Laravel user login function Apr 18, 2025 pm 12:48 PM

Laravel provides a comprehensive Auth framework for implementing user login functions, including: Defining user models (Eloquent model), creating login forms (Blade template engine), writing login controllers (inheriting Auth\LoginController), verifying login requests (Auth::attempt) Redirecting after login is successful (redirect) considering security factors: hash passwords, anti-CSRF protection, rate limiting and security headers. In addition, the Auth framework also provides functions such as resetting passwords, registering and verifying emails. For details, please refer to the Laravel documentation: https://laravel.com/doc

Is Laravel a frontend or backend? Is Laravel a frontend or backend? Mar 27, 2025 pm 05:31 PM

LaravelisabackendframeworkbuiltonPHP,designedforwebapplicationdevelopment.Itfocusesonserver-sidelogic,databasemanagement,andapplicationstructure,andcanbeintegratedwithfrontendtechnologieslikeVue.jsorReactforfull-stackdevelopment.

Which is better PHP or Laravel? Which is better PHP or Laravel? Mar 27, 2025 pm 05:31 PM

PHP and Laravel are not directly comparable, because Laravel is a PHP-based framework. 1.PHP is suitable for small projects or rapid prototyping because it is simple and direct. 2. Laravel is suitable for large projects or efficient development because it provides rich functions and tools, but has a steep learning curve and may not be as good as pure PHP.

Laravel framework skills sharing Laravel framework skills sharing Apr 18, 2025 pm 01:12 PM

In this era of continuous technological advancement, mastering advanced frameworks is crucial for modern programmers. This article will help you improve your development skills by sharing little-known techniques in the Laravel framework. Known for its elegant syntax and a wide range of features, this article will dig into its powerful features and provide practical tips and tricks to help you create efficient and maintainable web applications.

How to learn Laravel How to learn Laravel for free How to learn Laravel How to learn Laravel for free Apr 18, 2025 pm 12:51 PM

Want to learn the Laravel framework, but suffer from no resources or economic pressure? This article provides you with free learning of Laravel, teaching you how to use resources such as online platforms, documents and community forums to lay a solid foundation for your PHP development journey from getting started to master.

See all articles