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
+52 -47
View File
@@ -30,7 +30,12 @@ class PartResource extends Resource
return __('nav.group.Depozit');
}
protected static ?string $modelLabel = 'piesă';
protected static ?string $modelLabel = null;
public static function getModelLabel(): string
{
return __('piesă');
}
protected static ?string $pluralModelLabel = 'piese';
@@ -66,50 +71,50 @@ class PartResource extends Resource
public static function form(Schema $schema): Schema
{
return $schema->components([
Schemas\Components\Section::make('Identificare')
Schemas\Components\Section::make(__('Identificare'))
->columns(3)
->schema([
Forms\Components\TextInput::make('name')->label('Denumire')->required()->columnSpan(3)->maxLength(200),
Forms\Components\TextInput::make('article')->label('Cod articol')->maxLength(64),
Forms\Components\TextInput::make('name')->label(__('Denumire'))->required()->columnSpan(3)->maxLength(200),
Forms\Components\TextInput::make('article')->label(__('Cod articol'))->maxLength(64),
Forms\Components\TextInput::make('brand')->maxLength(64),
Forms\Components\Select::make('category')
->label('Categorie')
->label(__('Categorie'))
->options(array_combine(Part::CATEGORIES, Part::CATEGORIES))
->searchable(),
Forms\Components\TextInput::make('barcode')->label('Cod bare')->maxLength(64),
Forms\Components\TextInput::make('location')->label('Locație rack/bin')->maxLength(64),
Forms\Components\TextInput::make('barcode')->label(__('Cod bare'))->maxLength(64),
Forms\Components\TextInput::make('location')->label(__('Locație rack/bin'))->maxLength(64),
]),
Schemas\Components\Section::make('Stoc')
Schemas\Components\Section::make(__('Stoc'))
->columns(4)
->schema([
Forms\Components\TextInput::make('qty')->label('Cantitate')->numeric()->default(0)->required(),
Forms\Components\TextInput::make('unit')->label('UM')->default('buc')->maxLength(16),
Forms\Components\TextInput::make('min_qty')->label('Minim')->numeric()->default(0),
Forms\Components\Toggle::make('is_active')->label('Activ')->default(true),
Forms\Components\TextInput::make('qty')->label(__('Cantitate'))->numeric()->default(0)->required(),
Forms\Components\TextInput::make('unit')->label(__('UM'))->default('buc')->maxLength(16),
Forms\Components\TextInput::make('min_qty')->label(__('Minim'))->numeric()->default(0),
Forms\Components\Toggle::make('is_active')->label(__('Activ'))->default(true),
Forms\Components\Toggle::make('is_published')
->label('Publicat în magazin')
->helperText('Apare în magazinul online public.')
->label(__('Publicat în magazin'))
->helperText(__('Apare în magazinul online public.'))
->default(false),
]),
Schemas\Components\Section::make('Prețuri')
Schemas\Components\Section::make(__('Prețuri'))
->columns(2)
->schema([
Forms\Components\TextInput::make('buy_price')->label('Preț achiziție')->numeric()->default(0),
Forms\Components\TextInput::make('sell_price')->label('Preț vânzare')->numeric()->default(0),
Forms\Components\TextInput::make('buy_price')->label(__('Preț achiziție'))->numeric()->default(0),
Forms\Components\TextInput::make('sell_price')->label(__('Preț vânzare'))->numeric()->default(0),
]),
Schemas\Components\Section::make('Furnizor preferat')
Schemas\Components\Section::make(__('Furnizor preferat'))
->columns(1)
->schema([
Forms\Components\Select::make('preferred_supplier_id')
->label('Furnizor')
->label(__('Furnizor'))
->options(fn () => Supplier::pluck('name', 'id'))
->searchable(),
]),
Schemas\Components\Section::make('Imagine')
Schemas\Components\Section::make(__('Imagine'))
->collapsible()
->schema([
\Filament\Forms\Components\SpatieMediaLibraryFileUpload::make('image')
->label('Foto piesă')
->label(__('Foto piesă'))
->collection('image')
->multiple()
->reorderable()
@@ -118,9 +123,9 @@ class PartResource extends Resource
->maxFiles(8)
->maxSize(2048)
->columnSpanFull()
->helperText('Galerie de până la 8 imagini. Prima e afișată în catalog. Max 2 MB / imagine.'),
->helperText(__('Galerie de până la 8 imagini. Prima e afișată în catalog. Max 2 MB / imagine.')),
]),
Forms\Components\Textarea::make('notes')->label('Observații')->columnSpanFull()->rows(2),
Forms\Components\Textarea::make('notes')->label(__('Observații'))->columnSpanFull()->rows(2),
]);
}
@@ -134,40 +139,40 @@ class PartResource extends Resource
->circular()
->size(32),
Tables\Columns\TextColumn::make('name')->searchable()->sortable()->wrap(),
Tables\Columns\TextColumn::make('article')->label('Cod')->searchable()->copyable()->placeholder('—'),
Tables\Columns\TextColumn::make('article')->label(__('Cod'))->searchable()->copyable()->placeholder('—'),
Tables\Columns\TextColumn::make('brand')->placeholder('—'),
Tables\Columns\TextColumn::make('category')->badge()->placeholder('—'),
Tables\Columns\TextColumn::make('qty')
->label('Stoc')
->label(__('Stoc'))
->numeric(decimalPlaces: 2)
->alignRight()
->color(fn ($state, $record) => $record->qty <= 0 ? 'danger' : ($record->qty <= $record->min_qty ? 'warning' : null))
->weight(fn ($state, $record) => $record->qty <= $record->min_qty ? 'bold' : null),
Tables\Columns\TextColumn::make('qty_reserved')
->label('Rezervat')
->label(__('Rezervat'))
->numeric(decimalPlaces: 2)
->alignRight()
->color(fn ($state) => (float) $state > 0 ? 'info' : null)
->toggleable(),
Tables\Columns\TextColumn::make('unit')->label('UM'),
Tables\Columns\TextColumn::make('location')->label('Loc.')->placeholder('—'),
Tables\Columns\TextColumn::make('sell_price')->label('Preț vz.')->money('MDL')->alignRight(),
Tables\Columns\IconColumn::make('is_published')->label('Magazin')->boolean()->toggleable(),
Tables\Columns\TextColumn::make('preferredSupplier.name')->label('Furnizor')->placeholder('—')->toggleable(),
Tables\Columns\TextColumn::make('unit')->label(__('UM')),
Tables\Columns\TextColumn::make('location')->label(__('Loc.'))->placeholder('—'),
Tables\Columns\TextColumn::make('sell_price')->label(__('Preț vz.'))->money('MDL')->alignRight(),
Tables\Columns\IconColumn::make('is_published')->label(__('Magazin'))->boolean()->toggleable(),
Tables\Columns\TextColumn::make('preferredSupplier.name')->label(__('Furnizor'))->placeholder('—')->toggleable(),
])
->filters([
Tables\Filters\SelectFilter::make('category')
->options(array_combine(Part::CATEGORIES, Part::CATEGORIES)),
Tables\Filters\Filter::make('low_stock')
->label('Stoc minim')
->label(__('Stoc minim'))
->query(fn ($q) => $q->whereColumn('qty', '<=', 'min_qty')),
Tables\Filters\Filter::make('out_of_stock')
->label('Lipsă')
->label(__('Lipsă'))
->query(fn ($q) => $q->where('qty', '<=', 0)),
])
->actions([
Actions\Action::make('qr')
->label('QR')
->label(__('QR'))
->icon('heroicon-m-qr-code')
->color('gray')
->modalHeading(fn (Part $r) => 'QR pentru ' . $r->name)
@@ -187,7 +192,7 @@ class PartResource extends Resource
]);
}),
Actions\Action::make('ai_price')
->label('AI: preț recomandat')
->label(__('AI: preț recomandat'))
->icon('heroicon-m-sparkles')
->color('primary')
->modalHeading(fn (Part $r) => "AI: preț pentru {$r->name}")
@@ -199,20 +204,20 @@ class PartResource extends Resource
return view('filament.tenant.ai-reply', ['reply' => $reply, 'meta' => $meta]);
}),
Actions\Action::make('receive')
->label('Recepție')
->label(__('Recepție'))
->icon('heroicon-m-arrow-down-tray')
->color('success')
->schema([
Forms\Components\TextInput::make('qty')->label('Cantitate')->numeric()->required()->minValue(0.001),
Forms\Components\TextInput::make('buy_price')->label('Preț unitar')->numeric()->required(),
Forms\Components\TextInput::make('qty')->label(__('Cantitate'))->numeric()->required()->minValue(0.001),
Forms\Components\TextInput::make('buy_price')->label(__('Preț unitar'))->numeric()->required(),
Forms\Components\Select::make('supplier_id')
->label('Furnizor')
->label(__('Furnizor'))
->options(fn () => \App\Models\Tenant\Supplier::pluck('name', 'id')),
Forms\Components\Select::make('warehouse_id')
->label('Depozit')
->label(__('Depozit'))
->options(fn () => \App\Models\Tenant\Warehouse::where('is_active', true)->pluck('name', 'id'))
->default(fn () => \App\Models\Tenant\Warehouse::where('is_default', true)->value('id')),
Forms\Components\TextInput::make('batch_ref')->label('Ref. lot/factură')->maxLength(64),
Forms\Components\TextInput::make('batch_ref')->label(__('Ref. lot/factură'))->maxLength(64),
])
->action(function (Part $record, array $data) {
$warehouse = $data['warehouse_id']
@@ -230,7 +235,7 @@ class PartResource extends Resource
batchRef: $data['batch_ref'] ?? null,
);
\Filament\Notifications\Notification::make()
->title('Stoc adăugat')
->title(__('Stoc adăugat'))
->success()
->send();
}),
@@ -239,7 +244,7 @@ class PartResource extends Resource
])
->bulkActions([
Actions\BulkAction::make('print_labels')
->label('Tipărește etichete QR')
->label(__('Tipărește etichete QR'))
->icon('heroicon-m-printer')
->color('gray')
->action(function ($records) {
@@ -248,20 +253,20 @@ class PartResource extends Resource
})
->deselectRecordsAfterCompletion(),
Actions\BulkAction::make('publish')
->label('Publică în magazin')
->label(__('Publică în magazin'))
->icon('heroicon-m-globe-alt')
->color('success')
->action(fn ($records) => collect($records)->each->update(['is_published' => true]))
->deselectRecordsAfterCompletion(),
Actions\BulkAction::make('unpublish')
->label('Scoate din magazin')
->label(__('Scoate din magazin'))
->icon('heroicon-m-eye-slash')
->color('gray')
->action(fn ($records) => collect($records)->each->update(['is_published' => false]))
->deselectRecordsAfterCompletion(),
])
->emptyStateHeading('Depozit gol')
->emptyStateDescription('Adaugă piese manual, sau folosește Achiziții ca să le adaugi prin recepție de la furnizor (cu prețuri și stoc auto). Procentaj poate seta automat prețul de vânzare.')
->emptyStateHeading(__('Depozit gol'))
->emptyStateDescription(__('Adaugă piese manual, sau folosește Achiziții ca să le adaugi prin recepție de la furnizor (cu prețuri și stoc auto). Procentaj poate seta automat prețul de vânzare.'))
->emptyStateIcon('heroicon-o-cube')
->defaultSort('name');
}