diff --git a/resources/lang/en/common.php b/resources/lang/en/common.php index 287a2846..f4c97824 100644 --- a/resources/lang/en/common.php +++ b/resources/lang/en/common.php @@ -10,6 +10,7 @@ */ return [ + 'error_required' => 'Please fill out the :name', // 这个有用别删了,:name 是一个变量 'error_required_name' => 'Please fill in your name', 'error_required_email' => 'Please enter your email', 'unauthenticated' => 'Please login first', diff --git a/resources/lang/zh_cn/common.php b/resources/lang/zh_cn/common.php index 13d21f10..91382d58 100644 --- a/resources/lang/zh_cn/common.php +++ b/resources/lang/zh_cn/common.php @@ -9,7 +9,7 @@ * @modified 2022-07-28 17:21:38 */ return [ - 'index' => '123123', + 'error_required' => '请填写 :name', // 这个有用别删了,:name 是一个变量 'error_required_name' => '请填写姓名', 'error_required_email' => '请填写邮箱', 'unauthenticated' => '请先登录',