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/fi.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
fi:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
add_documents: Lisää asiakirjoja
|
7
5
|
close_meeting:
|
8
6
|
attendees_count: Osallistujien määrä
|
9
7
|
attending_organizations: Osallistuvien organisaatioiden lista
|
@@ -19,7 +17,6 @@ fi:
|
|
19
17
|
customize_registration_email: Muokkaa ilmoittautumisten sähköpostivastausta
|
20
18
|
decidim_category_id: Aihepiiri
|
21
19
|
decidim_scope_id: Teema
|
22
|
-
decidim_user_group_id: Käyttäjäryhmä
|
23
20
|
description: Kuvaus
|
24
21
|
end_time: Päättymisaika
|
25
22
|
id: ID
|
@@ -53,6 +50,8 @@ fi:
|
|
53
50
|
meeting_registration_invite:
|
54
51
|
email: Sähköpostiosoite
|
55
52
|
name: Nimi
|
53
|
+
response:
|
54
|
+
add_documents: Lisää asiakirjoja
|
56
55
|
validate_registration_code:
|
57
56
|
code: Koodi
|
58
57
|
errors:
|
@@ -123,7 +122,6 @@ fi:
|
|
123
122
|
values:
|
124
123
|
official: Viralliset
|
125
124
|
participants: Osallistujat
|
126
|
-
user_group: Käyttäjäryhmät
|
127
125
|
with_any_type:
|
128
126
|
label: Tapaamisen tyyppi
|
129
127
|
values:
|
@@ -149,6 +147,16 @@ fi:
|
|
149
147
|
new:
|
150
148
|
copy: Kopioi
|
151
149
|
title: Kopioi tapaaminen
|
150
|
+
tooltips:
|
151
|
+
cannot_close_meetings: Tätä tapaamista ei voi sulkea, koska se on osallistujan luoma
|
152
|
+
cannot_duplicate_meetings: Tätä tapaamista ei voi kopioida, koska se on osallistujan luoma
|
153
|
+
cannot_edit_meetings: Tätä tapaamista ei voi muokata, koska se on osallistujan luoma
|
154
|
+
cannot_manage_agenda_meetings: Tapaamisen esityslistaa ei voida hallita, koska tapaaminen on osallistujan luoma
|
155
|
+
cannot_manage_attachments_meetings: Tapaamisen liitteitä ei voida hallita, koska tapaaminen on osallistujan luoma
|
156
|
+
cannot_manage_poll_meetings: Tapaamisen mielipidetiedustelua ei voida hallita, koska tapaaminen on osallistujan luoma
|
157
|
+
cannot_manage_registrations_meetings: Tapaamisen ilmoittautumisia ei voida hallita, koska tapaaminen on osallistujan luoma, ilmoittautumiset eivät ole sallittu tapaamiselle tai tapaamisen ilmoittautumisen on määritetty tapahtuvan tämän alustan ulkopuolella
|
158
|
+
cannot_mark_attendee: Kyseinen osallistuja on jo merkitty tapaamisen osallistujaksi
|
159
|
+
deleted_meetings_info: Tapaamista ei voida poistaa, koska tapaaminen on osallistujan luoma.
|
152
160
|
components:
|
153
161
|
meetings:
|
154
162
|
actions:
|
@@ -168,7 +176,7 @@ fi:
|
|
168
176
|
enable_pads_creation: Ota käyttöön muistioiden luominen
|
169
177
|
maps_enabled: Karttatoiminnot käytössä
|
170
178
|
no_taxonomy_filters_found: Luokittelusuodattimia ei löytynyt.
|
171
|
-
registration_code_enabled: Ilmoittautumiskoodit käytössä
|
179
|
+
registration_code_enabled: Ilmoittautumiskoodit ja QR-koodit käytössä
|
172
180
|
resources_permissions_enabled: Toiminnallisuutta koskevat oikeudet voidaan asettaa jokaiselle tapaamiselle
|
173
181
|
taxonomy_filters: Valitse suodattimet komponentille
|
174
182
|
taxonomy_filters_add: Lisää suodatin
|
@@ -177,7 +185,6 @@ fi:
|
|
177
185
|
announcement: Ilmoitus
|
178
186
|
comments_blocked: Kommentointi estetty
|
179
187
|
creation_enabled_for_participants: Tapaamisten luonti sallittu osallistujille
|
180
|
-
creation_enabled_for_user_groups: Tapaamisten luonti sallittu ryhmille
|
181
188
|
download_your_data:
|
182
189
|
help:
|
183
190
|
invites:
|
@@ -227,25 +234,38 @@ fi:
|
|
227
234
|
email_subject: Tapaamisesta "%{resource_title}" on varattu yli %{percentage}% vapaista paikoista
|
228
235
|
notification_title: Tapaamisesta <a href="%{resource_path}">%{resource_title}</a> on varattu yli %{percentage}% vapaista paikoista.
|
229
236
|
meeting_updated:
|
230
|
-
email_intro: '
|
237
|
+
email_intro: 'Tapaamisen "%{resource_title}" seuraavia tietoja on muutettu: %{changed_fields}. Voit tarkastella uutta versiota tältä sivulta:'
|
231
238
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat tapaamista "%{resource_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
232
239
|
email_subject: Tapaaminen "%{resource_title}" päivitettiin
|
233
|
-
|
240
|
+
field_names:
|
241
|
+
address: osoite
|
242
|
+
end_time: päättymisaika
|
243
|
+
location: sijainti
|
244
|
+
start_time: alkamisaika
|
245
|
+
notification_title: 'Tapaamisen <a href="%{resource_path}">%{resource_title}</a> seuraavia tietoja on muutettu: %{changed_fields}.'
|
246
|
+
meeting_waitlist_added:
|
247
|
+
notification_title: Sinut on lisätty tapaamisen <a href="%{resource_url}">%{resource_title}</a> odotuslistalle.
|
234
248
|
registration_code_validated:
|
235
249
|
email_intro: Ilmoittautumiskoodisi "%{registration_code}" tapaamiseen "%{resource_title}" on vahvistettu.
|
236
250
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska ilmoittautumiskoodisi tapaamiseen "%{resource_title}" on vahvistettu.
|
237
251
|
email_subject: Ilmoittautumiskoodisi "%{registration_code}" tapaamiseen "%{resource_title}" on vahvistettu
|
238
252
|
notification_title: Ilmoittautumiskoodisi "%{registration_code}" tapaamiseen <a href="%{resource_path}">%{resource_title}</a> on vahvistettu.
|
253
|
+
registration_marked_as_attendee:
|
254
|
+
email_intro: Ilmoittautumisesi tapaamiseen "%{resource_title}" on muutettu osallistujaksi.
|
255
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska ilmoittautumisesi tapaamiseen "%{resource_title}" on muutettu osallistujaksi.
|
256
|
+
email_subject: Ilmoittautumisesi tapaamiseen "%{resource_title}" on muutettu osallistujaksi
|
257
|
+
notification_title: Ilmoittautumisesi tapaamiseen <a href="%{resource_path}">%{resource_title}</a> on muutettu osallistujaksi.
|
239
258
|
registrations_enabled:
|
240
259
|
email_intro: 'Ilmoittautuminen on avattu tapaamiselle "%{resource_title}". Voit ilmoittautua tapaamisen sivuilla:'
|
241
260
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat tapaamista "%{resource_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
242
261
|
email_subject: Ilmoittautumiset on avattu tapaamiseen "%{resource_title}".
|
243
262
|
notification_title: Ilmoittautumiset on avattu tapaamiseen <a href="%{resource_path}">%{resource_title}</a>.
|
244
263
|
upcoming_meeting:
|
245
|
-
|
264
|
+
default_body: Tapaamisen "{{meeting_title}}" alkuun on alle {{before_hours}} tuntia.
|
265
|
+
email_intro: Tapaamisen "%{resource_title}" alkuun on alle %{reminders_before_hours} tuntia.
|
246
266
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat tapaamista "%{resource_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
|
247
|
-
email_subject: Tapaamisen "%{resource_title}" alkuun on alle
|
248
|
-
notification_title:
|
267
|
+
email_subject: Tapaamisen "%{resource_title}" alkuun on alle %{reminders_before_hours} tuntia.
|
268
|
+
notification_title: Tapaamisen <a href="%{resource_path}">%{resource_title}</a> alkuun on alle %{reminders_before_hours} tuntia.
|
249
269
|
forms:
|
250
270
|
meetings:
|
251
271
|
attendees_count_help_text: Älä unohda merkitä tapaamisesi osallistujien kokonaismäärää, olipa kyse fyysisestä, verkko- tai hybriditapaamisesta.
|
@@ -264,8 +284,6 @@ fi:
|
|
264
284
|
meetings:
|
265
285
|
actions:
|
266
286
|
agenda: Esityslista
|
267
|
-
attachment_collections: Kansiot
|
268
|
-
attachments: Liitteet
|
269
287
|
close: Sulje
|
270
288
|
confirm_delete_meeting: Haluatko varmasti poistaa tämän tapaamisen?
|
271
289
|
deleted_meetings_info: Poistetut tapaamiset voidaan palauttaa roskakorista.
|
@@ -275,6 +293,7 @@ fi:
|
|
275
293
|
one: 'Tapaamista ei voi poistaa, koska siihen on liitetty %{count} ehdotus:'
|
276
294
|
other: 'Tapaamista ei voi poistaa, koska siihen on liitetty %{count} ehdotusta:'
|
277
295
|
manage_poll: Hallitse mielipidetiedustelua
|
296
|
+
mark_as_attendee: Merkitse osallistujaksi
|
278
297
|
new_meeting: Uusi tapaaminen
|
279
298
|
preview: Esikatsele
|
280
299
|
registrations: Ilmoittautumiset
|
@@ -312,10 +331,10 @@ fi:
|
|
312
331
|
invalid: Esityslistan päivittäminen epäonnistui.
|
313
332
|
success: Esityslistan päivitys onnistui.
|
314
333
|
exports:
|
315
|
-
answers: Vastaukset
|
316
334
|
meeting_comments: Kommentit
|
317
335
|
meetings: Tapaamiset
|
318
336
|
registrations: Ilmoittautumiset
|
337
|
+
responses: Vastaukset
|
319
338
|
invite_join_meeting_mailer:
|
320
339
|
invite:
|
321
340
|
decline: Hylkää kutsu
|
@@ -384,6 +403,13 @@ fi:
|
|
384
403
|
publish:
|
385
404
|
invalid: Tapaamisen julkaiseminen epäonnistui.
|
386
405
|
success: Tapaamisen julkaiseminen onnistui.
|
406
|
+
reminders:
|
407
|
+
reminder_enabled: Lähetä muistutus tästä tapaamisesta
|
408
|
+
reminder_message: Muistutussähköpostin sisältö
|
409
|
+
reminder_message_help_text: Muokkaa viestiä tarpeidesi mukaan. Voit käyttää merkintää {{meeting_title}} näyttääksesi tapaamisen otsikon viestin sisällössä.
|
410
|
+
send_reminder: Ajoitettu muistutussähköposti
|
411
|
+
send_reminder_help_text: Muistutusaika tunteina ennen tapaamista.
|
412
|
+
title: Muistutukset
|
387
413
|
service:
|
388
414
|
description: Kuvaus
|
389
415
|
down: Alas
|
@@ -416,15 +442,14 @@ fi:
|
|
416
442
|
registrations:
|
417
443
|
edit:
|
418
444
|
save: Tallenna
|
419
|
-
validate: Vahvista
|
420
|
-
validate_registration_code: Vahvista ilmoittautumiskoodi
|
421
445
|
form:
|
422
446
|
available_slots_help: Jätä arvoksi 0, mikäli tapaamiseen on rajoittamaton määrä paikkoja.
|
423
447
|
invites: Kutsut
|
424
|
-
manage_questions:
|
448
|
+
manage_questions: Kysymykset
|
425
449
|
recommendation_message: Osallistujien yksityisyyden kannalta suosittelemme, että poistat tämän lomakkeen tiedot, kun et enää tarvitse niitä. Oletuksena se säilytetään 3 kuukautta tapaamisen päättymisen jälkeen.
|
426
450
|
registration_email_help: Tämä teksti näytetään tapaamisilmoittautumisten vahvistussähköpostin keskiosassa. Teksti näkyy heti ilmoittautumiskoodin jälkeen.
|
427
451
|
registration_form: Ilmoittautumislomake
|
452
|
+
registrations: Näytä ilmoittautumiset
|
428
453
|
registrations_count:
|
429
454
|
one: Tapaamiseen on %{count} ilmoittautuminen.
|
430
455
|
other: Tapaamiseen on %{count} ilmoittautumista.
|
@@ -434,6 +459,14 @@ fi:
|
|
434
459
|
update:
|
435
460
|
invalid: Rekisteröitymisasetusten päivitys epäonnistui.
|
436
461
|
success: Tapaamisen ilmoittautumisasetusten tallennus onnistui.
|
462
|
+
registrations_attendees:
|
463
|
+
index:
|
464
|
+
title: Ilmoittautumiset
|
465
|
+
validate: Vahvista
|
466
|
+
validate_registration_code: Vahvista ilmoittautumiskoodi
|
467
|
+
mark_attendee:
|
468
|
+
invalid: Ilmoittautuminen on jo merkitty osallistujaksi.
|
469
|
+
success: Ilmoittautuminen merkitty osallistujaksi.
|
437
470
|
validate_registration_code:
|
438
471
|
invalid: Tämä ilmoittautumiskoodi on virheellinen.
|
439
472
|
success: Ilmoittautumiskoodin vahvistaminen onnistui.
|
@@ -547,7 +580,6 @@ fi:
|
|
547
580
|
all: Kaikki
|
548
581
|
official: Viralliset
|
549
582
|
participants: Osallistujat
|
550
|
-
user_group: Ryhmät
|
551
583
|
search: Hae
|
552
584
|
type: Tyyppi
|
553
585
|
type_values:
|
@@ -558,7 +590,6 @@ fi:
|
|
558
590
|
form:
|
559
591
|
address_help: 'Osoite: käytetään karttapisteen etsimiseen geokoodauksen avulla'
|
560
592
|
available_slots_help: Määritä tähän kenttään arvo 0, jos tapaamisen paikkamäärää ei ole rajoitettu
|
561
|
-
create_as: Luo tapaaminen käyttäjänä
|
562
593
|
disclaimer: 'Vastuuvapauslauseke: Käyttämällä ulkoista ilmoittautumisjärjestelmää olet tietoinen siitä, että palvelu %{organization} ei ole vastuussa tiedoista, jotka käyttäjät ovat antaneet ulkoiselle palvelulle.'
|
563
594
|
iframe_embed_type_html: 'Vain jotkin ulkoiset palvelut näistä osoitteista sallivat tapaamisen upottamisen reaaliaikaisesti tapaamisen sivulle: %{domains}'
|
564
595
|
location_help: 'Paikka: kuvaus tapaamispaikan tarkemmasta sijainnista osallistujille'
|
@@ -595,8 +626,11 @@ fi:
|
|
595
626
|
attendees: Osallistujamäärä
|
596
627
|
contributions: Kontribuutioiden määrä
|
597
628
|
join: Ilmoittaudu tapaamiseen
|
629
|
+
join_waitlist: Liity odotuslistaan
|
598
630
|
leave: Peru ilmoittautumisesi
|
599
631
|
leave_confirmation: Haluatko varmasti perua ilmoittautumisesi tähän tapaamiseen?
|
632
|
+
leave_waitlist: Poistu odotuslistalta
|
633
|
+
leave_waitlist_confirmation: Haluatko varmasti poistua tämän tapaamisen odotuslistalta?
|
600
634
|
link_available_soon: Linkki julkaistaan pian
|
601
635
|
link_closed: Linkki tähän tapaamiseen liittymiseksi julkaistaan muutama minuutti ennen tapaamisen alkamista
|
602
636
|
live_event: Tämä tapaaminen on parhaillaan käynnissä
|
@@ -604,8 +638,11 @@ fi:
|
|
604
638
|
micro_camera_permissions_warning: Painaessasi alla olevaa painiketta, sinua pyydetään antamaan palvelulle oikeudet käyttää mikrofoniasi ja/tai kameraasi, minkä jälkeen voit liittyä tapaamiseen
|
605
639
|
no_slots_available: Ei paikkoja vapaana
|
606
640
|
organizations: Osallistuvat järjestöt
|
641
|
+
pending_address: Tapaamisen sijainti ilmoitetaan pian.
|
607
642
|
redirect_notice: Tämä tapaaminen on toisessa osallistumistilassa, joten sinut on siirretty osallistumistilaan nimeltä %{current_space_name}.<br>Jos haluat, voit siirtyä takaisin osallistumistilaan nimeltä <a href="%{previous_space_url}">%{previous_space_name}</a>.
|
608
|
-
|
643
|
+
registration_and_qr_code: Ilmoittautuminen ja QR-koodi
|
644
|
+
registration_code: 'Ilmoittautumiskoodi: %{code}'
|
645
|
+
registration_code_help_text: Ilmoittautumisesi ja QR-koodi
|
609
646
|
registration_state:
|
610
647
|
validated: VAHVISTETTU
|
611
648
|
validation_pending: ODOTTAA VAHVISTUSTA
|
@@ -613,6 +650,9 @@ fi:
|
|
613
650
|
one: "%{count} paikka jäljellä"
|
614
651
|
other: "%{count} paikkaa jäljellä"
|
615
652
|
visit_finished: Näytä mennyt tapaaminen
|
653
|
+
waitlist:
|
654
|
+
description: Mikäli tapaamisesta vapautuu paikka, käsittelemme ilmoittautumisesi automaattisesti ja ilmoitamme tästä sähköpostitse.
|
655
|
+
status: Olet odotuslistalla
|
616
656
|
withdraw_btn_hint: Voit perua tapaamisen, jos muutat mieltäsi. Tapaamista ei poisteta kokonaan, eli se löytyy edelleen peruttujen tapaamisten listasta.
|
617
657
|
withdraw_confirmation_html: Haluatko varmasti perua tämän tapaamisen?<br><br><strong>Tätä toimintoa ei voi perua!</strong>
|
618
658
|
withdraw_meeting: Peru
|
@@ -640,15 +680,16 @@ fi:
|
|
640
680
|
start_time: Alkamispäivä
|
641
681
|
taxonomies: Luokittelut
|
642
682
|
title: Otsikko
|
683
|
+
registration:
|
684
|
+
actions: Toiminnot
|
685
|
+
fields:
|
686
|
+
email: Sähköpostiosoite
|
687
|
+
name: Nimi
|
688
|
+
status: Tila
|
689
|
+
status:
|
690
|
+
attended: Osallistunut
|
691
|
+
not_attended: Ei osallistunut
|
643
692
|
polls:
|
644
|
-
answers:
|
645
|
-
index:
|
646
|
-
administrate: Hallinnoi
|
647
|
-
title: Mielipidetiedustelu
|
648
|
-
index_admin:
|
649
|
-
back_to_meeting: Takaisin tapaamiseen
|
650
|
-
title: Hallinnoi mielipidetiedustelua
|
651
|
-
view_poll: Näytä mielipidetiedustelu
|
652
693
|
questions:
|
653
694
|
closed_question:
|
654
695
|
announcement: Tämä kysymys on suljettu, eikä siihen voi enää vastata.
|
@@ -659,8 +700,8 @@ fi:
|
|
659
700
|
index_admin:
|
660
701
|
edit: Muokkaa hallintapaneelissa
|
661
702
|
question: Kysymys
|
662
|
-
|
663
|
-
|
703
|
+
received_response: vastaus
|
704
|
+
received_responses: vastaukset
|
664
705
|
results: Tulokset
|
665
706
|
send: Lähetä
|
666
707
|
sent: Lähetetty
|
@@ -673,8 +714,15 @@ fi:
|
|
673
714
|
question: Kysymys
|
674
715
|
question_replied: Kysymykseen on vastattu
|
675
716
|
reply_question: Vastaa kysymykseen
|
717
|
+
responses:
|
718
|
+
index:
|
719
|
+
administrate: Hallinnoi
|
720
|
+
title: Mielipidetiedustelu
|
721
|
+
index_admin:
|
722
|
+
back_to_meeting: Takaisin tapaamiseen
|
723
|
+
title: Hallinnoi mielipidetiedustelua
|
724
|
+
view_poll: Näytä mielipidetiedustelu
|
676
725
|
public_participants_list:
|
677
|
-
attending_organizations: Organisaatiot
|
678
726
|
attending_participants: Osallistujat
|
679
727
|
hidden_participants_count:
|
680
728
|
one: ja %{count} muu henkilö
|
@@ -684,7 +732,7 @@ fi:
|
|
684
732
|
confirmation:
|
685
733
|
confirmed_html: Ilmoittautumisesi tapaamiseen <a href="%{url}">%{title}</a> on vahvistettu.
|
686
734
|
details: Löydät tapaamisen tarkemmat tiedot liitteenä olevasta kalenterimerkinnästä.
|
687
|
-
registration_code: Ilmoittautumiskoodisi on %{code}.
|
735
|
+
registration_code: Ilmoittautumiskoodisi on %{code}. Näytä alla näkyvä QR-koodi tapaamisen järjestäjille vahvistaaksesi osallistumisesi.
|
688
736
|
registration_type:
|
689
737
|
on_different_platform: Toisella alustalla
|
690
738
|
on_this_platform: Tällä alustalla
|
@@ -699,6 +747,9 @@ fi:
|
|
699
747
|
destroy:
|
700
748
|
invalid: Tapaamisesta poistuminen epäonnistui.
|
701
749
|
success: Tapaamisesta poistuminen onnistui.
|
750
|
+
waitlist:
|
751
|
+
invalid: Odotuslistalle liittyminen epäonnistui.
|
752
|
+
success: Liityit tapaamisen odotuslistalle. Ilmoitamme, mikäli paikkoja vapautuu ja pääset mukaan tapaamiseen.
|
702
753
|
type_of_meeting:
|
703
754
|
hybrid: Hybridi
|
704
755
|
in_person: Fyysinen
|
@@ -710,11 +761,6 @@ fi:
|
|
710
761
|
withdraw:
|
711
762
|
error: Tapaamisen peruminen epäonnistui.
|
712
763
|
success: Tapaaminen on peruttu.
|
713
|
-
metrics:
|
714
|
-
meetings:
|
715
|
-
description: Tapaamisten määrä
|
716
|
-
object: tapaamiset
|
717
|
-
title: Tapaamiset
|
718
764
|
open_data:
|
719
765
|
help:
|
720
766
|
meeting_comments:
|
@@ -729,7 +775,6 @@ fi:
|
|
729
775
|
id: Kommentin yksilöivä tunniste
|
730
776
|
locale: Kommentoijan valitsema kieliasetus sivustolla
|
731
777
|
root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
|
732
|
-
user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
|
733
778
|
meetings:
|
734
779
|
address: Tapaamisen osoite, mikäli tapaaminen on määritetty tiettyyn paikkaan
|
735
780
|
attachments: Tapaamisen liitteiden lukumäärä
|
@@ -747,7 +792,6 @@ fi:
|
|
747
792
|
created_at: Tapaamisen laatimisaika
|
748
793
|
customize_registration_email: Mahdollisuus muokata ilmoittautumisen yhteydessä lähetettävää sähköpostia
|
749
794
|
decidim_author_type: Tapaamisen laatijan tyyppi
|
750
|
-
decidim_user_group_id: Tapaamisen osallistujien käyttäjäryhmän yksilöivä ID-tunniste
|
751
795
|
description: Tapaamisen kuvaus
|
752
796
|
end_time: Tapaamisen päättymisajankohta
|
753
797
|
follows_count: Tapaamisen seuraajien lukumäärä
|
@@ -797,6 +841,8 @@ fi:
|
|
797
841
|
statistics:
|
798
842
|
attendees_count: Tapaamisen osallistujat
|
799
843
|
meetings_count: Tapaamista
|
844
|
+
meetings_count_tooltip: Järjestettyjen tapaamisten lukumäärä, verkossa ja fyysisesti.
|
845
|
+
participatory_space_meetings_count: Tapaamisia
|
800
846
|
devise:
|
801
847
|
mailer:
|
802
848
|
join_meeting:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
fr-CA:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
add_documents: Ajouter des documents
|
7
5
|
close_meeting:
|
8
6
|
attendees_count: Nombre de participants
|
9
7
|
attending_organizations: Liste des organisations qui ont participé à cette rencontre
|
@@ -19,7 +17,6 @@ fr-CA:
|
|
19
17
|
customize_registration_email: Personnaliser l'email d'inscription
|
20
18
|
decidim_category_id: Catégorie
|
21
19
|
decidim_scope_id: Périmètre d'application
|
22
|
-
decidim_user_group_id: Groupe d'utilisateurs
|
23
20
|
description: Description
|
24
21
|
end_time: Heure de fin
|
25
22
|
id: ID
|
@@ -53,6 +50,8 @@ fr-CA:
|
|
53
50
|
meeting_registration_invite:
|
54
51
|
email: Email
|
55
52
|
name: Nom
|
53
|
+
response:
|
54
|
+
add_documents: Ajouter des documents
|
56
55
|
validate_registration_code:
|
57
56
|
code: Code
|
58
57
|
errors:
|
@@ -123,7 +122,6 @@ fr-CA:
|
|
123
122
|
values:
|
124
123
|
official: Officiel
|
125
124
|
participants: Participants
|
126
|
-
user_group: Groupes d’utilisateurs
|
127
125
|
with_any_type:
|
128
126
|
label: Type de rencontre
|
129
127
|
values:
|
@@ -149,6 +147,16 @@ fr-CA:
|
|
149
147
|
new:
|
150
148
|
copy: Copier
|
151
149
|
title: Dupliquer une rencontre
|
150
|
+
tooltips:
|
151
|
+
cannot_close_meetings: Impossible de fermer cette réunion car elle a été créée par un participant
|
152
|
+
cannot_duplicate_meetings: Impossible de dupliquer cette réunion car elle a été créée par un participant
|
153
|
+
cannot_edit_meetings: Impossible de modifier cette réunion car elle a été créée par un participant
|
154
|
+
cannot_manage_agenda_meetings: Impossible de gérer l'ordre du jour de cette réunion car elle a été créée par un participant
|
155
|
+
cannot_manage_attachments_meetings: Impossible de gérer les pièces jointes de cette réunion car elle a été créée par un participant
|
156
|
+
cannot_manage_poll_meetings: Impossible de gérer le sondage dans cette réunion car elle a été créée par un participant
|
157
|
+
cannot_manage_registrations_meetings: Impossible de gérer les inscriptions à cette réunion car soit elle est a été créée par un participant, soit les inscriptions sont désactivées, soit ces inscriptions sont externes
|
158
|
+
cannot_mark_attendee: Impossible de marquer comme présent car ça a déjà été marqué
|
159
|
+
deleted_meetings_info: Impossible de supprimer cette réunion car elle a été créée par un participant.
|
152
160
|
components:
|
153
161
|
meetings:
|
154
162
|
actions:
|
@@ -167,7 +175,7 @@ fr-CA:
|
|
167
175
|
enable_pads_creation: Activer la création de pads
|
168
176
|
maps_enabled: Cartes activées
|
169
177
|
no_taxonomy_filters_found: Aucun filtre de taxonomie trouvé.
|
170
|
-
registration_code_enabled: Code d'enregistrement
|
178
|
+
registration_code_enabled: Code d'enregistrement et QR activés
|
171
179
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
172
180
|
taxonomy_filters_add: Ajouter un filtre
|
173
181
|
terms_and_conditions_url_for_meeting_creators: URL des conditions générales pour les auteurs de rencontres
|
@@ -175,7 +183,6 @@ fr-CA:
|
|
175
183
|
announcement: Annonce
|
176
184
|
comments_blocked: Commentaires bloqués
|
177
185
|
creation_enabled_for_participants: La création de réunions par les participants est activée
|
178
|
-
creation_enabled_for_user_groups: La création de réunions par des groupes d'utilisateurs est activée
|
179
186
|
download_your_data:
|
180
187
|
help:
|
181
188
|
invites:
|
@@ -222,10 +229,17 @@ fr-CA:
|
|
222
229
|
email_subject: Les places réservées pour la rencontre "%{resource_title}" dépassent %{percentage}%
|
223
230
|
notification_title: Les places réservées pour la rencontre <a href="%{resource_path}">%{resource_title}</a> dépassent %{percentage}%.
|
224
231
|
meeting_updated:
|
225
|
-
email_intro: 'La rencontre "%{resource_title}" a été mise à jour. Vous pouvez
|
232
|
+
email_intro: 'La rencontre "%{resource_title}" a été mise à jour avec les modifications apportées à %{changed_fields}. Vous pouvez lire la nouvelle version sur sa page :'
|
226
233
|
email_outro: Vous avez reçu cette notification, car vous suivez la rencontre "%{resource_title}". Vous pouvez arrêter de la suivre à partir du lien précédent.
|
227
234
|
email_subject: La rencontre "%{resource_title}" a été mise à jour
|
228
|
-
|
235
|
+
field_names:
|
236
|
+
address: l'adresse
|
237
|
+
end_time: l'heure de fin
|
238
|
+
location: l'emplacement
|
239
|
+
start_time: l'heure de début
|
240
|
+
notification_title: La réunion <a href="%{resource_path}">%{resource_title}</a> a été mise à jour avec les modifications apportées à %{changed_fields}.
|
241
|
+
meeting_waitlist_added:
|
242
|
+
notification_title: Vous avez été ajouté à la liste d'attente pour la réunion <a href="%{resource_url}">%{resource_title}</a>.
|
229
243
|
registration_code_validated:
|
230
244
|
email_intro: Votre code d'enregistrement "%{registration_code}" pour la réunion "%{resource_title}" a été validé.
|
231
245
|
email_outro: Vous avez reçu cette notification parce que votre code d'enregistrement pour la réunion "%{resource_title}" a été validé.
|
@@ -237,10 +251,11 @@ fr-CA:
|
|
237
251
|
email_subject: Les inscriptions pour la rencontre "%{resource_title}" sont ouvertes.
|
238
252
|
notification_title: Les inscriptions pour la rencontre <a href="%{resource_path}">%{resource_title}</a> sont ouvertes.
|
239
253
|
upcoming_meeting:
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
254
|
+
default_body: La réunion "{{meeting_title}}" débutera dans moins de {{before_hours}}h.
|
255
|
+
email_intro: La réunion "%{resource_title}" débutera dans moins de %{reminders_before_hours}h.
|
256
|
+
email_outro: Vous avez reçu cette notification parce que vous suivez la réunion %{resource_title} . Vous pouvez cesser de la suivre à partir du lien précédent.
|
257
|
+
email_subject: La réunion "%{resource_title}" débutera dans moins de %{reminders_before_hours}h.
|
258
|
+
notification_title: La réunion <a href="%{resource_path}">%{resource_title}</a> commencera dans moins de %{reminders_before_hours}h.
|
244
259
|
forms:
|
245
260
|
meetings:
|
246
261
|
attendees_count_help_text: N'oubliez pas d'inclure le nombre total de participants à votre réunion, que ce soit en personne, en ligne ou hybride.
|
@@ -259,8 +274,6 @@ fr-CA:
|
|
259
274
|
meetings:
|
260
275
|
actions:
|
261
276
|
agenda: Ordre du jour
|
262
|
-
attachment_collections: Dossiers
|
263
|
-
attachments: Documents liés
|
264
277
|
close: Clore
|
265
278
|
confirm_delete_meeting: Êtes-vous sûr(e) de vouloir supprimer cette rencontre ?
|
266
279
|
deleted_meetings_info: Les rencontres supprimées peuvent être restaurées depuis la corbeille.
|
@@ -270,6 +283,7 @@ fr-CA:
|
|
270
283
|
one: 'La rencontre ne peut être supprimée car %{count} proposition y est rattachée:'
|
271
284
|
other: 'La rencontre ne peut être supprimée car %{count} propositions y sont rattachées:'
|
272
285
|
manage_poll: Gérer le sondage
|
286
|
+
mark_as_attendee: Marquer comme participant
|
273
287
|
new_meeting: Nouvelle rencontre
|
274
288
|
preview: Aperçu
|
275
289
|
registrations: Inscriptions
|
@@ -307,10 +321,10 @@ fr-CA:
|
|
307
321
|
invalid: Un problème est survenu lors de la mise à jour de cet ordre du jour.
|
308
322
|
success: Ordre du jour mis à jour avec succès.
|
309
323
|
exports:
|
310
|
-
answers: Réponses
|
311
324
|
meeting_comments: Commentaires
|
312
325
|
meetings: Rencontres
|
313
326
|
registrations: Inscriptions
|
327
|
+
responses: Réponses
|
314
328
|
invite_join_meeting_mailer:
|
315
329
|
invite:
|
316
330
|
decline: Refuser l'invitation
|
@@ -379,6 +393,13 @@ fr-CA:
|
|
379
393
|
publish:
|
380
394
|
invalid: Une erreur s'est produite lors de la publication de la rencontre.
|
381
395
|
success: Rencontre publiée avec succès.
|
396
|
+
reminders:
|
397
|
+
reminder_enabled: Envoyer un rappel pour cette rencontre
|
398
|
+
reminder_message: Contenu de l'email de rappel
|
399
|
+
reminder_message_help_text: Personnalisez le message au besoin. Utilisez {{meeting_title}} pour afficher le nom de la réunion.
|
400
|
+
send_reminder: E-mail de rappel programmé
|
401
|
+
send_reminder_help_text: Moment du rappel (en heures avant la réunion).
|
402
|
+
title: Rappels
|
382
403
|
service:
|
383
404
|
description: Description
|
384
405
|
down: Vers le bas
|
@@ -411,15 +432,14 @@ fr-CA:
|
|
411
432
|
registrations:
|
412
433
|
edit:
|
413
434
|
save: Sauvegarder
|
414
|
-
validate: Valider
|
415
|
-
validate_registration_code: Valider le code d'inscription
|
416
435
|
form:
|
417
436
|
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité.
|
418
437
|
invites: Invitations
|
419
|
-
manage_questions:
|
438
|
+
manage_questions: Questions
|
420
439
|
recommendation_message: Pour des raisons de confidentialité, nous vous recommandons de supprimer ce formulaire d'inscription lorsque vous n'en avez plus besoin. Par défaut, il le sera 3 mois après la fin de la réunion.
|
421
440
|
registration_email_help: Ce texte apparaîtra au milieu de l'e-mail de confirmation d'inscription, juste après le code d'inscription.
|
422
441
|
registration_form: Formulaire d'inscription
|
442
|
+
registrations: Voir les inscriptions
|
423
443
|
registrations_count:
|
424
444
|
one: Il y a eu %{count} inscription.
|
425
445
|
other: Il y a eu %{count} inscriptions.
|
@@ -429,6 +449,11 @@ fr-CA:
|
|
429
449
|
update:
|
430
450
|
invalid: Il y a eu un problème lors de l'enregistrement des paramètres d'inscription.
|
431
451
|
success: Les paramètres d'inscription ont été enregistrés avec succès.
|
452
|
+
registrations_attendees:
|
453
|
+
index:
|
454
|
+
title: Inscriptions
|
455
|
+
validate: Valider
|
456
|
+
validate_registration_code: Valider le code d'inscription
|
432
457
|
validate_registration_code:
|
433
458
|
invalid: Ce code d'inscription est invalide.
|
434
459
|
success: Code d'inscription validé avec succès.
|
@@ -542,7 +567,6 @@ fr-CA:
|
|
542
567
|
all: Toutes
|
543
568
|
official: Officiel
|
544
569
|
participants: Participants
|
545
|
-
user_group: Groupes
|
546
570
|
search: Rechercher
|
547
571
|
type: Type
|
548
572
|
type_values:
|
@@ -553,7 +577,6 @@ fr-CA:
|
|
553
577
|
form:
|
554
578
|
address_help: 'Adresse : utilisée par le géocodeur pour trouver l''emplacement'
|
555
579
|
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité
|
556
|
-
create_as: Créer une réunion en tant que
|
557
580
|
disclaimer: 'Avertissement : En utilisant un système d''enregistrement externe, sachez que les organisateurs de %{organization} ne sont pas responsables des données fournies par les utilisateurs au service externe.'
|
558
581
|
iframe_embed_type_html: 'Seuls quelques services permettent d''intégrer des réunions ou des événements en direct depuis les domaines suivants : %{domains}'
|
559
582
|
location_help: 'Emplacement: message adressé aux utilisateurs impliquant le point de rencontre à'
|
@@ -590,8 +613,11 @@ fr-CA:
|
|
590
613
|
attendees: Nombre de participants
|
591
614
|
contributions: Décompte des contributions
|
592
615
|
join: Participer à la rencontre
|
616
|
+
join_waitlist: Rejoindre la liste d'attente
|
593
617
|
leave: Annuler votre inscription
|
594
618
|
leave_confirmation: Êtes-vous sûr de vouloir annuler votre inscription à cette rencontre ?
|
619
|
+
leave_waitlist: Quitter la liste d'attente
|
620
|
+
leave_waitlist_confirmation: Êtes-vous sûr(e) de vouloir quitter la liste d'attente pour cette rencontre ?
|
595
621
|
link_available_soon: Lien bientôt disponible
|
596
622
|
link_closed: Le lien pour rejoindre la réunion sera disponible quelques minutes avant le début de la réunion
|
597
623
|
live_event: Cette réunion se déroule en ce moment
|
@@ -599,8 +625,11 @@ fr-CA:
|
|
599
625
|
micro_camera_permissions_warning: Lorsque vous cliquez sur le bouton ci-dessous, on vous demandera des autorisations de microphone et/ou de caméra, et vous rejoindrez la vidéoconférence
|
600
626
|
no_slots_available: Il ne reste plus de place
|
601
627
|
organizations: Organisations participantes
|
628
|
+
pending_address: L'emplacement sera bientôt annoncé.
|
602
629
|
redirect_notice: Cette rencontre fait partie d'un autre espace, vous avez donc été redirigé(e) vers %{current_space_name}. <br>Si vous préférez, vous pouvez revenir à <a href="%{previous_space_url}">%{previous_space_name}</a>.
|
603
|
-
|
630
|
+
registration_and_qr_code: Inscription et QR Code
|
631
|
+
registration_code: 'Code d''inscription : %{code}'
|
632
|
+
registration_code_help_text: Votre inscription et votre QR code
|
604
633
|
registration_state:
|
605
634
|
validated: Validé
|
606
635
|
validation_pending: EN ATTENTE DE VALIDATION
|
@@ -608,6 +637,9 @@ fr-CA:
|
|
608
637
|
one: "Il reste %{count} place"
|
609
638
|
other: "Il reste %{count} places"
|
610
639
|
visit_finished: Consulter l’historique des rencontres
|
640
|
+
waitlist:
|
641
|
+
description: Si une place devient disponible, nous traiterons automatiquement votre inscription et vous en aviserons par courriel.
|
642
|
+
status: Vous êtes sur la liste d'attente
|
611
643
|
withdraw_btn_hint: Vous pouvez annuler votre réunion si vous changez d'avis. La réunion n'est pas supprimée, elle apparaîtra dans la liste des réunions retirées.
|
612
644
|
withdraw_confirmation_html: Êtes-vous sûr de vouloir annuler cette réunion ?<br><br><strong>Cette action ne peut pas être annulée !</strong>
|
613
645
|
withdraw_meeting: Retirer
|
@@ -635,15 +667,16 @@ fr-CA:
|
|
635
667
|
start_time: Date de début
|
636
668
|
taxonomies: Taxonomies
|
637
669
|
title: Titre
|
670
|
+
registration:
|
671
|
+
actions: Actions
|
672
|
+
fields:
|
673
|
+
email: Email
|
674
|
+
name: Nom
|
675
|
+
status: État
|
676
|
+
status:
|
677
|
+
attended: Participe
|
678
|
+
not_attended: Ne participe pas
|
638
679
|
polls:
|
639
|
-
answers:
|
640
|
-
index:
|
641
|
-
administrate: Administrer
|
642
|
-
title: Sondage
|
643
|
-
index_admin:
|
644
|
-
back_to_meeting: Revenir à la rencontre
|
645
|
-
title: Administrer le sondage
|
646
|
-
view_poll: Voir le sondage
|
647
680
|
questions:
|
648
681
|
closed_question:
|
649
682
|
announcement: Les réponses à cette question sont closes.
|
@@ -654,8 +687,8 @@ fr-CA:
|
|
654
687
|
index_admin:
|
655
688
|
edit: Modifier dans le panneau d'administration
|
656
689
|
question: Question
|
657
|
-
|
658
|
-
|
690
|
+
received_response: réponse reçue
|
691
|
+
received_responses: réponses reçues
|
659
692
|
results: Résultats
|
660
693
|
send: Envoyer
|
661
694
|
sent: Envoyée
|
@@ -668,8 +701,15 @@ fr-CA:
|
|
668
701
|
question: Question
|
669
702
|
question_replied: Réponse envoyée
|
670
703
|
reply_question: Répondre
|
704
|
+
responses:
|
705
|
+
index:
|
706
|
+
administrate: Administrer
|
707
|
+
title: Sondage
|
708
|
+
index_admin:
|
709
|
+
back_to_meeting: Revenir à la rencontre
|
710
|
+
title: Administrer le sondage
|
711
|
+
view_poll: Voir le sondage
|
671
712
|
public_participants_list:
|
672
|
-
attending_organizations: Organisations
|
673
713
|
attending_participants: Participants présents
|
674
714
|
hidden_participants_count:
|
675
715
|
one: et %{count} personne de plus
|
@@ -679,7 +719,7 @@ fr-CA:
|
|
679
719
|
confirmation:
|
680
720
|
confirmed_html: Votre inscription pour la rencontre <a href="%{url}">%{title}</a> a été confirmée.
|
681
721
|
details: Vous trouverez les détails de la rencontre dans la pièce jointe.
|
682
|
-
registration_code: Votre code d'inscription est %{code}.
|
722
|
+
registration_code: Votre code d'inscription est %{code}. Veuillez montrer le QR code suivant à un administrateur pour valider votre participation.
|
683
723
|
registration_type:
|
684
724
|
on_different_platform: Sur une plateforme différente
|
685
725
|
on_this_platform: Sur cette plateforme
|
@@ -694,6 +734,9 @@ fr-CA:
|
|
694
734
|
destroy:
|
695
735
|
invalid: Il y a eu un problème lors de l'annulation de votre inscription.
|
696
736
|
success: Vous avez annulé votre inscription avec succès.
|
737
|
+
waitlist:
|
738
|
+
invalid: Il y a eu un problème pour rejoindre la liste d'attente.
|
739
|
+
success: Vous avez rejoint la liste d'attente de la rencontre avec succès. Vous serez notifié si votre inscription a été sécurisée avec succès.
|
697
740
|
type_of_meeting:
|
698
741
|
hybrid: Hybride
|
699
742
|
in_person: En présentiel
|
@@ -705,11 +748,6 @@ fr-CA:
|
|
705
748
|
withdraw:
|
706
749
|
error: Une erreur s'est produite lors du retrait de la rencontre.
|
707
750
|
success: La rencontre a été annulée avec succès.
|
708
|
-
metrics:
|
709
|
-
meetings:
|
710
|
-
description: Nombre de rencontres créées
|
711
|
-
object: rencontres
|
712
|
-
title: Rencontres
|
713
751
|
open_data:
|
714
752
|
help:
|
715
753
|
meeting_comments:
|
@@ -717,6 +755,7 @@ fr-CA:
|
|
717
755
|
body: Le commentaire lui-même
|
718
756
|
comments: Les données des commentaires de la réunion
|
719
757
|
created_at: La date de création de ce commentaire
|
758
|
+
depth: L'endroit où ce commentaire se trouve dans l'arborescence des commentaires (si c'est une réponse ou une réponse à une réponse)
|
720
759
|
id: L'identifiant de ce commentaire
|
721
760
|
locale: La langue que le participant a utilisé en créant ce commentaire
|
722
761
|
meetings:
|
@@ -784,6 +823,8 @@ fr-CA:
|
|
784
823
|
statistics:
|
785
824
|
attendees_count: Participants à la rencontre
|
786
825
|
meetings_count: Rencontres
|
826
|
+
meetings_count_tooltip: Le nombre de rencontres qui ont eu lieu, à la fois en ligne et en présentiel.
|
827
|
+
participatory_space_meetings_count: Rencontres
|
787
828
|
devise:
|
788
829
|
mailer:
|
789
830
|
join_meeting:
|