decidim-meetings 0.19.1 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_meetings_manifest.js +2 -0
- data/app/assets/images/decidim/gamification/badges/attended_meetings.svg +1 -106
- data/app/assets/images/decidim/meetings/icon.svg +1 -5
- data/app/assets/javascripts/decidim/meetings/admin/destroy_meeting_alert.js.es6 +16 -0
- data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +3 -0
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +9 -0
- data/app/cells/decidim/meetings/content_blocks/upcoming_events_cell.rb +2 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +7 -7
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +2 -2
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -0
- data/app/cells/decidim/meetings/meeting_list_item/show.erb +3 -3
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_m/date.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/footer.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +9 -1
- data/app/cells/decidim/meetings/meeting_s/show.erb +6 -6
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -2
- data/app/cells/decidim/meetings/meetings_map_cell.rb +3 -1
- data/app/commands/decidim/meetings/admin/close_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +38 -28
- data/app/commands/decidim/meetings/admin/create_meeting.rb +36 -24
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +6 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +9 -3
- data/app/commands/decidim/meetings/create_meeting.rb +78 -0
- data/app/commands/decidim/meetings/join_meeting.rb +11 -0
- data/app/commands/decidim/meetings/update_meeting.rb +94 -0
- data/app/controllers/decidim/meetings/admin/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -0
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +21 -7
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +4 -0
- data/app/controllers/decidim/meetings/calendars_controller.rb +1 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +75 -12
- data/app/controllers/decidim/meetings/registrations_controller.rb +2 -2
- data/app/controllers/decidim/meetings/versions_controller.rb +14 -0
- data/app/controllers/decidim/meetings/{meeting_widgets_controller.rb → widgets_controller.rb} +2 -2
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +7 -1
- data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +2 -8
- data/app/forms/decidim/meetings/admin/meeting_form.rb +24 -23
- data/app/forms/decidim/meetings/meeting_form.rb +78 -0
- data/app/helpers/decidim/meetings/admin/application_helper.rb +1 -6
- data/app/helpers/decidim/meetings/application_helper.rb +26 -0
- data/app/helpers/decidim/meetings/map_helper.rb +2 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +13 -1
- data/app/models/decidim/meetings/agenda.rb +3 -0
- data/app/models/decidim/meetings/agenda_item.rb +3 -0
- data/app/models/decidim/meetings/meeting.rb +43 -15
- data/app/models/decidim/meetings/minutes.rb +3 -0
- data/app/models/decidim/meetings/service.rb +13 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +2 -0
- data/app/permissions/decidim/meetings/permissions.rb +20 -0
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +5 -1
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -2
- data/app/presenters/decidim/meetings/meeting_presenter.rb +21 -6
- data/app/presenters/decidim/meetings/official_author_presenter.rb +14 -0
- data/app/queries/decidim/meetings/filtered_meetings.rb +37 -0
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +2 -8
- data/app/services/decidim/meetings/calendar/meeting_to_event.rb +3 -3
- data/app/services/decidim/meetings/diff_renderer.rb +21 -0
- data/app/services/decidim/meetings/meeting_search.rb +3 -25
- data/app/types/decidim/meetings/agenda_item_type.rb +28 -0
- data/app/types/decidim/meetings/agenda_type.rb +25 -0
- data/app/types/decidim/meetings/meeting_type.rb +35 -8
- data/app/types/decidim/meetings/meetings_type.rb +1 -1
- data/app/types/decidim/meetings/minutes_type.rb +26 -0
- data/app/types/decidim/meetings/service_type.rb +13 -0
- data/app/views/decidim/meetings/_calendar_modal.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/index.html.erb +2 -2
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -6
- data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +1 -0
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +2 -9
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +8 -12
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +22 -3
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +4 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +5 -3
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +11 -4
- data/app/views/decidim/meetings/meetings/_count.html.erb +1 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +13 -7
- data/app/views/decidim/meetings/meetings/_form.html.erb +51 -0
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +8 -8
- data/app/views/decidim/meetings/meetings/edit.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +16 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +13 -4
- data/app/views/decidim/meetings/meetings/new.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/show.html.erb +30 -8
- data/app/views/decidim/meetings/versions/index.html.erb +8 -0
- data/app/views/decidim/meetings/versions/show.html.erb +10 -0
- data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -3
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +4 -8
- data/config/locales/bg-BG.yml +21 -0
- data/config/locales/bg.yml +21 -0
- data/config/locales/ca.yml +64 -8
- data/config/locales/cs.yml +70 -8
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +64 -7
- data/config/locales/el-GR.yml +1 -0
- data/config/locales/el.yml +449 -0
- data/config/locales/en.yml +65 -9
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +63 -7
- data/config/locales/es-PY.yml +63 -7
- data/config/locales/es.yml +65 -9
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +0 -8
- data/config/locales/fi-plain.yml +63 -7
- data/config/locales/fi.yml +89 -33
- data/config/locales/fr-CA.yml +504 -0
- data/config/locales/fr.yml +63 -7
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +0 -8
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +14 -7
- data/config/locales/id-ID.yml +0 -8
- data/config/locales/is-IS.yml +228 -0
- data/config/locales/is.yml +228 -0
- data/config/locales/it.yml +62 -8
- data/config/locales/ja-JP.yml +494 -0
- data/config/locales/ja.yml +496 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +452 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +95 -47
- data/config/locales/no.yml +358 -1
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +210 -147
- data/config/locales/pt-BR.yml +1 -9
- data/config/locales/pt.yml +232 -177
- data/config/locales/ro-RO.yml +500 -0
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk-SK.yml +463 -0
- data/config/locales/sk.yml +458 -0
- data/config/locales/sl.yml +29 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +13 -0
- data/config/locales/sv.yml +67 -13
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +0 -8
- data/config/locales/uk.yml +0 -8
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +496 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200320105922_index_foreign_keys_in_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20200526110940_add_author_to_meetings.rb +30 -0
- data/db/migrate/20200702123209_create_meeting_services_table.rb +13 -0
- data/db/migrate/20200702123210_move_meeting_services_to_own_model.rb +31 -0
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +9 -0
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +29 -0
- data/lib/decidim/api/linked_resources_interface.rb +17 -0
- data/lib/decidim/api/services_interface.rb +13 -0
- data/lib/decidim/meetings.rb +1 -0
- data/lib/decidim/meetings/admin_engine.rb +5 -1
- data/lib/decidim/meetings/api.rb +8 -0
- data/lib/decidim/meetings/component.rb +69 -14
- data/lib/decidim/meetings/engine.rb +3 -6
- data/lib/decidim/meetings/meeting_serializer.rb +1 -1
- data/lib/decidim/meetings/seeds/city.jpeg +0 -0
- data/lib/decidim/meetings/test/factories.rb +45 -8
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/tasks/decidim_meetings.rake +16 -0
- metadata +92 -20
- data/app/presenters/decidim/meetings/admin_log/value_types/organizer_presenter.rb +0 -70
- data/app/views/decidim/meetings/meeting_widgets/show.html.erb +0 -9
data/config/locales/pt-BR.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
pt
|
1
|
+
pt:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
agenda:
|
@@ -223,9 +223,6 @@ pt-BR:
|
|
223
223
|
edit:
|
224
224
|
close: Fechar
|
225
225
|
title: Reunião próxima
|
226
|
-
meeting_copies:
|
227
|
-
form:
|
228
|
-
select_organizer: Selecione o organizador
|
229
226
|
meetings:
|
230
227
|
close:
|
231
228
|
invalid: Tem havido um problema ao encerrar esta reunião
|
@@ -237,8 +234,6 @@ pt-BR:
|
|
237
234
|
success: Reunião excluída com sucesso
|
238
235
|
edit:
|
239
236
|
update: Atualizar
|
240
|
-
form:
|
241
|
-
select_organizer: Selecione o organizador
|
242
237
|
index:
|
243
238
|
title: Reuniões
|
244
239
|
new:
|
@@ -343,11 +338,8 @@ pt-BR:
|
|
343
338
|
meetings:
|
344
339
|
filters:
|
345
340
|
category: Categoria
|
346
|
-
category_prompt: Selecione uma categoria
|
347
341
|
date: Data
|
348
|
-
past: Passado
|
349
342
|
search: Pesquisa
|
350
|
-
upcoming: próximos
|
351
343
|
filters_small_view:
|
352
344
|
close_modal: Fechar modal
|
353
345
|
filter: Filtro
|
data/config/locales/pt.yml
CHANGED
@@ -6,7 +6,7 @@ pt:
|
|
6
6
|
duration: Duração
|
7
7
|
title: Título
|
8
8
|
close_meeting:
|
9
|
-
attendees_count: Número de
|
9
|
+
attendees_count: Número de participantes
|
10
10
|
attending_organizations: Lista de organizações que participaram
|
11
11
|
closing_report: Relatório
|
12
12
|
contributions_count: Número de contribuições
|
@@ -16,165 +16,175 @@ pt:
|
|
16
16
|
available_slots: Slots disponíveis para esta reunião
|
17
17
|
decidim_category_id: Categoria
|
18
18
|
decidim_scope_id: Âmbito
|
19
|
+
decidim_user_group_id: Grupo de utilizadores
|
19
20
|
description: Descrição
|
20
|
-
end_time:
|
21
|
+
end_time: Hora de fim
|
21
22
|
location: Localização
|
22
23
|
location_hints: Dicas de localização
|
24
|
+
organizer_gid: Criar como
|
23
25
|
organizer_id: Organizador
|
24
26
|
private_meeting: Reunião privada
|
25
|
-
registration_form_enabled: Formulário de
|
26
|
-
registration_terms: Termos de
|
27
|
-
registrations_enabled: Registos
|
27
|
+
registration_form_enabled: Formulário de registo ativado
|
28
|
+
registration_terms: Termos de registo
|
29
|
+
registrations_enabled: Registos ativados
|
28
30
|
start_time: Hora de início
|
29
31
|
title: Título
|
30
32
|
transparent: Transparente
|
31
33
|
minutes:
|
32
|
-
audio_url:
|
34
|
+
audio_url: Url de áudio
|
33
35
|
description: Descrição
|
34
|
-
video_url:
|
35
|
-
visible:
|
36
|
+
video_url: Url do vídeo
|
37
|
+
visible: Está visível
|
36
38
|
errors:
|
37
39
|
models:
|
38
40
|
meeting_agenda:
|
39
41
|
attributes:
|
40
42
|
base:
|
41
43
|
too_many_minutes: A duração dos itens excede a duração da reunião em %{count} minutos
|
42
|
-
too_many_minutes_child: A duração do item
|
44
|
+
too_many_minutes_child: A duração dos filhos do item excede a duração do item pai da agenda "%{parent_title}" em %{count} minutos
|
43
45
|
meeting_registration_invite:
|
44
46
|
attributes:
|
45
47
|
email:
|
46
|
-
already_invited:
|
48
|
+
already_invited: Esta conta de e-mail já foi convidada
|
47
49
|
models:
|
48
|
-
decidim/meetings/close_meeting_event: Reunião
|
49
|
-
decidim/meetings/create_meeting_event:
|
50
|
-
decidim/meetings/meeting_registrations_enabled_event:
|
51
|
-
decidim/meetings/meeting_registrations_over_percentage_event:
|
52
|
-
decidim/meetings/upcoming_meeting_event:
|
50
|
+
decidim/meetings/close_meeting_event: Reunião encerrada
|
51
|
+
decidim/meetings/create_meeting_event: Reunião
|
52
|
+
decidim/meetings/meeting_registrations_enabled_event: Registos ativados
|
53
|
+
decidim/meetings/meeting_registrations_over_percentage_event: Registos acima do limite
|
54
|
+
decidim/meetings/upcoming_meeting_event: Próximas reuniões
|
53
55
|
decidim/meetings/update_meeting_event: Reunião atualizada
|
54
56
|
activerecord:
|
55
57
|
models:
|
56
58
|
decidim/meetings/meeting:
|
57
|
-
one:
|
59
|
+
one: Reunião
|
58
60
|
other: Reuniões
|
59
61
|
decidim/meetings/minutes:
|
60
|
-
one:
|
61
|
-
other:
|
62
|
+
one: Ata
|
63
|
+
other: Atas
|
62
64
|
decidim/meetings/registration:
|
63
|
-
one:
|
64
|
-
other:
|
65
|
+
one: Registo
|
66
|
+
other: Registos
|
65
67
|
decidim:
|
66
68
|
admin:
|
67
69
|
meeting_copies:
|
68
70
|
create:
|
69
|
-
error: Ocorreu um
|
70
|
-
success: Reunião duplicada
|
71
|
+
error: Ocorreu um problema ao duplicar esta reunião.
|
72
|
+
success: Reunião duplicada corretamente.
|
71
73
|
new:
|
72
|
-
copy:
|
73
|
-
select: Selecione os dados que
|
74
|
+
copy: Copiar
|
75
|
+
select: Selecione os dados que pretende duplicar
|
74
76
|
title: Reunião duplicada
|
75
77
|
components:
|
76
78
|
meetings:
|
77
79
|
actions:
|
78
|
-
join:
|
80
|
+
join: Adira
|
79
81
|
name: Reuniões
|
80
82
|
settings:
|
81
83
|
global:
|
82
84
|
announcement: Anúncio
|
83
85
|
comments_enabled: Comentários ativados
|
84
|
-
|
86
|
+
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
87
|
+
creation_enabled_for_participants: Os participantes podem criar reuniões
|
88
|
+
default_registration_terms: Termos de registo predefinidos
|
85
89
|
enable_pads_creation: Ativar criação de blocos
|
86
|
-
resources_permissions_enabled:
|
90
|
+
resources_permissions_enabled: As permissões de ações podem ser definidas para cada reunião
|
87
91
|
step:
|
88
92
|
announcement: Anúncio
|
89
93
|
comments_blocked: Comentários bloqueados
|
94
|
+
creation_enabled_for_participants: Criação de reunião por participantes ativada
|
95
|
+
creation_enabled_for_user_groups: Criação de reunião por grupo de utilizadores ativada
|
90
96
|
events:
|
91
97
|
meetings:
|
92
98
|
meeting_closed:
|
93
99
|
affected_user:
|
94
|
-
email_intro: '
|
95
|
-
email_outro:
|
96
|
-
email_subject: A reunião "%{resource_title}" foi
|
97
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi
|
100
|
+
email_intro: 'A sua reunião "%{resource_title}" foi encerrada. Pode ler as conclusões a partir da sua página:'
|
101
|
+
email_outro: Recebeu esta notificação porque organizou a reunião "%{resource_title}".
|
102
|
+
email_subject: A reunião "%{resource_title}" foi encerrada
|
103
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi encerrada.
|
98
104
|
follower:
|
99
|
-
email_intro: 'A reunião "%{resource_title}" foi encerrada.
|
100
|
-
email_outro:
|
101
|
-
email_subject: A reunião "%{resource_title}" foi
|
102
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi
|
105
|
+
email_intro: 'A reunião "%{resource_title}" foi encerrada. Pode ler as conclusões a partir da sua página:'
|
106
|
+
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
107
|
+
email_subject: A reunião "%{resource_title}" foi encerrada
|
108
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi encerrada.
|
103
109
|
meeting_created:
|
104
|
-
email_intro: A reunião "%{resource_title}" foi
|
105
|
-
email_outro:
|
110
|
+
email_intro: A reunião "%{resource_title}" foi adicionada a "%{participatory_space_title}" que você segue.
|
111
|
+
email_outro: Recebeu esta notificação porque segue "%{participatory_space_title}". Pode deixar de segui-lo a partir da hiperligação anterior.
|
106
112
|
email_subject: Nova reunião adicionada a %{participatory_space_title}
|
107
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi
|
113
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi adicionada a %{participatory_space_title}
|
108
114
|
meeting_registration_confirmed:
|
109
|
-
notification_title:
|
115
|
+
notification_title: A sua inscrição para a reunião <a href="%{resource_url}">%{resource_title}</a> foi confirmada. O seu código de registo é %{registration_code}.
|
110
116
|
meeting_registrations_over_percentage:
|
111
117
|
email_intro: Os slots ocupados pela reunião "%{resource_title}" estão acima de %{percentage}%.
|
112
|
-
email_outro:
|
113
|
-
email_subject: Os
|
114
|
-
notification_title: Os <a href="%{resource_path}">%{resource_title}</a>
|
118
|
+
email_outro: Recebeu esta notificação porque é administrador do espaço participativo da reunião.
|
119
|
+
email_subject: Os intervalos de tempo alocados à reunião "%{resource_title}" estão acima de %{percentage}%
|
120
|
+
notification_title: Os intervalos de tempo alocados à reunião <a href="%{resource_path}">%{resource_title}</a> estão acima de %{percentage}%.
|
115
121
|
meeting_updated:
|
116
|
-
email_intro: 'A reunião "%{resource_title}" foi atualizada.
|
117
|
-
email_outro:
|
122
|
+
email_intro: 'A reunião "%{resource_title}" foi atualizada. Pode ler a nova versão a partir da sua página:'
|
123
|
+
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
118
124
|
email_subject: A reunião "%{resource_title}" foi atualizada
|
119
125
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi atualizada.
|
120
126
|
registration_code_validated:
|
121
|
-
email_intro:
|
122
|
-
email_outro:
|
123
|
-
email_subject:
|
124
|
-
notification_title:
|
127
|
+
email_intro: O seu código de registo "%{registration_code}" para a reunião "%{resource_title}" foi validado.
|
128
|
+
email_outro: Recebeu esta notificação porque o seu código de registo para a reunião "%{resource_title}" foi validado.
|
129
|
+
email_subject: O seu código de registo "%{registration_code}" para a reunião "%{resource_title}" foi validado
|
130
|
+
notification_title: O seu código de registo "%{registration_code}" para a reunião <a href="%{resource_path}">%{resource_title}</a> foi validado.
|
125
131
|
registrations_enabled:
|
126
|
-
email_intro: 'A reunião "%{resource_title}"
|
127
|
-
email_outro:
|
128
|
-
email_subject: A reunião "%{resource_title}"
|
129
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a>
|
132
|
+
email_intro: 'A reunião "%{resource_title}" ativou os registos. Pode registar-se a partir da sua página:'
|
133
|
+
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
134
|
+
email_subject: A reunião "%{resource_title}" ativou os registos.
|
135
|
+
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> ativou os registos.
|
130
136
|
upcoming_meeting:
|
131
137
|
email_intro: A reunião "%{resource_title}" começará em menos de 48h.
|
132
|
-
email_outro:
|
138
|
+
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
133
139
|
email_subject: A reunião "%{resource_title}" começará em menos de 48h.
|
134
140
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> começará em menos de 48h.
|
135
141
|
gamification:
|
136
142
|
badges:
|
137
143
|
attended_meetings:
|
138
144
|
conditions:
|
139
|
-
-
|
140
|
-
description: Este
|
141
|
-
description_another: Este
|
142
|
-
description_own:
|
143
|
-
name:
|
144
|
-
next_level_in: Participe
|
145
|
-
unearned_another: Este
|
146
|
-
unearned_own:
|
145
|
+
- Registe-se nas reuniões em que deseja participar
|
146
|
+
description: Este distintivo é concedido quando participa em várias reuniões presenciais.
|
147
|
+
description_another: Este participante assistiu a %{score} reuniões.
|
148
|
+
description_own: Participou em %{score} reuniões.
|
149
|
+
name: Reuniões participadas
|
150
|
+
next_level_in: Participe em mais %{score} reuniões para alcançar o próximo nível!
|
151
|
+
unearned_another: Este participante ainda não participou em nenhuma reunião.
|
152
|
+
unearned_own: Ainda não participou em nenhuma reunião.
|
147
153
|
meetings:
|
148
154
|
actions:
|
149
155
|
agenda: Agenda
|
150
156
|
attachment_collections: Pastas
|
151
157
|
attachments: Anexos
|
152
158
|
close: Fechar
|
153
|
-
confirm_destroy: Tem certeza de que deseja
|
154
|
-
destroy:
|
159
|
+
confirm_destroy: Tem a certeza de que deseja eliminar esta reunião?
|
160
|
+
destroy: Eliminar
|
155
161
|
edit: Editar
|
156
|
-
|
162
|
+
invalid_destroy:
|
163
|
+
proposals_count:
|
164
|
+
one: 'A reunião não pode ser destruída porque tem %{count} proposta associada:'
|
165
|
+
other: 'A reunião não pode ser destruída porque tem %{count} propostas associadas:'
|
166
|
+
minutes: Atas
|
157
167
|
new: Nova reunião
|
158
|
-
preview:
|
159
|
-
registrations:
|
168
|
+
preview: Pré-visualização
|
169
|
+
registrations: Registos
|
160
170
|
title: Ações
|
161
171
|
admin:
|
162
172
|
agenda:
|
163
173
|
agenda_item:
|
164
|
-
add_agenda_item_child: Adicionar
|
174
|
+
add_agenda_item_child: Adicionar sub-item da agenda
|
165
175
|
agenda_item: Item da agenda
|
166
|
-
agenda_item_children:
|
167
|
-
down:
|
176
|
+
agenda_item_children: Sub-itens da Agenda
|
177
|
+
down: Abaixo
|
168
178
|
remove: Remover
|
169
179
|
up: Acima
|
170
180
|
agenda_item_child:
|
171
|
-
agenda_item_child:
|
172
|
-
down:
|
181
|
+
agenda_item_child: Sub-item da agenda
|
182
|
+
down: Abaixo
|
173
183
|
remove: Remover
|
174
184
|
up: Acima
|
175
185
|
create:
|
176
|
-
invalid:
|
177
|
-
success: Agenda criada
|
186
|
+
invalid: Ocorreu um problema ao criar esta agenda
|
187
|
+
success: Agenda criada corretamente
|
178
188
|
edit:
|
179
189
|
title: Editar agenda
|
180
190
|
update: Atualizar
|
@@ -184,61 +194,64 @@ pt:
|
|
184
194
|
end_date: Data final
|
185
195
|
start_date: Data de início
|
186
196
|
new:
|
187
|
-
create:
|
197
|
+
create: Criar
|
188
198
|
title: Nova agenda
|
189
199
|
update:
|
190
|
-
invalid:
|
191
|
-
success: Agenda atualizada
|
200
|
+
invalid: Ocorreu um problema ao atualizar esta agenda
|
201
|
+
success: Agenda atualizada corretamente
|
192
202
|
exports:
|
193
203
|
meetings: Reuniões
|
194
|
-
registrations:
|
204
|
+
registrations: Registos
|
195
205
|
invite_join_meeting_mailer:
|
196
206
|
invite:
|
197
207
|
decline: Recusar convite
|
198
|
-
invited_you_to_join_a_meeting: "%{invited_by} convidou
|
199
|
-
join:
|
208
|
+
invited_you_to_join_a_meeting: "%{invited_by} convidou-o(a) a aderir a uma reunião em %{application}. Pode recusar ou aceitar utilizando as hiperligações abaixo."
|
209
|
+
join: Adira à reunião '%{meeting_title}'
|
200
210
|
invites:
|
201
211
|
create:
|
202
|
-
error: Ocorreu um problema ao convidar o
|
203
|
-
success: O
|
212
|
+
error: Ocorreu um problema ao convidar o participante a aderir à reunião.
|
213
|
+
success: O participante foi convidado a aderir à reunião corretamente.
|
204
214
|
form:
|
205
215
|
attendee_type: Tipo de participante
|
206
|
-
existing_user:
|
207
|
-
invite:
|
208
|
-
invite_explanation: O
|
209
|
-
non_user:
|
210
|
-
select_user: Selecione o
|
216
|
+
existing_user: Participante existente
|
217
|
+
invite: Convidar
|
218
|
+
invite_explanation: O participante será convidado a aderir à reunião e também à organização.
|
219
|
+
non_user: Participante inexistente
|
220
|
+
select_user: Selecione o participante
|
211
221
|
index:
|
212
222
|
filter:
|
213
|
-
accepted:
|
223
|
+
accepted: Aceite
|
214
224
|
all: Todos
|
215
|
-
rejected:
|
216
|
-
sent:
|
225
|
+
rejected: Rejeitados
|
226
|
+
sent: Enviados
|
217
227
|
filter_by: Filtrar por
|
218
228
|
invite_attendee: Convidar participante
|
219
229
|
invites: Convites
|
220
|
-
registrations_disabled:
|
221
|
-
search:
|
230
|
+
registrations_disabled: Não pode convidar um participante porque os registos estão desativados.
|
231
|
+
search: Pesquisar
|
222
232
|
meeting_closes:
|
223
233
|
edit:
|
224
234
|
close: Fechar
|
225
|
-
title:
|
226
|
-
meeting_copies:
|
227
|
-
form:
|
228
|
-
select_organizer: Selecione o organizador
|
235
|
+
title: Encerrar reunião
|
229
236
|
meetings:
|
230
237
|
close:
|
231
|
-
invalid:
|
232
|
-
success: Reunião
|
238
|
+
invalid: Ocorreu um problema ao encerrar esta reunião
|
239
|
+
success: Reunião encerrada corretamente
|
233
240
|
create:
|
234
|
-
invalid:
|
235
|
-
success: Reunião criada
|
241
|
+
invalid: Ocorreu um problema ao criar esta reunião
|
242
|
+
success: Reunião criada corretamente
|
236
243
|
destroy:
|
237
|
-
|
244
|
+
invalid:
|
245
|
+
proposals_count:
|
246
|
+
one: A reunião não pode ser destruída porque tem %{count} proposta associada
|
247
|
+
other: A reunião não pode ser destruída porque tem %{count} propostas associadas
|
248
|
+
success: Reunião eliminada corretamente
|
238
249
|
edit:
|
239
|
-
update:
|
250
|
+
update: Atualizar
|
240
251
|
form:
|
241
|
-
|
252
|
+
address_help: 'Endereço: utilizado por Geocoder para encontrar a localização'
|
253
|
+
location_help: 'Localização: mensagem direcionada para os utilizadores indicando o local de encontro'
|
254
|
+
location_hints_help: 'Dicas de localização: informação adicional. Exemplo: o piso do edifício'
|
242
255
|
index:
|
243
256
|
title: Reuniões
|
244
257
|
new:
|
@@ -246,7 +259,7 @@ pt:
|
|
246
259
|
title: Criar reunião
|
247
260
|
service:
|
248
261
|
description: Descrição
|
249
|
-
down:
|
262
|
+
down: Abaixo
|
250
263
|
remove: Remover
|
251
264
|
service: Serviço
|
252
265
|
title: Título
|
@@ -255,168 +268,210 @@ pt:
|
|
255
268
|
add_service: Adicionar serviço
|
256
269
|
services: Serviços
|
257
270
|
update:
|
258
|
-
invalid:
|
259
|
-
success: Reunião atualizada
|
271
|
+
invalid: Ocorreu um problema ao atualizar esta reunião
|
272
|
+
success: Reunião atualizada corretamente
|
260
273
|
minutes:
|
261
274
|
create:
|
262
|
-
invalid:
|
263
|
-
success:
|
275
|
+
invalid: Ocorreu um problema ao criar esta ata
|
276
|
+
success: Ata criada corretamente
|
264
277
|
edit:
|
265
278
|
update: Atualizar
|
266
279
|
new:
|
267
|
-
create:
|
268
|
-
title:
|
280
|
+
create: Criar
|
281
|
+
title: Criar ata
|
269
282
|
update:
|
270
|
-
invalid:
|
271
|
-
success:
|
283
|
+
invalid: Ocorreu um problema ao atualizar esta ata
|
284
|
+
success: Ata atualizada corretamente
|
272
285
|
models:
|
273
286
|
meeting:
|
274
|
-
name:
|
287
|
+
name: Reunião
|
275
288
|
registrations:
|
276
289
|
edit:
|
277
|
-
save:
|
290
|
+
save: Guardar
|
278
291
|
validate: Validar
|
279
|
-
validate_registration_code: Validar código de
|
292
|
+
validate_registration_code: Validar código de registo
|
280
293
|
form:
|
281
|
-
available_slots_help:
|
294
|
+
available_slots_help: Deixar a 0 se tiver intervalos de tempo ilimitados disponíveis.
|
282
295
|
invites: Convites
|
283
|
-
|
296
|
+
recommendation_message: Por questões de privacidade recomendamos que elimine este formulário de inscrição quando já não for necessário. Por predefinição, isto acontece 3 meses após o fim da reunião.
|
297
|
+
registration_form: Formulário de registo
|
284
298
|
registrations_count:
|
285
|
-
one: Houve %{count}
|
286
|
-
other: Houve %{count}
|
287
|
-
reserved_slots_help:
|
299
|
+
one: Houve %{count} registo.
|
300
|
+
other: Houve %{count} registos.
|
301
|
+
reserved_slots_help: Deixar a 0 se não tiver intervalos de tempo reservados
|
288
302
|
reserved_slots_less_than: Deve ser menor ou igual a %{count}
|
303
|
+
title: Registos
|
289
304
|
update:
|
290
|
-
invalid: Ocorreu um problema ao
|
291
|
-
success: Configurações de
|
305
|
+
invalid: Ocorreu um problema ao guardar as configurações de registo.
|
306
|
+
success: Configurações de registo de reunião guardadas corretamente.
|
292
307
|
validate_registration_code:
|
293
|
-
invalid: Este código de
|
294
|
-
success: Código de
|
308
|
+
invalid: Este código de registo é inválido.
|
309
|
+
success: Código de registo validado corretamente.
|
295
310
|
admin_log:
|
296
311
|
invite:
|
297
|
-
create: "%{user_name}
|
298
|
-
deleted: "%{user_name}
|
299
|
-
update: "%{user_name}
|
312
|
+
create: "%{user_name} convidou %{attendee_name} a aderir à reunião %{resource_name} no espaço %{space_name}"
|
313
|
+
deleted: "%{user_name} cancelou o convite de %{attendee_name} para aderir à reunião %{resource_name} no espaço %{space_name}"
|
314
|
+
update: "%{user_name} convidou %{attendee_name} a aderir à reunião %{resource_name} no espaço %{space_name}"
|
300
315
|
meeting:
|
301
|
-
close: "%{user_name}
|
316
|
+
close: "%{user_name} encerrou a reunião %{resource_name} no espaço %{space_name}"
|
302
317
|
create: "%{user_name} criou a reunião %{resource_name} no espaço %{space_name}"
|
303
318
|
delete: "%{user_name} eliminou a reunião %{resource_name} no espaço %{space_name}"
|
304
|
-
export_registrations: "%{user_name} exportou os
|
319
|
+
export_registrations: "%{user_name} exportou os registos da reunião %{resource_name} no espaço %{space_name}"
|
305
320
|
update: "%{user_name} atualizou a reunião %{resource_name} no espaço %{space_name}"
|
306
321
|
value_types:
|
307
322
|
organizer_presenter:
|
308
|
-
not_found: 'O organizador não foi encontrado
|
323
|
+
not_found: 'O(A) organizador(a) não foi encontrado(a) na base de dados (ID: %{id})'
|
309
324
|
minutes:
|
310
325
|
create: "%{user_name} criou a ata da reunião %{resource_name} no espaço %{space_name}"
|
311
326
|
update: "%{user_name} atualizou a ata da reunião %{resource_name} no espaço %{space_name}"
|
312
327
|
calendar_modal:
|
313
328
|
calendar_url: URL do calendário
|
314
|
-
close_window:
|
315
|
-
export_calendar:
|
316
|
-
conference_venues: Locais
|
329
|
+
close_window: Fechar janela
|
330
|
+
export_calendar: Exportar calendário
|
331
|
+
conference_venues: Locais da Conferência
|
317
332
|
content_blocks:
|
318
333
|
upcoming_events:
|
319
334
|
name: Próximos eventos
|
320
|
-
upcoming_events:
|
321
|
-
view_all_events: Ver
|
335
|
+
upcoming_events: Próximas reuniões
|
336
|
+
view_all_events: Ver todos
|
322
337
|
directory:
|
323
338
|
meetings:
|
324
339
|
index:
|
325
340
|
all: Todos
|
326
|
-
date:
|
341
|
+
date: Data
|
327
342
|
meetings: Reuniões
|
328
343
|
past: Passado
|
329
|
-
search:
|
344
|
+
search: Pesquisar
|
330
345
|
space_type: Espaço participativo
|
331
|
-
upcoming:
|
346
|
+
upcoming: Próximas
|
332
347
|
last_activity:
|
333
348
|
new_meeting_at_html: "<span>Nova reunião em %{link}</span>"
|
334
349
|
mailer:
|
335
350
|
invite_join_meeting_mailer:
|
336
351
|
invite:
|
337
|
-
subject: Convite para
|
352
|
+
subject: Convite para aderir a uma reunião
|
338
353
|
registration_mailer:
|
339
354
|
confirmation:
|
340
|
-
subject: O
|
355
|
+
subject: O seu registo da reunião foi confirmado
|
341
356
|
meeting:
|
342
|
-
not_allowed:
|
357
|
+
not_allowed: Não tem permissão para ver esta reunião
|
343
358
|
meetings:
|
359
|
+
count:
|
360
|
+
meetings_count:
|
361
|
+
one: "%{count} reunião"
|
362
|
+
other: "%{count} reuniões"
|
363
|
+
create:
|
364
|
+
invalid: Ocorreu um problema ao criar esta reunião.
|
365
|
+
success: Criou a reunião corretamente.
|
366
|
+
edit:
|
367
|
+
back: Retroceder
|
368
|
+
title: Editar a Sua Reunião
|
369
|
+
update: Atualizar
|
344
370
|
filters:
|
345
371
|
category: Categoria
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
372
|
+
date: Data
|
373
|
+
date_values:
|
374
|
+
all: Todos
|
375
|
+
past: Passado
|
376
|
+
upcoming: Próximas
|
377
|
+
origin: Origem
|
378
|
+
origin_values:
|
379
|
+
all: Todos
|
380
|
+
citizens: Cidadãos
|
381
|
+
official: Oficial
|
382
|
+
user_groups: Grupos
|
383
|
+
scope: Âmbito
|
384
|
+
search: Pesquisar
|
351
385
|
filters_small_view:
|
352
386
|
close_modal: Fechar modal
|
353
|
-
filter:
|
387
|
+
filter: Filtrar
|
354
388
|
filter_by: Filtrar por
|
355
389
|
unfold: Desdobrar
|
390
|
+
form:
|
391
|
+
address_help: 'Endereço: utilizado pelo Geocoder para encontrar a localização'
|
392
|
+
create_as: Criar reunião como
|
393
|
+
location_help: 'Localização: mensagem direcionada aos utilizadores sugerindo o local onde se encontrarem'
|
394
|
+
location_hints_help: 'Dicas de localização: informação adicional. Exemplo: o piso do edifício'
|
395
|
+
select_a_category: Por favor selecione uma categoria
|
396
|
+
index:
|
397
|
+
new_meeting: Nova reunião
|
356
398
|
meeting_minutes:
|
357
|
-
meeting_minutes:
|
358
|
-
related_information: Informação
|
399
|
+
meeting_minutes: Ata da Reunião
|
400
|
+
related_information: Informação Relacionada
|
359
401
|
meetings:
|
360
402
|
no_meetings_warning: Nenhuma reunião corresponde aos seus critérios de pesquisa ou não há nenhuma reunião agendada.
|
361
|
-
upcoming_meetings_warning: Atualmente, não há reuniões agendadas, mas aqui
|
403
|
+
upcoming_meetings_warning: Atualmente, não há reuniões agendadas, mas aqui pode encontrar listadas todas as reuniões passadas.
|
404
|
+
new:
|
405
|
+
back: Retroceder
|
406
|
+
create: Criar
|
407
|
+
title: Criar a Sua Reunião
|
362
408
|
registration_confirm:
|
363
409
|
cancel: Cancelar
|
364
|
-
confirm:
|
410
|
+
confirm: Confirmar
|
365
411
|
show:
|
366
412
|
attendees: Contagem de participantes
|
367
|
-
|
413
|
+
back: Retroceder à lista
|
414
|
+
contributions: Contagem de contribuições
|
415
|
+
date: Data
|
416
|
+
edit_meeting: Editar reunião
|
368
417
|
going: Indo
|
369
|
-
join:
|
370
|
-
meeting_report: Relatório
|
371
|
-
no_slots_available: Não há
|
418
|
+
join: Adira à reunião
|
419
|
+
meeting_report: Relatório da reunião
|
420
|
+
no_slots_available: Não há intervalos de tempo disponíveis
|
372
421
|
organizations: Organizações participantes
|
373
|
-
registration_code_help_text:
|
422
|
+
registration_code_help_text: O seu código de registo
|
374
423
|
registration_state:
|
375
424
|
validated: VALIDADO
|
376
425
|
validation_pending: VALIDAÇÃO PENDENTE
|
377
426
|
remaining_slots:
|
378
|
-
one: "%{count}
|
379
|
-
other: "%{count}
|
380
|
-
view:
|
427
|
+
one: "%{count} intervalo de tempo restante"
|
428
|
+
other: "%{count} intervalos de tempo restantes"
|
429
|
+
view: Ver
|
430
|
+
update:
|
431
|
+
invalid: Ocorreu um problema ao atualizar a reunião.
|
432
|
+
success: Atualizou a reunião corretamente.
|
381
433
|
meetings_map:
|
382
434
|
view_meeting: Ver reunião
|
383
435
|
models:
|
384
436
|
invite:
|
385
437
|
fields:
|
386
|
-
email:
|
438
|
+
email: E-mail
|
387
439
|
name: Nome
|
388
440
|
sent_at: Enviado em
|
389
|
-
status:
|
441
|
+
status: Estado
|
390
442
|
status:
|
391
|
-
accepted:
|
443
|
+
accepted: Aceite (%{at})
|
392
444
|
rejected: Rejeitado (%{at})
|
393
|
-
sent:
|
445
|
+
sent: Enviado
|
394
446
|
meeting:
|
395
447
|
fields:
|
396
|
-
closed:
|
448
|
+
closed: Encerradas
|
397
449
|
end_time: Data final
|
398
450
|
map: Mapa
|
451
|
+
official_meeting: Reunião oficial
|
399
452
|
start_time: Data de início
|
400
453
|
title: Título
|
401
|
-
read_more: "(
|
454
|
+
read_more: "(ler mais)"
|
402
455
|
registration_mailer:
|
403
456
|
confirmation:
|
404
|
-
confirmed_html:
|
405
|
-
details:
|
406
|
-
registration_code:
|
457
|
+
confirmed_html: O seu registo para a reunião <a href="%{url}">%{title}</a> foi confirmado.
|
458
|
+
details: Encontrará os detalhes da reunião no anexo.
|
459
|
+
registration_code: O seu código de registo é %{code}.
|
407
460
|
registrations:
|
408
461
|
create:
|
409
|
-
invalid:
|
410
|
-
success:
|
462
|
+
invalid: Ocorreu um problema ao aderir a esta reunião.
|
463
|
+
success: Aderiu à reunião corretamente. Por se ter registado nesta reunião, será notificado se ocorrerem atualizações à mesma.
|
411
464
|
decline_invitation:
|
412
|
-
invalid:
|
413
|
-
success:
|
465
|
+
invalid: Ocorreu um problema ao recusar o convite.
|
466
|
+
success: Recusou o convite corretamente.
|
414
467
|
destroy:
|
415
|
-
invalid:
|
416
|
-
success:
|
468
|
+
invalid: Ocorreu um problema ao sair desta reunião.
|
469
|
+
success: Saiu da reunião corretamente.
|
417
470
|
types:
|
418
471
|
private_meeting: Reunião privada
|
419
472
|
transparent: Transparente
|
473
|
+
versions:
|
474
|
+
back_to_resource: Retroceder para a reunião
|
420
475
|
metrics:
|
421
476
|
meetings:
|
422
477
|
description: Número de reuniões criadas
|
@@ -425,15 +480,15 @@ pt:
|
|
425
480
|
participatory_processes:
|
426
481
|
participatory_process_groups:
|
427
482
|
highlighted_meetings:
|
428
|
-
past_meetings: Reuniões
|
483
|
+
past_meetings: Reuniões passadas
|
429
484
|
upcoming_meetings: Próximas reuniões
|
430
485
|
participatory_spaces:
|
431
486
|
highlighted_meetings:
|
432
|
-
past_meetings: Reuniões
|
487
|
+
past_meetings: Reuniões passadas
|
433
488
|
see_all: Ver todos (%{count})
|
434
489
|
upcoming_meetings: Próximas reuniões
|
435
490
|
upcoming_meeting_for_card:
|
436
|
-
upcoming_meeting:
|
491
|
+
upcoming_meeting: Próximas reuniões
|
437
492
|
resource_links:
|
438
493
|
meetings_through_proposals:
|
439
494
|
meeting_result: 'Resultados relacionados:'
|
@@ -444,4 +499,4 @@ pt:
|
|
444
499
|
devise:
|
445
500
|
mailer:
|
446
501
|
join_meeting:
|
447
|
-
subject: Convite para
|
502
|
+
subject: Convite para aderir a uma reunião
|