mirror of
https://github.com/filamentphp/filament.git
synced 2026-09-01 15:09:33 +08:00
Merge branch '2.x' into 3.x
This commit is contained in:
@@ -202,6 +202,7 @@ return [
|
||||
'ordered_list' => 'Nombres',
|
||||
'redo' => 'Refaire',
|
||||
'strike' => 'Barré',
|
||||
'underline' => 'Souligné',
|
||||
'undo' => 'Annuler',
|
||||
],
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ class MakeFieldCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a form field class and view.';
|
||||
protected $description = 'Create a new form field class and view';
|
||||
|
||||
protected $signature = 'make:form-field {name?} {--F|force}';
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ class MakeFormCommand extends Command
|
||||
use CanReadModelSchemas;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Livewire component containing a Filament form.';
|
||||
protected $description = 'Create a new Livewire component containing a Filament form';
|
||||
|
||||
protected $signature = 'make:livewire-form {name?} {model?} {--E|edit} {--G|generate} {--F|force}';
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ class MakeLayoutComponentCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a form layout component class and view.';
|
||||
protected $description = 'Create a new form layout component class and view';
|
||||
|
||||
protected $signature = 'make:form-layout {name?} {--F|force}';
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ class MakePageCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Filament page class and view.';
|
||||
protected $description = 'Create a new Filament page class and view';
|
||||
|
||||
protected $signature = 'make:filament-page {name?} {--R|resource=} {--T|type=} {--panel=} {--F|force}';
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ class MakeRelationManagerCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Filament relation manager class for a resource.';
|
||||
protected $description = 'Create a new Filament relation manager class for a resource';
|
||||
|
||||
protected $signature = 'make:filament-relation-manager {resource?} {relationship?} {recordTitleAttribute?} {--attach} {--associate} {--soft-deletes} {--view} {--panel=} {--F|force}';
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ class MakeResourceCommand extends Command
|
||||
use CanReadModelSchemas;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Filament resource class and default page classes.';
|
||||
protected $description = 'Create a new Filament resource class and default page classes';
|
||||
|
||||
protected $signature = 'make:filament-resource {name?} {--soft-deletes} {--view} {--G|generate} {--S|simple} {--panel=} {--F|force}';
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ class MakeUserCommand extends Command
|
||||
{
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Filament user.';
|
||||
protected $description = 'Create a new Filament user';
|
||||
|
||||
protected $signature = 'make:filament-user
|
||||
{--name= : The name of the user}
|
||||
|
||||
@@ -11,7 +11,7 @@ class MakeSettingsPageCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Filament settings page class.';
|
||||
protected $description = 'Create a new Filament settings page class';
|
||||
|
||||
protected $signature = 'make:filament-settings-page {name?} {settingsClass?}';
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ class CheckTranslationsCommand extends Command
|
||||
{locales* : The locales to check.}
|
||||
{--source=vendor : The directory containing the translations to check - either \'vendor\' or \'app\'.}';
|
||||
|
||||
protected $description = 'Checks for missing and removed translations.';
|
||||
protected $description = 'Check for missing and removed translations';
|
||||
|
||||
public function handle(): int
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ use Illuminate\Console\Command;
|
||||
|
||||
class UpgradeCommand extends Command
|
||||
{
|
||||
protected $description = 'Upgrade Filament to the latest version.';
|
||||
protected $description = 'Upgrade Filament to the latest version';
|
||||
|
||||
protected $signature = 'filament:upgrade';
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ class MakeColumnCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a table column class and cell view.';
|
||||
protected $description = 'Create a new table column class and cell view';
|
||||
|
||||
protected $signature = 'make:table-column {name?} {--F|force}';
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ class MakeTableCommand extends Command
|
||||
use CanReadModelSchemas;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Livewire component containing a Filament table.';
|
||||
protected $description = 'Create a new Livewire component containing a Filament table';
|
||||
|
||||
protected $signature = 'make:livewire-table {name?} {model?} {--G|generate} {--F|force}';
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ class MakeWidgetCommand extends Command
|
||||
use CanManipulateFiles;
|
||||
use CanValidateInput;
|
||||
|
||||
protected $description = 'Creates a Filament widget class.';
|
||||
protected $description = 'Create a new Filament widget class';
|
||||
|
||||
protected $signature = 'make:filament-widget {name?} {--R|resource=} {--C|chart} {--T|table} {--S|stats-overview} {--panel=} {--F|force}';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user