为了账号安全,请及时绑定邮箱和手机立即绑定

laravel 中的错误信息翻译问题

laravel 中的错误信息翻译问题

PHP
大话西游666 2022-12-11 09:46:24
我正在尝试将我的错误消息翻译成法语。但是验证消息包含在app/Rules/MatchOldPassword.php文件我已经翻译了 validation.php 文件中的错误消息,但是如何翻译这条位于不同路径的错误消息这是我的 MatchOldPassword.php 代码<?phpnamespace App\Rules;use Illuminate\Contracts\Validation\Rule;use Illuminate\Support\Facades\Hash;class MatchOldPassword implements Rule{    /**     * Determine if the validation rule passes.     *     * @param  string  $attribute     * @param  mixed  $value     * @return bool     */    public function passes($attribute, $value)    {        return Hash::check($value, auth()->user()->password);    }    /**     * Get the validation error message.     *     * @return string     */    public function message()    {        return 'The :attribute need to be matched the with old password.';    }}
查看完整描述

1 回答

?
12345678_0001

TA贡献1802条经验 获得超5个赞

使用__方法进行字符串翻译


/**

 * Get the validation error message.

 *

 * @return string

 */

public function message()

{

    return __('validation.<key>'); // the key is the key specified in your validation file

}


查看完整回答
反对 回复 2022-12-11
  • 1 回答
  • 0 关注
  • 126 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信