decidim-meetings 0.25.0.rc4 → 0.26.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/heading.erb +1 -1
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings_cell.rb +1 -1
- data/app/cells/decidim/meetings/content_blocks/{upcoming_events → upcoming_meetings}/show.erb +6 -6
- data/app/cells/decidim/meetings/content_blocks/{upcoming_events_cell.rb → upcoming_meetings_cell.rb} +11 -10
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +10 -0
- data/app/cells/decidim/meetings/meeting_m_cell.rb +48 -0
- data/app/cells/decidim/meetings/meeting_s_cell.rb +22 -0
- data/app/cells/decidim/meetings/meetings_map_cell.rb +6 -0
- data/app/cells/decidim/meetings/online_meeting_cell.rb +23 -8
- data/app/cells/decidim/meetings/online_meeting_link/show.erb +2 -2
- data/app/cells/decidim/meetings/online_meeting_link_cell.rb +1 -5
- data/app/cells/decidim/meetings/public_participants_list_cell.rb +1 -0
- data/app/cells/decidim/meetings/question_responses_cell.rb +1 -1
- data/app/commands/decidim/meetings/admin/create_meeting.rb +11 -1
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +3 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +8 -2
- data/app/commands/decidim/meetings/create_meeting.rb +14 -2
- data/app/commands/decidim/meetings/update_meeting.rb +5 -2
- data/app/commands/decidim/meetings/withdraw_meeting.rb +39 -0
- data/app/controllers/concerns/decidim/meetings/filterable.rb +33 -0
- data/app/controllers/decidim/meetings/directory/application_controller.rb +16 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +31 -20
- data/app/controllers/decidim/meetings/live_events_controller.rb +7 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +19 -17
- data/app/events/decidim/meetings/close_meeting_event.rb +1 -3
- data/app/events/decidim/meetings/create_meeting_event.rb +2 -4
- data/app/events/decidim/meetings/meeting_event.rb +37 -0
- data/app/events/decidim/meetings/meeting_registrations_enabled_event.rb +1 -3
- data/app/events/decidim/meetings/meeting_registrations_over_percentage_event.rb +2 -4
- data/app/events/decidim/meetings/registration_code_validated_event.rb +2 -4
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +1 -3
- data/app/events/decidim/meetings/update_meeting_event.rb +1 -3
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +4 -13
- data/app/forms/decidim/meetings/admin/meeting_form.rb +34 -46
- data/app/forms/decidim/meetings/base_meeting_form.rb +59 -0
- data/app/forms/decidim/meetings/close_meeting_form.rb +6 -6
- data/app/forms/decidim/meetings/meeting_form.rb +30 -46
- data/app/helpers/decidim/meetings/application_helper.rb +13 -1
- data/app/helpers/decidim/meetings/directory/application_helper.rb +150 -0
- data/app/helpers/decidim/meetings/meeting_cells_helper.rb +4 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +3 -0
- data/app/models/decidim/meetings/meeting.rb +53 -1
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +27 -11
- data/app/packs/src/decidim/meetings/meetings_form.js +19 -0
- data/app/packs/src/decidim/meetings/meetings_polls.js +31 -26
- data/app/permissions/decidim/meetings/permissions.rb +9 -1
- data/app/presenters/decidim/meetings/meeting_edition_presenter.rb +14 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +13 -6
- data/app/services/decidim/meetings/diff_renderer.rb +4 -4
- data/app/services/decidim/meetings/directory/meeting_search.rb +53 -0
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +1 -1
- data/app/services/decidim/meetings/meeting_search.rb +15 -2
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +16 -1
- data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +15 -3
- data/app/views/decidim/meetings/directory/meetings/_filters.html.erb +34 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -18
- data/app/views/decidim/meetings/meetings/_filters.html.erb +2 -0
- data/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_form.html.erb +14 -3
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_meetings.html.erb +18 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +1 -0
- data/app/views/decidim/meetings/meetings/show.html.erb +12 -13
- data/config/locales/ar.yml +2 -9
- data/config/locales/ca.yml +87 -22
- data/config/locales/cs.yml +83 -13
- data/config/locales/de.yml +2 -11
- data/config/locales/el.yml +2 -9
- data/config/locales/en.yml +41 -13
- data/config/locales/es-MX.yml +96 -9
- data/config/locales/es-PY.yml +96 -9
- data/config/locales/es.yml +136 -8
- data/config/locales/eu.yml +230 -11
- data/config/locales/fi-plain.yml +82 -13
- data/config/locales/fi.yml +83 -13
- data/config/locales/fr-CA.yml +114 -11
- data/config/locales/fr.yml +118 -14
- data/config/locales/ga-IE.yml +213 -0
- data/config/locales/gl.yml +30 -11
- data/config/locales/hu.yml +2 -9
- data/config/locales/id-ID.yml +2 -9
- data/config/locales/it.yml +43 -13
- data/config/locales/ja.yml +86 -16
- data/config/locales/lb-LU.yml +210 -0
- data/config/locales/lb.yml +410 -0
- data/config/locales/lv.yml +2 -9
- data/config/locales/nl.yml +66 -13
- data/config/locales/no.yml +2 -9
- data/config/locales/pl.yml +36 -11
- data/config/locales/pt-BR.yml +4 -14
- data/config/locales/pt.yml +153 -9
- data/config/locales/ro-RO.yml +193 -101
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk.yml +2 -9
- data/config/locales/sl.yml +0 -3
- data/config/locales/sv.yml +108 -9
- data/config/locales/tr-TR.yml +2 -9
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/zh-CN.yml +2 -9
- data/db/migrate/20210519133705_add_comments_availability_columns_to_meetings_table.rb +14 -0
- data/db/migrate/20210727085318_add_state_field_to_meeting.rb +7 -0
- data/db/migrate/20210903143040_add_iframe_access_level_to_decidim_meetings.rb +7 -0
- data/db/migrate/20210922140454_transform_show_embedded_iframe_column.rb +15 -0
- data/db/migrate/20210928095036_rename_upcoming_events_content_block_to_upcoming_meetings.rb +13 -0
- data/lib/decidim/api/meeting_type.rb +2 -1
- data/lib/decidim/meetings/component.rb +17 -7
- data/lib/decidim/meetings/directory_engine.rb +3 -3
- data/lib/decidim/meetings/engine.rb +8 -1
- data/lib/decidim/meetings/meeting_serializer.rb +2 -2
- data/lib/decidim/meetings/test/factories.rb +24 -3
- data/lib/decidim/meetings/test/notifications_handling.rb +39 -0
- data/lib/decidim/meetings/test/translated_event.rb +22 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +5 -0
- metadata +38 -20
data/config/locales/pl.yml
CHANGED
@@ -22,6 +22,7 @@ pl:
|
|
22
22
|
decidim_user_group_id: Grupa użytkowników
|
23
23
|
description: Opis
|
24
24
|
end_time: Czas zakończenia
|
25
|
+
id: Numer ID
|
25
26
|
location: Miejsce
|
26
27
|
location_hints: Wskazówki co do miejsca
|
27
28
|
online_meeting_url: Adres URL spotkania online
|
@@ -59,7 +60,7 @@ pl:
|
|
59
60
|
decidim/meetings/meeting:
|
60
61
|
one: Spotkanie
|
61
62
|
few: Spotkania
|
62
|
-
many:
|
63
|
+
many: Spotkań
|
63
64
|
other: Spotkania
|
64
65
|
decidim/meetings/minutes:
|
65
66
|
one: Minuta
|
@@ -69,10 +70,20 @@ pl:
|
|
69
70
|
decidim/meetings/registration:
|
70
71
|
one: Rejestracja
|
71
72
|
few: Rejestracje
|
72
|
-
many:
|
73
|
+
many: Rejestracji
|
73
74
|
other: Rejestracje
|
74
75
|
decidim:
|
75
76
|
admin:
|
77
|
+
filters:
|
78
|
+
meetings:
|
79
|
+
category_id_eq:
|
80
|
+
label: Kategoria
|
81
|
+
closed_at_present:
|
82
|
+
label: Państwo
|
83
|
+
values:
|
84
|
+
'true': Zamknięte
|
85
|
+
is_upcoming_true:
|
86
|
+
label: Data
|
76
87
|
meeting_copies:
|
77
88
|
create:
|
78
89
|
error: Wystąpił błąd podczas duplikowania tego spotkania.
|
@@ -119,6 +130,7 @@ pl:
|
|
119
130
|
email_subject: Spotkanie "%{resource_title}" zostało zakończone
|
120
131
|
notification_title: Spotkanie <a href="%{resource_path}">%{resource_title}</a> zostało zakończone.
|
121
132
|
meeting_created:
|
133
|
+
button_text: Zarejestruj się na spotkanie
|
122
134
|
email_intro: Spotkanie "%{resource_title}" zostało dodane do przestrzeni "%{participatory_space_title}", którą obserwujesz.
|
123
135
|
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz przestrzeń "%{participatory_space_title}". Aby przestać otrzymywać powiadomienia kliknij w powyższy link, a następnie na stronie spotkania kliknij w przycisk obserwowania.
|
124
136
|
email_subject: Nowe spotkanie zostało dodane do %{participatory_space_title}
|
@@ -177,6 +189,7 @@ pl:
|
|
177
189
|
few: 'Nie można usunąć spotkania ponieważ ma ono %{count} powiązane propozycje:'
|
178
190
|
many: 'Nie można usunąć spotkania ponieważ ma ono %{count} powiązanych propozycji:'
|
179
191
|
other: 'Nie można usunąć spotkania ponieważ ma ono %{count} powiązanych propozycji:'
|
192
|
+
manage_poll: Zarządzaj głosowaniem
|
180
193
|
new: Nowe spotkanie
|
181
194
|
preview: Podgląd
|
182
195
|
registrations: Rejestracje
|
@@ -253,6 +266,7 @@ pl:
|
|
253
266
|
success: Spotkanie zostało zakończone
|
254
267
|
create:
|
255
268
|
invalid: Podczas tworzenia tego spotkania wystąpił błąd
|
269
|
+
success: Spotkanie zostało utworzone. Zauważ, że jest ono nieopublikowane, musisz je opublikować ręcznie.
|
256
270
|
destroy:
|
257
271
|
invalid:
|
258
272
|
proposals_count:
|
@@ -280,6 +294,9 @@ pl:
|
|
280
294
|
new:
|
281
295
|
create: Utwórz
|
282
296
|
title: Utwórz spotkanie
|
297
|
+
publish:
|
298
|
+
invalid: Wystąpił błąd podczas publikowania tego spotkania
|
299
|
+
success: Spotkanie zostało opublikowane
|
283
300
|
service:
|
284
301
|
description: Opis
|
285
302
|
down: Na dół
|
@@ -290,9 +307,15 @@ pl:
|
|
290
307
|
services:
|
291
308
|
add_service: Dodaj usługę
|
292
309
|
services: Usługi
|
310
|
+
unpublish:
|
311
|
+
invalid: Wystąpił błąd podczas ukrywania tego spotkania
|
312
|
+
success: Spotkanie zostało ukryte
|
293
313
|
update:
|
294
314
|
invalid: Podczas aktualizowania tego spotkania wystąpił błąd
|
295
315
|
success: Spotkanie zostało zaktualizowane
|
316
|
+
meetings_poll:
|
317
|
+
form:
|
318
|
+
title: Edytuj kartę do głosowania dla %{questionnaire_for}
|
296
319
|
models:
|
297
320
|
meeting:
|
298
321
|
name: Spotkanie
|
@@ -340,20 +363,13 @@ pl:
|
|
340
363
|
export_calendar: Eksportuj kalendarz
|
341
364
|
conference_venues: Sale konferencyjne
|
342
365
|
content_blocks:
|
343
|
-
|
344
|
-
|
345
|
-
upcoming_events: Nadchodzące spotkania
|
346
|
-
view_all_events: Pokaż wszystkie
|
366
|
+
upcoming_meetings:
|
367
|
+
view_all_meetings: Pokaż wszystkie
|
347
368
|
directory:
|
348
369
|
meetings:
|
349
370
|
index:
|
350
|
-
all: Wszystko
|
351
|
-
date: Data
|
352
371
|
meetings: Spotkania
|
353
|
-
past: Przeszłe
|
354
|
-
search: Szukaj
|
355
372
|
space_type: Przestrzeń partycypacyjna
|
356
|
-
upcoming: Nadchodzące
|
357
373
|
last_activity:
|
358
374
|
meeting_updated_at_html: "<span>Spotkanie zaktualizowane o %{link}</span>"
|
359
375
|
new_meeting_at_html: "<span>Nowe spotkanie %{link}</span>"
|
@@ -492,6 +508,15 @@ pl:
|
|
492
508
|
official_meeting: Spotkanie oficjalne
|
493
509
|
start_time: Data rozpoczęcia
|
494
510
|
title: Tytuł
|
511
|
+
polls:
|
512
|
+
questions:
|
513
|
+
closed_question:
|
514
|
+
question_results: Wyniki wyborów
|
515
|
+
published_question:
|
516
|
+
max_choices_alert: Wybrano zbyt wiele opcji
|
517
|
+
question: Pytanie
|
518
|
+
question_replied: Odpowiedziano na pytanie
|
519
|
+
reply_question: Odpowiedz na pytanie
|
495
520
|
read_more: "(zobacz więcej)"
|
496
521
|
registration_mailer:
|
497
522
|
confirmation:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
pt:
|
1
|
+
pt-BR:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
agenda:
|
@@ -346,20 +346,13 @@ pt:
|
|
346
346
|
export_calendar: Calendário de exportação
|
347
347
|
conference_venues: Locais de conferência
|
348
348
|
content_blocks:
|
349
|
-
|
350
|
-
|
351
|
-
upcoming_events: Próximos encontros
|
352
|
-
view_all_events: Ver tudo
|
349
|
+
upcoming_meetings:
|
350
|
+
view_all_meetings: Ver tudo
|
353
351
|
directory:
|
354
352
|
meetings:
|
355
353
|
index:
|
356
|
-
all: Todos
|
357
|
-
date: Encontro
|
358
354
|
meetings: Reuniões
|
359
|
-
past: Passado
|
360
|
-
search: Pesquisa
|
361
355
|
space_type: Espaço participativo
|
362
|
-
upcoming: próximos
|
363
356
|
last_activity:
|
364
357
|
meeting_updated_at_html: "<span>Novo debate em %{link}</span>"
|
365
358
|
new_meeting_at_html: "<span>Nova reunião em %{link}</span>"
|
@@ -453,10 +446,6 @@ pt:
|
|
453
446
|
back: Voltar
|
454
447
|
create: Criar
|
455
448
|
title: Criar uma reunião
|
456
|
-
online_meeting_link:
|
457
|
-
join: Participe da reunião
|
458
|
-
link_available_soon: Link disponível em breve
|
459
|
-
live_event: Esta reunião está acontecendo agora
|
460
449
|
registration_confirm:
|
461
450
|
cancel: Cancelar
|
462
451
|
confirm: confirme
|
@@ -482,6 +471,7 @@ pt:
|
|
482
471
|
one: "%{count} slot restante"
|
483
472
|
other: "%{count} slots restantes"
|
484
473
|
view: Visualizar
|
474
|
+
visit_finished: Ver reunião anterior
|
485
475
|
update:
|
486
476
|
invalid: Houve um problema ao atualizar a reunião.
|
487
477
|
success: Você atualizou a reunião com sucesso.
|
data/config/locales/pt.yml
CHANGED
@@ -8,29 +8,38 @@ pt:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Número de participantes
|
10
10
|
attending_organizations: Lista de organizações que participaram
|
11
|
+
audio_url: URL do áudio
|
11
12
|
closing_report: Atas
|
12
13
|
closing_visible: Está visível
|
13
14
|
contributions_count: Número de contribuições
|
14
15
|
proposal_ids: Propostas criadas na reunião
|
16
|
+
video_url: URL do vídeo
|
15
17
|
meeting:
|
16
18
|
address: Endereço
|
17
19
|
available_slots: Slots disponíveis para esta reunião
|
20
|
+
customize_registration_email: Personalizar o e-mail de registo
|
18
21
|
decidim_category_id: Categoria
|
19
22
|
decidim_scope_id: Âmbito
|
20
23
|
decidim_user_group_id: Grupo de utilizadores
|
21
24
|
description: Descrição
|
22
25
|
end_time: Hora de fim
|
26
|
+
id: IDENTIFICAÇÃO
|
23
27
|
location: Localização
|
24
28
|
location_hints: Dicas de localização
|
29
|
+
online_meeting_url: URL de reunião on-line
|
25
30
|
organizer_gid: Criar como
|
26
31
|
organizer_id: Organizador
|
27
32
|
private_meeting: Reunião privada
|
33
|
+
registration_email_custom_content: Conteúdo personalizado do e-mail de registo
|
28
34
|
registration_form_enabled: Formulário de registo ativado
|
29
35
|
registration_terms: Termos de registo
|
36
|
+
registration_url: URL de registo
|
30
37
|
registrations_enabled: Registos ativados
|
38
|
+
show_embedded_iframe: Mostrar iframe embutido para este URL
|
31
39
|
start_time: Hora de início
|
32
40
|
title: Título
|
33
41
|
transparent: Transparente
|
42
|
+
type_of_meeting: Tipo
|
34
43
|
errors:
|
35
44
|
models:
|
36
45
|
meeting_agenda:
|
@@ -62,6 +71,34 @@ pt:
|
|
62
71
|
other: Registos
|
63
72
|
decidim:
|
64
73
|
admin:
|
74
|
+
filters:
|
75
|
+
meetings:
|
76
|
+
category_id_eq:
|
77
|
+
label: Categoria
|
78
|
+
closed_at_present:
|
79
|
+
label: Estado
|
80
|
+
values:
|
81
|
+
'false': Abertas
|
82
|
+
'true': Fechado
|
83
|
+
is_upcoming_true:
|
84
|
+
label: Datas
|
85
|
+
values:
|
86
|
+
'false': Passado
|
87
|
+
'true': Seguinte
|
88
|
+
origin_eq:
|
89
|
+
label: Origem
|
90
|
+
values:
|
91
|
+
citizen: Cidadão
|
92
|
+
official: Oficial
|
93
|
+
user_group: Grupos de utilizadores
|
94
|
+
scope_id_eq:
|
95
|
+
label: Âmbito
|
96
|
+
type_eq:
|
97
|
+
label: Tipo de reunião
|
98
|
+
values:
|
99
|
+
hybrid: Ambos
|
100
|
+
in_person: Presencialmente
|
101
|
+
online: On-line
|
65
102
|
meeting_copies:
|
66
103
|
create:
|
67
104
|
error: Ocorreu um problema ao duplicar esta reunião.
|
@@ -73,6 +110,7 @@ pt:
|
|
73
110
|
components:
|
74
111
|
meetings:
|
75
112
|
actions:
|
113
|
+
comment: Comentários
|
76
114
|
join: Adira
|
77
115
|
name: Reuniões
|
78
116
|
settings:
|
@@ -83,7 +121,12 @@ pt:
|
|
83
121
|
creation_enabled_for_participants: Os participantes podem criar reuniões
|
84
122
|
default_registration_terms: Termos de registo predefinidos
|
85
123
|
enable_pads_creation: Ativar criação de blocos
|
124
|
+
maps_enabled: Mapas activados
|
125
|
+
registration_code_enabled: Código de registo activado
|
86
126
|
resources_permissions_enabled: As permissões de ações podem ser definidas para cada reunião
|
127
|
+
scope_id: Âmbito
|
128
|
+
scopes_enabled: Âmbitos activados
|
129
|
+
terms_and_conditions_url_for_meeting_creators: URL dos termos e condições para criadores de reuniões
|
87
130
|
step:
|
88
131
|
announcement: Anúncio
|
89
132
|
comments_blocked: Comentários bloqueados
|
@@ -103,6 +146,7 @@ pt:
|
|
103
146
|
email_subject: A reunião "%{resource_title}" foi encerrada
|
104
147
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi encerrada.
|
105
148
|
meeting_created:
|
149
|
+
button_text: Registe-se para a reunião
|
106
150
|
email_intro: A reunião "%{resource_title}" foi adicionada a "%{participatory_space_title}" que você segue.
|
107
151
|
email_outro: Recebeu esta notificação porque segue "%{participatory_space_title}". Pode deixar de segui-lo a partir da hiperligação anterior.
|
108
152
|
email_subject: Nova reunião adicionada a %{participatory_space_title}
|
@@ -134,6 +178,9 @@ pt:
|
|
134
178
|
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
135
179
|
email_subject: A reunião "%{resource_title}" começará em menos de 48h.
|
136
180
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> começará em menos de 48h.
|
181
|
+
forms:
|
182
|
+
meetings:
|
183
|
+
attendees_count_help_text: Não se esquece de incluir o número total de participantes no seu evento. Seja presencialmente, híbrido, ou on-line, o importante é saber quantas pessoas estão envolvidas.
|
137
184
|
gamification:
|
138
185
|
badges:
|
139
186
|
attended_meetings:
|
@@ -159,6 +206,7 @@ pt:
|
|
159
206
|
proposals_count:
|
160
207
|
one: 'A reunião não pode ser destruída porque tem %{count} proposta associada:'
|
161
208
|
other: 'A reunião não pode ser destruída porque tem %{count} propostas associadas:'
|
209
|
+
manage_poll: Gerir inquérito
|
162
210
|
new: Nova reunião
|
163
211
|
preview: Pré-visualização
|
164
212
|
registrations: Registos
|
@@ -195,6 +243,8 @@ pt:
|
|
195
243
|
invalid: Ocorreu um problema ao atualizar esta agenda
|
196
244
|
success: Agenda atualizada corretamente
|
197
245
|
exports:
|
246
|
+
answers: Respostas
|
247
|
+
meeting_comments: Comentários
|
198
248
|
meetings: Reuniões
|
199
249
|
registrations: Registos
|
200
250
|
invite_join_meeting_mailer:
|
@@ -234,6 +284,7 @@ pt:
|
|
234
284
|
success: Reunião encerrada corretamente
|
235
285
|
create:
|
236
286
|
invalid: Ocorreu um problema ao criar esta reunião
|
287
|
+
success: A reunião foi criada com êxito. Tome nota que ainda não foi publicada, precisa de a publicar manualmente.
|
237
288
|
destroy:
|
238
289
|
invalid:
|
239
290
|
proposals_count:
|
@@ -241,15 +292,27 @@ pt:
|
|
241
292
|
other: A reunião não pode ser destruída porque tem %{count} propostas associadas
|
242
293
|
success: Reunião eliminada corretamente
|
243
294
|
edit:
|
295
|
+
title: Editar reunião
|
244
296
|
update: Atualizar
|
245
297
|
form:
|
246
298
|
address_help: 'Endereço: utilizado por Geocoder para encontrar a localização'
|
299
|
+
available_slots_help: Deixar em 0 se tiver número ilimitado de intervalos de tempo disponíveis
|
300
|
+
disclaimer: 'Declinação de responsabilidade: Ao usar um registo externo ao sistema fica ao corrente que os organizadores de %{organization} não são responsáveis pelos dados fornecidos pelo utilizador ao serviço externo.'
|
247
301
|
location_help: 'Localização: mensagem direcionada para os utilizadores indicando o local de encontro'
|
302
|
+
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.'
|
303
|
+
online_meeting_url_help: 'Ligação: permitir aos participantes ligarem-se directamente à sua reunião'
|
304
|
+
registration_email_help: Este texto irá aparecer no meio do e-mail de confirmação de registo. Logo a seguir ao código de registo.
|
305
|
+
registration_url_help: 'Ligação: permitir aos participantes dirigirem-se ao serviço externo que está a usar para os registos'
|
306
|
+
select_a_meeting_type: Por favor seleccione um tipo de reunião
|
307
|
+
select_a_registration_type: Por favor seleccione um tipo de registo
|
248
308
|
index:
|
249
309
|
title: Reuniões
|
250
310
|
new:
|
251
311
|
create: Criar
|
252
312
|
title: Criar reunião
|
313
|
+
publish:
|
314
|
+
invalid: Ocorreu um problema ao publicar esta reunião.
|
315
|
+
success: Reunião publicada com êxito
|
253
316
|
service:
|
254
317
|
description: Descrição
|
255
318
|
down: Abaixo
|
@@ -260,9 +323,18 @@ pt:
|
|
260
323
|
services:
|
261
324
|
add_service: Adicionar serviço
|
262
325
|
services: Serviços
|
326
|
+
unpublish:
|
327
|
+
invalid: Ocorreu um problema ao remover a publicação desta reunião.
|
328
|
+
success: Publicação da reunião retirada com êxito
|
263
329
|
update:
|
264
330
|
invalid: Ocorreu um problema ao atualizar esta reunião
|
265
331
|
success: Reunião atualizada corretamente
|
332
|
+
meetings_poll:
|
333
|
+
form:
|
334
|
+
title: Editar questionário do inquérito para %{questionnaire_for}
|
335
|
+
update:
|
336
|
+
invalid: Ocorreu um problema ao actualizar o inquérito desta reunião
|
337
|
+
success: Inquérito da reunião actualizado com êxito
|
266
338
|
models:
|
267
339
|
meeting:
|
268
340
|
name: Reunião
|
@@ -308,22 +380,21 @@ pt:
|
|
308
380
|
export_calendar: Exportar calendário
|
309
381
|
conference_venues: Locais da Conferência
|
310
382
|
content_blocks:
|
311
|
-
|
312
|
-
|
313
|
-
upcoming_events: Próximas reuniões
|
314
|
-
view_all_events: Ver todos
|
383
|
+
upcoming_meetings:
|
384
|
+
view_all_meetings: Ver todos
|
315
385
|
directory:
|
316
386
|
meetings:
|
317
387
|
index:
|
318
|
-
all: Todos
|
319
|
-
date: Data
|
320
388
|
meetings: Reuniões
|
321
|
-
past: Passado
|
322
|
-
search: Pesquisar
|
323
389
|
space_type: Espaço participativo
|
324
|
-
upcoming: Próximas
|
325
390
|
last_activity:
|
391
|
+
meeting_updated_at_html: "<span>Proposta actualizada em %{link}</span>"
|
326
392
|
new_meeting_at_html: "<span>Nova reunião em %{link}</span>"
|
393
|
+
layouts:
|
394
|
+
live_event:
|
395
|
+
administrate: Administradores
|
396
|
+
close: Fechar
|
397
|
+
questions: Pergunta
|
327
398
|
mailer:
|
328
399
|
invite_join_meeting_mailer:
|
329
400
|
invite:
|
@@ -333,7 +404,19 @@ pt:
|
|
333
404
|
subject: O seu registo da reunião foi confirmado
|
334
405
|
meeting:
|
335
406
|
not_allowed: Não tem permissão para ver esta reunião
|
407
|
+
meeting_closes:
|
408
|
+
edit:
|
409
|
+
back: Recuar
|
410
|
+
close: Encerrar reunião
|
411
|
+
title: Encerrar reunião
|
336
412
|
meetings:
|
413
|
+
calendar_modal:
|
414
|
+
add_to_calendar: Adicionar ao calendário
|
415
|
+
apple: Adicionar ao calendário Apple
|
416
|
+
close_window: Fechar janela
|
417
|
+
full_details_html: Para detalhes completos ir a %{link}
|
418
|
+
google: Adicionar ao calendário Google
|
419
|
+
outlook: Adicionar ao calendário Outlook
|
337
420
|
count:
|
338
421
|
meetings_count:
|
339
422
|
one: "%{count} reunião"
|
@@ -346,12 +429,15 @@ pt:
|
|
346
429
|
title: Editar a Sua Reunião
|
347
430
|
update: Atualizar
|
348
431
|
filters:
|
432
|
+
activity: A minha atividade
|
433
|
+
all: Todos
|
349
434
|
category: Categoria
|
350
435
|
date: Data
|
351
436
|
date_values:
|
352
437
|
all: Todos
|
353
438
|
past: Passado
|
354
439
|
upcoming: Próximas
|
440
|
+
my_meetings: As minhas reuniões
|
355
441
|
origin: Origem
|
356
442
|
origin_values:
|
357
443
|
all: Todos
|
@@ -360,6 +446,12 @@ pt:
|
|
360
446
|
user_groups: Grupos
|
361
447
|
scope: Âmbito
|
362
448
|
search: Pesquisar
|
449
|
+
type: Tipo
|
450
|
+
type_values:
|
451
|
+
all: Todos
|
452
|
+
hybrid: Ambos
|
453
|
+
in_person: Presencial
|
454
|
+
online: On-line
|
363
455
|
filters_small_view:
|
364
456
|
close_modal: Fechar modal
|
365
457
|
filter: Filtrar
|
@@ -367,9 +459,16 @@ pt:
|
|
367
459
|
unfold: Desdobrar
|
368
460
|
form:
|
369
461
|
address_help: 'Endereço: utilizado pelo Geocoder para encontrar a localização'
|
462
|
+
available_slots_help: Deixar em 0 se tiver número ilimitado de intervalos de tempo disponíveis
|
370
463
|
create_as: Criar reunião como
|
464
|
+
disclaimer: 'Declinação de responsabilidade: Ao usar um registo externo ao sistema fica ao corrente que os organizadores de %{organization} não são responsáveis pelos dados fornecidos pelo utilizador ao serviço externo.'
|
371
465
|
location_help: 'Localização: mensagem direcionada aos utilizadores sugerindo o local onde se encontrarem'
|
466
|
+
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.'
|
467
|
+
online_meeting_url_help: 'Ligação: permitir aos participantes ligarem-se directamente à sua reunião'
|
468
|
+
registration_url_help: 'Ligação: permitir aos participantes dirigirem-se ao serviço externo que está a usar para os registos'
|
372
469
|
select_a_category: Por favor selecione uma categoria
|
470
|
+
select_a_meeting_type: Por favor seleccione um tipo de reunião
|
471
|
+
select_a_registration_type: Por favor seleccione um tipo de registo
|
373
472
|
index:
|
374
473
|
new_meeting: Nova reunião
|
375
474
|
meeting_minutes:
|
@@ -387,11 +486,19 @@ pt:
|
|
387
486
|
show:
|
388
487
|
attendees: Contagem de participantes
|
389
488
|
back: Retroceder à lista
|
489
|
+
close_meeting: Encerrar reunião
|
390
490
|
contributions: Contagem de contribuições
|
391
491
|
date: Data
|
392
492
|
edit_meeting: Editar reunião
|
493
|
+
going: Inscreveu-se para esta reunião
|
393
494
|
join: Adira à reunião
|
495
|
+
leave: Cancele o seu registo
|
496
|
+
leave_confirmation: Tem a certeza que quer cancelar o seu registo para esta reunião?
|
497
|
+
link_available_soon: Ligação disponível em breve
|
498
|
+
link_closed: A ligação para se juntar à reunião estará disponível alguns minutos antes do seu início
|
499
|
+
live_event: Esta reunião está a acontecer agora
|
394
500
|
meeting_minutes: Ata da Reunião
|
501
|
+
micro_camera_permissions_warning: Quando clicar no botão abaixo irá ser pedida autorização para microfone e/ou câmara, e poderá irá juntar-se à videoconferência
|
395
502
|
no_slots_available: Não há intervalos de tempo disponíveis
|
396
503
|
organizations: Organizações participantes
|
397
504
|
registration_code_help_text: O seu código de registo
|
@@ -402,6 +509,7 @@ pt:
|
|
402
509
|
one: "%{count} intervalo de tempo restante"
|
403
510
|
other: "%{count} intervalos de tempo restantes"
|
404
511
|
view: Ver
|
512
|
+
visit_finished: Ver reunião passada
|
405
513
|
update:
|
406
514
|
invalid: Ocorreu um problema ao atualizar a reunião.
|
407
515
|
success: Atualizou a reunião corretamente.
|
@@ -422,16 +530,46 @@ pt:
|
|
422
530
|
fields:
|
423
531
|
closed: Encerradas
|
424
532
|
end_time: Data final
|
533
|
+
id: Identificação
|
425
534
|
map: Mapa
|
426
535
|
official_meeting: Reunião oficial
|
427
536
|
start_time: Data de início
|
428
537
|
title: Título
|
538
|
+
polls:
|
539
|
+
questions:
|
540
|
+
closed_question:
|
541
|
+
question_results: Resultados das questões
|
542
|
+
index:
|
543
|
+
empty_questions: Durante esta reunião irão ser-lhe enviadas algumas questões e poderá responder-lhes. Serão exibidas aqui.
|
544
|
+
index_admin:
|
545
|
+
admin_dashboard: Painel de controlo de administrador
|
546
|
+
edit: Editar administrador
|
547
|
+
question: Questão
|
548
|
+
received_answer: resposta recebida
|
549
|
+
received_answers: respostas recebidas
|
550
|
+
results: Resultados
|
551
|
+
send: Enviar
|
552
|
+
sent: Enviado
|
553
|
+
published_question:
|
554
|
+
max_choices_alert: Estão selecionadas demasiadas opções
|
555
|
+
question: Questão
|
556
|
+
question_replied: Questão respondida
|
557
|
+
reply_question: Responder à questão
|
558
|
+
public_participants_list:
|
559
|
+
attending_participants: Participantes assistentes
|
560
|
+
hidden_participants_count:
|
561
|
+
one: e mais %{count} pessoa
|
562
|
+
other: e mais %{count} pessoas
|
429
563
|
read_more: "(ler mais)"
|
430
564
|
registration_mailer:
|
431
565
|
confirmation:
|
432
566
|
confirmed_html: O seu registo para a reunião <a href="%{url}">%{title}</a> foi confirmado.
|
433
567
|
details: Encontrará os detalhes da reunião no anexo.
|
434
568
|
registration_code: O seu código de registo é %{code}.
|
569
|
+
registration_type:
|
570
|
+
on_different_platform: Numa plataforma diferente
|
571
|
+
on_this_platform: Nesta plataforma
|
572
|
+
registration_disabled: Registo desactivado
|
435
573
|
registrations:
|
436
574
|
create:
|
437
575
|
invalid: Ocorreu um problema ao aderir a esta reunião.
|
@@ -442,6 +580,10 @@ pt:
|
|
442
580
|
destroy:
|
443
581
|
invalid: Ocorreu um problema ao sair desta reunião.
|
444
582
|
success: Saiu da reunião corretamente.
|
583
|
+
type_of_meeting:
|
584
|
+
hybrid: Ambos
|
585
|
+
in_person: Presencial
|
586
|
+
online: On-line
|
445
587
|
types:
|
446
588
|
private_meeting: Reunião privada
|
447
589
|
transparent: Transparente
|
@@ -466,6 +608,8 @@ pt:
|
|
466
608
|
proposals_from_meeting:
|
467
609
|
meeting_proposal: 'Propostas relacionadas:'
|
468
610
|
proposal_meeting: 'Reuniões relacionadas:'
|
611
|
+
statistics:
|
612
|
+
meetings_count: Reuniões
|
469
613
|
devise:
|
470
614
|
mailer:
|
471
615
|
join_meeting:
|