feat(i18n): wrap 1103 hardcoded UI strings across Filament with __()

- Convert static $modelLabel/$pluralModelLabel/$title to getter methods
- Wrap ->label()/->placeholder()/->helperText()/->description()/->title()/->body() args
- Wrap Section::make()/Fieldset::make()/Notification::make()->title() args
- Fix RelationManagers::getTitle() signature to match parent (Model, string)
- Fix Pages::getTitle() to instance method (BasePage::getTitle is non-static)
- Extend lang/ru.json + lang/en.json with 700+ common terms; identity fallback for the rest
- Remove duplicate getters in 5 resources that had manual getModelLabel already

All 306 tests pass. Missing translations fall back to the RO key so the UI never breaks.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-15 05:04:24 +00:00
parent 78ff8d4b43
commit f7fc69077b
83 changed files with 4212 additions and 1251 deletions
@@ -32,24 +32,20 @@ class ShopCustomerResource extends Resource
return __('nav.group.Magazin');
}
protected static ?string $modelLabel = 'client magazin';
protected static ?string $pluralModelLabel = 'clienți magazin';
protected static ?int $navigationSort = 52;
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make()->columns(2)->schema([
Forms\Components\TextInput::make('name')->label('Nume')->required()->maxLength(160),
Forms\Components\TextInput::make('phone')->label('Telefon')->required()->maxLength(40),
Forms\Components\TextInput::make('email')->label('Email')->email()->maxLength(160),
Forms\Components\TextInput::make('name')->label(__('Nume'))->required()->maxLength(160),
Forms\Components\TextInput::make('phone')->label(__('Telefon'))->required()->maxLength(40),
Forms\Components\TextInput::make('email')->label(__('Email'))->email()->maxLength(160),
Forms\Components\Select::make('client_id')
->label('Client legat (CRM)')
->label(__('Client legat (CRM)'))
->options(fn () => \App\Models\Tenant\Client::pluck('name', 'id'))
->searchable()
->helperText('Legătura cu fișa CRM (opțional). Auto-matched la înregistrare după telefon.'),
->helperText(__('Legătura cu fișa CRM (opțional). Auto-matched la înregistrare după telefon.')),
]),
]);
}
@@ -61,19 +57,19 @@ class ShopCustomerResource extends Resource
Tables\Columns\TextColumn::make('name')->searchable()->sortable(),
Tables\Columns\TextColumn::make('phone')->copyable()->searchable(),
Tables\Columns\TextColumn::make('email')->placeholder('—')->copyable()->toggleable(),
Tables\Columns\TextColumn::make('client.name')->label('Client CRM')->placeholder('—')->toggleable(),
Tables\Columns\TextColumn::make('orders_count')->counts('orders')->label('Comenzi')->alignRight(),
Tables\Columns\TextColumn::make('last_login_at')->label('Ultim login')->since()->placeholder('Niciodată'),
Tables\Columns\TextColumn::make('created_at')->label('Înregistrat')->date('d.m.Y')->toggleable(),
Tables\Columns\TextColumn::make('client.name')->label(__('Client CRM'))->placeholder('—')->toggleable(),
Tables\Columns\TextColumn::make('orders_count')->counts('orders')->label(__('Comenzi'))->alignRight(),
Tables\Columns\TextColumn::make('last_login_at')->label(__('Ultim login'))->since()->placeholder(__('Niciodată')),
Tables\Columns\TextColumn::make('created_at')->label(__('Înregistrat'))->date('d.m.Y')->toggleable(),
])
->actions([
Actions\Action::make('reset_password')
->label('Trimite reset parolă')
->label(__('Trimite reset parolă'))
->icon('heroicon-m-key')
->color('warning')
->visible(fn (ShopCustomer $r) => ! empty($r->email))
->requiresConfirmation()
->modalDescription('Trimite emailul standard de resetare a parolei către clientul magazinului.')
->modalDescription(__('Trimite emailul standard de resetare a parolei către clientul magazinului.'))
->action(function (ShopCustomer $r) {
$status = Password::broker('shop_customers')->sendResetLink(['email' => $r->email]);
Notification::make()
@@ -86,8 +82,8 @@ class ShopCustomerResource extends Resource
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->emptyStateHeading('Niciun client magazin')
->emptyStateDescription('Aici apar clienții care și-au creat cont în magazinul online (/shop/register).')
->emptyStateHeading(__('Niciun client magazin'))
->emptyStateDescription(__('Aici apar clienții care și-au creat cont în magazinul online (/shop/register).'))
->emptyStateIcon('heroicon-o-user-circle')
->defaultSort('created_at', 'desc');
}