mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 13:41:51 +02:00
Add more words to translate
This commit is contained in:
parent
a94f1695f6
commit
79f2609f70
4 changed files with 40 additions and 12 deletions
|
@ -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']);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
<div class="row">
|
||||
<div class=" col-md-6">
|
||||
<div class="form-group has-feedback">
|
||||
Counter: <span id="count">0</span>
|
||||
{{ 'common.counter'|trans }}: <span id="count">0</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -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 (<a href="https://framagit.org/tom79/fediplan" target="_blank">source code</a>) built for scheduling your messages with <a href="https://joinmastodon.org/" target="_blank">Mastodon</a> or <a href="https://pleroma.social/" target="_blank">Pleroma</a> (2.7+).
|
||||
data:
|
||||
It <b>does not store any data</b> (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).<br/>
|
||||
|
@ -54,5 +58,13 @@ page:
|
|||
FediPlan does not store your scheduled messages nor your credentials. It only uses the Mastodon API for <a href="https://docs.joinmastodon.org/api/rest/statuses/#scheduled-status" target="_blank">scheduling messages</a>
|
||||
issues:
|
||||
You can report issues or ask improvements on <a href="https://github.com/stom79/FediPlan/issues" target="_blank">Github</a> or <a href="https://framagit.org/tom79/fediplan/issues" target="_blank">Framagit</a>.
|
||||
scheduled:
|
||||
delete:
|
||||
schedule:
|
||||
form:
|
||||
content_warning: Content warning
|
||||
content: Content
|
||||
visibility: Visibility
|
||||
timeZone: Timezone
|
||||
sensitive: Sensitive
|
||||
scheduled_at: Scheduled at
|
||||
send: Send
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue