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:
@@ -25,7 +25,12 @@ class ClientResource extends Resource
|
||||
|
||||
protected static ?string $modelLabel = 'client';
|
||||
|
||||
protected static ?string $pluralModelLabel = 'clienți';
|
||||
protected static ?string $pluralModelLabel = null;
|
||||
|
||||
public static function getPluralModelLabel(): string
|
||||
{
|
||||
return __('clienți');
|
||||
}
|
||||
|
||||
protected static ?int $navigationSort = 10;
|
||||
|
||||
@@ -47,18 +52,18 @@ class ClientResource extends Resource
|
||||
public static function form(Schema $schema): Schema
|
||||
{
|
||||
return $schema->components([
|
||||
Schemas\Components\Section::make('Date generale')
|
||||
Schemas\Components\Section::make(__('Date generale'))
|
||||
->columns(2)
|
||||
->schema([
|
||||
Forms\Components\Select::make('type')
|
||||
->label('Tip')
|
||||
->label(__('Tip'))
|
||||
->options(['individual' => 'Persoană fizică', 'company' => 'Persoană juridică'])
|
||||
->default('individual')
|
||||
->required()
|
||||
->live(),
|
||||
Forms\Components\TextInput::make('name')->label('Nume')->required()->maxLength(120),
|
||||
Forms\Components\TextInput::make('name')->label(__('Nume'))->required()->maxLength(120),
|
||||
Forms\Components\TextInput::make('company_name')
|
||||
->label('Denumire companie')
|
||||
->label(__('Denumire companie'))
|
||||
->visible(fn (Schemas\Components\Utilities\Get $get) => $get('type') === 'company')
|
||||
->maxLength(160),
|
||||
Forms\Components\Select::make('status')
|
||||
@@ -69,40 +74,40 @@ class ClientResource extends Resource
|
||||
->default('active')
|
||||
->required(),
|
||||
Forms\Components\Toggle::make('is_vip')
|
||||
->label('Client VIP')
|
||||
->helperText('Activează coeficienții de preț VIP pe fișele acestui client.'),
|
||||
->label(__('Client VIP'))
|
||||
->helperText(__('Activează coeficienții de preț VIP pe fișele acestui client.')),
|
||||
]),
|
||||
Schemas\Components\Section::make('Contacte')
|
||||
Schemas\Components\Section::make(__('Contacte'))
|
||||
->columns(2)
|
||||
->schema([
|
||||
Forms\Components\TextInput::make('phone')->label('Telefon')->tel()->required()->maxLength(40),
|
||||
Forms\Components\TextInput::make('phone_alt')->label('Telefon alternativ')->tel()->maxLength(40),
|
||||
Forms\Components\TextInput::make('phone')->label(__('Telefon'))->tel()->required()->maxLength(40),
|
||||
Forms\Components\TextInput::make('phone_alt')->label(__('Telefon alternativ'))->tel()->maxLength(40),
|
||||
Forms\Components\TextInput::make('email')->email()->maxLength(120),
|
||||
Forms\Components\TextInput::make('telegram')->maxLength(60),
|
||||
Forms\Components\TextInput::make('telegram_chat_id')
|
||||
->label('Telegram chat ID')
|
||||
->label(__('Telegram chat ID'))
|
||||
->disabled()
|
||||
->dehydrated(false)
|
||||
->placeholder('Se completează automat când clientul scrie la bot')
|
||||
->placeholder(__('Se completează automat când clientul scrie la bot'))
|
||||
->helperText(fn ($record) => $record?->telegram_chat_id
|
||||
? '✅ Telegram legat — notificările vor merge prin bot'
|
||||
: null),
|
||||
Forms\Components\TextInput::make('whatsapp')->maxLength(60),
|
||||
Forms\Components\TextInput::make('viber')->maxLength(60),
|
||||
]),
|
||||
Schemas\Components\Section::make('Marketing')
|
||||
Schemas\Components\Section::make(__('Marketing'))
|
||||
->columns(2)
|
||||
->schema([
|
||||
Forms\Components\TextInput::make('source')->label('Sursă')->maxLength(60),
|
||||
Forms\Components\TextInput::make('marketing_channel')->label('Canal marketing')->maxLength(60),
|
||||
Forms\Components\TextInput::make('source')->label(__('Sursă'))->maxLength(60),
|
||||
Forms\Components\TextInput::make('marketing_channel')->label(__('Canal marketing'))->maxLength(60),
|
||||
]),
|
||||
Schemas\Components\Section::make('Financiar')
|
||||
Schemas\Components\Section::make(__('Financiar'))
|
||||
->columns(2)
|
||||
->schema([
|
||||
Forms\Components\TextInput::make('balance')->label('Sold')->numeric()->default(0),
|
||||
Forms\Components\TextInput::make('discount_pct')->label('Discount %')->numeric()->default(0),
|
||||
Forms\Components\TextInput::make('balance')->label(__('Sold'))->numeric()->default(0),
|
||||
Forms\Components\TextInput::make('discount_pct')->label(__('Discount %'))->numeric()->default(0),
|
||||
]),
|
||||
Forms\Components\Textarea::make('notes')->label('Notițe')->columnSpanFull()->rows(3),
|
||||
Forms\Components\Textarea::make('notes')->label(__('Notițe'))->columnSpanFull()->rows(3),
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -113,7 +118,7 @@ class ClientResource extends Resource
|
||||
Tables\Columns\TextColumn::make('name')->searchable()->sortable(),
|
||||
Tables\Columns\TextColumn::make('phone')->searchable()->copyable(),
|
||||
Tables\Columns\TextColumn::make('email')->searchable()->toggleable(),
|
||||
Tables\Columns\TextColumn::make('vehicles_count')->counts('vehicles')->label('Mașini'),
|
||||
Tables\Columns\TextColumn::make('vehicles_count')->counts('vehicles')->label(__('Mașini')),
|
||||
Tables\Columns\TextColumn::make('status')
|
||||
->badge()
|
||||
->colors([
|
||||
@@ -136,8 +141,8 @@ class ClientResource extends Resource
|
||||
Actions\EditAction::make(),
|
||||
Actions\DeleteAction::make(),
|
||||
])
|
||||
->emptyStateHeading('Niciun client încă')
|
||||
->emptyStateDescription('Adaugă primul tău client manual sau importă din CSV. Toate mașinile, fișele și plățile se vor lega automat de el.')
|
||||
->emptyStateHeading(__('Niciun client încă'))
|
||||
->emptyStateDescription(__('Adaugă primul tău client manual sau importă din CSV. Toate mașinile, fișele și plățile se vor lega automat de el.'))
|
||||
->emptyStateIcon('heroicon-o-users')
|
||||
->defaultSort('created_at', 'desc');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user