From 4ba003f25ca80bd0c7710353304f7253f80d9277 Mon Sep 17 00:00:00 2001 From: Vasyka Date: Fri, 17 Jul 2026 06:36:49 +0000 Subject: [PATCH] =?UTF-8?q?i18n(payments):=20explicit=20->label('Metod?= =?UTF-8?q?=C4=83')=20on=20method=20select?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Field 'method' auto-generated 'Method' as label. Since RO is the source language, __('Method') fell back to English on RO locale. Now explicitly labeled with 'Metodă' so all 3 langs resolve properly (Metodă / Метод / Method). Co-Authored-By: Claude Opus 4.7 (1M context) --- app/Filament/Tenant/Resources/PaymentResource.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Filament/Tenant/Resources/PaymentResource.php b/app/Filament/Tenant/Resources/PaymentResource.php index 21cbc9b..7e7c40f 100644 --- a/app/Filament/Tenant/Resources/PaymentResource.php +++ b/app/Filament/Tenant/Resources/PaymentResource.php @@ -69,6 +69,7 @@ class PaymentResource extends Resource ->schema([ Forms\Components\DatePicker::make('paid_at')->label(__('Data'))->default(today())->required(), Forms\Components\Select::make('method') + ->label(__('Metodă')) ->options(\App\Support\I18n::opts(Payment::METHODS)) ->default('cash') ->required(),