decidim-meetings 0.28.6 → 0.29.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of decidim-meetings might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -2
- data/app/cells/decidim/meetings/dates_and_map/show.erb +3 -5
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -2
- data/app/cells/decidim/meetings/join_meeting_button/remaining_slots.erb +1 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +0 -3
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +0 -3
- data/app/cells/decidim/meetings/meeting_cell.rb +0 -1
- data/app/cells/decidim/meetings/meeting_l_cell.rb +4 -7
- data/app/cells/decidim/meetings/meeting_url/show.erb +5 -5
- data/app/cells/decidim/meetings/meeting_url_cell.rb +0 -1
- data/app/cells/decidim/meetings/online_meeting_link_cell.rb +0 -2
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -3
- data/app/cells/decidim/meetings/question_responses_cell.rb +0 -2
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +2 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +9 -37
- data/app/commands/decidim/meetings/admin/create_meeting.rb +28 -61
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +4 -33
- data/app/commands/decidim/meetings/admin/update_agenda.rb +7 -35
- data/app/commands/decidim/meetings/admin/update_meeting.rb +30 -68
- data/app/commands/decidim/meetings/admin/update_question_status.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +19 -11
- data/app/commands/decidim/meetings/admin/update_registrations.rb +20 -46
- data/app/commands/decidim/meetings/create_answer.rb +5 -4
- data/app/commands/decidim/meetings/create_meeting.rb +38 -62
- data/app/commands/decidim/meetings/join_meeting.rb +18 -19
- data/app/commands/decidim/meetings/update_meeting.rb +6 -7
- data/app/commands/decidim/meetings/withdraw_meeting.rb +1 -1
- data/app/controllers/concerns/decidim/meetings/admin/invites/filterable.rb +33 -0
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +6 -6
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +12 -0
- data/app/controllers/decidim/meetings/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/live_events_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +3 -33
- data/app/controllers/decidim/meetings/polls/answers_controller.rb +10 -2
- data/app/controllers/decidim/meetings/registrations_controller.rb +3 -3
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +8 -4
- data/app/forms/decidim/meetings/answer_form.rb +4 -4
- data/app/forms/decidim/meetings/meeting_form.rb +1 -1
- data/app/helpers/decidim/meetings/application_helper.rb +1 -5
- data/app/mailers/decidim/meetings/close_meeting_reminder_mailer.rb +1 -1
- data/app/models/decidim/meetings/meeting.rb +15 -4
- data/app/models/decidim/meetings/poll.rb +8 -0
- data/app/models/decidim/meetings/question.rb +1 -0
- data/app/models/decidim/meetings/questionnaire.rb +0 -6
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +3 -3
- data/app/packs/src/decidim/meetings/meetings_form.js +3 -3
- data/app/packs/src/decidim/meetings/meetings_polls.js +5 -0
- data/app/packs/src/decidim/meetings/poll.component.js +32 -4
- data/app/packs/stylesheets/decidim/meetings/_item.scss +126 -6
- data/app/packs/stylesheets/decidim/meetings/_live_event.scss +0 -94
- data/app/permissions/decidim/meetings/permissions.rb +22 -7
- data/app/presenters/decidim/meetings/meeting_presenter.rb +10 -3
- data/app/services/decidim/meetings/calendar/component_calendar.rb +1 -1
- data/app/services/decidim/meetings/calendar/meeting_to_event.rb +1 -1
- data/app/services/decidim/meetings/close_meeting_reminder_generator.rb +1 -1
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +2 -2
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -1
- data/app/views/decidim/meetings/admin/agenda/_agenda_item.html.erb +3 -3
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_child.html.erb +3 -3
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +3 -3
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +3 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/index.html.erb +4 -34
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +8 -8
- data/app/views/decidim/meetings/admin/meetings/_service.html.erb +3 -3
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +2 -2
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +1 -1
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +26 -25
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +18 -16
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +4 -6
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +2 -4
- data/app/views/decidim/meetings/close_meeting_reminder_mailer/close_meeting_reminder.html.erb +1 -1
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -15
- data/app/views/decidim/meetings/meetings/_datetime.html.erb +4 -4
- data/app/views/decidim/meetings/meetings/_form.html.erb +17 -17
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -1
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +3 -1
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +15 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +0 -9
- data/app/views/decidim/meetings/meetings/new.html.erb +0 -1
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +6 -10
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +4 -10
- data/app/views/decidim/meetings/polls/answers/admin.html.erb +34 -0
- data/app/views/decidim/meetings/polls/answers/index.html.erb +36 -0
- data/app/views/decidim/meetings/polls/questions/_closed_question.html.erb +8 -2
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +27 -24
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +14 -11
- data/app/views/decidim/meetings/polls/questions/_question.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/index.js.erb +3 -3
- data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +3 -3
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_meetings.html.erb +1 -1
- data/app/views/devise/mailer/join_meeting.html.erb +3 -1
- data/app/views/devise/mailer/join_meeting.text.erb +3 -1
- data/config/locales/ar.yml +7 -13
- data/config/locales/bg.yml +51 -11
- data/config/locales/ca.yml +48 -18
- data/config/locales/cs.yml +34 -16
- data/config/locales/de.yml +161 -131
- data/config/locales/el.yml +7 -13
- data/config/locales/en.yml +45 -15
- data/config/locales/es-MX.yml +53 -23
- data/config/locales/es-PY.yml +54 -24
- data/config/locales/es.yml +55 -25
- data/config/locales/eu.yml +102 -72
- data/config/locales/fi-plain.yml +52 -17
- data/config/locales/fi.yml +62 -27
- data/config/locales/fr-CA.yml +50 -19
- data/config/locales/fr.yml +50 -19
- data/config/locales/ga-IE.yml +0 -8
- data/config/locales/gl.yml +8 -11
- data/config/locales/hu.yml +10 -13
- data/config/locales/id-ID.yml +6 -12
- data/config/locales/is-IS.yml +1 -15
- data/config/locales/it.yml +9 -23
- data/config/locales/ja.yml +48 -18
- data/config/locales/lb.yml +7 -10
- data/config/locales/lt.yml +9 -12
- data/config/locales/lv.yml +6 -12
- data/config/locales/nl.yml +8 -14
- data/config/locales/no.yml +6 -12
- data/config/locales/pl.yml +51 -11
- data/config/locales/pt-BR.yml +29 -17
- data/config/locales/pt.yml +7 -14
- data/config/locales/ro-RO.yml +4 -17
- data/config/locales/ru.yml +6 -12
- data/config/locales/sk.yml +7 -13
- data/config/locales/sv.yml +110 -206
- data/config/locales/tr-TR.yml +8 -17
- data/config/locales/uk.yml +6 -15
- data/config/locales/zh-CN.yml +7 -15
- data/config/locales/zh-TW.yml +7 -13
- data/db/migrate/20240130135858_add_withdrawn_fields_on_meetings.rb +23 -0
- data/decidim-meetings.gemspec +2 -2
- data/lib/decidim/api/meeting_type.rb +3 -12
- data/lib/decidim/api/meetings_type.rb +3 -1
- data/lib/decidim/meetings/component.rb +2 -2
- data/lib/decidim/meetings/engine.rb +6 -9
- data/lib/decidim/meetings/meeting_serializer.rb +3 -38
- data/lib/decidim/meetings/seeds.rb +13 -18
- data/lib/decidim/meetings/test/factories.rb +1 -7
- data/lib/decidim/meetings/test/notifications_handling.rb +1 -1
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/tasks/decidim_meetings.rake +1 -1
- metadata +24 -23
- data/app/views/decidim/meetings/admin/agenda/show.html.erb +0 -0
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -8
- data/config/locales/ca-IT.yml +0 -661
data/config/locales/pl.yml
CHANGED
@@ -97,6 +97,11 @@ pl:
|
|
97
97
|
decidim:
|
98
98
|
admin:
|
99
99
|
filters:
|
100
|
+
accepted_at_not_null:
|
101
|
+
label: Zaakceptowano
|
102
|
+
values:
|
103
|
+
'false': Nie zaakceptowano
|
104
|
+
'true': Zaakceptowano
|
100
105
|
meetings:
|
101
106
|
category_id_eq:
|
102
107
|
label: Kategoria
|
@@ -124,6 +129,18 @@ pl:
|
|
124
129
|
hybrid: Hybrydowe
|
125
130
|
in_person: Osobiste
|
126
131
|
online: Online
|
132
|
+
rejected_at_not_null:
|
133
|
+
label: Odrzucono
|
134
|
+
values:
|
135
|
+
'false': Nie odrzucono
|
136
|
+
'true': Odrzucono
|
137
|
+
search_placeholder:
|
138
|
+
user_name_or_user_email_cont: Szukaj po nazwie lub adresie e-mail
|
139
|
+
sent_at_not_null:
|
140
|
+
label: Wysłano
|
141
|
+
values:
|
142
|
+
'false': Nie wysłano
|
143
|
+
'true': Wysłano
|
127
144
|
meeting_copies:
|
128
145
|
create:
|
129
146
|
error: Wystąpił błąd podczas duplikowania tego spotkania.
|
@@ -136,6 +153,7 @@ pl:
|
|
136
153
|
actions:
|
137
154
|
comment: Skomentuj
|
138
155
|
join: Dołącz
|
156
|
+
reply_poll: Odpowiedź na ankietę
|
139
157
|
name: Spotkania
|
140
158
|
settings:
|
141
159
|
global:
|
@@ -223,6 +241,7 @@ pl:
|
|
223
241
|
attachment_collections: Folder
|
224
242
|
attachments: Załączniki
|
225
243
|
close: Zamknij
|
244
|
+
confirm_destroy: Czy na pewno chcesz usunąć to spotkanie?
|
226
245
|
destroy: Usuń
|
227
246
|
edit: Edytuj
|
228
247
|
invalid_destroy:
|
@@ -289,15 +308,9 @@ pl:
|
|
289
308
|
non_user: Nieistniejący użytkownik
|
290
309
|
select_user: Wybierz użytkownika
|
291
310
|
index:
|
292
|
-
filter:
|
293
|
-
accepted: Zaakceptowano
|
294
|
-
all: Wszystkie
|
295
|
-
rejected: Odrzucono
|
296
|
-
sent: Wysłano
|
297
311
|
invite_attendee: Zaproś uczestnika
|
298
312
|
invites: Zaproszeni
|
299
313
|
registrations_disabled: Nie można zaprosić uczestnika, ponieważ rejestracja jest wyłączona.
|
300
|
-
search: Szukaj
|
301
314
|
meeting_closes:
|
302
315
|
edit:
|
303
316
|
close: Zamknij
|
@@ -355,9 +368,18 @@ pl:
|
|
355
368
|
update:
|
356
369
|
invalid: Wystąpił błąd podczas aktualizacji tego głosowania podczas spotkania.
|
357
370
|
success: Głosowanie podczas spotkania zostało pomyślnie zaktualizowane.
|
371
|
+
poll:
|
372
|
+
form:
|
373
|
+
announcement_html:
|
374
|
+
- Gdy pytanie otrzymuje odpowiedzi lub jest opublikowane/zamknięte, nie może być już edytowane.
|
375
|
+
- Możesz dodać pytanie w dowolnym momencie.
|
376
|
+
- Ankieta zostanie zamknięta po opublikowaniu wyników wszystkich utworzonych pytań.
|
377
|
+
- Odwiedź <a href='%{admin_link}'>stronę administracyjną głosowania</a>, aby wysłać pytania i opublikować wyniki.
|
358
378
|
registrations:
|
359
379
|
edit:
|
360
380
|
save: Zapisz
|
381
|
+
validate: Zatwierdź
|
382
|
+
validate_registration_code: Zatwierdź kod rejestracyjny
|
361
383
|
form:
|
362
384
|
available_slots_help: Zostaw 0, jeśli dostępna jest nieograniczona liczba miejsc.
|
363
385
|
invites: Zaproszenia
|
@@ -375,6 +397,9 @@ pl:
|
|
375
397
|
update:
|
376
398
|
invalid: Wystąpił błąd przy zapisywaniu ustawień rejestracji.
|
377
399
|
success: Zapisano ustawienia rejestracji.
|
400
|
+
validate_registration_code:
|
401
|
+
invalid: Ten kod rejestracyjny jest nieprawidłowy.
|
402
|
+
success: Kod rejestracyjny został zatwierdzony.
|
378
403
|
admin_log:
|
379
404
|
invite:
|
380
405
|
create: "%{user_name} zaprosił(a) %{attendee_name} do wzięcia udziału w spotkaniu %{resource_name} w przestrzeni %{space_name}"
|
@@ -413,7 +438,7 @@ pl:
|
|
413
438
|
body: Spotkanie <a href="%{meeting_path}">"%{meeting_title}"</a> oczekuje na zamknięcie. Dodaj raport z spotkania za pomocą przycisku "Zamknij spotkanie".
|
414
439
|
greetings: Pozdrawiamy,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
415
440
|
hello: Witaj %{username},
|
416
|
-
subject:
|
441
|
+
subject: Możesz teraz zamknąć spotkanie "%{meeting_title}" raportem
|
417
442
|
conference_venues: Sale konferencyjne
|
418
443
|
content_blocks:
|
419
444
|
upcoming_meetings:
|
@@ -430,7 +455,7 @@ pl:
|
|
430
455
|
iframe_embed_type:
|
431
456
|
embed_in_meeting_page: Osadź na stronie spotkania
|
432
457
|
none: Żaden
|
433
|
-
open_in_live_event_page: Otwórz
|
458
|
+
open_in_live_event_page: Otwórz na stronie wydarzenia na żywo
|
434
459
|
open_in_new_tab: Otwórz odnośnik w nowej zakładce
|
435
460
|
last_activity:
|
436
461
|
meeting_updated: 'Spotkanie zaktualizowane:'
|
@@ -438,7 +463,6 @@ pl:
|
|
438
463
|
layouts:
|
439
464
|
live_event:
|
440
465
|
close: zamknij
|
441
|
-
questions: Pytania
|
442
466
|
mailer:
|
443
467
|
invite_join_meeting_mailer:
|
444
468
|
invite:
|
@@ -521,12 +545,15 @@ pl:
|
|
521
545
|
edit_close_meeting: Edytuj raport ze spotkania
|
522
546
|
edit_meeting: Edytuj spotkanie
|
523
547
|
join_meeting: Dołącz do spotkania
|
548
|
+
reply_poll: Odpowiedz na ankietę
|
549
|
+
view_poll: Zobacz ankietę
|
524
550
|
meetings:
|
525
551
|
no_meetings_warning: Żadne spotkanie nie spełnia kryteriów wyszukiwania lub nie zaplanowano żadnych spotkań.
|
526
552
|
upcoming_meetings_warning: Obecnie nie ma żadnych zaplanowanych spotkań, ale możesz zobaczyć wszystkie przeszłe.
|
527
553
|
new:
|
528
554
|
back: Wróć
|
529
555
|
create: Utwórz
|
556
|
+
title: Utwórz spotkanie
|
530
557
|
registration_confirm:
|
531
558
|
cancel: Anuluj
|
532
559
|
confirm: Potwierdź
|
@@ -580,13 +607,22 @@ pl:
|
|
580
607
|
start_time: Data rozpoczęcia
|
581
608
|
title: Tytuł
|
582
609
|
polls:
|
610
|
+
answers:
|
611
|
+
index:
|
612
|
+
administrate: Administruj
|
613
|
+
title: Głosowanie
|
614
|
+
index_admin:
|
615
|
+
back_to_meeting: Powrót do spotkania
|
616
|
+
title: Administruj ankietą
|
617
|
+
view_poll: Zobacz ankietę
|
583
618
|
questions:
|
584
619
|
closed_question:
|
585
|
-
|
620
|
+
announcement: Odpowiedzi na to pytanie zostały zamknięte.
|
621
|
+
question: Pytanie
|
622
|
+
question_results: Wyniki
|
586
623
|
index:
|
587
624
|
empty_questions: Podczas tego spotkania niektóre pytania zostaną wysłane i będziesz mógł na nie odpowiedzieć. Będą one wyświetlane tutaj.
|
588
625
|
index_admin:
|
589
|
-
admin_dashboard: Panel administracyjny
|
590
626
|
edit: Edytuj w panelu administratora
|
591
627
|
question: Pytanie
|
592
628
|
received_answer: otrzymana odpowiedź
|
@@ -594,6 +630,10 @@ pl:
|
|
594
630
|
results: Wyniki
|
595
631
|
send: Wyślij
|
596
632
|
sent: Wysłano
|
633
|
+
statuses:
|
634
|
+
closed: Wyniki wysłane (zamknięte)
|
635
|
+
published: Wysłane (otwarte)
|
636
|
+
unpublished: Oczekuje na wysłanie
|
597
637
|
published_question:
|
598
638
|
max_choices_alert: Wybrano zbyt wiele opcji
|
599
639
|
question: Pytanie
|
data/config/locales/pt-BR.yml
CHANGED
@@ -91,6 +91,11 @@ pt-BR:
|
|
91
91
|
decidim:
|
92
92
|
admin:
|
93
93
|
filters:
|
94
|
+
accepted_at_not_null:
|
95
|
+
label: Aceitou
|
96
|
+
values:
|
97
|
+
'false': Não aceito
|
98
|
+
'true': Aceitou
|
94
99
|
meetings:
|
95
100
|
category_id_eq:
|
96
101
|
label: Categoria
|
@@ -105,7 +110,7 @@ pt-BR:
|
|
105
110
|
'false': Passado
|
106
111
|
'true': Próximos
|
107
112
|
scope_id_eq:
|
108
|
-
label:
|
113
|
+
label: Escopo
|
109
114
|
with_any_origin:
|
110
115
|
label: Origem
|
111
116
|
values:
|
@@ -118,6 +123,18 @@ pt-BR:
|
|
118
123
|
hybrid: Híbrido
|
119
124
|
in_person: Presencialmente
|
120
125
|
online: Virtual
|
126
|
+
rejected_at_not_null:
|
127
|
+
label: Rejeitado
|
128
|
+
values:
|
129
|
+
'false': Não rejeitado
|
130
|
+
'true': Rejeitado
|
131
|
+
search_placeholder:
|
132
|
+
user_name_or_user_email_cont: Buscar por nome ou email
|
133
|
+
sent_at_not_null:
|
134
|
+
label: Enviado
|
135
|
+
values:
|
136
|
+
'false': Não enviado
|
137
|
+
'true': Enviado
|
121
138
|
meeting_copies:
|
122
139
|
create:
|
123
140
|
error: Ocorreu um erro ao duplicar esta reunião.
|
@@ -142,7 +159,7 @@ pt-BR:
|
|
142
159
|
maps_enabled: Mapas ativados
|
143
160
|
registration_code_enabled: Código de registro habilitado
|
144
161
|
resources_permissions_enabled: Permissões de ações podem ser definidas para cada encontro
|
145
|
-
scope_id:
|
162
|
+
scope_id: Escopo
|
146
163
|
scopes_enabled: Escopos habilitados
|
147
164
|
terms_and_conditions_url_for_meeting_creators: URL de Termos e condições para criadores da reunião
|
148
165
|
step:
|
@@ -217,6 +234,7 @@ pt-BR:
|
|
217
234
|
attachment_collections: Pastas
|
218
235
|
attachments: Anexos
|
219
236
|
close: Fechar
|
237
|
+
confirm_destroy: Deseja mesmo excluir este encontro?
|
220
238
|
destroy: Excluir
|
221
239
|
edit: Editar
|
222
240
|
invalid_destroy:
|
@@ -281,15 +299,9 @@ pt-BR:
|
|
281
299
|
non_user: Usuário inexistente
|
282
300
|
select_user: Selecionar usuário
|
283
301
|
index:
|
284
|
-
filter:
|
285
|
-
accepted: Aceitou
|
286
|
-
all: Tudo
|
287
|
-
rejected: Rejeitado
|
288
|
-
sent: Enviado
|
289
302
|
invite_attendee: Convidar participante
|
290
303
|
invites: Convites
|
291
304
|
registrations_disabled: Você não pode convidar um participante porque os registros estão desativados.
|
292
|
-
search: Pesquisa
|
293
305
|
meeting_closes:
|
294
306
|
edit:
|
295
307
|
close: Fechar
|
@@ -354,6 +366,8 @@ pt-BR:
|
|
354
366
|
registrations:
|
355
367
|
edit:
|
356
368
|
save: Salvar
|
369
|
+
validate: Confirmar
|
370
|
+
validate_registration_code: Confirmar código de registro
|
357
371
|
form:
|
358
372
|
available_slots_help: Deixe-o para 0 se você tiver slots ilimitados disponíveis.
|
359
373
|
invites: Convites
|
@@ -369,6 +383,9 @@ pt-BR:
|
|
369
383
|
update:
|
370
384
|
invalid: Ocorreu um problema ao salvar as configurações de registro.
|
371
385
|
success: Configurações de registro de reunião salvas com sucesso.
|
386
|
+
validate_registration_code:
|
387
|
+
invalid: Este código de registro é inválido.
|
388
|
+
success: Código de registro confirmado com sucesso.
|
372
389
|
admin_log:
|
373
390
|
invite:
|
374
391
|
create: "%{user_name} convidados %{attendee_name} a participar de %{resource_name} reunião no espaço %{space_name}"
|
@@ -387,7 +404,7 @@ pt-BR:
|
|
387
404
|
update: "%{user_name} atualizou o questionário para a reunião %{meeting_name}"
|
388
405
|
application_helper:
|
389
406
|
filter_category_values:
|
390
|
-
all:
|
407
|
+
all: Todos
|
391
408
|
filter_meeting_space_values:
|
392
409
|
all: Todos
|
393
410
|
calendar:
|
@@ -407,7 +424,6 @@ pt-BR:
|
|
407
424
|
body: A reunião <a href="%{meeting_path}">"%{meeting_title}"</a> está pendente para ser fechada. Adicione um relatório da reunião usando o botão "Fechar reunião".
|
408
425
|
greetings: Saudações,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
409
426
|
hello: Olá %{username},
|
410
|
-
subject: Agora você pode encerrar sua reunião com um relatório na plataforma %{organization_name}
|
411
427
|
conference_venues: Locais de conferência
|
412
428
|
content_blocks:
|
413
429
|
upcoming_meetings:
|
@@ -424,7 +440,6 @@ pt-BR:
|
|
424
440
|
iframe_embed_type:
|
425
441
|
embed_in_meeting_page: Incorporar na página da reunião
|
426
442
|
none: Nenhum
|
427
|
-
open_in_live_event_page: Abrir na página de eventos ao vivo (com enquetes opcionais)
|
428
443
|
open_in_new_tab: Abrir URL em uma nova aba
|
429
444
|
last_activity:
|
430
445
|
meeting_updated: 'Reunião atualizada:'
|
@@ -432,7 +447,6 @@ pt-BR:
|
|
432
447
|
layouts:
|
433
448
|
live_event:
|
434
449
|
close: fechar
|
435
|
-
questions: Perguntas
|
436
450
|
mailer:
|
437
451
|
invite_join_meeting_mailer:
|
438
452
|
invite:
|
@@ -509,9 +523,9 @@ pt-BR:
|
|
509
523
|
see_all_withdrawn: Veja todas as reuniões retiradas
|
510
524
|
text_banner: Você está vendo a lista de reuniões retiradas por seus autores. %{go_back_link}.
|
511
525
|
meeting:
|
512
|
-
close_meeting:
|
526
|
+
close_meeting: Encerrar reunião
|
513
527
|
edit_close_meeting: Editar relatório da reunião
|
514
|
-
edit_meeting: Editar
|
528
|
+
edit_meeting: Editar Reunião
|
515
529
|
join_meeting: Participe da reunião
|
516
530
|
meetings:
|
517
531
|
no_meetings_warning: Nenhuma reunião corresponde aos seus critérios de pesquisa ou não há nenhuma reunião agendada.
|
@@ -519,6 +533,7 @@ pt-BR:
|
|
519
533
|
new:
|
520
534
|
back: Voltar
|
521
535
|
create: Criar
|
536
|
+
title: Criar uma reunião
|
522
537
|
registration_confirm:
|
523
538
|
cancel: Cancelar
|
524
539
|
confirm: confirme
|
@@ -571,12 +586,9 @@ pt-BR:
|
|
571
586
|
title: Título
|
572
587
|
polls:
|
573
588
|
questions:
|
574
|
-
closed_question:
|
575
|
-
question_results: Resultados das perguntas
|
576
589
|
index:
|
577
590
|
empty_questions: Durante esta reunião, algumas perguntas serão enviadas e você poderá respondê-las. Elas serão exibidas aqui.
|
578
591
|
index_admin:
|
579
|
-
admin_dashboard: Painel de administração
|
580
592
|
edit: Editar no painel de administração
|
581
593
|
question: Pergunta
|
582
594
|
received_answer: resposta recebida
|
data/config/locales/pt.yml
CHANGED
@@ -171,6 +171,7 @@ pt:
|
|
171
171
|
attachment_collections: Pastas
|
172
172
|
attachments: Anexos
|
173
173
|
close: Fechar
|
174
|
+
confirm_destroy: Tem a certeza de que deseja eliminar esta reunião?
|
174
175
|
destroy: Eliminar
|
175
176
|
edit: Editar
|
176
177
|
invalid_destroy:
|
@@ -228,12 +229,8 @@ pt:
|
|
228
229
|
non_user: Participante inexistente
|
229
230
|
select_user: Selecione o participante
|
230
231
|
index:
|
231
|
-
filter:
|
232
|
-
all: Todos
|
233
|
-
sent: Enviado
|
234
232
|
invite_attendee: Convidar participante
|
235
233
|
invites: Convites
|
236
|
-
search: Pesquisar
|
237
234
|
meeting_closes:
|
238
235
|
edit:
|
239
236
|
close: Fechar
|
@@ -275,6 +272,8 @@ pt:
|
|
275
272
|
registrations:
|
276
273
|
edit:
|
277
274
|
save: Guardar
|
275
|
+
validate: Validar
|
276
|
+
validate_registration_code: Validar código de registo
|
278
277
|
form:
|
279
278
|
available_slots_help: Deixar a 0 se tiver intervalos de tempo ilimitados disponíveis.
|
280
279
|
invites: Convites
|
@@ -289,6 +288,9 @@ pt:
|
|
289
288
|
update:
|
290
289
|
invalid: Ocorreu um problema ao guardar as configurações de registo.
|
291
290
|
success: Configurações de registo de reunião guardadas corretamente.
|
291
|
+
validate_registration_code:
|
292
|
+
invalid: Este código de registo é inválido.
|
293
|
+
success: Código de registo validado corretamente.
|
292
294
|
admin_log:
|
293
295
|
invite:
|
294
296
|
create: "%{user_name} convidou %{attendee_name} a aderir à reunião %{resource_name} no espaço %{space_name}"
|
@@ -303,9 +305,6 @@ pt:
|
|
303
305
|
value_types:
|
304
306
|
organizer_presenter:
|
305
307
|
not_found: 'O(A) organizador(a) não foi encontrado(a) na base de dados (ID: %{id})'
|
306
|
-
application_helper:
|
307
|
-
filter_category_values:
|
308
|
-
all: Todos
|
309
308
|
calendar_modal:
|
310
309
|
calendar_url: URL do calendário
|
311
310
|
export_calendar: Exportar calendário
|
@@ -318,7 +317,6 @@ pt:
|
|
318
317
|
layouts:
|
319
318
|
live_event:
|
320
319
|
close: Fechar
|
321
|
-
questions: Pergunta
|
322
320
|
mailer:
|
323
321
|
invite_join_meeting_mailer:
|
324
322
|
invite:
|
@@ -382,14 +380,12 @@ pt:
|
|
382
380
|
select_a_registration_type: Por favor seleccione um tipo de registo
|
383
381
|
index:
|
384
382
|
new_meeting: Nova reunião
|
385
|
-
meeting:
|
386
|
-
close_meeting: Encerrar reunião
|
387
|
-
edit_meeting: Editar reunião
|
388
383
|
meetings:
|
389
384
|
upcoming_meetings_warning: Atualmente, não há reuniões agendadas, mas aqui pode encontrar listadas todas as reuniões passadas.
|
390
385
|
new:
|
391
386
|
back: Retroceder
|
392
387
|
create: Criar
|
388
|
+
title: Criar a Sua Reunião
|
393
389
|
registration_confirm:
|
394
390
|
cancel: Cancelar
|
395
391
|
confirm: Confirmar
|
@@ -438,12 +434,9 @@ pt:
|
|
438
434
|
title: Título
|
439
435
|
polls:
|
440
436
|
questions:
|
441
|
-
closed_question:
|
442
|
-
question_results: Resultados das questões
|
443
437
|
index:
|
444
438
|
empty_questions: Durante esta reunião irão ser-lhe enviadas algumas questões e poderá responder-lhes. Serão exibidas aqui.
|
445
439
|
index_admin:
|
446
|
-
admin_dashboard: Painel de controlo de administrador
|
447
440
|
question: Questão
|
448
441
|
received_answer: resposta recebida
|
449
442
|
received_answers: respostas recebidas
|
data/config/locales/ro-RO.yml
CHANGED
@@ -206,6 +206,7 @@ ro:
|
|
206
206
|
attachment_collections: Dosare
|
207
207
|
attachments: Atașamente
|
208
208
|
close: Închide
|
209
|
+
confirm_destroy: Sigur dorești să ştergi acestă întâlnire?
|
209
210
|
destroy: Ștergere
|
210
211
|
edit: Editare
|
211
212
|
invalid_destroy:
|
@@ -264,12 +265,8 @@ ro:
|
|
264
265
|
non_user: Participant neexistent
|
265
266
|
select_user: Selecteză un participant
|
266
267
|
index:
|
267
|
-
filter:
|
268
|
-
all: Toate
|
269
|
-
sent: Trimis
|
270
268
|
invite_attendee: Invită participantul
|
271
269
|
invites: Invitații
|
272
|
-
search: Caută
|
273
270
|
meeting_closes:
|
274
271
|
edit:
|
275
272
|
close: Închide
|
@@ -318,7 +315,7 @@ ro:
|
|
318
315
|
registrations:
|
319
316
|
edit:
|
320
317
|
save: Salvează
|
321
|
-
validate:
|
318
|
+
validate: Validare
|
322
319
|
validate_registration_code: Validează codul de înregistrare
|
323
320
|
form:
|
324
321
|
available_slots_help: Lăsați la 0 dacă aveți sloturi nelimitate disponibile.
|
@@ -367,7 +364,6 @@ ro:
|
|
367
364
|
close_meeting_reminder_mailer:
|
368
365
|
close_meeting_reminder:
|
369
366
|
hello: Salut %{username},
|
370
|
-
subject: Acum poți închide întâlnirea cu un raport pe platforma %{organization_name}
|
371
367
|
conference_venues: Locuri ale conferinței
|
372
368
|
content_blocks:
|
373
369
|
upcoming_meetings:
|
@@ -383,7 +379,6 @@ ro:
|
|
383
379
|
iframe_embed_type:
|
384
380
|
embed_in_meeting_page: Incorporează în pagina de şedinţe
|
385
381
|
none: Niciunul
|
386
|
-
open_in_live_event_page: Deschide în pagina de evenimente live (cu sondaje opționale)
|
387
382
|
open_in_new_tab: Deschideți în filă nouă
|
388
383
|
last_activity:
|
389
384
|
meeting_updated: 'Ședință actualizată:'
|
@@ -391,7 +386,6 @@ ro:
|
|
391
386
|
layouts:
|
392
387
|
live_event:
|
393
388
|
close: închide
|
394
|
-
questions: Întrebări
|
395
389
|
mailer:
|
396
390
|
invite_join_meeting_mailer:
|
397
391
|
invite:
|
@@ -438,7 +432,6 @@ ro:
|
|
438
432
|
all: Toate
|
439
433
|
official: Oficial
|
440
434
|
participants: Participanți
|
441
|
-
user_group: Grupuri
|
442
435
|
search: Caută
|
443
436
|
type: Tip
|
444
437
|
type_values:
|
@@ -463,15 +456,12 @@ ro:
|
|
463
456
|
see_all: Vezi toate întâlnirile
|
464
457
|
see_all_withdrawn: Afișează toate întâlnirile anulate
|
465
458
|
text_banner: Vizualizezi lista de întâlniri anulate de autorii lor. %{go_back_link}.
|
466
|
-
meeting:
|
467
|
-
close_meeting: Închide ședința
|
468
|
-
edit_meeting: Editați ședința
|
469
459
|
meetings:
|
470
460
|
upcoming_meetings_warning: În prezent, nu există întâlniri programate, dar aici se află pe listă toate întâlnirile anterioare.
|
471
461
|
new:
|
472
462
|
back: Înapoi
|
473
463
|
create: Creează
|
474
|
-
title:
|
464
|
+
title: Creează-ți o întâlnire
|
475
465
|
registration_confirm:
|
476
466
|
cancel: Anulează
|
477
467
|
confirm: Confirmare
|
@@ -524,12 +514,9 @@ ro:
|
|
524
514
|
title: Titlu
|
525
515
|
polls:
|
526
516
|
questions:
|
527
|
-
closed_question:
|
528
|
-
question_results: Rezultatele întrebării
|
529
517
|
index:
|
530
518
|
empty_questions: Pe parcursul acestei întâlniri, vor fi trimise câteva întrebări și vei putea răspunde la acestea. Acestea vor fi afișate aici.
|
531
519
|
index_admin:
|
532
|
-
admin_dashboard: Panou de administrare
|
533
520
|
edit: Editează în panoul de administrare
|
534
521
|
question: Întrebare
|
535
522
|
received_answer: răspuns primit
|
@@ -583,7 +570,7 @@ ro:
|
|
583
570
|
participatory_spaces:
|
584
571
|
highlighted_meetings:
|
585
572
|
past_meetings: Întâlniri anterioare
|
586
|
-
see_all: Afișează toate întâlnirile
|
573
|
+
see_all: Afișează toate întâlnirile (%{count})
|
587
574
|
upcoming_meetings: Întâlniri viitoare
|
588
575
|
resource_links:
|
589
576
|
meetings_through_proposals:
|
data/config/locales/ru.yml
CHANGED
@@ -50,12 +50,6 @@ ru:
|
|
50
50
|
other: Зарегистрировались
|
51
51
|
decidim:
|
52
52
|
admin:
|
53
|
-
filters:
|
54
|
-
meetings:
|
55
|
-
category_id_eq:
|
56
|
-
label: Категория
|
57
|
-
scope_id_eq:
|
58
|
-
label: Охват
|
59
53
|
meeting_copies:
|
60
54
|
create:
|
61
55
|
error: При попытке создать копию этой встречи произошла ошибка.
|
@@ -74,7 +68,6 @@ ru:
|
|
74
68
|
comments_enabled: Комментарии включены
|
75
69
|
default_registration_terms: Условия регистрации по умолчанию
|
76
70
|
resources_permissions_enabled: Для каждой встречи можно задать те или иные разрешения на действия
|
77
|
-
scope_id: Охват
|
78
71
|
step:
|
79
72
|
announcement: Объявление
|
80
73
|
comments_blocked: Комментарии отключены
|
@@ -138,6 +131,7 @@ ru:
|
|
138
131
|
attachment_collections: Папки
|
139
132
|
attachments: Прикрепленные файлы
|
140
133
|
close: Закрыть
|
134
|
+
confirm_destroy: Вы действительно хотите удалить эту встречу?
|
141
135
|
destroy: Удалить
|
142
136
|
edit: Редактировать
|
143
137
|
preview: Предпросмотр
|
@@ -188,11 +182,8 @@ ru:
|
|
188
182
|
non_user: Не существующий участник
|
189
183
|
select_user: Выберите участника
|
190
184
|
index:
|
191
|
-
filter:
|
192
|
-
sent: Отправлено
|
193
185
|
invite_attendee: Пригласить участника
|
194
186
|
invites: Приглашения
|
195
|
-
search: Поиск
|
196
187
|
meeting_closes:
|
197
188
|
edit:
|
198
189
|
close: Закрыть
|
@@ -220,6 +211,8 @@ ru:
|
|
220
211
|
registrations:
|
221
212
|
edit:
|
222
213
|
save: Сохранить
|
214
|
+
validate: Подтвердить
|
215
|
+
validate_registration_code: Подтвердить регистрационный код
|
223
216
|
form:
|
224
217
|
available_slots_help: Оставьте его равным 0, если у вас не ограничено количество мест.
|
225
218
|
invites: Приглашения
|
@@ -229,6 +222,9 @@ ru:
|
|
229
222
|
update:
|
230
223
|
invalid: При попытке сохранить настройки регистрации произошла ошибка.
|
231
224
|
success: Настройки регистрации на встречу успешно сохранены.
|
225
|
+
validate_registration_code:
|
226
|
+
invalid: Этот регистрационный код неуместен.
|
227
|
+
success: Регистрационный код успешно подтвержден.
|
232
228
|
admin_log:
|
233
229
|
invite:
|
234
230
|
create: "%{user_name} пригласил %{attendee_name} присоединиться к встрече %{resource_name} в пространстве %{space_name}"
|
@@ -262,8 +258,6 @@ ru:
|
|
262
258
|
category: Категория
|
263
259
|
date: Дата
|
264
260
|
search: Поиск
|
265
|
-
meeting:
|
266
|
-
close_meeting: Закрыть встречу
|
267
261
|
meetings:
|
268
262
|
upcoming_meetings_warning: Сейчас нет запланированных встреч, но здесь вы можете найти список всех прошедших встреч.
|
269
263
|
registration_confirm:
|
data/config/locales/sk.yml
CHANGED
@@ -50,12 +50,6 @@ sk:
|
|
50
50
|
other: Registrácie
|
51
51
|
decidim:
|
52
52
|
admin:
|
53
|
-
filters:
|
54
|
-
meetings:
|
55
|
-
category_id_eq:
|
56
|
-
label: Kategória
|
57
|
-
scope_id_eq:
|
58
|
-
label: Rozsah
|
59
53
|
meeting_copies:
|
60
54
|
create:
|
61
55
|
error: Bolo tu chyba, že sa toto stretnutie zdvojnásobila.
|
@@ -75,7 +69,6 @@ sk:
|
|
75
69
|
default_registration_terms: Východiskové podmienky registrácia
|
76
70
|
enable_pads_creation: Povoliť vytvorenie zdieľaného texte
|
77
71
|
resources_permissions_enabled: Nastavenie povolení možno nastaviť pre každú schôdzku
|
78
|
-
scope_id: Rozsah
|
79
72
|
step:
|
80
73
|
announcement: Oznámenie
|
81
74
|
comments_blocked: Komentáre blokované
|
@@ -140,6 +133,7 @@ sk:
|
|
140
133
|
attachment_collections: Zložky
|
141
134
|
attachments: Prílohy
|
142
135
|
close: Zavrieť
|
136
|
+
confirm_destroy: Naozaj chcete túto schôdzku vymazať?
|
143
137
|
destroy: Odstrániť
|
144
138
|
edit: Upraviť
|
145
139
|
preview: Náhľad
|
@@ -190,11 +184,8 @@ sk:
|
|
190
184
|
non_user: Neexistujúca užívateľ
|
191
185
|
select_user: Vyberte používateľa
|
192
186
|
index:
|
193
|
-
filter:
|
194
|
-
sent: Odoslaná
|
195
187
|
invite_attendee: Pozvať účastníka
|
196
188
|
invites: Pozvánky
|
197
|
-
search: Vyhľadávanie
|
198
189
|
meeting_closes:
|
199
190
|
edit:
|
200
191
|
close: Zavrieť
|
@@ -225,6 +216,8 @@ sk:
|
|
225
216
|
registrations:
|
226
217
|
edit:
|
227
218
|
save: Uložiť
|
219
|
+
validate: Overiť
|
220
|
+
validate_registration_code: Skontrolujte registračný kód
|
228
221
|
form:
|
229
222
|
available_slots_help: Nechajte to na 0, ak máte k dispozícii neobmedzené sloty.
|
230
223
|
invites: Pozvánky
|
@@ -240,6 +233,9 @@ sk:
|
|
240
233
|
update:
|
241
234
|
invalid: Vyskytol sa problém pri ukladaní nastavení registrácie.
|
242
235
|
success: Nastavenie úspešných registráciou bolo úspešne uložené.
|
236
|
+
validate_registration_code:
|
237
|
+
invalid: Tento registračný kód je neplatný.
|
238
|
+
success: Registračný kód bol úspešne overený.
|
243
239
|
admin_log:
|
244
240
|
invite:
|
245
241
|
create: "% {USER_NAME} pozval% {attendee_name} aby sa pripojil ku% {resource_name} schôdzke na% {space_name} priestoru"
|
@@ -275,8 +271,6 @@ sk:
|
|
275
271
|
category: Kategória
|
276
272
|
date: dátum
|
277
273
|
search: Vyhľadávanie
|
278
|
-
meeting:
|
279
|
-
close_meeting: Zatvorte schôdzku
|
280
274
|
meetings:
|
281
275
|
upcoming_meetings_warning: V súčasnosti neexistujú žiadne plánované schôdzky, ale nájdete tu všetky minulé stretnutia.
|
282
276
|
registration_confirm:
|
@@ -338,7 +332,7 @@ sk:
|
|
338
332
|
meetings:
|
339
333
|
description: Počet vytvorených stretnutí
|
340
334
|
object: stretnutia
|
341
|
-
title:
|
335
|
+
title: Stretnutia
|
342
336
|
participatory_spaces:
|
343
337
|
highlighted_meetings:
|
344
338
|
past_meetings: Minulé schôdze
|