X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FForm%2FType%2FClientType.php;h=9f6204147094830fcd252392b85d42b1cd70ba40;hb=7eccbda99f16dc39ee01a0c81ab88293e9b268fd;hp=79feae65863145e17af160b570c8d26cb738bc2e;hpb=abc329453be6381bcf4d1b0dfd9f698312ed3b16;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Form/Type/ClientType.php b/src/Wallabag/CoreBundle/Form/Type/ClientType.php index 79feae65..9f620414 100644 --- a/src/Wallabag/CoreBundle/Form/Type/ClientType.php +++ b/src/Wallabag/CoreBundle/Form/Type/ClientType.php @@ -14,8 +14,8 @@ class ClientType extends AbstractType public function buildForm(FormBuilderInterface $builder, array $options) { $builder - ->add('redirect_uris', UrlType::class, array('required' => true)) - ->add('save', SubmitType::class) + ->add('redirect_uris', UrlType::class, array('required' => true, 'label' => 'developer.client.form.redirect_uris_label')) + ->add('save', SubmitType::class, array('label' => 'developer.client.form.save_label')) ; $builder->get('redirect_uris')