diff --git a/src/Form/ComposeType.php b/src/Form/ComposeType.php index dce6bcf..5794801 100644 --- a/src/Form/ComposeType.php +++ b/src/Form/ComposeType.php @@ -48,8 +48,14 @@ class ComposeType extends AbstractType { $checkbox = ['required' => false]; } - $builder->add('content_warning', TextType::class, ['required' => false]); - $builder->add('content', TextareaType::class, ['required' => false]); + $builder->add('content_warning', TextType::class, [ + 'required' => false, + 'label' => 'page.schedule.form.content_warning', + 'translation_domain' => 'fediplan']); + $builder->add('content', TextareaType::class, [ + 'required' => false, + 'label' => 'page.schedule.form.content', + 'translation_domain' => 'fediplan']); $builder->add('visibility', ChoiceType::class, [ 'choices' => [ @@ -59,14 +65,22 @@ class ComposeType extends AbstractType { 'status.visibility.direct' => 'direct', ], 'data' => $user->getDefaultVisibility(), - ]); - $builder->add('timeZone', TimezoneType::class); + 'label' => 'page.schedule.form.visibility', + 'translation_domain' => 'fediplan']); + $builder->add('timeZone', TimezoneType::class, + [ + 'label' => 'page.schedule.form.timeZone', + 'translation_domain' => 'fediplan']); $builder->add('sensitive', CheckboxType::class, $checkbox); $builder->add('scheduled_at', \Symfony\Component\Form\Extension\Core\Type\DateTimeType::class,[ 'widget' => 'single_text', - "data" => new \DateTime() - ]); - $builder->add('Send', SubmitType::class, ['attr' => ['class' => "btn btn-primary "]]); + "data" => new \DateTime(), + 'label' => 'page.schedule.form.scheduled_at', + 'translation_domain' => 'fediplan']); + $builder->add('Send', SubmitType::class, + ['attr' => ['class' => "btn btn-primary "], + 'label' => 'page.schedule.form.send', + 'translation_domain' => 'fediplan']); } diff --git a/src/Form/ConnectMastodonAccountType.php b/src/Form/ConnectMastodonAccountType.php index bef942e..a79594a 100644 --- a/src/Form/ConnectMastodonAccountType.php +++ b/src/Form/ConnectMastodonAccountType.php @@ -19,13 +19,15 @@ class ConnectMastodonAccountType extends AbstractType { switch ($options['flow_step']) { case 1: $builder->add('host', TextType::class, [ - 'label' => 'Your instance', + 'label' => 'page.index.form.instance', + 'translation_domain' => 'fediplan' ]); break; case 2: // This form type is not defined in the example. $builder->add('code', TextType::class, [ - 'label' => 'Your authorization code', + 'label' => 'page.index.form.code', + 'translation_domain' => 'fediplan' ]); $builder->add('client_id', HiddenType::class); $builder->add('client_secret', HiddenType::class); diff --git a/templates/fediplan/schedule.html.twig b/templates/fediplan/schedule.html.twig index 6adc051..1b10e76 100644 --- a/templates/fediplan/schedule.html.twig +++ b/templates/fediplan/schedule.html.twig @@ -81,7 +81,7 @@