From 79f2609f70905ba408d0d060904a19e82748d2f1 Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 21 Aug 2019 12:09:52 +0200 Subject: [PATCH] Add more words to translate --- src/Form/ComposeType.php | 28 ++++++++++++++++++------- src/Form/ConnectMastodonAccountType.php | 6 ++++-- templates/fediplan/schedule.html.twig | 2 +- translations/fediplan.en.yaml | 16 ++++++++++++-- 4 files changed, 40 insertions(+), 12 deletions(-) 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 @@
- Counter: 0 + {{ 'common.counter'|trans }}: 0
diff --git a/translations/fediplan.en.yaml b/translations/fediplan.en.yaml index 18a2745..4cd794e 100644 --- a/translations/fediplan.en.yaml +++ b/translations/fediplan.en.yaml @@ -17,6 +17,7 @@ common: delete: Delete proceed_confirm: Do you want to proceed? start_upload: Start upload + counter: Counter status: visibility: public: Public @@ -45,6 +46,9 @@ page: FediPlan is an open source application (source code) built for scheduling your messages with Mastodon or Pleroma (2.7+). data: It does not store any data (token or messages), that is why you need to create a new Token when your session expired. + form: + code: Your authorization code + instance: Your instance about: scheduling: FediPlan allows users to schedule messages for Mastodon and Pleroma (with media attachments).
@@ -54,5 +58,13 @@ page: FediPlan does not store your scheduled messages nor your credentials. It only uses the Mastodon API for scheduling messages issues: You can report issues or ask improvements on Github or Framagit. - scheduled: - delete: + schedule: + form: + content_warning: Content warning + content: Content + visibility: Visibility + timeZone: Timezone + sensitive: Sensitive + scheduled_at: Scheduled at + send: Send +