mirror of
https://github.com/tchapi/davis.git
synced 2025-04-04 12:42:49 +02:00
Translate forms
This commit is contained in:
parent
cb45d99f63
commit
5293a50051
@ -5,6 +5,7 @@ namespace App\Form;
|
||||
use App\Entity\AddressBook;
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
@ -14,9 +15,18 @@ class AddressBookType extends AbstractType
|
||||
public function buildForm(FormBuilderInterface $builder, array $options)
|
||||
{
|
||||
$builder
|
||||
->add('uri', TextType::class, ['disabled' => !$options['new'], 'help' => "This is the unique identifier for this address book. Allowed characters are digits, lowercase letters and the dash symbol '-'."])
|
||||
->add('displayName', TextType::class, ['help' => 'This name will be displayed in your CardDAV client'])
|
||||
->add('description')
|
||||
->add('uri', TextType::class, [
|
||||
'label' => 'form.uri',
|
||||
'disabled' => !$options['new'],
|
||||
'help' => 'form.uri.help.carddav',
|
||||
])
|
||||
->add('displayName', TextType::class, [
|
||||
'label' => 'form.displayName',
|
||||
'help' => 'form.name.help.carddav',
|
||||
])
|
||||
->add('description', TextAreaType::class, [
|
||||
'label' => 'form.description',
|
||||
])
|
||||
->add('save', SubmitType::class, [
|
||||
'label' => 'save',
|
||||
]);
|
||||
|
@ -6,6 +6,7 @@ use App\Entity\CalendarInstance;
|
||||
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\TextareaType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
@ -15,21 +16,34 @@ class CalendarInstanceType extends AbstractType
|
||||
public function buildForm(FormBuilderInterface $builder, array $options)
|
||||
{
|
||||
$builder
|
||||
->add('uri', TextType::class, ['disabled' => !$options['new'], 'help' => "This is the unique identifier for this calendar. Allowed characters are digits, lowercase letters and the dash symbol '-'.", 'required' => true])
|
||||
->add('displayName', TextType::class, ['help' => 'This name will be displayed in your CalDAV client'])
|
||||
->add('description')
|
||||
->add('uri', TextType::class, [
|
||||
'label' => 'form.uri',
|
||||
'disabled' => !$options['new'],
|
||||
'help' => 'form.uri.help.caldav',
|
||||
'required' => true,
|
||||
])
|
||||
->add('displayName', TextType::class, [
|
||||
'label' => 'form.displayName',
|
||||
'help' => 'form.name.help.caldav',
|
||||
])
|
||||
->add('description', TextareaType::class, [
|
||||
'label' => 'form.description',
|
||||
])
|
||||
->add('calendarColor', TextType::class, [
|
||||
'label' => 'form.color',
|
||||
'required' => false,
|
||||
'help' => "This is the color that will be displayed in your CalDAV client. It must be supplied in the format '#RRGGBBAA' (alpha channel is optional) with hexadecimal values. This value is optional.",
|
||||
'help' => 'form.color.help',
|
||||
'attr' => ['placeholder' => '#RRGGBBAA'],
|
||||
])
|
||||
->add('todos', CheckboxType::class, [
|
||||
'label' => 'form.todos',
|
||||
'mapped' => false,
|
||||
'help' => 'If checked, todos will be enabled on this calendar.',
|
||||
'help' => 'form.todos.help',
|
||||
])
|
||||
->add('notes', CheckboxType::class, [
|
||||
'label' => 'form.notes',
|
||||
'mapped' => false,
|
||||
'help' => 'If checked, notes will be enabled on this calendar.',
|
||||
'help' => 'form.notes.help',
|
||||
])
|
||||
->add('save', SubmitType::class, [
|
||||
'label' => 'save',
|
||||
|
@ -257,6 +257,54 @@
|
||||
<source>form.username.help</source>
|
||||
<target>May be an email, but not forcibly.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="h0fN2H5" resname="form.notes">
|
||||
<source>form.notes</source>
|
||||
<target>Notes</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="_aV0396" resname="form.todos">
|
||||
<source>form.todos</source>
|
||||
<target>Todos</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="fPpJrM7" resname="form.uri">
|
||||
<source>form.uri</source>
|
||||
<target>URI</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="h2JZhLm" resname="form.description">
|
||||
<source>form.description</source>
|
||||
<target>Description</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="cdCL.j8" resname="form.color">
|
||||
<source>form.color</source>
|
||||
<target>Calendar color</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="CvlrLaA" resname="form.name.help.carddav">
|
||||
<source>form.name.help.carddav</source>
|
||||
<target>This name will be displayed in your CardDAV client</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="3Q5ZFQE" resname="form.name.help.caldav">
|
||||
<source>form.name.help.caldav</source>
|
||||
<target>This name will be displayed in your CalDAV client</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="6AbgcWQ" resname="form.uri.help.carddav">
|
||||
<source>form.uri.help.carddav</source>
|
||||
<target>This is the unique identifier for this address book. Allowed characters are digits, lowercase letters and the dash symbol '-'.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="JIbKo6n" resname="form.uri.help.caldav">
|
||||
<source>form.uri.help.caldav</source>
|
||||
<target>This is the unique identifier for this calendar. Allowed characters are digits, lowercase letters and the dash symbol '-'.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="x5Dmxhi" resname="form.color.help">
|
||||
<source>form.color.help</source>
|
||||
<target>This is the color that will be displayed in your CalDAV client. It must be supplied in the format '#RRGGBBAA' (alpha channel is optional) with hexadecimal values. This value is optional.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="KBkKkDQ" resname="form.todos.help">
|
||||
<source>form.todos.help</source>
|
||||
<target>If checked, todos will be enabled on this calendar.</target>
|
||||
</trans-unit>
|
||||
<trans-unit id="kyPtCLt" resname="form.notes.help">
|
||||
<source>form.notes.help</source>
|
||||
<target>If checked, notes will be enabled on this calendar.</target>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
|
Loading…
x
Reference in New Issue
Block a user