1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

Removed is_public in Entry edit form

This commit is contained in:
Nicolas Lœuillet 2017-04-13 12:57:31 +02:00
parent 15e4aea678
commit 01736b5a2e
29 changed files with 15 additions and 37 deletions

View file

@ -3,7 +3,6 @@
namespace Wallabag\CoreBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
@ -18,10 +17,6 @@ class EditEntryType extends AbstractType
'required' => true,
'label' => 'entry.edit.title_label',
])
->add('is_public', CheckboxType::class, [
'required' => false,
'label' => 'entry.edit.is_public_label',
])
->add('url', TextType::class, [
'disabled' => true,
'required' => false,

View file

@ -235,7 +235,6 @@ entry:
# page_title: 'Edit an entry'
# title_label: 'Title'
url_label: 'Url'
# is_public_label: 'Public'
save_label: 'Gem'
public:
# shared_by_wallabag: "This article has been shared by <a href=%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Eintrag bearbeiten'
title_label: 'Titel'
url_label: 'URL'
is_public_label: 'Öffentlich'
save_label: 'Speichern'
public:
shared_by_wallabag: "Dieser Artikel wurde mittels <a href='%wallabag_instance%'>wallabag</a> geteilt"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Edit an entry'
title_label: 'Title'
url_label: 'Url'
is_public_label: 'Public'
save_label: 'Save'
public:
shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Editar un artículo'
title_label: 'Título'
url_label: 'URL'
is_public_label: 'Es público'
save_label: 'Guardar'
public:
shared_by_wallabag: "Este artículo se ha compartido con <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'ویرایش مقاله'
title_label: 'عنوان'
url_label: 'نشانی'
is_public_label: 'عمومی'
save_label: 'ذخیره'
public:
# shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: "Éditer un article"
title_label: "Titre"
url_label: "Adresse"
is_public_label: "Public"
save_label: "Enregistrer"
public:
shared_by_wallabag: "Cet article a été partagé par <a href=\"%wallabag_instance%\">wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Modifica voce'
title_label: 'Titolo'
url_label: 'Url'
is_public_label: 'Pubblico'
save_label: 'Salva'
public:
# shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Modificar un article'
title_label: 'Títol'
url_label: 'Url'
is_public_label: 'Public'
save_label: 'Enregistrar'
public:
shared_by_wallabag: "Aqueste article es estat partejat per <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Edytuj wpis'
title_label: 'Tytuł'
url_label: 'Adres URL'
is_public_label: 'Publiczny'
save_label: 'Zapisz'
public:
shared_by_wallabag: "Ten artykuł został udostępniony przez <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Editar uma entrada'
title_label: 'Título'
url_label: 'Url'
is_public_label: 'Público'
save_label: 'Salvar'
public:
shared_by_wallabag: "Este artigo foi compartilhado pelo <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
# page_title: 'Edit an entry'
# title_label: 'Title'
url_label: 'Url'
# is_public_label: 'Public'
save_label: 'Salvează'
public:
# shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -235,7 +235,6 @@ entry:
page_title: 'Makaleyi düzenle'
title_label: 'Başlık'
url_label: 'Url'
is_public_label: 'Herkes tarafından erişime açık olsun mu?'
save_label: 'Kaydet'
public:
# shared_by_wallabag: "This article has been shared by <a href='%wallabag_instance%'>wallabag</a>"

View file

@ -27,11 +27,6 @@
{{ form_label(form.url) }}
{{ form_widget(form.url) }}
</div>
<div class="input-field s12">
{{ form_widget(form.is_public) }}
{{ form_label(form.is_public) }}
</div>
<br>
{{ form_widget(form.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }}