обновлены lang-файлы для авторизации
This commit is contained in:
parent
f3fb00aad5
commit
4eb6bac149
@ -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');
|
||||||
|
}
|
||||||
|
};
|
||||||
@ -13,8 +13,8 @@
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'failed' => 'These credentials do not match our records.',
|
'failed' => 'Электронная почта или пароль указаны неверно.',
|
||||||
'password' => 'The provided password is incorrect.',
|
'password' => 'The provided password is incorrect.',
|
||||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
'throttle' => 'Слишком много попыток входа. Попробуйте войти повторно немного позже.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@ -13,10 +13,10 @@
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'reset' => 'Your password has been reset.',
|
'reset' => 'Ваш пароль был изменен.',
|
||||||
'sent' => 'We have emailed your password reset link.',
|
'sent' => 'Мы отправили ссылку для сброса пароля на указанную электронную почту',
|
||||||
'throttled' => 'Please wait before retrying.',
|
'throttled' => 'Пожалуйста, попробуйте сделать это немного позже.',
|
||||||
'token' => 'This password reset token is invalid.',
|
'token' => 'Ссылка для восстановления пароля устарела.',
|
||||||
'user' => "We can't find a user with that email address.",
|
'user' => "Мы не нашли пользователя с такой электронной почтой.",
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user