diff --git a/packages/forms/resources/lang/fr/components.php b/packages/forms/resources/lang/fr/components.php index ae2e2884b4..4da6b3e535 100644 --- a/packages/forms/resources/lang/fr/components.php +++ b/packages/forms/resources/lang/fr/components.php @@ -202,6 +202,7 @@ return [ 'ordered_list' => 'Nombres', 'redo' => 'Refaire', 'strike' => 'Barré', + 'underline' => 'Souligné', 'undo' => 'Annuler', ], diff --git a/packages/forms/src/Commands/MakeFieldCommand.php b/packages/forms/src/Commands/MakeFieldCommand.php index f1c1185b10..a018c49c1f 100644 --- a/packages/forms/src/Commands/MakeFieldCommand.php +++ b/packages/forms/src/Commands/MakeFieldCommand.php @@ -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}'; diff --git a/packages/forms/src/Commands/MakeFormCommand.php b/packages/forms/src/Commands/MakeFormCommand.php index 94a4b23313..59a04bf510 100644 --- a/packages/forms/src/Commands/MakeFormCommand.php +++ b/packages/forms/src/Commands/MakeFormCommand.php @@ -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}'; diff --git a/packages/forms/src/Commands/MakeLayoutComponentCommand.php b/packages/forms/src/Commands/MakeLayoutComponentCommand.php index c4d4cf83b8..dcb68aa6f4 100644 --- a/packages/forms/src/Commands/MakeLayoutComponentCommand.php +++ b/packages/forms/src/Commands/MakeLayoutComponentCommand.php @@ -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}'; diff --git a/packages/panels/src/Commands/MakePageCommand.php b/packages/panels/src/Commands/MakePageCommand.php index 2103f807a2..190fa0ef3a 100644 --- a/packages/panels/src/Commands/MakePageCommand.php +++ b/packages/panels/src/Commands/MakePageCommand.php @@ -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}'; diff --git a/packages/panels/src/Commands/MakeRelationManagerCommand.php b/packages/panels/src/Commands/MakeRelationManagerCommand.php index 2db74e1392..757d5011d4 100644 --- a/packages/panels/src/Commands/MakeRelationManagerCommand.php +++ b/packages/panels/src/Commands/MakeRelationManagerCommand.php @@ -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}'; diff --git a/packages/panels/src/Commands/MakeResourceCommand.php b/packages/panels/src/Commands/MakeResourceCommand.php index 34ce358a13..decb89d686 100644 --- a/packages/panels/src/Commands/MakeResourceCommand.php +++ b/packages/panels/src/Commands/MakeResourceCommand.php @@ -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}'; diff --git a/packages/panels/src/Commands/MakeUserCommand.php b/packages/panels/src/Commands/MakeUserCommand.php index f80ac7d61d..349b449782 100644 --- a/packages/panels/src/Commands/MakeUserCommand.php +++ b/packages/panels/src/Commands/MakeUserCommand.php @@ -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} diff --git a/packages/spatie-laravel-settings-plugin/src/Commands/MakeSettingsPageCommand.php b/packages/spatie-laravel-settings-plugin/src/Commands/MakeSettingsPageCommand.php index b7bac02d77..1e2403649b 100644 --- a/packages/spatie-laravel-settings-plugin/src/Commands/MakeSettingsPageCommand.php +++ b/packages/spatie-laravel-settings-plugin/src/Commands/MakeSettingsPageCommand.php @@ -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?}'; diff --git a/packages/support/src/Commands/CheckTranslationsCommand.php b/packages/support/src/Commands/CheckTranslationsCommand.php index e8694d9a81..d859e72d22 100644 --- a/packages/support/src/Commands/CheckTranslationsCommand.php +++ b/packages/support/src/Commands/CheckTranslationsCommand.php @@ -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 { diff --git a/packages/support/src/Commands/UpgradeCommand.php b/packages/support/src/Commands/UpgradeCommand.php index 700a1567d9..9f31f3e702 100644 --- a/packages/support/src/Commands/UpgradeCommand.php +++ b/packages/support/src/Commands/UpgradeCommand.php @@ -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'; diff --git a/packages/tables/src/Commands/MakeColumnCommand.php b/packages/tables/src/Commands/MakeColumnCommand.php index 98428e2df1..cc3a283fdb 100644 --- a/packages/tables/src/Commands/MakeColumnCommand.php +++ b/packages/tables/src/Commands/MakeColumnCommand.php @@ -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}'; diff --git a/packages/tables/src/Commands/MakeTableCommand.php b/packages/tables/src/Commands/MakeTableCommand.php index 07864900de..f7321c4dd4 100644 --- a/packages/tables/src/Commands/MakeTableCommand.php +++ b/packages/tables/src/Commands/MakeTableCommand.php @@ -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}'; diff --git a/packages/widgets/src/Commands/MakeWidgetCommand.php b/packages/widgets/src/Commands/MakeWidgetCommand.php index 960c0bd4cf..cfaa686e71 100644 --- a/packages/widgets/src/Commands/MakeWidgetCommand.php +++ b/packages/widgets/src/Commands/MakeWidgetCommand.php @@ -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}';