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
@@ -38,11 +38,11 @@ class WarehouseResource extends Resource
{
return $schema->components([
Schemas\Components\Section::make()->columns(2)->schema([
Forms\Components\TextInput::make('code')->label('Cod')->required()->maxLength(32),
Forms\Components\TextInput::make('name')->label('Denumire')->required()->maxLength(120),
Forms\Components\TextInput::make('address')->label('Adresă')->columnSpanFull()->maxLength(200),
Forms\Components\Toggle::make('is_default')->label('Depozit implicit'),
Forms\Components\Toggle::make('is_active')->label('Activ')->default(true),
Forms\Components\TextInput::make('code')->label(__('Cod'))->required()->maxLength(32),
Forms\Components\TextInput::make('name')->label(__('Denumire'))->required()->maxLength(120),
Forms\Components\TextInput::make('address')->label(__('Adresă'))->columnSpanFull()->maxLength(200),
Forms\Components\Toggle::make('is_default')->label(__('Depozit implicit')),
Forms\Components\Toggle::make('is_active')->label(__('Activ'))->default(true),
]),
]);
}
@@ -54,19 +54,19 @@ class WarehouseResource extends Resource
Tables\Columns\TextColumn::make('code')->searchable()->sortable(),
Tables\Columns\TextColumn::make('name')->searchable()->sortable(),
Tables\Columns\TextColumn::make('address')->placeholder('—')->toggleable(),
Tables\Columns\IconColumn::make('is_default')->label('Implicit')->boolean(),
Tables\Columns\IconColumn::make('is_active')->label('Activ')->boolean(),
Tables\Columns\IconColumn::make('is_default')->label(__('Implicit'))->boolean(),
Tables\Columns\IconColumn::make('is_active')->label(__('Activ'))->boolean(),
Tables\Columns\TextColumn::make('batches_count')
->counts('batches')
->label('Loturi')
->label(__('Loturi'))
->alignRight(),
])
->actions([
Actions\EditAction::make(),
Actions\DeleteAction::make(),
])
->emptyStateHeading('Niciun depozit')
->emptyStateDescription('Un depozit implicit a fost creat la migrare. Adaugă altele dacă ai locații fizice separate (sucursală, hală, mobil).')
->emptyStateHeading(__('Niciun depozit'))
->emptyStateDescription(__('Un depozit implicit a fost creat la migrare. Adaugă altele dacă ai locații fizice separate (sucursală, hală, mobil).'))
->emptyStateIcon('heroicon-o-building-storefront')
->defaultSort('code');
}