From c98640fc8ba2c3cd225b2950bb1c17b99548e863 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 19 Jun 2026 04:47:35 +0000 Subject: [PATCH 1/3] repair stale translations --- resources/lang/en/filament-panels.php | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 resources/lang/en/filament-panels.php diff --git a/resources/lang/en/filament-panels.php b/resources/lang/en/filament-panels.php deleted file mode 100644 index c1cb44106..000000000 --- a/resources/lang/en/filament-panels.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Logout', -]; From 4e698783c1b1b15b8efacbd5d9d8e0c38d50f1cb Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 19 Jun 2026 05:24:20 +0000 Subject: [PATCH 2/3] repair translation strings --- Modules/Core/Filament/Pages/Auth/Login.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Modules/Core/Filament/Pages/Auth/Login.php b/Modules/Core/Filament/Pages/Auth/Login.php index 874575831..6957e97a6 100644 --- a/Modules/Core/Filament/Pages/Auth/Login.php +++ b/Modules/Core/Filament/Pages/Auth/Login.php @@ -62,7 +62,6 @@ public function authenticate(): ?LoginResponse protected function getEmailFormComponent(): Component { return TextInput::make('email') - ->label(trans('filament-panels::pages/auth/login.form.email.label')) ->email() ->required() ->autocomplete() @@ -73,7 +72,6 @@ protected function getEmailFormComponent(): Component protected function getPasswordFormComponent(): Component { return TextInput::make('password') - ->label(trans('filament-panels::pages/auth/login.form.password.label')) ->password() ->revealable(filament()->arePasswordsRevealable()) ->autocomplete('current-password') From 6f3b944dc948e43f292b983f4785560152d42d3c Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 19 Jun 2026 05:26:45 +0000 Subject: [PATCH 3/3] repaired stale translation strings --- Modules/Core/Filament/Pages/Auth/Login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Core/Filament/Pages/Auth/Login.php b/Modules/Core/Filament/Pages/Auth/Login.php index 6957e97a6..958d43292 100644 --- a/Modules/Core/Filament/Pages/Auth/Login.php +++ b/Modules/Core/Filament/Pages/Auth/Login.php @@ -18,11 +18,11 @@ public function authenticate(): ?LoginResponse $this->rateLimit(5); } catch (TooManyRequestsException $exception) { Notification::make() - ->title(trans('filament-panels::pages/auth/login.notifications.throttled.title', [ + ->title(trans('filament-panels::auth/pages/login.notifications.throttled.title', [ 'seconds' => $exception->secondsUntilAvailable, 'minutes' => ceil($exception->secondsUntilAvailable / 60), ])) - ->body(array_key_exists('body', trans('filament-panels::pages/auth/login.notifications.throttled') ?: []) ? trans('filament-panels::pages/auth/login.notifications.throttled.body', [ + ->body(array_key_exists('body', trans('filament-panels::auth/pages/login.notifications.throttled') ?: []) ? trans('filament-panels::pages/auth/login.notifications.throttled.body', [ 'seconds' => $exception->secondsUntilAvailable, 'minutes' => ceil($exception->secondsUntilAvailable / 60), ]) : null)