decidim-meetings 0.29.2 → 0.30.0.rc2
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.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +3 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -1
- data/app/cells/decidim/meetings/dates_and_map/show.erb +1 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +5 -2
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +3 -3
- data/app/cells/decidim/meetings/meeting_l_cell.rb +12 -0
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +8 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +8 -2
- data/app/commands/decidim/meetings/create_meeting.rb +2 -2
- data/app/commands/decidim/meetings/update_meeting.rb +2 -3
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +9 -5
- data/app/controllers/concerns/decidim/meetings/component_filterable.rb +1 -2
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +14 -22
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +8 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -4
- data/app/controllers/decidim/meetings/meetings_controller.rb +40 -6
- data/app/forms/decidim/meetings/admin/meeting_form.rb +16 -30
- data/app/forms/decidim/meetings/base_meeting_form.rb +6 -0
- data/app/forms/decidim/meetings/meeting_form.rb +2 -30
- data/app/helpers/decidim/meetings/admin/application_helper.rb +11 -1
- data/app/helpers/decidim/meetings/application_helper.rb +35 -1
- data/app/helpers/decidim/meetings/directory/application_helper.rb +9 -48
- data/app/helpers/decidim/meetings/meetings_helper.rb +5 -0
- data/app/models/decidim/meetings/invite.rb +10 -0
- data/app/models/decidim/meetings/meeting.rb +23 -1
- data/app/models/decidim/meetings/meeting_link.rb +25 -0
- data/app/packs/entrypoints/decidim_meetings_admin.js +1 -0
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +77 -0
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +8 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +1 -1
- data/app/permissions/decidim/meetings/permissions.rb +13 -9
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +13 -1
- data/app/queries/decidim/meetings/filtered_meetings.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +6 -6
- data/app/serializers/decidim/meetings/base_download_your_data_serializer.rb +32 -0
- data/app/serializers/decidim/meetings/download_your_data_invite_serializer.rb +6 -26
- data/app/serializers/decidim/meetings/download_your_data_meeting_serializer.rb +15 -0
- data/app/serializers/decidim/meetings/download_your_data_registration_serializer.rb +6 -24
- data/app/views/decidim/meetings/admin/meetings/_component.html.erb +15 -0
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +7 -9
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +53 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +42 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +70 -0
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +26 -0
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +16 -142
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +23 -0
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +44 -0
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +1 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -2
- data/app/views/decidim/meetings/live_events/show.html.erb +5 -5
- data/app/views/decidim/meetings/meetings/_form.html.erb +4 -8
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +51 -26
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +34 -0
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +20 -59
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +2 -5
- data/app/views/decidim/meetings/meetings/_schema_org_event_meeting.html.erb +3 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +10 -2
- data/app/views/decidim/meetings/meetings/show.html.erb +5 -5
- data/app/views/decidim/meetings/polls/answers/index.html.erb +5 -5
- data/app/views/decidim/meetings/shared/_filters.html.erb +1 -13
- data/app/views/decidim/meetings/shared/_index.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_index.js.erb +3 -2
- data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/config/locales/ar.yml +17 -17
- data/config/locales/bg.yml +5 -25
- data/config/locales/ca.yml +137 -25
- data/config/locales/cs.yml +138 -28
- data/config/locales/de.yml +138 -26
- data/config/locales/el.yml +1 -22
- data/config/locales/en.yml +133 -21
- data/config/locales/es-MX.yml +137 -25
- data/config/locales/es-PY.yml +137 -25
- data/config/locales/es.yml +137 -25
- data/config/locales/eu.yml +138 -26
- data/config/locales/fi-plain.yml +138 -26
- data/config/locales/fi.yml +138 -26
- data/config/locales/fr-CA.yml +79 -26
- data/config/locales/fr.yml +79 -26
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +1 -12
- data/config/locales/hu.yml +1 -19
- data/config/locales/id-ID.yml +1 -13
- data/config/locales/is-IS.yml +0 -12
- data/config/locales/it.yml +1 -17
- data/config/locales/ja.yml +95 -25
- data/config/locales/lb.yml +0 -11
- data/config/locales/lt.yml +1 -23
- data/config/locales/lv.yml +1 -13
- data/config/locales/nl.yml +1 -17
- data/config/locales/no.yml +1 -16
- data/config/locales/pl.yml +5 -21
- data/config/locales/pt-BR.yml +1 -21
- data/config/locales/pt.yml +1 -17
- data/config/locales/ro-RO.yml +30 -17
- data/config/locales/ru.yml +1 -13
- data/config/locales/sk.yml +1 -13
- data/config/locales/sv.yml +74 -26
- data/config/locales/tr-TR.yml +1 -19
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +1 -18
- data/config/locales/zh-TW.yml +1 -21
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +1 -1
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20240712104245_create_decidim_meetings_meeting_link.rb +12 -0
- data/db/migrate/20240828103603_add_deleted_at_to_decidim_meetings_meetings.rb +8 -0
- data/decidim-meetings.gemspec +1 -1
- data/lib/decidim/api/agenda_item_type.rb +6 -7
- data/lib/decidim/api/agenda_type.rb +3 -4
- data/lib/decidim/api/meeting_type.rb +33 -41
- data/lib/decidim/api/meetings_type.rb +4 -5
- data/lib/decidim/api/service_type.rb +1 -1
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +14 -4
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +13 -7
- data/lib/decidim/meetings/meeting_serializer.rb +70 -59
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +151 -0
- data/lib/decidim/meetings/seeds.rb +2 -4
- data/lib/decidim/meetings/test/factories.rb +8 -0
- data/lib/decidim/meetings/test/translated_event.rb +3 -3
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +1 -0
- metadata +32 -21
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -16
- data/app/cells/decidim/meetings/meetings_map_cell.rb +0 -32
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +0 -21
- data/app/helpers/decidim/meetings/map_helper.rb +0 -21
- data/app/views/decidim/meetings/meetings/_actions.html.erb +0 -6
data/config/locales/pl.yml
CHANGED
@@ -103,8 +103,6 @@ pl:
|
|
103
103
|
'false': Nie zaakceptowano
|
104
104
|
'true': Zaakceptowano
|
105
105
|
meetings:
|
106
|
-
category_id_eq:
|
107
|
-
label: Kategoria
|
108
106
|
closed_at_present:
|
109
107
|
label: Państwo
|
110
108
|
values:
|
@@ -115,8 +113,6 @@ pl:
|
|
115
113
|
values:
|
116
114
|
'false': Przeszłe
|
117
115
|
'true': Nadchodzące
|
118
|
-
scope_id_eq:
|
119
|
-
label: Zakres
|
120
116
|
with_any_origin:
|
121
117
|
label: Źródło
|
122
118
|
values:
|
@@ -166,8 +162,6 @@ pl:
|
|
166
162
|
maps_enabled: Mapy włączone
|
167
163
|
registration_code_enabled: Włączono kod rejestracyjny
|
168
164
|
resources_permissions_enabled: Uprawnienia działań można ustawić dla każdego spotkania
|
169
|
-
scope_id: Zakres
|
170
|
-
scopes_enabled: Zakresy włączone
|
171
165
|
terms_and_conditions_url_for_meeting_creators: Adres URL Regulaminu dla twórców spotkania
|
172
166
|
step:
|
173
167
|
announcement: Ogłoszenie
|
@@ -227,7 +221,7 @@ pl:
|
|
227
221
|
badges:
|
228
222
|
attended_meetings:
|
229
223
|
conditions:
|
230
|
-
|
224
|
+
- Zarejestruj się na spotkania, w których chcesz wziąć udział
|
231
225
|
description: Ta odznaka jest przyznawana, gdy weźmiesz udział w kilku spotkaniach twarzą w twarz.
|
232
226
|
description_another: Ten użytkownik uczestniczył w %{score} spotkaniach.
|
233
227
|
description_own: Uczestniczyłeś w %{score} spotkaniach.
|
@@ -241,7 +235,6 @@ pl:
|
|
241
235
|
attachment_collections: Folder
|
242
236
|
attachments: Załączniki
|
243
237
|
close: Zamknij
|
244
|
-
destroy: Usuń
|
245
238
|
edit: Edytuj
|
246
239
|
invalid_destroy:
|
247
240
|
proposals_count:
|
@@ -321,8 +314,6 @@ pl:
|
|
321
314
|
create:
|
322
315
|
invalid: Podczas tworzenia tego spotkania wystąpił błąd.
|
323
316
|
success: Spotkanie zostało utworzone. Zauważ, że jest ono nieopublikowane, musisz je opublikować ręcznie.
|
324
|
-
destroy:
|
325
|
-
success: Spotkanie zostało pomyślnie usunięte
|
326
317
|
edit:
|
327
318
|
title: Edytuj spotkanie
|
328
319
|
update: Aktualizuj
|
@@ -370,10 +361,10 @@ pl:
|
|
370
361
|
poll:
|
371
362
|
form:
|
372
363
|
announcement_html:
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
364
|
+
- Gdy pytanie otrzymuje odpowiedzi lub jest opublikowane/zamknięte, nie może być już edytowane.
|
365
|
+
- Możesz dodać pytanie w dowolnym momencie.
|
366
|
+
- Ankieta zostanie zamknięta po opublikowaniu wyników wszystkich utworzonych pytań.
|
367
|
+
- Odwiedź <a href='%{admin_link}'>stronę administracyjną głosowania</a>, aby wysłać pytania i opublikować wyniki.
|
377
368
|
registrations:
|
378
369
|
edit:
|
379
370
|
save: Zapisz
|
@@ -416,8 +407,6 @@ pl:
|
|
416
407
|
questionnaire:
|
417
408
|
update: "%{user_name} zaktualizował(a) kwestionariusz spotkania %{meeting_name}"
|
418
409
|
application_helper:
|
419
|
-
filter_category_values:
|
420
|
-
all: Wszystkie
|
421
410
|
filter_meeting_space_values:
|
422
411
|
all: Wszystkie
|
423
412
|
calendar:
|
@@ -529,7 +518,6 @@ pl:
|
|
529
518
|
location_hints_help: 'Wskazówki dotyczące lokalizacji: dodatkowe informacje. Przykład: piętro budynku, jeśli jest to spotkanie fizyczne, lub hasło do spotkania, jeśli odbywa się ono online i ma ograniczony dostęp.'
|
530
519
|
online_meeting_url_help: 'Link: zezwól uczestnikom na bezpośredni dostęp do Twojego spotkania'
|
531
520
|
registration_url_help: 'Link: zezwól uczestnikom na korzystanie z usługi zewnętrznej, której używasz do rejestracji'
|
532
|
-
select_a_category: Wybierz kategorię
|
533
521
|
select_a_meeting_type: Wybierz typ spotkania
|
534
522
|
select_a_registration_type: Wybierz typ rejestracji
|
535
523
|
select_an_iframe_access_level: Wybierz poziom dostępu iframe
|
@@ -540,9 +528,7 @@ pl:
|
|
540
528
|
see_all_withdrawn: Zobacz wszystkie wycofane spotkania
|
541
529
|
text_banner: Oglądasz listę spotkań wycofanych przez ich autorów. %{go_back_link}.
|
542
530
|
meeting:
|
543
|
-
close_meeting: Zamknij spotkanie
|
544
531
|
edit_close_meeting: Edytuj raport ze spotkania
|
545
|
-
edit_meeting: Edytuj spotkanie
|
546
532
|
join_meeting: Dołącz do spotkania
|
547
533
|
reply_poll: Odpowiedz na ankietę
|
548
534
|
view_poll: Zobacz ankietę
|
@@ -581,7 +567,6 @@ pl:
|
|
581
567
|
visit_finished: Zobacz poprzednie spotkanie
|
582
568
|
withdraw_btn_hint: Możesz wycofać swoje spotkanie, jeśli zmienisz zdanie. Spotkanie nie zostanie usunięte, pojawi się na liście wycofanych spotkań.
|
583
569
|
withdraw_confirmation_html: Czy na pewno chcesz wycofać to spotkanie?<br><br><strong>Tej akcji nie można anulować!</strong>
|
584
|
-
withdraw_meeting: Wycofaj spotkanie
|
585
570
|
update:
|
586
571
|
invalid: Wystąpił błąd podczas aktualizowania spotkania.
|
587
572
|
success: Spotkanie zostało zaktualizowane.
|
@@ -670,7 +655,6 @@ pl:
|
|
670
655
|
transparent: Transparentne
|
671
656
|
withdraw: Wycofany
|
672
657
|
withdraw:
|
673
|
-
error: Wystąpił błąd podczas wycofywania spotkania.
|
674
658
|
success: Spotkanie zostało pomyślnie wycofane.
|
675
659
|
metrics:
|
676
660
|
meetings:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -97,8 +97,6 @@ pt-BR:
|
|
97
97
|
'false': Não aceito
|
98
98
|
'true': Aceitou
|
99
99
|
meetings:
|
100
|
-
category_id_eq:
|
101
|
-
label: Categoria
|
102
100
|
closed_at_present:
|
103
101
|
label: Estado
|
104
102
|
values:
|
@@ -109,8 +107,6 @@ pt-BR:
|
|
109
107
|
values:
|
110
108
|
'false': Passado
|
111
109
|
'true': Próximos
|
112
|
-
scope_id_eq:
|
113
|
-
label: Âmbito
|
114
110
|
with_any_origin:
|
115
111
|
label: Origem
|
116
112
|
values:
|
@@ -159,8 +155,6 @@ pt-BR:
|
|
159
155
|
maps_enabled: Mapas ativados
|
160
156
|
registration_code_enabled: Código de registro habilitado
|
161
157
|
resources_permissions_enabled: Permissões de ações podem ser definidas para cada encontro
|
162
|
-
scope_id: Âmbito
|
163
|
-
scopes_enabled: Escopos habilitados
|
164
158
|
terms_and_conditions_url_for_meeting_creators: URL de Termos e condições para criadores da reunião
|
165
159
|
step:
|
166
160
|
announcement: Anúncio
|
@@ -220,7 +214,7 @@ pt-BR:
|
|
220
214
|
badges:
|
221
215
|
attended_meetings:
|
222
216
|
conditions:
|
223
|
-
|
217
|
+
- Registre-se nas reuniões que você deseja participar
|
224
218
|
description: Este selo é concedido quando você participa de várias reuniões presenciais.
|
225
219
|
description_another: Este usuário assistiu a %{score} reuniões.
|
226
220
|
description_own: Você participou de %{score} reuniões.
|
@@ -234,7 +228,6 @@ pt-BR:
|
|
234
228
|
attachment_collections: Pastas
|
235
229
|
attachments: Anexos
|
236
230
|
close: Fechar
|
237
|
-
destroy: Excluir
|
238
231
|
edit: Editar
|
239
232
|
invalid_destroy:
|
240
233
|
proposals_count:
|
@@ -312,12 +305,6 @@ pt-BR:
|
|
312
305
|
create:
|
313
306
|
invalid: Houve um problema ao criar esta reunião.
|
314
307
|
success: Reunião criada com sucesso. Note que ainda não foi publicada, você precisa publicá-la manualmente.
|
315
|
-
destroy:
|
316
|
-
invalid:
|
317
|
-
proposals_count:
|
318
|
-
one: A reunião não pode ser destruída porque tem %{count} proposta associada a ela.
|
319
|
-
other: A reunião não pode ser destruída porque tem %{count} propostas associadas a ela.
|
320
|
-
success: Reunião excluída com sucesso
|
321
308
|
edit:
|
322
309
|
title: Editar reuniões
|
323
310
|
update: Atualizar
|
@@ -402,8 +389,6 @@ pt-BR:
|
|
402
389
|
questionnaire:
|
403
390
|
update: "%{user_name} atualizou o questionário para a reunião %{meeting_name}"
|
404
391
|
application_helper:
|
405
|
-
filter_category_values:
|
406
|
-
all: Tudo
|
407
392
|
filter_meeting_space_values:
|
408
393
|
all: Todos
|
409
394
|
calendar:
|
@@ -511,7 +496,6 @@ pt-BR:
|
|
511
496
|
location_hints_help: 'Dicas de localização: informações adicionais Exemplo: o piso do edifício se é uma reunião presencial, ou a senha da reunião, se é uma reunião online com acesso restrito.'
|
512
497
|
online_meeting_url_help: 'Link: permitir que os participantes se conectem diretamente à sua reunião'
|
513
498
|
registration_url_help: 'Link: permitir que os participantes possam acessar um serviço externo que você está usando para inscrições'
|
514
|
-
select_a_category: Por favor, selecione uma categoria
|
515
499
|
select_a_meeting_type: Por favor, selecione um tipo de reunião
|
516
500
|
select_a_registration_type: Por favor, selecione um tipo de registro
|
517
501
|
select_an_iframe_access_level: Por favor, selecione um nível de acesso iframe
|
@@ -522,9 +506,7 @@ pt-BR:
|
|
522
506
|
see_all_withdrawn: Veja todas as reuniões retiradas
|
523
507
|
text_banner: Você está vendo a lista de reuniões retiradas por seus autores. %{go_back_link}.
|
524
508
|
meeting:
|
525
|
-
close_meeting: Reunião próxima
|
526
509
|
edit_close_meeting: Editar relatório da reunião
|
527
|
-
edit_meeting: Editar reuniões
|
528
510
|
join_meeting: Participe da reunião
|
529
511
|
meetings:
|
530
512
|
no_meetings_warning: Nenhuma reunião corresponde aos seus critérios de pesquisa ou não há nenhuma reunião agendada.
|
@@ -559,7 +541,6 @@ pt-BR:
|
|
559
541
|
visit_finished: Ver reunião anterior
|
560
542
|
withdraw_btn_hint: Você pode retirar sua reunião se mudar de ideia. A reunião não é excluída, ela aparecerá na lista de reuniões retiradas.
|
561
543
|
withdraw_confirmation_html: Tem certeza de que deseja retirar esta reunião?<br><br><strong>esta ação não pode ser cancelada!</strong>
|
562
|
-
withdraw_meeting: Retirar reunião
|
563
544
|
update:
|
564
545
|
invalid: Houve um problema ao atualizar a reunião.
|
565
546
|
success: Você atualizou a reunião com sucesso.
|
@@ -635,7 +616,6 @@ pt-BR:
|
|
635
616
|
transparent: Transparente
|
636
617
|
withdraw: Retirado
|
637
618
|
withdraw:
|
638
|
-
error: Ocorreu um erro ao retirar a reunião.
|
639
619
|
success: A reunião foi retirada com sucesso.
|
640
620
|
metrics:
|
641
621
|
meetings:
|
data/config/locales/pt.yml
CHANGED
@@ -56,8 +56,6 @@ pt:
|
|
56
56
|
admin:
|
57
57
|
filters:
|
58
58
|
meetings:
|
59
|
-
category_id_eq:
|
60
|
-
label: Categoria
|
61
59
|
closed_at_present:
|
62
60
|
label: Estado
|
63
61
|
values:
|
@@ -68,8 +66,6 @@ pt:
|
|
68
66
|
values:
|
69
67
|
'false': Passado
|
70
68
|
'true': Seguinte
|
71
|
-
scope_id_eq:
|
72
|
-
label: Âmbito
|
73
69
|
with_any_origin:
|
74
70
|
values:
|
75
71
|
user_group: Grupos de utilizadores
|
@@ -101,8 +97,6 @@ pt:
|
|
101
97
|
maps_enabled: Mapas activados
|
102
98
|
registration_code_enabled: Código de registo activado
|
103
99
|
resources_permissions_enabled: As permissões de ações podem ser definidas para cada reunião
|
104
|
-
scope_id: Âmbito
|
105
|
-
scopes_enabled: Âmbitos activados
|
106
100
|
terms_and_conditions_url_for_meeting_creators: URL dos termos e condições para criadores de reuniões
|
107
101
|
step:
|
108
102
|
announcement: Anúncio
|
@@ -159,7 +153,7 @@ pt:
|
|
159
153
|
badges:
|
160
154
|
attended_meetings:
|
161
155
|
conditions:
|
162
|
-
|
156
|
+
- Registe-se nas reuniões em que deseja participar
|
163
157
|
description: Este distintivo é concedido quando participa em várias reuniões presenciais.
|
164
158
|
description_another: Este participante assistiu a %{score} reuniões.
|
165
159
|
description_own: Participou em %{score} reuniões.
|
@@ -171,7 +165,6 @@ pt:
|
|
171
165
|
attachment_collections: Pastas
|
172
166
|
attachments: Anexos
|
173
167
|
close: Fechar
|
174
|
-
destroy: Eliminar
|
175
168
|
edit: Editar
|
176
169
|
invalid_destroy:
|
177
170
|
proposals_count:
|
@@ -237,8 +230,6 @@ pt:
|
|
237
230
|
meetings:
|
238
231
|
create:
|
239
232
|
success: A reunião foi criada com êxito. Tome nota que ainda não foi publicada, precisa de a publicar manualmente.
|
240
|
-
destroy:
|
241
|
-
success: Reunião eliminada corretamente
|
242
233
|
edit:
|
243
234
|
title: Editar reunião
|
244
235
|
update: Atualizar
|
@@ -304,9 +295,6 @@ pt:
|
|
304
295
|
value_types:
|
305
296
|
organizer_presenter:
|
306
297
|
not_found: 'O(A) organizador(a) não foi encontrado(a) na base de dados (ID: %{id})'
|
307
|
-
application_helper:
|
308
|
-
filter_category_values:
|
309
|
-
all: Todos
|
310
298
|
calendar_modal:
|
311
299
|
calendar_url: URL do calendário
|
312
300
|
export_calendar: Exportar calendário
|
@@ -377,14 +365,10 @@ pt:
|
|
377
365
|
location_hints_help: 'Sugestões de localização: informação adicional. Exemplo: o piso do edifício se for uma reunião presencial, ou a palavra-chave se for uma reunião on-line de acesso restrito.'
|
378
366
|
online_meeting_url_help: 'Ligação: permitir aos participantes ligarem-se directamente à sua reunião'
|
379
367
|
registration_url_help: 'Ligação: permitir aos participantes dirigirem-se ao serviço externo que está a usar para os registos'
|
380
|
-
select_a_category: Por favor selecione uma categoria
|
381
368
|
select_a_meeting_type: Por favor seleccione um tipo de reunião
|
382
369
|
select_a_registration_type: Por favor seleccione um tipo de registo
|
383
370
|
index:
|
384
371
|
new_meeting: Nova reunião
|
385
|
-
meeting:
|
386
|
-
close_meeting: Encerrar reunião
|
387
|
-
edit_meeting: Editar reunião
|
388
372
|
meetings:
|
389
373
|
upcoming_meetings_warning: Atualmente, não há reuniões agendadas, mas aqui pode encontrar listadas todas as reuniões passadas.
|
390
374
|
new:
|
data/config/locales/ro-RO.yml
CHANGED
@@ -86,8 +86,6 @@ ro:
|
|
86
86
|
admin:
|
87
87
|
filters:
|
88
88
|
meetings:
|
89
|
-
category_id_eq:
|
90
|
-
label: Categorie
|
91
89
|
closed_at_present:
|
92
90
|
label: Stadiu
|
93
91
|
values:
|
@@ -98,8 +96,6 @@ ro:
|
|
98
96
|
values:
|
99
97
|
'false': Trecute
|
100
98
|
'true': Viitoare
|
101
|
-
scope_id_eq:
|
102
|
-
label: Domeniu de interes
|
103
99
|
with_any_origin:
|
104
100
|
label: Origine
|
105
101
|
values:
|
@@ -136,14 +132,27 @@ ro:
|
|
136
132
|
maps_enabled: Hărți activate
|
137
133
|
registration_code_enabled: Cod de înregistrare activat
|
138
134
|
resources_permissions_enabled: Drepturile de acțiune pot fi setate pentru fiecare întâlnire
|
139
|
-
scope_id: Domeniu de interes
|
140
|
-
scopes_enabled: Domenii de interes activate
|
141
135
|
terms_and_conditions_url_for_meeting_creators: URL condiții pentru întrunirea creatorilor
|
142
136
|
step:
|
143
137
|
announcement: Anunţ
|
144
138
|
comments_blocked: Comentarii blocate
|
145
139
|
creation_enabled_for_participants: Crearea de şedinţe de către participanţi este activată
|
146
140
|
creation_enabled_for_user_groups: Crearea de ședințe de către grupuri de utilizatori activată
|
141
|
+
download_your_data:
|
142
|
+
help:
|
143
|
+
invites:
|
144
|
+
accepted_at: Data și ora când această invitație a fost acceptată
|
145
|
+
created_at: Data și ora la care această invitație a fost creată
|
146
|
+
id: Identificatorul unic pentru această invitație
|
147
|
+
meeting: Întâlnirea în care a avut loc această invitație
|
148
|
+
rejected_at: Data și ora când această invitație a fost respinsă
|
149
|
+
sent_at: Data și ora la care această invitație a fost trimisă
|
150
|
+
updated_at: Data și ora la care această invitație a fost actualizată ultima dată
|
151
|
+
registrations:
|
152
|
+
created_at: Data și ora când această înregistrare a fost creată
|
153
|
+
public_participation: Dacă această participare a fost făcută publică
|
154
|
+
updated_at: Data și ora la care această înregistrare a fost actualizată ultima dată
|
155
|
+
validated_at: Data și ora la care această înregistrare a fost validată
|
147
156
|
events:
|
148
157
|
meetings:
|
149
158
|
meeting_closed:
|
@@ -194,7 +203,7 @@ ro:
|
|
194
203
|
badges:
|
195
204
|
attended_meetings:
|
196
205
|
conditions:
|
197
|
-
|
206
|
+
- Înregistrează-te la întâlnirile la care vrei să participi
|
198
207
|
description: Această insignă este acordată atunci când participi la mai multe întâlniri față în față.
|
199
208
|
description_another: Acest participant a participat la %{score} întâlniri.
|
200
209
|
description_own: Ai participat la %{score} întâlniri.
|
@@ -206,7 +215,6 @@ ro:
|
|
206
215
|
attachment_collections: Dosare
|
207
216
|
attachments: Atașamente
|
208
217
|
close: Închide
|
209
|
-
destroy: Ștergere
|
210
218
|
edit: Editare
|
211
219
|
invalid_destroy:
|
212
220
|
proposals_count:
|
@@ -273,8 +281,6 @@ ro:
|
|
273
281
|
meetings:
|
274
282
|
create:
|
275
283
|
success: Întâlnirea a fost creată. Țineți cont că publicarea nu este automată, trebuie să o publicați manual.
|
276
|
-
destroy:
|
277
|
-
success: Şedinţa a fost ştearsă
|
278
284
|
edit:
|
279
285
|
title: Editați ședința
|
280
286
|
update: Actualizare
|
@@ -349,8 +355,6 @@ ro:
|
|
349
355
|
organizer_presenter:
|
350
356
|
not_found: 'Organizatorul nu a fost găsit în baza de date (ID: %{id})'
|
351
357
|
application_helper:
|
352
|
-
filter_category_values:
|
353
|
-
all: Toate
|
354
358
|
filter_meeting_space_values:
|
355
359
|
all: Toate
|
356
360
|
calendar_modal:
|
@@ -447,7 +451,6 @@ ro:
|
|
447
451
|
location_hints_help: 'Sugestii privind locaţia: informaţii suplimentare. Exemplu: parterul clădirii dacă este o întâlnire în persoană, sau parola dacă este vorba de o întâlnire online cu acces restrâns.'
|
448
452
|
online_meeting_url_help: 'Link: permite participanților să se conecteze direct la întâlnirea ta'
|
449
453
|
registration_url_help: 'Link: permite participanților să acceseze serviciul extern pe care îl folosești pentru înregistrare'
|
450
|
-
select_a_category: Te rugăm să selectezi o categorie
|
451
454
|
select_a_meeting_type: Te rugăm să selectezi un tip de ședință
|
452
455
|
select_a_registration_type: Te rugăm să selectezi un tip de înregistrare
|
453
456
|
index:
|
@@ -456,9 +459,6 @@ ro:
|
|
456
459
|
see_all: Vezi toate întâlnirile
|
457
460
|
see_all_withdrawn: Afișează toate întâlnirile anulate
|
458
461
|
text_banner: Vizualizezi lista de întâlniri anulate de autorii lor. %{go_back_link}.
|
459
|
-
meeting:
|
460
|
-
close_meeting: Închide ședința
|
461
|
-
edit_meeting: Editați ședința
|
462
462
|
meetings:
|
463
463
|
upcoming_meetings_warning: În prezent, nu există întâlniri programate, dar aici se află pe listă toate întâlnirile anterioare.
|
464
464
|
new:
|
@@ -492,7 +492,6 @@ ro:
|
|
492
492
|
visit_finished: Arată întâlniri deja desfășurate
|
493
493
|
withdraw_btn_hint: Poți să anulezi întâlnirea dacă te răzgândești. Întâlnirea nu va fi ștearsă, ci va apărea în lista de întâlniri anulate.
|
494
494
|
withdraw_confirmation_html: Sigur dorești să retragi această întâlnire?<br><br><strong>Această acțiune nu poate fi anulată!</strong>
|
495
|
-
withdraw_meeting: Anulează întâlnirea
|
496
495
|
update:
|
497
496
|
invalid: A apărut o eroare la actualizarea ședinței.
|
498
497
|
success: Ai actualizat întâlnirea cu succes.
|
@@ -570,6 +569,20 @@ ro:
|
|
570
569
|
description: Numărul de întâlniri create
|
571
570
|
object: ședințe
|
572
571
|
title: Întâlniri
|
572
|
+
open_data:
|
573
|
+
help:
|
574
|
+
meeting_comments:
|
575
|
+
comments: Observațiile privind întâlnirea
|
576
|
+
meetings:
|
577
|
+
attending_organizations: Organizațiile participante la întâlnire
|
578
|
+
audio_url: Înregistrarea audio a întâlnirii
|
579
|
+
location_hints: O indicație a locului în care se desfășoară întâlnirea
|
580
|
+
registration_type: Tipul de înregistrare pentru participare la întâlnire
|
581
|
+
registration_url: URL-ul pentru înregistrare ca participant la întâlnire
|
582
|
+
registrations_enabled: Dacă înregistrările participanților au fost permise
|
583
|
+
reserved_slots: Numărul de locuri rezervate pe care le are întâlnirea
|
584
|
+
type_of_meeting: Tipul întâlnirii
|
585
|
+
updated_at: Data și ora la care întâlnirea a fost actualizată ultima dată
|
573
586
|
participatory_spaces:
|
574
587
|
highlighted_meetings:
|
575
588
|
past_meetings: Întâlniri anterioare
|
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: Комментарии отключены
|
@@ -127,7 +120,7 @@ ru:
|
|
127
120
|
badges:
|
128
121
|
attended_meetings:
|
129
122
|
conditions:
|
130
|
-
|
123
|
+
- Зарегистрируйтесь на встречи, в которых вы хотите принять участие
|
131
124
|
description: Этот значок будет получен, когда вы примете участие в нескольких встречах лицом к лицу.
|
132
125
|
description_another: Этот участник принял участие в %{score} встречах.
|
133
126
|
description_own: Вы приняли участие в %{score} встречах.
|
@@ -138,7 +131,6 @@ ru:
|
|
138
131
|
attachment_collections: Папки
|
139
132
|
attachments: Прикрепленные файлы
|
140
133
|
close: Закрыть
|
141
|
-
destroy: Удалить
|
142
134
|
edit: Редактировать
|
143
135
|
preview: Предпросмотр
|
144
136
|
registrations: Регистрации
|
@@ -195,8 +187,6 @@ ru:
|
|
195
187
|
close: Закрыть
|
196
188
|
title: Закрыть встречу
|
197
189
|
meetings:
|
198
|
-
destroy:
|
199
|
-
success: Встреча успешно удалена
|
200
190
|
edit:
|
201
191
|
update: Обновить
|
202
192
|
index:
|
@@ -264,8 +254,6 @@ ru:
|
|
264
254
|
category: Категория
|
265
255
|
date: Дата
|
266
256
|
search: Поиск
|
267
|
-
meeting:
|
268
|
-
close_meeting: Закрыть встречу
|
269
257
|
meetings:
|
270
258
|
upcoming_meetings_warning: Сейчас нет запланированных встреч, но здесь вы можете найти список всех прошедших встреч.
|
271
259
|
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é
|
@@ -128,7 +121,7 @@ sk:
|
|
128
121
|
badges:
|
129
122
|
attended_meetings:
|
130
123
|
conditions:
|
131
|
-
|
124
|
+
- Registrujte sa pre stretnutia, ktorých sa chcete zúčastniť
|
132
125
|
description: Tento odznak ste dostali za aktívnu účasť na stretnutiach naživo.
|
133
126
|
description_another: Tento účastník sa zúčastnil %{score} stretnutí.
|
134
127
|
description_own: Zúčastnili ste sa %{score} stretnutí.
|
@@ -140,7 +133,6 @@ sk:
|
|
140
133
|
attachment_collections: Zložky
|
141
134
|
attachments: Prílohy
|
142
135
|
close: Zavrieť
|
143
|
-
destroy: Odstrániť
|
144
136
|
edit: Upraviť
|
145
137
|
preview: Náhľad
|
146
138
|
registrations: Registrácia
|
@@ -197,8 +189,6 @@ sk:
|
|
197
189
|
close: Zavrieť
|
198
190
|
title: Zatvorte schôdzku
|
199
191
|
meetings:
|
200
|
-
destroy:
|
201
|
-
success: Stretnutie bolo úspešne vymazané
|
202
192
|
edit:
|
203
193
|
update: Aktualizácia
|
204
194
|
form:
|
@@ -277,8 +267,6 @@ sk:
|
|
277
267
|
category: Kategória
|
278
268
|
date: dátum
|
279
269
|
search: Vyhľadávanie
|
280
|
-
meeting:
|
281
|
-
close_meeting: Zatvorte schôdzku
|
282
270
|
meetings:
|
283
271
|
upcoming_meetings_warning: V súčasnosti neexistujú žiadne plánované schôdzky, ale nájdete tu všetky minulé stretnutia.
|
284
272
|
registration_confirm:
|