decidim-meetings 0.28.5 → 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 +10 -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/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/devise/mailer/join_meeting.html.erb +3 -1
- data/app/views/devise/mailer/join_meeting.text.erb +3 -1
- data/config/locales/ar.yml +1 -13
- data/config/locales/bg.yml +45 -12
- data/config/locales/ca.yml +45 -13
- data/config/locales/cs.yml +28 -16
- data/config/locales/de.yml +114 -82
- data/config/locales/el.yml +1 -13
- data/config/locales/en.yml +44 -12
- data/config/locales/es-MX.yml +47 -15
- data/config/locales/es-PY.yml +47 -15
- data/config/locales/es.yml +48 -16
- data/config/locales/eu.yml +79 -47
- data/config/locales/fi-plain.yml +46 -14
- data/config/locales/fi.yml +56 -24
- data/config/locales/fr-CA.yml +48 -16
- data/config/locales/fr.yml +48 -16
- data/config/locales/ga-IE.yml +0 -8
- data/config/locales/gl.yml +3 -11
- data/config/locales/hu.yml +3 -12
- data/config/locales/id-ID.yml +1 -12
- data/config/locales/is-IS.yml +1 -12
- data/config/locales/it.yml +3 -16
- data/config/locales/ja.yml +47 -15
- data/config/locales/lb.yml +1 -7
- data/config/locales/lt.yml +3 -12
- data/config/locales/lv.yml +1 -12
- data/config/locales/nl.yml +1 -13
- data/config/locales/no.yml +1 -12
- data/config/locales/pl.yml +45 -12
- data/config/locales/pt-BR.yml +23 -17
- data/config/locales/pt.yml +1 -14
- data/config/locales/ro-RO.yml +2 -15
- data/config/locales/ru.yml +1 -12
- data/config/locales/sk.yml +1 -12
- data/config/locales/sv.yml +108 -206
- data/config/locales/tr-TR.yml +2 -17
- data/config/locales/uk.yml +1 -12
- data/config/locales/zh-CN.yml +1 -15
- data/config/locales/zh-TW.yml +1 -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 +5 -3
- 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 -22
- 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/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,6 +368,13 @@ 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
|
@@ -418,7 +438,7 @@ pl:
|
|
418
438
|
body: Spotkanie <a href="%{meeting_path}">"%{meeting_title}"</a> oczekuje na zamknięcie. Dodaj raport z spotkania za pomocą przycisku "Zamknij spotkanie".
|
419
439
|
greetings: Pozdrawiamy,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
420
440
|
hello: Witaj %{username},
|
421
|
-
subject:
|
441
|
+
subject: Możesz teraz zamknąć spotkanie "%{meeting_title}" raportem
|
422
442
|
conference_venues: Sale konferencyjne
|
423
443
|
content_blocks:
|
424
444
|
upcoming_meetings:
|
@@ -435,16 +455,14 @@ pl:
|
|
435
455
|
iframe_embed_type:
|
436
456
|
embed_in_meeting_page: Osadź na stronie spotkania
|
437
457
|
none: Żaden
|
438
|
-
open_in_live_event_page: Otwórz
|
458
|
+
open_in_live_event_page: Otwórz na stronie wydarzenia na żywo
|
439
459
|
open_in_new_tab: Otwórz odnośnik w nowej zakładce
|
440
460
|
last_activity:
|
441
461
|
meeting_updated: 'Spotkanie zaktualizowane:'
|
442
462
|
new_meeting: 'Nowe spotkanie:'
|
443
463
|
layouts:
|
444
464
|
live_event:
|
445
|
-
administrate: Administruj
|
446
465
|
close: zamknij
|
447
|
-
questions: Pytania
|
448
466
|
mailer:
|
449
467
|
invite_join_meeting_mailer:
|
450
468
|
invite:
|
@@ -527,6 +545,8 @@ pl:
|
|
527
545
|
edit_close_meeting: Edytuj raport ze spotkania
|
528
546
|
edit_meeting: Edytuj spotkanie
|
529
547
|
join_meeting: Dołącz do spotkania
|
548
|
+
reply_poll: Odpowiedz na ankietę
|
549
|
+
view_poll: Zobacz ankietę
|
530
550
|
meetings:
|
531
551
|
no_meetings_warning: Żadne spotkanie nie spełnia kryteriów wyszukiwania lub nie zaplanowano żadnych spotkań.
|
532
552
|
upcoming_meetings_warning: Obecnie nie ma żadnych zaplanowanych spotkań, ale możesz zobaczyć wszystkie przeszłe.
|
@@ -587,13 +607,22 @@ pl:
|
|
587
607
|
start_time: Data rozpoczęcia
|
588
608
|
title: Tytuł
|
589
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ę
|
590
618
|
questions:
|
591
619
|
closed_question:
|
592
|
-
|
620
|
+
announcement: Odpowiedzi na to pytanie zostały zamknięte.
|
621
|
+
question: Pytanie
|
622
|
+
question_results: Wyniki
|
593
623
|
index:
|
594
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.
|
595
625
|
index_admin:
|
596
|
-
admin_dashboard: Panel administracyjny
|
597
626
|
edit: Edytuj w panelu administratora
|
598
627
|
question: Pytanie
|
599
628
|
received_answer: otrzymana odpowiedź
|
@@ -601,6 +630,10 @@ pl:
|
|
601
630
|
results: Wyniki
|
602
631
|
send: Wyślij
|
603
632
|
sent: Wysłano
|
633
|
+
statuses:
|
634
|
+
closed: Wyniki wysłane (zamknięte)
|
635
|
+
published: Wysłane (otwarte)
|
636
|
+
unpublished: Oczekuje na wysłanie
|
604
637
|
published_question:
|
605
638
|
max_choices_alert: Wybrano zbyt wiele opcji
|
606
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
|
@@ -392,7 +404,7 @@ pt-BR:
|
|
392
404
|
update: "%{user_name} atualizou o questionário para a reunião %{meeting_name}"
|
393
405
|
application_helper:
|
394
406
|
filter_category_values:
|
395
|
-
all:
|
407
|
+
all: Todos
|
396
408
|
filter_meeting_space_values:
|
397
409
|
all: Todos
|
398
410
|
calendar:
|
@@ -412,7 +424,6 @@ pt-BR:
|
|
412
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".
|
413
425
|
greetings: Saudações,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
414
426
|
hello: Olá %{username},
|
415
|
-
subject: Agora você pode encerrar sua reunião com um relatório na plataforma %{organization_name}
|
416
427
|
conference_venues: Locais de conferência
|
417
428
|
content_blocks:
|
418
429
|
upcoming_meetings:
|
@@ -429,7 +440,6 @@ pt-BR:
|
|
429
440
|
iframe_embed_type:
|
430
441
|
embed_in_meeting_page: Incorporar na página da reunião
|
431
442
|
none: Nenhum
|
432
|
-
open_in_live_event_page: Abrir na página de eventos ao vivo (com enquetes opcionais)
|
433
443
|
open_in_new_tab: Abrir URL em uma nova aba
|
434
444
|
last_activity:
|
435
445
|
meeting_updated: 'Reunião atualizada:'
|
@@ -437,7 +447,6 @@ pt-BR:
|
|
437
447
|
layouts:
|
438
448
|
live_event:
|
439
449
|
close: fechar
|
440
|
-
questions: Perguntas
|
441
450
|
mailer:
|
442
451
|
invite_join_meeting_mailer:
|
443
452
|
invite:
|
@@ -514,9 +523,9 @@ pt-BR:
|
|
514
523
|
see_all_withdrawn: Veja todas as reuniões retiradas
|
515
524
|
text_banner: Você está vendo a lista de reuniões retiradas por seus autores. %{go_back_link}.
|
516
525
|
meeting:
|
517
|
-
close_meeting:
|
526
|
+
close_meeting: Encerrar reunião
|
518
527
|
edit_close_meeting: Editar relatório da reunião
|
519
|
-
edit_meeting: Editar
|
528
|
+
edit_meeting: Editar Reunião
|
520
529
|
join_meeting: Participe da reunião
|
521
530
|
meetings:
|
522
531
|
no_meetings_warning: Nenhuma reunião corresponde aos seus critérios de pesquisa ou não há nenhuma reunião agendada.
|
@@ -577,12 +586,9 @@ pt-BR:
|
|
577
586
|
title: Título
|
578
587
|
polls:
|
579
588
|
questions:
|
580
|
-
closed_question:
|
581
|
-
question_results: Resultados das perguntas
|
582
589
|
index:
|
583
590
|
empty_questions: Durante esta reunião, algumas perguntas serão enviadas e você poderá respondê-las. Elas serão exibidas aqui.
|
584
591
|
index_admin:
|
585
|
-
admin_dashboard: Painel de administração
|
586
592
|
edit: Editar no painel de administração
|
587
593
|
question: Pergunta
|
588
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
|
@@ -308,9 +305,6 @@ pt:
|
|
308
305
|
value_types:
|
309
306
|
organizer_presenter:
|
310
307
|
not_found: 'O(A) organizador(a) não foi encontrado(a) na base de dados (ID: %{id})'
|
311
|
-
application_helper:
|
312
|
-
filter_category_values:
|
313
|
-
all: Todos
|
314
308
|
calendar_modal:
|
315
309
|
calendar_url: URL do calendário
|
316
310
|
export_calendar: Exportar calendário
|
@@ -323,7 +317,6 @@ pt:
|
|
323
317
|
layouts:
|
324
318
|
live_event:
|
325
319
|
close: Fechar
|
326
|
-
questions: Pergunta
|
327
320
|
mailer:
|
328
321
|
invite_join_meeting_mailer:
|
329
322
|
invite:
|
@@ -387,9 +380,6 @@ pt:
|
|
387
380
|
select_a_registration_type: Por favor seleccione um tipo de registo
|
388
381
|
index:
|
389
382
|
new_meeting: Nova reunião
|
390
|
-
meeting:
|
391
|
-
close_meeting: Encerrar reunião
|
392
|
-
edit_meeting: Editar reunião
|
393
383
|
meetings:
|
394
384
|
upcoming_meetings_warning: Atualmente, não há reuniões agendadas, mas aqui pode encontrar listadas todas as reuniões passadas.
|
395
385
|
new:
|
@@ -444,12 +434,9 @@ pt:
|
|
444
434
|
title: Título
|
445
435
|
polls:
|
446
436
|
questions:
|
447
|
-
closed_question:
|
448
|
-
question_results: Resultados das questões
|
449
437
|
index:
|
450
438
|
empty_questions: Durante esta reunião irão ser-lhe enviadas algumas questões e poderá responder-lhes. Serão exibidas aqui.
|
451
439
|
index_admin:
|
452
|
-
admin_dashboard: Painel de controlo de administrador
|
453
440
|
question: Questão
|
454
441
|
received_answer: resposta recebida
|
455
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
|
@@ -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,9 +456,6 @@ 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:
|
@@ -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: Закрыть
|
@@ -267,8 +258,6 @@ ru:
|
|
267
258
|
category: Категория
|
268
259
|
date: Дата
|
269
260
|
search: Поиск
|
270
|
-
meeting:
|
271
|
-
close_meeting: Закрыть встречу
|
272
261
|
meetings:
|
273
262
|
upcoming_meetings_warning: Сейчас нет запланированных встреч, но здесь вы можете найти список всех прошедших встреч.
|
274
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ť
|
@@ -280,8 +271,6 @@ sk:
|
|
280
271
|
category: Kategória
|
281
272
|
date: dátum
|
282
273
|
search: Vyhľadávanie
|
283
|
-
meeting:
|
284
|
-
close_meeting: Zatvorte schôdzku
|
285
274
|
meetings:
|
286
275
|
upcoming_meetings_warning: V súčasnosti neexistujú žiadne plánované schôdzky, ale nájdete tu všetky minulé stretnutia.
|
287
276
|
registration_confirm:
|