diff --git a/src/Form/Type/ImportWishlistFromCsvType.php b/src/Form/Type/ImportWishlistFromCsvType.php index afa2f881..200a35d5 100644 --- a/src/Form/Type/ImportWishlistFromCsvType.php +++ b/src/Form/Type/ImportWishlistFromCsvType.php @@ -26,7 +26,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void { $builder ->add('wishlist_file', FileType::class, [ - 'label' => 'Wishlist (CSV file)', + 'label' => false, 'mapped' => false, 'required' => true, 'constraints' => [ @@ -43,7 +43,7 @@ public function buildForm(FormBuilderInterface $builder, array $options): void 'choice_label' => 'name', ]) ->add('submit', SubmitType::class, [ - 'label' => 'Submit', + 'label' => 'bitbag_sylius_wishlist_plugin.ui.import_from_csv', ]) ; }