обновлены lang-файлы для авторизации

This commit is contained in:
developer 2026-04-21 14:32:58 +08:00
parent f3fb00aad5
commit 4eb6bac149
4 changed files with 42 additions and 15 deletions

View File

@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('deals', function (Blueprint $table)
{
$table->date('unique_untill')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('docs');
}
};

View File

@ -13,8 +13,8 @@
|
*/
'failed' => 'These credentials do not match our records.',
'failed' => 'Электронная почта или пароль указаны неверно.',
'password' => 'The provided password is incorrect.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'throttle' => 'Слишком много попыток входа. Попробуйте войти повторно немного позже.',
];

View File

@ -13,10 +13,10 @@
|
*/
'reset' => 'Your password has been reset.',
'sent' => 'We have emailed your password reset link.',
'throttled' => 'Please wait before retrying.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that email address.",
'reset' => 'Ваш пароль был изменен.',
'sent' => 'Мы отправили ссылку для сброса пароля на указанную электронную почту',
'throttled' => 'Пожалуйста, попробуйте сделать это немного позже.',
'token' => 'Ссылка для восстановления пароля устарела.',
'user' => "Мы не нашли пользователя с такой электронной почтой.",
];