decidim-meetings 0.30.2 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +7 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +4 -5
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +25 -28
- data/app/cells/decidim/meetings/join_meeting_button/waitlist_button.erb +22 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +28 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -7
- data/app/cells/decidim/meetings/question_responses_cell.rb +28 -28
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +5 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +7 -3
- data/app/commands/decidim/meetings/admin/mark_as_attendee.rb +44 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +15 -6
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +4 -4
- data/app/commands/decidim/meetings/admin/update_registrations.rb +19 -7
- data/app/commands/decidim/meetings/create_meeting.rb +2 -3
- data/app/commands/decidim/meetings/{create_answer.rb → create_response.rb} +11 -11
- data/app/commands/decidim/meetings/join_meeting.rb +4 -6
- data/app/commands/decidim/meetings/join_waitlist.rb +53 -0
- data/app/commands/decidim/meetings/leave_meeting.rb +14 -5
- data/app/commands/decidim/meetings/update_meeting.rb +1 -2
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +1 -1
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +4 -4
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +10 -10
- data/app/controllers/decidim/meetings/admin/registrations_attendees_controller.rb +79 -0
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +1 -22
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +11 -11
- data/app/controllers/decidim/meetings/polls/{answers_controller.rb → responses_controller.rb} +7 -7
- data/app/controllers/decidim/meetings/registrations_controller.rb +39 -12
- data/app/events/decidim/meetings/registration_marked_as_attendee_event.rb +9 -0
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +41 -0
- data/app/events/decidim/meetings/update_meeting_event.rb +25 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +4 -0
- data/app/forms/decidim/meetings/admin/meeting_form.rb +28 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
- data/app/forms/decidim/meetings/base_meeting_form.rb +0 -2
- data/app/forms/decidim/meetings/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/join_meeting_form.rb +0 -1
- data/app/forms/decidim/meetings/meeting_form.rb +3 -2
- data/app/forms/decidim/meetings/response_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/{answer_form.rb → response_form.rb} +7 -7
- data/app/helpers/decidim/meetings/application_helper.rb +0 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +14 -5
- data/app/jobs/decidim/meetings/promote_from_waitlist_job.rb +63 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
- data/app/mailers/decidim/meetings/registration_mailer.rb +13 -0
- data/app/models/decidim/meetings/agenda_item.rb +5 -0
- data/app/models/decidim/meetings/meeting.rb +15 -12
- data/app/models/decidim/meetings/question.rb +12 -12
- data/app/models/decidim/meetings/questionnaire.rb +1 -1
- data/app/models/decidim/meetings/registration.rb +19 -7
- data/app/models/decidim/meetings/{answer.rb → response.rb} +6 -6
- data/app/models/decidim/meetings/response_choice.rb +15 -0
- data/app/models/decidim/meetings/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/src/decidim/meetings/admin/destroy_meeting_alert.js +1 -1
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +1 -8
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_invite_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_polls.js +1 -1
- data/app/packs/src/decidim/meetings/poll.component.js +5 -5
- data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -1
- data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -4
- data/app/permissions/decidim/meetings/admin/agenda_permissions.rb +34 -0
- data/app/permissions/decidim/meetings/admin/meeting_permissions.rb +44 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +5 -66
- data/app/permissions/decidim/meetings/admin/questionnaire_permissions.rb +30 -0
- data/app/permissions/decidim/meetings/meeting_permissions.rb +90 -0
- data/app/permissions/decidim/meetings/permissions.rb +9 -105
- data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/agenda_item_presenter.rb +29 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +11 -15
- data/app/presenters/decidim/meetings/registration_presenter.rb +24 -0
- data/app/queries/decidim/meetings/{questionnaire_user_answers.rb → questionnaire_user_responses.rb} +5 -5
- data/app/serializers/decidim/meetings/registration_serializer.rb +5 -6
- data/app/services/decidim/meetings/diff_renderer.rb +0 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -0
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -2
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +11 -8
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
- data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +19 -0
- data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +7 -5
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +2 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +6 -6
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +13 -13
- data/app/views/decidim/meetings/admin/poll/_response_option.html.erb +35 -0
- data/app/views/decidim/meetings/admin/poll/_response_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +3 -3
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +5 -5
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +19 -39
- data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +126 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_form.html.erb +2 -11
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +11 -10
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_registration_code_modal.html.erb +16 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +5 -5
- data/app/views/decidim/meetings/polls/responses/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/responses/_single_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/{answers → responses}/admin.html.erb +4 -4
- data/app/views/decidim/meetings/polls/{answers → responses}/index.html.erb +4 -4
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +6 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +1 -26
- data/config/locales/bg.yml +2 -32
- data/config/locales/ca-IT.yml +86 -40
- data/config/locales/ca.yml +86 -40
- data/config/locales/cs.yml +71 -43
- data/config/locales/de.yml +87 -41
- data/config/locales/el.yml +1 -25
- data/config/locales/en.yml +89 -43
- data/config/locales/es-MX.yml +87 -41
- data/config/locales/es-PY.yml +87 -41
- data/config/locales/es.yml +87 -41
- data/config/locales/eu.yml +86 -40
- data/config/locales/fi-plain.yml +86 -40
- data/config/locales/fi.yml +85 -39
- data/config/locales/fr-CA.yml +79 -38
- data/config/locales/fr.yml +79 -38
- data/config/locales/ga-IE.yml +1 -7
- data/config/locales/gl.yml +1 -19
- data/config/locales/hu.yml +1 -22
- data/config/locales/id-ID.yml +0 -16
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +1 -29
- data/config/locales/ja.yml +88 -42
- data/config/locales/lb.yml +1 -15
- data/config/locales/lt.yml +1 -28
- data/config/locales/lv.yml +0 -16
- data/config/locales/nl.yml +1 -26
- data/config/locales/no.yml +1 -28
- data/config/locales/pl.yml +2 -32
- data/config/locales/pt-BR.yml +1 -28
- data/config/locales/pt.yml +1 -28
- data/config/locales/ro-RO.yml +56 -29
- data/config/locales/ru.yml +0 -16
- data/config/locales/sk.yml +0 -16
- data/config/locales/sl.yml +0 -4
- data/config/locales/sv.yml +85 -39
- data/config/locales/tr-TR.yml +0 -20
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +0 -19
- data/config/locales/zh-TW.yml +1 -26
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +8 -2
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +8 -2
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20250317103343_rename_answer_to_response_in_decidim_meetings.rb +18 -0
- data/db/migrate/20250403094034_add_reminder_customization_to_decidim_meetings.rb +9 -0
- data/db/migrate/20250408071941_add_status_to_registrations_to_decidim_meetings_registrations.rb +8 -0
- data/lib/decidim/api/agenda_item_type.rb +6 -2
- data/lib/decidim/api/agenda_type.rb +6 -2
- data/lib/decidim/api/linked_resources_interface.rb +1 -1
- data/lib/decidim/api/meeting_type.rb +20 -10
- data/lib/decidim/api/service_type.rb +3 -0
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +29 -8
- data/lib/decidim/meetings/engine.rb +6 -21
- data/lib/decidim/meetings/meeting_serializer.rb +1 -2
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +0 -10
- data/lib/decidim/meetings/seeds.rb +4 -13
- data/lib/decidim/meetings/test/factories.rb +10 -16
- data/lib/decidim/meetings/user_responses_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +7 -9
- metadata +49 -35
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +0 -32
- data/app/forms/decidim/meetings/answer_choice_form.rb +0 -14
- data/app/models/decidim/meetings/answer_choice.rb +0 -15
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +0 -31
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +0 -48
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +0 -35
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +0 -13
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +0 -13
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +0 -39
- data/lib/decidim/meetings/user_answers_serializer.rb +0 -47
- /data/app/views/decidim/meetings/polls/{answers → responses}/create.js.erb +0 -0
data/config/locales/pt-BR.yml
CHANGED
@@ -17,7 +17,6 @@ pt-BR:
|
|
17
17
|
customize_registration_email: Personalizar e-mail de registro
|
18
18
|
decidim_category_id: Categoria
|
19
19
|
decidim_scope_id: Âmbito
|
20
|
-
decidim_user_group_id: Grupo de usuários
|
21
20
|
description: Descrição
|
22
21
|
end_time: Data Final
|
23
22
|
id: ID
|
@@ -112,7 +111,6 @@ pt-BR:
|
|
112
111
|
values:
|
113
112
|
official: Oficial
|
114
113
|
participants: Participante
|
115
|
-
user_group: Grupo de Usuários
|
116
114
|
with_any_type:
|
117
115
|
label: Tipo de reunião
|
118
116
|
values:
|
@@ -153,14 +151,12 @@ pt-BR:
|
|
153
151
|
default_registration_terms: Termos de registro padrão
|
154
152
|
enable_pads_creation: Ativar criação de blocos
|
155
153
|
maps_enabled: Mapas ativados
|
156
|
-
registration_code_enabled: Código de registro habilitado
|
157
154
|
resources_permissions_enabled: Permissões de ações podem ser definidas para cada encontro
|
158
155
|
terms_and_conditions_url_for_meeting_creators: URL de Termos e condições para criadores da reunião
|
159
156
|
step:
|
160
157
|
announcement: Anúncio
|
161
158
|
comments_blocked: Comentários bloqueados
|
162
159
|
creation_enabled_for_participants: Criação de reunião por participantes habilitada
|
163
|
-
creation_enabled_for_user_groups: Criação de reunião por grupos de usuários habilitados
|
164
160
|
events:
|
165
161
|
meetings:
|
166
162
|
meeting_closed:
|
@@ -188,10 +184,8 @@ pt-BR:
|
|
188
184
|
email_subject: Os espaços de ocupação ocupados com "%{resource_title}" estão acima de %{percentage}%
|
189
185
|
notification_title: Os <a href="%{resource_path}">%{resource_title}</a> atendimento ocupados são mais de %{percentage}%.
|
190
186
|
meeting_updated:
|
191
|
-
email_intro: 'A reunião "%{resource_title}" foi atualizada. Você pode ler a nova versão da sua página:'
|
192
187
|
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
193
188
|
email_subject: A reunião "%{resource_title}" foi atualizada
|
194
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi atualizada.
|
195
189
|
registration_code_validated:
|
196
190
|
email_intro: Seu código de registro "%{registration_code}" para a reunião "%{resource_title}" foi validado.
|
197
191
|
email_outro: Você recebeu esta notificação porque seu código de registro para a reunião "%{resource_title}" foi validado.
|
@@ -202,11 +196,6 @@ pt-BR:
|
|
202
196
|
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode ignorá-lo do link anterior.
|
203
197
|
email_subject: A reunião "%{resource_title}" permitiu registos.
|
204
198
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> permitiu registos.
|
205
|
-
upcoming_meeting:
|
206
|
-
email_intro: A reunião "%{resource_title}" começará em menos de 48h.
|
207
|
-
email_outro: Você recebeu esta notificação porque está seguindo a reunião "%{resource_title}". Você pode deixar de segui-lo no link anterior.
|
208
|
-
email_subject: A reunião "%{resource_title}" começará em menos de 48h.
|
209
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> começará em menos de 48h.
|
210
199
|
forms:
|
211
200
|
meetings:
|
212
201
|
attendees_count_help_text: Não se esqueça de incluir o número total de participantes na sua reunião, seja presencial, on-line ou híbrida.
|
@@ -225,8 +214,6 @@ pt-BR:
|
|
225
214
|
meetings:
|
226
215
|
actions:
|
227
216
|
agenda: Agenda
|
228
|
-
attachment_collections: Pastas
|
229
|
-
attachments: Anexos
|
230
217
|
close: Fechar
|
231
218
|
edit: Editar
|
232
219
|
invalid_destroy:
|
@@ -270,7 +257,6 @@ pt-BR:
|
|
270
257
|
invalid: Houve um problema ao atualizar esta agenda.
|
271
258
|
success: Agenda atualizada com sucesso.
|
272
259
|
exports:
|
273
|
-
answers: Respostas
|
274
260
|
meeting_comments: Comentários
|
275
261
|
meetings: Reuniões
|
276
262
|
registrations: Inscrições
|
@@ -355,6 +341,7 @@ pt-BR:
|
|
355
341
|
form:
|
356
342
|
available_slots_help: Deixe-o para 0 se você tiver slots ilimitados disponíveis.
|
357
343
|
invites: Convites
|
344
|
+
manage_questions: Perguntas
|
358
345
|
recommendation_message: Por razões de privacidade, recomendamos que você exclua esse formulário de inscrição quando não precisar mais dele. Por padrão, isso será daqui a 3 meses após o fim da reunião.
|
359
346
|
registration_email_help: Este texto aparecerá no meio do e-mail de confirmação de registro. Logo após o código de registro.
|
360
347
|
registration_form: Formulário de registro
|
@@ -473,7 +460,6 @@ pt-BR:
|
|
473
460
|
all: Tudo
|
474
461
|
official: Oficial
|
475
462
|
participants: Participantes
|
476
|
-
user_group: Grupos
|
477
463
|
search: Pesquisa
|
478
464
|
type: Tipo
|
479
465
|
type_values:
|
@@ -484,7 +470,6 @@ pt-BR:
|
|
484
470
|
form:
|
485
471
|
address_help: 'Endereço: usado pelo Geocodificador para encontrar a localização'
|
486
472
|
available_slots_help: Deixe-o em 0 se você tiver slots ilimitados disponíveis
|
487
|
-
create_as: Criar reunião como
|
488
473
|
disclaimer: 'Aviso: ao usar um sistema de registro externo, você está ciente que os organizadores do %{organization} não são responsáveis pelos dados fornecidos pelos usuários ao serviço externo.'
|
489
474
|
iframe_embed_type_html: 'Apenas alguns serviços permitem incorporar na reunião ou evento ao vivo dos seguintes domínios: %{domains}'
|
490
475
|
location_help: 'Localização: mensagem direcionada aos usuários que imprimem o local para'
|
@@ -525,7 +510,6 @@ pt-BR:
|
|
525
510
|
micro_camera_permissions_warning: Quando você clicar no botão abaixo, serão solicitadas permissões de microfone e/ou câmera e participará na videoconferência
|
526
511
|
no_slots_available: Não há slots disponíveis
|
527
512
|
organizations: Organizações participantes
|
528
|
-
registration_code_help_text: Seu código de registro
|
529
513
|
registration_state:
|
530
514
|
validated: VALIDADO
|
531
515
|
validation_pending: VALIDAÇÃO PENDENTE
|
@@ -560,13 +544,9 @@ pt-BR:
|
|
560
544
|
title: Título
|
561
545
|
polls:
|
562
546
|
questions:
|
563
|
-
index:
|
564
|
-
empty_questions: Durante esta reunião, algumas perguntas serão enviadas e você poderá respondê-las. Elas serão exibidas aqui.
|
565
547
|
index_admin:
|
566
548
|
edit: Editar no painel de administração
|
567
549
|
question: Pergunta
|
568
|
-
received_answer: resposta recebida
|
569
|
-
received_answers: respostas recebidas
|
570
550
|
results: Resultados
|
571
551
|
send: Enviar
|
572
552
|
sent: Enviado
|
@@ -576,7 +556,6 @@ pt-BR:
|
|
576
556
|
question_replied: Pergunta respondida
|
577
557
|
reply_question: Responder pergunta
|
578
558
|
public_participants_list:
|
579
|
-
attending_organizations: Organizações
|
580
559
|
attending_participants: Participantes presentes
|
581
560
|
hidden_participants_count:
|
582
561
|
one: e mais %{count} pessoa
|
@@ -586,7 +565,6 @@ pt-BR:
|
|
586
565
|
confirmation:
|
587
566
|
confirmed_html: Seu registro para a reunião <a href="%{url}">%{title}</a> foi confirmado.
|
588
567
|
details: Você encontrará os detalhes da reunião no anexo.
|
589
|
-
registration_code: Seu código de registro é %{code}.
|
590
568
|
registration_type:
|
591
569
|
on_different_platform: Em uma plataforma diferente
|
592
570
|
on_this_platform: Nesta plataforma
|
@@ -611,11 +589,6 @@ pt-BR:
|
|
611
589
|
withdraw: Retirado
|
612
590
|
withdraw:
|
613
591
|
success: A reunião foi retirada com sucesso.
|
614
|
-
metrics:
|
615
|
-
meetings:
|
616
|
-
description: Número de reuniões criadas
|
617
|
-
object: reuniões
|
618
|
-
title: Reuniões
|
619
592
|
participatory_spaces:
|
620
593
|
highlighted_meetings:
|
621
594
|
past_meetings: Reuniões anteriores
|
data/config/locales/pt.yml
CHANGED
@@ -17,7 +17,6 @@ pt:
|
|
17
17
|
customize_registration_email: Personalizar o e-mail de registo
|
18
18
|
decidim_category_id: Categoria
|
19
19
|
decidim_scope_id: Âmbito
|
20
|
-
decidim_user_group_id: Grupo de utilizadores
|
21
20
|
description: Descrição
|
22
21
|
id: IDENTIFICAÇÃO
|
23
22
|
location: Localização
|
@@ -66,9 +65,6 @@ pt:
|
|
66
65
|
values:
|
67
66
|
'false': Passado
|
68
67
|
'true': Seguinte
|
69
|
-
with_any_origin:
|
70
|
-
values:
|
71
|
-
user_group: Grupos de utilizadores
|
72
68
|
with_any_type:
|
73
69
|
label: Tipo de reunião
|
74
70
|
values:
|
@@ -95,14 +91,12 @@ pt:
|
|
95
91
|
default_registration_terms: Termos de registo predefinidos
|
96
92
|
enable_pads_creation: Ativar criação de blocos
|
97
93
|
maps_enabled: Mapas activados
|
98
|
-
registration_code_enabled: Código de registo activado
|
99
94
|
resources_permissions_enabled: As permissões de ações podem ser definidas para cada reunião
|
100
95
|
terms_and_conditions_url_for_meeting_creators: URL dos termos e condições para criadores de reuniões
|
101
96
|
step:
|
102
97
|
announcement: Anúncio
|
103
98
|
comments_blocked: Comentários bloqueados
|
104
99
|
creation_enabled_for_participants: Criação de reunião por participantes ativada
|
105
|
-
creation_enabled_for_user_groups: Criação de reunião por grupo de utilizadores ativada
|
106
100
|
events:
|
107
101
|
meetings:
|
108
102
|
meeting_closed:
|
@@ -130,10 +124,8 @@ pt:
|
|
130
124
|
email_subject: Os intervalos de tempo alocados à reunião "%{resource_title}" estão acima de %{percentage}%
|
131
125
|
notification_title: Os intervalos de tempo alocados à reunião <a href="%{resource_path}">%{resource_title}</a> estão acima de %{percentage}%.
|
132
126
|
meeting_updated:
|
133
|
-
email_intro: 'A reunião "%{resource_title}" foi atualizada. Pode ler a nova versão a partir da sua página:'
|
134
127
|
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
128
|
email_subject: A reunião "%{resource_title}" foi atualizada
|
136
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> foi atualizada.
|
137
129
|
registration_code_validated:
|
138
130
|
email_intro: O seu código de registo "%{registration_code}" para a reunião "%{resource_title}" foi validado.
|
139
131
|
email_outro: Recebeu esta notificação porque o seu código de registo para a reunião "%{resource_title}" foi validado.
|
@@ -144,11 +136,6 @@ pt:
|
|
144
136
|
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
145
137
|
email_subject: A reunião "%{resource_title}" ativou os registos.
|
146
138
|
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> ativou os registos.
|
147
|
-
upcoming_meeting:
|
148
|
-
email_intro: A reunião "%{resource_title}" começará em menos de 48h.
|
149
|
-
email_outro: Recebeu esta notificação porque segue a reunião "%{resource_title}". Pode deixar de segui-la a partir da hiperligação anterior.
|
150
|
-
email_subject: A reunião "%{resource_title}" começará em menos de 48h.
|
151
|
-
notification_title: A reunião <a href="%{resource_path}">%{resource_title}</a> começará em menos de 48h.
|
152
139
|
gamification:
|
153
140
|
badges:
|
154
141
|
attended_meetings:
|
@@ -162,8 +149,6 @@ pt:
|
|
162
149
|
meetings:
|
163
150
|
actions:
|
164
151
|
agenda: Agenda
|
165
|
-
attachment_collections: Pastas
|
166
|
-
attachments: Anexos
|
167
152
|
close: Fechar
|
168
153
|
edit: Editar
|
169
154
|
invalid_destroy:
|
@@ -200,7 +185,6 @@ pt:
|
|
200
185
|
create: Criar
|
201
186
|
title: Nova agenda
|
202
187
|
exports:
|
203
|
-
answers: Respostas
|
204
188
|
meeting_comments: Comentários
|
205
189
|
meetings: Reuniões
|
206
190
|
registrations: Registos
|
@@ -265,6 +249,7 @@ pt:
|
|
265
249
|
form:
|
266
250
|
available_slots_help: Deixar a 0 se tiver intervalos de tempo ilimitados disponíveis.
|
267
251
|
invites: Convites
|
252
|
+
manage_questions: Pergunta
|
268
253
|
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.
|
269
254
|
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.
|
270
255
|
registration_form: Formulário de registo
|
@@ -355,7 +340,6 @@ pt:
|
|
355
340
|
form:
|
356
341
|
address_help: 'Endereço: utilizado pelo Geocoder para encontrar a localização'
|
357
342
|
available_slots_help: Deixar em 0 se tiver número ilimitado de intervalos de tempo disponíveis
|
358
|
-
create_as: Criar reunião como
|
359
343
|
location_help: 'Localização: mensagem direcionada aos utilizadores sugerindo o local onde se encontrarem'
|
360
344
|
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.'
|
361
345
|
online_meeting_url_help: 'Ligação: permitir aos participantes ligarem-se directamente à sua reunião'
|
@@ -385,7 +369,6 @@ pt:
|
|
385
369
|
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
|
386
370
|
no_slots_available: Não há intervalos de tempo disponíveis
|
387
371
|
organizations: Organizações participantes
|
388
|
-
registration_code_help_text: O seu código de registo
|
389
372
|
registration_state:
|
390
373
|
validated: VALIDADO
|
391
374
|
validation_pending: VALIDAÇÃO PENDENTE
|
@@ -417,12 +400,8 @@ pt:
|
|
417
400
|
title: Título
|
418
401
|
polls:
|
419
402
|
questions:
|
420
|
-
index:
|
421
|
-
empty_questions: Durante esta reunião irão ser-lhe enviadas algumas questões e poderá responder-lhes. Serão exibidas aqui.
|
422
403
|
index_admin:
|
423
404
|
question: Questão
|
424
|
-
received_answer: resposta recebida
|
425
|
-
received_answers: respostas recebidas
|
426
405
|
results: Resultados
|
427
406
|
send: Enviar
|
428
407
|
sent: Enviado
|
@@ -441,7 +420,6 @@ pt:
|
|
441
420
|
confirmation:
|
442
421
|
confirmed_html: O seu registo para a reunião <a href="%{url}">%{title}</a> foi confirmado.
|
443
422
|
details: Encontrará os detalhes da reunião no anexo.
|
444
|
-
registration_code: O seu código de registo é %{code}.
|
445
423
|
registration_type:
|
446
424
|
on_different_platform: Numa plataforma diferente
|
447
425
|
on_this_platform: Nesta plataforma
|
@@ -461,11 +439,6 @@ pt:
|
|
461
439
|
types:
|
462
440
|
private_meeting: Reunião privada
|
463
441
|
transparent: Transparente
|
464
|
-
metrics:
|
465
|
-
meetings:
|
466
|
-
description: Número de reuniões criadas
|
467
|
-
object: reuniões
|
468
|
-
title: Reuniões
|
469
442
|
participatory_spaces:
|
470
443
|
highlighted_meetings:
|
471
444
|
past_meetings: Reuniões passadas
|
data/config/locales/ro-RO.yml
CHANGED
@@ -17,7 +17,6 @@ ro:
|
|
17
17
|
customize_registration_email: Personalizați e-mail-ul de înregistrare
|
18
18
|
decidim_category_id: Categorie
|
19
19
|
decidim_scope_id: Domeniu de interes
|
20
|
-
decidim_user_group_id: Grup de utilizatori
|
21
20
|
description: Descriere
|
22
21
|
end_time: Data sfarsit
|
23
22
|
id: ID
|
@@ -101,7 +100,6 @@ ro:
|
|
101
100
|
values:
|
102
101
|
official: Oficial
|
103
102
|
participants: Participant
|
104
|
-
user_group: Grupuri de utilizatori
|
105
103
|
with_any_type:
|
106
104
|
label: Tip de întâlnire
|
107
105
|
values:
|
@@ -115,6 +113,11 @@ ro:
|
|
115
113
|
new:
|
116
114
|
copy: Copiază
|
117
115
|
title: Duplicarea reuniunii
|
116
|
+
tooltips:
|
117
|
+
cannot_close_meetings: Nu se poate închide această întâlnire deoarece este creată de un participant
|
118
|
+
cannot_duplicate_meetings: Nu se poate duplica această întâlnire deoarece este creată de un participant
|
119
|
+
cannot_manage_agenda_meetings: Nu se poate gestiona agenda în această întâlnire deoarece este creată de un participant
|
120
|
+
cannot_manage_attachments_meetings: Nu se pot gestiona atașamentele în această întâlnire deoarece este creat de un participant
|
118
121
|
components:
|
119
122
|
meetings:
|
120
123
|
actions:
|
@@ -130,14 +133,13 @@ ro:
|
|
130
133
|
default_registration_terms: Condiții de înregistrare implicite
|
131
134
|
enable_pads_creation: Activează crearea de pad-uri
|
132
135
|
maps_enabled: Hărți activate
|
133
|
-
registration_code_enabled:
|
136
|
+
registration_code_enabled: Codul de înregistrare și QR activate
|
134
137
|
resources_permissions_enabled: Drepturile de acțiune pot fi setate pentru fiecare întâlnire
|
135
138
|
terms_and_conditions_url_for_meeting_creators: URL condiții pentru întrunirea creatorilor
|
136
139
|
step:
|
137
140
|
announcement: Anunţ
|
138
141
|
comments_blocked: Comentarii blocate
|
139
142
|
creation_enabled_for_participants: Crearea de şedinţe de către participanţi este activată
|
140
|
-
creation_enabled_for_user_groups: Crearea de ședințe de către grupuri de utilizatori activată
|
141
143
|
download_your_data:
|
142
144
|
help:
|
143
145
|
invites:
|
@@ -180,25 +182,32 @@ ro:
|
|
180
182
|
email_subject: Sloturile alocate pentru întâlnirea "%{resource_title}" sunt de peste %{percentage}%
|
181
183
|
notification_title: Sloturile alocate pentru ședința de <a href="%{resource_path}">%{resource_title}</a> sunt de peste %{percentage}%.
|
182
184
|
meeting_updated:
|
183
|
-
email_intro: 'Întâlnirea "%{resource_title}" a fost
|
185
|
+
email_intro: 'Întâlnirea "%{resource_title}" a fost actualizată cu modificări cu privire la %{changed_fields}. Puteți citi noua versiune din pagina sa:'
|
184
186
|
email_outro: Ai primit această notificare deoarece urmărești întâlnirea „%{resource_title}”. O puteți anula de la link-ul anterior.
|
185
187
|
email_subject: Întâlnirea „%{resource_title}” a fost actualizată
|
186
|
-
|
188
|
+
field_names:
|
189
|
+
address: adresa
|
190
|
+
end_time: ora de sfârșit
|
191
|
+
location: locația
|
192
|
+
start_time: ora de început
|
193
|
+
notification_title: Întâlnirea <a href="%{resource_path}">%{resource_title}</a> a fost actualizată cu modificări la %{changed_fields}.
|
194
|
+
meeting_waitlist_added:
|
195
|
+
notification_title: Ați fost adăugat la lista de așteptare pentru întâlnirea <a href="%{resource_url}">%{resource_title}</a>.
|
187
196
|
registration_code_validated:
|
188
197
|
email_intro: Codul tău de înregistrare "%{registration_code}" pentru întâlnirea "%{resource_title}" a fost validat.
|
189
198
|
email_outro: Ai primit această notificare deoarece codul tău de înregistrare pentru întâlnirea „%{resource_title}” a fost validat.
|
190
199
|
email_subject: Codul tău de înregistrare "%{registration_code}" pentru întâlnirea "%{resource_title}" a fost validat
|
191
200
|
notification_title: Codul tău de înregistrare "%{registration_code}" pentru ședința <a href="%{resource_path}">%{resource_title}</a> a fost validat.
|
201
|
+
registration_marked_as_attendee:
|
202
|
+
email_intro: Înregistrarea dvs. pentru întâlnirea "%{resource_title}" a fost marcată ca participant.
|
203
|
+
email_outro: Ai primit această notificare deoarece codul tău de înregistrare pentru întâlnirea „%{resource_title}” a fost validat.
|
204
|
+
email_subject: Înregistrarea dvs. pentru întâlnirea "%{resource_title}" a fost marcată ca participant
|
205
|
+
notification_title: Înregistrarea dvs. pentru întâlnirea <a href="%{resource_path}">%{resource_title}</a>a fost marcată ca participant.
|
192
206
|
registrations_enabled:
|
193
207
|
email_intro: 'Întâlnirea "%{resource_title}" a permis înregistrări. Te poți înregistra pe pagina sa:'
|
194
208
|
email_outro: Ai primit această notificare deoarece te-ai înregistrat pentru întâlnirea „%{resource_title}”. O poți anula de la link-ul anterior.
|
195
209
|
email_subject: Întâlnirea "%{resource_title}" a permis înregistrări.
|
196
210
|
notification_title: Întâlnirea <a href="%{resource_path}">%{resource_title}</a> a permis înregistrări.
|
197
|
-
upcoming_meeting:
|
198
|
-
email_intro: Întâlnirea „%{resource_title}” va începe în mai puțin de 48 de ore.
|
199
|
-
email_outro: Ai primit această notificare deoarece urmărești ședința „%{resource_title}”. Poți opri notificările accesând link-ul anterior.
|
200
|
-
email_subject: Întâlnirea „%{resource_title}” va începe în mai puțin de 48 de ore.
|
201
|
-
notification_title: Ședința <a href="%{resource_path}">%{resource_title}</a> va începe în mai puțin de 48 de ore.
|
202
211
|
gamification:
|
203
212
|
badges:
|
204
213
|
attended_meetings:
|
@@ -212,8 +221,6 @@ ro:
|
|
212
221
|
meetings:
|
213
222
|
actions:
|
214
223
|
agenda: Agendă
|
215
|
-
attachment_collections: Dosare
|
216
|
-
attachments: Atașamente
|
217
224
|
close: Închide
|
218
225
|
edit: Editare
|
219
226
|
invalid_destroy:
|
@@ -222,6 +229,7 @@ ro:
|
|
222
229
|
few: 'Întâlnirea nu poate fi eliminată deoarece are %{count} propuneri asociate:'
|
223
230
|
other: 'Întâlnirea nu poate fi eliminată deoarece are %{count} propuneri asociate acestuia:'
|
224
231
|
manage_poll: Gestionare sondaj
|
232
|
+
mark_as_attendee: Marchează ca participant
|
225
233
|
preview: Previzualizare
|
226
234
|
registrations: Înregistrări
|
227
235
|
title: Acțiuni
|
@@ -251,7 +259,6 @@ ro:
|
|
251
259
|
create: Creează
|
252
260
|
title: Agenda nouă
|
253
261
|
exports:
|
254
|
-
answers: Răspunsuri
|
255
262
|
meeting_comments: Comentarii
|
256
263
|
meetings: Întâlniri
|
257
264
|
registrations: Înregistrări
|
@@ -320,14 +327,14 @@ ro:
|
|
320
327
|
registrations:
|
321
328
|
edit:
|
322
329
|
save: Salvează
|
323
|
-
validate: Valideaza
|
324
|
-
validate_registration_code: Validează codul de înregistrare
|
325
330
|
form:
|
326
331
|
available_slots_help: Lăsați la 0 dacă aveți sloturi nelimitate disponibile.
|
327
332
|
invites: Invitații
|
333
|
+
manage_questions: Întrebări
|
328
334
|
recommendation_message: Din motive de confidenţialitate îți recomandăm să şterge acest formular atunci când nu mai ai nevoie de el. Acest lucru se întâmplă în mod automat la 3 luni după încheierea ședinței.
|
329
335
|
registration_email_help: Acest text va apărea în mijlocul e-mailului de confirmare a înregistrării. Imediat după codul de înregistrare.
|
330
336
|
registration_form: Formular de înregistrare
|
337
|
+
registrations: Vezi înregistrările
|
331
338
|
registrations_count:
|
332
339
|
one: A existat %{count} înregistrări.
|
333
340
|
few: Au fost %{count} înregistrări.
|
@@ -337,6 +344,14 @@ ro:
|
|
337
344
|
update:
|
338
345
|
invalid: A apărut o eroare la salvarea setărilor de înregistrare.
|
339
346
|
success: Setarile inregistrarilor au fost salvate.
|
347
|
+
registrations_attendees:
|
348
|
+
index:
|
349
|
+
title: Înregistrări
|
350
|
+
validate: Valideaza
|
351
|
+
validate_registration_code: Validează codul de înregistrare
|
352
|
+
mark_attendee:
|
353
|
+
invalid: Înregistrarea este deja marcată ca participantă.
|
354
|
+
success: Înregistrare marcată ca participanta cu succes.
|
340
355
|
validate_registration_code:
|
341
356
|
invalid: Acest cod de înregistrare nu este valid.
|
342
357
|
success: Codul de înregistrare a fost validat.
|
@@ -435,7 +450,6 @@ ro:
|
|
435
450
|
all: Toate
|
436
451
|
official: Oficial
|
437
452
|
participants: Participanți
|
438
|
-
user_group: Grupuri
|
439
453
|
search: Caută
|
440
454
|
type: Tip
|
441
455
|
type_values:
|
@@ -446,7 +460,6 @@ ro:
|
|
446
460
|
form:
|
447
461
|
address_help: 'Adresă: utilizată de Geocoder pentru a găsi locaţia'
|
448
462
|
available_slots_help: Lasă această opțiune la 0 dacă ai sloturi disponibile nelimitate
|
449
|
-
create_as: Creeaza o întâlnire ca
|
450
463
|
location_help: 'Locație: mesaj direcționat către utilizatori care implică locul la care să se întâlnească'
|
451
464
|
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.'
|
452
465
|
online_meeting_url_help: 'Link: permite participanților să se conecteze direct la întâlnirea ta'
|
@@ -472,8 +485,11 @@ ro:
|
|
472
485
|
attendees: Numărul participanților
|
473
486
|
contributions: Număr de contribuții
|
474
487
|
join: Participă la întâlnire
|
488
|
+
join_waitlist: Înscrieți-vă pe lista de așteptare
|
475
489
|
leave: Anulează înregistrarea
|
476
490
|
leave_confirmation: Sigur dorești să anulezi înregistrarea la această întâlnire?
|
491
|
+
leave_waitlist: Retrăgeți-vă de pe lista de așteptare
|
492
|
+
leave_waitlist_confirmation: Sunteți sigur că vreți să părăsiți lista de așteptare pentru această întâlnire?
|
477
493
|
link_available_soon: Link disponibil în curând
|
478
494
|
link_closed: Link-ul pentru a se alătura întâlnirii va fi disponibil cu câteva minute înainte ca aceasta să înceapă
|
479
495
|
live_event: Această întâlnire are loc chiar acum
|
@@ -481,7 +497,10 @@ ro:
|
|
481
497
|
micro_camera_permissions_warning: Când dai click pe butonul de mai jos, ți se va cere dreptul de a accesa microfonul și/sau camera, și apoi te vei putea alătura videoconferinței
|
482
498
|
no_slots_available: Niciun slot disponibil
|
483
499
|
organizations: Organizații participante
|
484
|
-
|
500
|
+
pending_address: Locația va fi anunțată în curând.
|
501
|
+
registration_and_qr_code: Codul de înregistrare și codul QR
|
502
|
+
registration_code: 'Codul tău de înregistrare este %{code}'
|
503
|
+
registration_code_help_text: Codul de înregistrare și codul QR
|
485
504
|
registration_state:
|
486
505
|
validated: VALIDAT
|
487
506
|
validation_pending: VALIDARE PENDARE
|
@@ -490,6 +509,9 @@ ro:
|
|
490
509
|
few: "%{count} sloturi rămase"
|
491
510
|
other: "%{count} sloturi rămase"
|
492
511
|
visit_finished: Arată întâlniri deja desfășurate
|
512
|
+
waitlist:
|
513
|
+
description: Dacă un loc devine disponibil, vom procesa cererea dvs. automat și vă notificăm prin e-mail.
|
514
|
+
status: Sunteți pe lista de așteptare
|
493
515
|
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
516
|
withdraw_confirmation_html: Sigur dorești să retragi această întâlnire?<br><br><strong>Această acțiune nu poate fi anulată!</strong>
|
495
517
|
update:
|
@@ -514,15 +536,20 @@ ro:
|
|
514
536
|
official_meeting: Întâlnire publică
|
515
537
|
start_time: Data de început
|
516
538
|
title: Titlu
|
539
|
+
registration:
|
540
|
+
actions: Acţiuni
|
541
|
+
fields:
|
542
|
+
email: Email
|
543
|
+
name: Nume
|
544
|
+
status: Stare
|
545
|
+
status:
|
546
|
+
attended: Participat
|
547
|
+
not_attended: Nu a participat
|
517
548
|
polls:
|
518
549
|
questions:
|
519
|
-
index:
|
520
|
-
empty_questions: Pe parcursul acestei întâlniri, vor fi trimise câteva întrebări și vei putea răspunde la acestea. Acestea vor fi afișate aici.
|
521
550
|
index_admin:
|
522
551
|
edit: Editează în panoul de administrare
|
523
552
|
question: Întrebare
|
524
|
-
received_answer: răspuns primit
|
525
|
-
received_answers: răspunsuri primite
|
526
553
|
results: Rezultate
|
527
554
|
send: Trimite
|
528
555
|
sent: Trimis
|
@@ -542,7 +569,7 @@ ro:
|
|
542
569
|
confirmation:
|
543
570
|
confirmed_html: Înregistrarea dvs. pentru ședința <a href="%{url}">%{title}</a> a fost confirmată.
|
544
571
|
details: Vei găsi detaliile întâlnirii în atașament.
|
545
|
-
registration_code: Codul tău de înregistrare este %{code}.
|
572
|
+
registration_code: Codul tău de înregistrare este %{code}. Te rugăm să arăți următorul cod QR unui administrator pentru a valida participarea.
|
546
573
|
registration_type:
|
547
574
|
on_different_platform: Pe o platformă diferită
|
548
575
|
on_this_platform: Pe această platformă
|
@@ -556,6 +583,9 @@ ro:
|
|
556
583
|
destroy:
|
557
584
|
invalid: A existat o problemă la părăsirea acestei reuniuni.
|
558
585
|
success: Ai părăsit şedinţa cu succes.
|
586
|
+
waitlist:
|
587
|
+
invalid: A apărut o eroare la înscrierea pe lista de așteptare.
|
588
|
+
success: V-ați înscris pe lista de așteptare cu succes. Veți fi notificat dacă înregistrarea dvs. devine eligibilă.
|
559
589
|
type_of_meeting:
|
560
590
|
hybrid: Hibrid
|
561
591
|
in_person: În persoană
|
@@ -564,11 +594,6 @@ ro:
|
|
564
594
|
private_meeting: Întâlnire privată
|
565
595
|
transparent: Transparent
|
566
596
|
withdraw: Retrasă
|
567
|
-
metrics:
|
568
|
-
meetings:
|
569
|
-
description: Numărul de întâlniri create
|
570
|
-
object: ședințe
|
571
|
-
title: Întâlniri
|
572
597
|
open_data:
|
573
598
|
help:
|
574
599
|
meeting_comments:
|
@@ -597,6 +622,8 @@ ro:
|
|
597
622
|
proposal_meeting: 'Întâlniri asociate:'
|
598
623
|
statistics:
|
599
624
|
meetings_count: Întâlniri
|
625
|
+
meetings_count_tooltip: Numărul de întâlniri care au avut loc atât online, cât și în persoană.
|
626
|
+
participatory_space_meetings_count: Întâlniri
|
600
627
|
devise:
|
601
628
|
mailer:
|
602
629
|
join_meeting:
|
data/config/locales/ru.yml
CHANGED
@@ -97,10 +97,8 @@ ru:
|
|
97
97
|
email_subject: Число мест, забронированных на встречу "%{resource_title}", превысило %{percentage}% процентов
|
98
98
|
notification_title: На встречу <a href="%{resource_path}">%{resource_title}</a> забронировано более %{percentage}% процентов мест.
|
99
99
|
meeting_updated:
|
100
|
-
email_intro: 'Встреча «%{resource_title}» обновлена. Вы можете прочитать новую версию на странице:'
|
101
100
|
email_outro: Вы получили это уведомление, потому что вы следите за встречей «%{resource_title}». Вы можете перестать за ней следить, перейдя по приведенной выше ссылке.
|
102
101
|
email_subject: Встреча "%{resource_title}" обновлена
|
103
|
-
notification_title: Встреча <a href="%{resource_path}">%{resource_title}</a> обновлена.
|
104
102
|
registration_code_validated:
|
105
103
|
email_intro: Ваш регистрационный код «%{registration_code}» для встречи %{resource_title} был подтвержден.
|
106
104
|
email_outro: Вы получили это уведомление, потому что ваш регистрационный код для встречи «%{resource_title}» был подтвержден.
|
@@ -111,11 +109,6 @@ ru:
|
|
111
109
|
email_outro: Вы получили это уведомление, потому что вы следите за встречей «%{resource_title}». Вы можете перестать за ней следить, перейдя по приведенной выше ссылке.
|
112
110
|
email_subject: Открылась регистрация на встречу «%{resource_title}».
|
113
111
|
notification_title: Открыта регистрация на встречу <a href="%{resource_path}">%{resource_title}</a>.
|
114
|
-
upcoming_meeting:
|
115
|
-
email_intro: Встреча "%{resource_title}" начнется менее чем через 48 часов.
|
116
|
-
email_outro: Вы получили это уведомление, потому что вы следите за встречей «%{resource_title}». Вы можете перестать за ней следить, перейдя по приведенной выше ссылке.
|
117
|
-
email_subject: Встреча "%{resource_title}" начнется менее чем через 48 часов.
|
118
|
-
notification_title: Встреча <a href="%{resource_path}">%{resource_title}</a> начнется менее чем через 48 часов.
|
119
112
|
gamification:
|
120
113
|
badges:
|
121
114
|
attended_meetings:
|
@@ -128,8 +121,6 @@ ru:
|
|
128
121
|
meetings:
|
129
122
|
actions:
|
130
123
|
agenda: Повестка дня
|
131
|
-
attachment_collections: Папки
|
132
|
-
attachments: Прикрепленные файлы
|
133
124
|
close: Закрыть
|
134
125
|
edit: Редактировать
|
135
126
|
preview: Предпросмотр
|
@@ -261,7 +252,6 @@ ru:
|
|
261
252
|
meeting_minutes: Протокол встречи
|
262
253
|
no_slots_available: Не осталось мест
|
263
254
|
organizations: Участвующие организации
|
264
|
-
registration_code_help_text: Ваш регистрационный код
|
265
255
|
registration_state:
|
266
256
|
validated: ПОДТВЕРЖДЕНО
|
267
257
|
validation_pending: ОЖИДАНИЕ ПОДТВЕРЖДЕНИЯ
|
@@ -288,7 +278,6 @@ ru:
|
|
288
278
|
confirmation:
|
289
279
|
confirmed_html: Ваша регистрация на встречу <a href="%{url}">%{title}</a> подтверждена.
|
290
280
|
details: Подробное описание встречи - в прилагаемом файле.
|
291
|
-
registration_code: 'Ваш регистрационный код: %{code}.'
|
292
281
|
registrations:
|
293
282
|
create:
|
294
283
|
invalid: При попытке присоединиться к встрече произошла ошибка.
|
@@ -301,11 +290,6 @@ ru:
|
|
301
290
|
types:
|
302
291
|
private_meeting: Частная встреча
|
303
292
|
transparent: Прозрачная
|
304
|
-
metrics:
|
305
|
-
meetings:
|
306
|
-
description: Количество созданных встреч
|
307
|
-
object: встречи
|
308
|
-
title: Встречи
|
309
293
|
participatory_spaces:
|
310
294
|
highlighted_meetings:
|
311
295
|
past_meetings: Прошедшие встречи
|
data/config/locales/sk.yml
CHANGED
@@ -98,10 +98,8 @@ sk:
|
|
98
98
|
email_subject: Schôdzky obsadené schôdzkou "%{resource_title}" sú nad%{percentage}%
|
99
99
|
notification_title: Počet obsadených slotov <a href="%{resource_path}">%{resource_title} </a> je vyššia ako%{percentage}%.
|
100
100
|
meeting_updated:
|
101
|
-
email_intro: 'Schôdzka "%{resource_title}" bola aktualizovaná. Nová verzia si môžete prečítať na stránke: '
|
102
101
|
email_outro: Toto upozornenie ste dostali, pretože postupujete po stretnutí "%{resource_title}". Môžete ho odhlásiť od predchádzajúceho odkazu.
|
103
102
|
email_subject: Schôdzka "%{resource_title}" bola aktualizovaná
|
104
|
-
notification_title: Schôdzka <a href="%{resource_path}">%{resource_title} </a> bola aktualizovaná.
|
105
103
|
registration_code_validated:
|
106
104
|
email_intro: Váš registračný kód "%{registration_code}" pre stretnutie "%{resource_title}" bol overený.
|
107
105
|
email_outro: Toto oznámenie ste dostali, pretože bol overený váš registračný kód pre schôdzku "%{resource_title}".
|
@@ -112,11 +110,6 @@ sk:
|
|
112
110
|
email_outro: Toto upozornenie ste dostali, pretože postupujete po stretnutí "%{resource_title}". Môžete ho odhlásiť od predchádzajúceho odkazu.
|
113
111
|
email_subject: Schôdzka "%{resource_title}" povolila registrácie.
|
114
112
|
notification_title: Schôdzka <a href="%{resource_path}">%{resource_title} </a> povolila registrácie.
|
115
|
-
upcoming_meeting:
|
116
|
-
email_intro: Schôdzka "%{resource_title}" začne za menej ako 48 hodín.
|
117
|
-
email_outro: Toto upozornenie ste dostali, pretože postupujete po stretnutí "%{resource_title}". Môžete ho odhlásiť od predchádzajúceho odkazu.
|
118
|
-
email_subject: Schôdzka "%{resource_title}" začne za menej ako 48 hodín.
|
119
|
-
notification_title: Stretnutie <a href="%{resource_path}">%{resource_title} </a> sa začne za menej ako 48 hodín.
|
120
113
|
gamification:
|
121
114
|
badges:
|
122
115
|
attended_meetings:
|
@@ -130,8 +123,6 @@ sk:
|
|
130
123
|
meetings:
|
131
124
|
actions:
|
132
125
|
agenda: Denný program
|
133
|
-
attachment_collections: Zložky
|
134
|
-
attachments: Prílohy
|
135
126
|
close: Zavrieť
|
136
127
|
edit: Upraviť
|
137
128
|
preview: Náhľad
|
@@ -274,7 +265,6 @@ sk:
|
|
274
265
|
meeting_minutes: Zápisnica z porady
|
275
266
|
no_slots_available: Žiadne sloty nie sú k dispozícii
|
276
267
|
organizations: Účastnícke organizácie
|
277
|
-
registration_code_help_text: Váš registračný kód
|
278
268
|
registration_state:
|
279
269
|
validated: DOKÁZANÝ
|
280
270
|
validation_pending: OVERENIE ČAKÁ NA SCHVÁLENIE
|
@@ -306,7 +296,6 @@ sk:
|
|
306
296
|
confirmation:
|
307
297
|
confirmed_html: Vaša registrácia pre stretnutie <a href="%{url}">%{title} </a> bola potvrdená.
|
308
298
|
details: Podrobnosti schôdzky nájdete v prílohe.
|
309
|
-
registration_code: Váš registračný kód je %{code}.
|
310
299
|
registrations:
|
311
300
|
create:
|
312
301
|
invalid: Na schôdzi došlo k problému.
|
@@ -319,11 +308,6 @@ sk:
|
|
319
308
|
types:
|
320
309
|
private_meeting: Privátne stretnutie
|
321
310
|
transparent: Priehľadný
|
322
|
-
metrics:
|
323
|
-
meetings:
|
324
|
-
description: Počet vytvorených stretnutí
|
325
|
-
object: stretnutia
|
326
|
-
title: Stretnutie
|
327
311
|
participatory_spaces:
|
328
312
|
highlighted_meetings:
|
329
313
|
past_meetings: Minulé schôdze
|