decidim-conferences 0.27.10 → 0.28.0.rc4
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/conferences/conference_cell.rb +9 -4
- data/app/cells/decidim/conferences/conference_dropdown_metadata_cell.rb +19 -0
- data/app/cells/decidim/conferences/conference_g_cell.rb +23 -0
- data/app/cells/decidim/conferences/conference_metadata_cell.rb +21 -0
- data/app/cells/decidim/conferences/conference_s_cell.rb +13 -0
- data/app/cells/decidim/conferences/conference_speaker/show.erb +44 -58
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +4 -14
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +15 -14
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +3 -0
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form_cell.rb +19 -0
- data/app/cells/decidim/conferences/linked_participatory_spaces/show.erb +6 -8
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +1 -10
- data/app/cells/decidim/conferences/media_link/show.erb +6 -8
- data/app/cells/decidim/conferences/partner/image.erb +3 -0
- data/app/cells/decidim/conferences/partner/show.erb +8 -8
- data/app/cells/decidim/conferences/partner/text.erb +1 -0
- data/app/cells/decidim/conferences/partner_cell.rb +4 -2
- data/app/cells/decidim/conferences/registration_type/join_conference.erb +15 -12
- data/app/cells/decidim/conferences/registration_type/registration_confirm.erb +12 -12
- data/app/cells/decidim/conferences/registration_type/show.erb +11 -14
- data/app/cells/decidim/conferences/registration_type_cell.rb +3 -3
- data/app/commands/decidim/conferences/admin/copy_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference.rb +2 -11
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_media_link.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_partner.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +2 -2
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +2 -2
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +3 -3
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +5 -5
- data/app/commands/decidim/conferences/admin/publish_conference.rb +9 -26
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +2 -11
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/decline_invitation.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +5 -5
- data/app/constraints/decidim/conferences/current_component.rb +2 -2
- data/app/constraints/decidim/conferences/current_conference.rb +2 -2
- data/app/controllers/concerns/decidim/conferences/admin/conference_context.rb +1 -1
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +2 -2
- data/app/controllers/decidim/conferences/admin/conference_attachment_collections_controller.rb +6 -1
- data/app/controllers/decidim/conferences/admin/conference_attachments_controller.rb +5 -0
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conference_publications_controller.rb +10 -28
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_user_roles_controller.rb +8 -90
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +2 -0
- data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/exports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/imports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/moderations/reports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/moderations_controller.rb +1 -1
- data/app/controllers/decidim/conferences/application_controller.rb +6 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +3 -3
- data/app/controllers/decidim/conferences/conferences_controller.rb +9 -2
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +3 -13
- data/app/events/decidim/conferences/conference_registrations_enabled_event.rb +1 -1
- data/app/events/decidim/conferences/conference_registrations_over_percentage_event.rb +1 -1
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +6 -6
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +4 -15
- data/app/forms/decidim/conferences/admin/conference_user_role_form.rb +2 -17
- data/app/helpers/decidim/conferences/admin/conferences_helper.rb +0 -4
- data/app/helpers/decidim/conferences/conference_helper.rb +55 -0
- data/app/helpers/decidim/conferences/conference_program_helper.rb +1 -1
- data/app/helpers/decidim/conferences/media_attachments_helper.rb +0 -10
- data/app/helpers/decidim/conferences/partners_helper.rb +3 -1
- data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +1 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -1
- data/app/mailers/decidim/conferences/conference_registration_mailer.rb +2 -2
- data/app/models/decidim/conference.rb +4 -4
- data/app/models/decidim/conference_user_role.rb +6 -34
- data/app/packs/entrypoints/decidim_conferences.js +5 -0
- data/app/packs/src/decidim/conferences/admin/conferences.js +6 -6
- data/app/packs/stylesheets/decidim/conferences/_conference.scss +102 -0
- data/app/packs/stylesheets/decidim/conferences/_media.scss +13 -0
- data/app/packs/stylesheets/decidim/conferences/_program.scss +43 -0
- data/app/packs/stylesheets/decidim/conferences/_registration.scss +39 -0
- data/app/packs/stylesheets/decidim/conferences/_speaker.scss +83 -0
- data/app/packs/stylesheets/decidim/conferences/conferences.scss +5 -3
- data/app/permissions/decidim/conferences/permissions.rb +2 -13
- data/app/presenters/decidim/conference_speaker_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/conference_invite_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_user_role_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/media_link_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/conference_stats_presenter.rb +3 -28
- data/app/queries/decidim/conferences/admin/admin_users.rb +4 -4
- data/app/queries/decidim/conferences/conferences_with_user_role.rb +2 -2
- data/app/queries/decidim/conferences/organization_conferences.rb +1 -1
- data/app/queries/decidim/conferences/organization_published_conferences.rb +1 -1
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +22 -28
- data/app/views/decidim/conferences/admin/conference_copies/new.html.erb +16 -5
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +17 -19
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +69 -74
- data/app/views/decidim/conferences/admin/conference_invites/new.html.erb +21 -17
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +45 -45
- data/app/views/decidim/conferences/admin/conference_speakers/_form.html.erb +42 -46
- data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +52 -55
- data/app/views/decidim/conferences/admin/conference_speakers/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_user_roles/_form.html.erb +14 -18
- data/app/views/decidim/conferences/admin/conference_user_roles/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +53 -56
- data/app/views/decidim/conferences/admin/conference_user_roles/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +88 -88
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +26 -12
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +55 -64
- data/app/views/decidim/conferences/admin/conferences/new.html.erb +16 -8
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +18 -24
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +19 -5
- data/app/views/decidim/conferences/admin/media_links/_form.html.erb +15 -19
- data/app/views/decidim/conferences/admin/media_links/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +37 -40
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +18 -22
- data/app/views/decidim/conferences/admin/partners/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/partners/index.html.erb +45 -48
- data/app/views/decidim/conferences/admin/partners/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +23 -23
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +52 -56
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +2 -2
- data/app/views/decidim/conferences/conference_program/_program_item.html.erb +21 -24
- data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +29 -63
- data/app/views/decidim/conferences/conference_program/show.html.erb +27 -39
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +12 -6
- data/app/views/decidim/conferences/conferences/_conference_hero.html.erb +33 -0
- data/app/views/decidim/conferences/conferences/_partners.html.erb +10 -13
- data/app/views/decidim/conferences/conferences/index.html.erb +17 -7
- data/app/views/decidim/conferences/conferences/show.html.erb +84 -50
- data/app/views/decidim/conferences/media/index.html.erb +33 -19
- data/app/views/decidim/conferences/registration_types/index.html.erb +25 -17
- data/app/views/layouts/decidim/admin/conference.html.erb +12 -14
- data/app/views/layouts/decidim/admin/conferences.html.erb +13 -8
- data/app/views/layouts/decidim/conference.html.erb +7 -17
- data/app/views/layouts/decidim/conferences/_conference_nav_item.html.erb +6 -0
- data/app/views/layouts/decidim/conferences/application.html.erb +6 -0
- data/config/assets.rb +1 -1
- data/config/initializers/wicked_pdf.rb +1 -1
- data/config/locales/ar.yml +3 -64
- data/config/locales/bg.yml +0 -612
- data/config/locales/ca.yml +35 -55
- data/config/locales/cs.yml +35 -53
- data/config/locales/de.yml +34 -54
- data/config/locales/el.yml +11 -51
- data/config/locales/en.yml +34 -54
- data/config/locales/es-MX.yml +32 -52
- data/config/locales/es-PY.yml +32 -52
- data/config/locales/es.yml +32 -52
- data/config/locales/eu.yml +33 -58
- data/config/locales/fi-plain.yml +32 -52
- data/config/locales/fi.yml +32 -52
- data/config/locales/fr-CA.yml +31 -51
- data/config/locales/fr.yml +31 -51
- data/config/locales/ga-IE.yml +0 -17
- data/config/locales/gl.yml +3 -62
- data/config/locales/hu.yml +15 -53
- data/config/locales/id-ID.yml +3 -57
- data/config/locales/it.yml +4 -62
- data/config/locales/ja.yml +33 -54
- data/config/locales/lb.yml +1 -55
- data/config/locales/lt.yml +14 -52
- data/config/locales/lv.yml +1 -61
- data/config/locales/nl.yml +3 -62
- data/config/locales/no.yml +1 -62
- data/config/locales/pl.yml +1 -81
- data/config/locales/pt-BR.yml +1 -72
- data/config/locales/pt.yml +2 -63
- data/config/locales/ro-RO.yml +13 -50
- data/config/locales/sk.yml +1 -61
- data/config/locales/sl.yml +0 -2
- data/config/locales/sr-CS.yml +0 -9
- data/config/locales/sv.yml +22 -77
- data/config/locales/tr-TR.yml +13 -62
- data/config/locales/zh-CN.yml +3 -60
- data/config/locales/zh-TW.yml +6 -47
- data/db/migrate/20221116084952_add_weight_to_conferences.rb +7 -0
- data/lib/decidim/conferences/admin_engine.rb +14 -138
- data/lib/decidim/conferences/content_blocks/registry_manager.rb +21 -0
- data/lib/decidim/conferences/engine.rb +17 -15
- data/lib/decidim/conferences/menu.rb +182 -0
- data/lib/decidim/conferences/participatory_space.rb +6 -200
- data/lib/decidim/conferences/query_extensions.rb +2 -2
- data/lib/decidim/conferences/seeds.rb +153 -0
- data/lib/decidim/conferences/test/factories.rb +37 -73
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +47 -51
- data/app/cells/decidim/conferences/conference_address/show.erb +0 -11
- data/app/cells/decidim/conferences/conference_address_cell.rb +0 -11
- data/app/cells/decidim/conferences/conference_m/footer.erb +0 -9
- data/app/cells/decidim/conferences/conference_m/tags.erb +0 -1
- data/app/cells/decidim/conferences/conference_m_cell.rb +0 -38
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences/show.erb +0 -30
- data/app/cells/decidim/conferences/photo/show.erb +0 -26
- data/app/cells/decidim/conferences/photo_cell.rb +0 -41
- data/app/cells/decidim/conferences/photos_list/show.erb +0 -8
- data/app/cells/decidim/conferences/photos_list_cell.rb +0 -18
- data/app/commands/decidim/conferences/admin/create_conference_admin.rb +0 -114
- data/app/commands/decidim/conferences/admin/destroy_conference_admin.rb +0 -58
- data/app/commands/decidim/conferences/admin/notify_role_assigned_to_conference.rb +0 -22
- data/app/commands/decidim/conferences/admin/unpublish_conference.rb +0 -39
- data/app/commands/decidim/conferences/admin/update_conference_admin.rb +0 -53
- data/app/controllers/decidim/conferences/conference_widgets_controller.rb +0 -33
- data/app/queries/decidim/conferences/admin/conference_invites.rb +0 -60
- data/app/views/decidim/conferences/_order_by_conferences.html.erb +0 -3
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +0 -27
- data/app/views/decidim/conferences/media/_attachments.html.erb +0 -6
- data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +0 -14
- data/app/views/layouts/decidim/_conference_hero.html.erb +0 -42
- data/app/views/layouts/decidim/_conferences_nav.html.erb +0 -46
- data/config/locales/he-IL.yml +0 -1
- data/db/seeds/Exampledocument.pdf +0 -0
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/db/seeds/homepage_image.jpg +0 -0
- data/db/seeds/logo.png +0 -0
- data/decidim-conferences.gemspec +0 -33
data/config/locales/fi.yml
CHANGED
@@ -6,7 +6,6 @@ fi:
|
|
6
6
|
assemblies_ids: Liittyvät ryhmät
|
7
7
|
available_slots: Vapaat paikat
|
8
8
|
banner_image: Bannerikuva
|
9
|
-
consultations_ids: Liittyvät kuulemiset
|
10
9
|
copy_categories: Kopioi aihepiirit
|
11
10
|
copy_components: Kopioi komponentit
|
12
11
|
copy_features: Kopioi ominaisuudet
|
@@ -34,6 +33,7 @@ fi:
|
|
34
33
|
slug: URL-tunniste
|
35
34
|
start_date: Alkamispäivä
|
36
35
|
title: Otsikko
|
36
|
+
weight: Järjestysnumero
|
37
37
|
conference_media_link:
|
38
38
|
date: Päivämäärä
|
39
39
|
link: Linkki
|
@@ -74,7 +74,7 @@ fi:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited: Tämä sähköpostiosoite on jo kutsuttu
|
77
|
+
already_invited: Tämä sähköpostiosoite on jo kutsuttu.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -91,10 +91,15 @@ fi:
|
|
91
91
|
actions:
|
92
92
|
confirm: Vahvista
|
93
93
|
new_conference: Uusi konferenssi
|
94
|
+
new_conference_user_role: Uusi konferenssin hallintakäyttäjä
|
95
|
+
new_media_link: Uusi medialinkki
|
96
|
+
new_partner: Uusi yhteistyökumppani
|
97
|
+
new_registration_type: Uusi ilmoittautumistyyppi
|
98
|
+
new_speaker: Uusi puhuja
|
94
99
|
send_diplomas: Lähetä läsnäolotodistukset
|
95
100
|
conference_copies:
|
96
101
|
new:
|
97
|
-
copy:
|
102
|
+
copy: Kopio
|
98
103
|
select: Valitse, mitkä tiedot haluat kopioida
|
99
104
|
title: Kopioi konferenssi
|
100
105
|
conference_publications:
|
@@ -153,8 +158,8 @@ fi:
|
|
153
158
|
form:
|
154
159
|
title: Yleistä tietoa
|
155
160
|
index:
|
156
|
-
not_published: Ei julkaistu
|
157
161
|
published: Julkaistu
|
162
|
+
unpublished: Julkaisematon
|
158
163
|
new:
|
159
164
|
create: Luo
|
160
165
|
title: Konferenssi
|
@@ -194,18 +199,18 @@ fi:
|
|
194
199
|
conference_invites: Kutsut
|
195
200
|
conference_speakers: Puhujat
|
196
201
|
diploma: Läsnäolotodistus
|
197
|
-
info:
|
202
|
+
info: Tietoja tästä konferenssista
|
198
203
|
media_links: Medialinkit
|
199
204
|
moderations: Moderoinnit
|
200
205
|
partners: Yhteistyökumppanit
|
201
206
|
registration_types: Ilmoittautumistyypit
|
202
207
|
registrations: Ilmoittautumiset
|
208
|
+
see_conference: Näytä konferenssi
|
203
209
|
user_registrations: Käyttäjien ilmoittautumiset
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Luonnin ajankohta
|
208
|
-
promoted: Korostettu
|
209
214
|
published: Julkaistu
|
210
215
|
title: Otsikko
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ fi:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
slug_help_html: 'URL-tunnisteita käytetään luomaan URL-osoitteet, jotka osoittavat tähän konferenssiin. Hyväksyy vain kirjaimet, numerot ja viivat. Kirjaimen on oltava ensimmäinen merkki tunnisteessa. Esimerkki: %{url}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: Käyttäjän kutsuminen konferenssiin epäonnistui.
|
@@ -347,8 +352,7 @@ fi:
|
|
347
352
|
accepted: Hyväksytyt
|
348
353
|
all: Kaikki
|
349
354
|
rejected: Hylätyt
|
350
|
-
sent:
|
351
|
-
filter_by: Suodata
|
355
|
+
sent: Lähetetyt
|
352
356
|
invite_attendee: Kutsu käyttäjä
|
353
357
|
invites: Kutsut
|
354
358
|
search: Hae
|
@@ -373,7 +377,10 @@ fi:
|
|
373
377
|
registrations_count:
|
374
378
|
one: Ilmoittautumisia on 1 kpl.
|
375
379
|
other: Ilmoittautumisia on %{count} kpl.
|
376
|
-
|
380
|
+
slug_help_html: 'URL-tunnisteita käytetään luomaan URL-osoitteet, jotka osoittavat tähän konferenssiin. Hyväksyy vain kirjaimet, numerot ja viivat. Kirjaimen on oltava ensimmäinen merkki tunnisteessa. Esimerkki: %{url}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Näytettävien elementtien enimmäismäärä
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: Tallenna
|
@@ -407,18 +414,11 @@ fi:
|
|
407
414
|
cancel: Peruuta
|
408
415
|
confirm: Vahvista
|
409
416
|
show:
|
410
|
-
free: Maksuton
|
411
417
|
going: Osallistumassa
|
412
418
|
no_slots_available: Ei paikkoja vapaana
|
413
419
|
registration: Ilmoittautuminen
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Sisältö
|
417
|
-
location: Sijainti
|
418
|
-
speakers: Puhujat
|
419
|
-
streaming: Suoratoisto
|
420
421
|
show:
|
421
|
-
day: Päivä
|
422
422
|
program: Ohjelma
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -451,19 +451,24 @@ fi:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Henkilökohtainen verkkosivusto
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Siirry Twitteriin
|
456
454
|
conference_speakers:
|
457
455
|
index:
|
458
|
-
speakers:
|
456
|
+
speakers:
|
457
|
+
one: Puhuja
|
458
|
+
other: Puhujat
|
459
459
|
conferences:
|
460
460
|
partners:
|
461
461
|
collaborators: Yhteistyökumppanit
|
462
462
|
main_promotors: Järjestäjät
|
463
463
|
show:
|
464
|
+
already_have_an_account?: Onko sinulla jo käyttäjätili?
|
465
|
+
are_you_new?: Oletko uusi osallistuja?
|
464
466
|
login_as: Olet kirjautunut sisään henkilönä %{name} <%{email}>
|
465
|
-
make_conference_registration:
|
467
|
+
make_conference_registration: Ilmoittaudu konferenssiin
|
468
|
+
manage_registration: Hallinnoi ilmoittautumistasi
|
466
469
|
register: Ilmoittaudu
|
470
|
+
sign_in_description: Kirjaudu sisään ilmoittautuaksesi tähän konferenssiin
|
471
|
+
sign_up_description: Luo käyttäjätili palveluun ilmoittautuaksesi konferenssin
|
467
472
|
content_blocks:
|
468
473
|
highlighted_conferences:
|
469
474
|
name: Tärkeimmät konferenssit
|
@@ -472,9 +477,9 @@ fi:
|
|
472
477
|
mailer:
|
473
478
|
conference_registration_mailer:
|
474
479
|
confirmation:
|
475
|
-
subject:
|
480
|
+
subject: Ilmoittautumisesi konferenssiin on vahvistettu.
|
476
481
|
pending_validation:
|
477
|
-
subject:
|
482
|
+
subject: Ilmoittautumisesi konferenssiin odottaa vahvistusta.
|
478
483
|
invite_join_conference_mailer:
|
479
484
|
invite:
|
480
485
|
subject: Kutsu konferenssiin
|
@@ -505,38 +510,19 @@ fi:
|
|
505
510
|
pages:
|
506
511
|
home:
|
507
512
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: Näytä kaikki konferenssit
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Kuvan vaihtoehtoisteksti
|
515
|
-
show:
|
516
|
-
close_modal: Sulje ikkuna
|
517
|
-
photo: Kuva
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Kuvat
|
513
|
+
active_spaces: Aktiiviset konferenssit
|
514
|
+
see_all_spaces: Näytä kaikki konferenssit
|
521
515
|
registration_types:
|
522
516
|
index:
|
523
517
|
choose_an_option: 'Valitse ilmoittautumisvaihtoehto:'
|
524
|
-
login_as: Olet kirjautunut sisään henkilönä %{name} <%{email}>
|
525
518
|
no_registrations: Ei ilmoittautumisia
|
526
519
|
register: Ilmoittaudu
|
527
520
|
title: Ilmoittautumistyypit
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: Onko sinulla jo käyttäjätili?
|
531
|
-
new_user: Uusi käyttäjä?
|
532
|
-
sign_in: Kirjaudu sisään ilmoittautuaksesi konferenssiin
|
533
|
-
sign_up: Luo tili palveluun ilmoittautuaksesi konferenssin
|
534
521
|
show:
|
535
522
|
details: Tarkemmat tiedot
|
536
523
|
introduction: Esittely
|
537
524
|
objectives: Tavoitteet
|
538
525
|
related_assemblies: Liittyvät ryhmät
|
539
|
-
related_consultations: Liittyvät kuulemiset
|
540
526
|
related_participatory_processes: Liittyvät osallistumisprosessit
|
541
527
|
events:
|
542
528
|
conferences:
|
@@ -578,7 +564,7 @@ fi:
|
|
578
564
|
log:
|
579
565
|
value_types:
|
580
566
|
conference_presenter:
|
581
|
-
not_found: 'Konferenssia ei löytynyt tietokannasta (ID: %{id})'
|
567
|
+
not_found: 'Konferenssia ei löytynyt tietokannasta (ID: %{id}).'
|
582
568
|
media:
|
583
569
|
index:
|
584
570
|
description: Tähän konferenssiin liittyvät linkit
|
@@ -594,10 +580,8 @@ fi:
|
|
594
580
|
layouts:
|
595
581
|
decidim:
|
596
582
|
conference_hero:
|
583
|
+
manage_registration: Hallinnoi ilmoittautumistasi
|
597
584
|
register: Ilmoittaudu
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Osallistu
|
601
585
|
conferences:
|
602
586
|
conference:
|
603
587
|
more_info: Lisätietoja
|
@@ -608,11 +592,7 @@ fi:
|
|
608
592
|
conferences:
|
609
593
|
one: "%{count} konferenssi"
|
610
594
|
other: "%{count} konferenssia"
|
611
|
-
promoted_conference:
|
612
|
-
more_info: Lisätietoja
|
613
|
-
take_part: Osallistu
|
614
595
|
conferences_nav:
|
615
|
-
conference_menu_item: Tiedot
|
616
596
|
conference_partners_menu_item: Yhteistyökumppanit
|
617
597
|
conference_speaker_menu_item: Puhujat
|
618
598
|
media: Media
|
data/config/locales/fr-CA.yml
CHANGED
@@ -6,7 +6,6 @@ fr-CA:
|
|
6
6
|
assemblies_ids: Assemblées associées
|
7
7
|
available_slots: Emplacements disponibles
|
8
8
|
banner_image: Image d'en-tête
|
9
|
-
consultations_ids: Votations associées
|
10
9
|
copy_categories: Copier les catégories
|
11
10
|
copy_components: Copier les fonctionnalités
|
12
11
|
copy_features: Copier les fonctionnalités
|
@@ -34,6 +33,7 @@ fr-CA:
|
|
34
33
|
slug: Slug URL
|
35
34
|
start_date: Date de début
|
36
35
|
title: Titre
|
36
|
+
weight: Rang d'affichage
|
37
37
|
conference_media_link:
|
38
38
|
date: Date
|
39
39
|
link: Lien
|
@@ -74,7 +74,7 @@ fr-CA:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited: Cet email a déjà été
|
77
|
+
already_invited: Cet email a déjà été invité.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -91,6 +91,11 @@ fr-CA:
|
|
91
91
|
actions:
|
92
92
|
confirm: Confirmer
|
93
93
|
new_conference: Nouvelle conférence
|
94
|
+
new_conference_user_role: Nouvel administrateur de conférence
|
95
|
+
new_media_link: Nouveau lien média
|
96
|
+
new_partner: Nouveau partenaire
|
97
|
+
new_registration_type: Nouveau type d'inscription
|
98
|
+
new_speaker: Nouveau conférencier
|
94
99
|
send_diplomas: Envoyer des certificats de présence
|
95
100
|
conference_copies:
|
96
101
|
new:
|
@@ -153,8 +158,8 @@ fr-CA:
|
|
153
158
|
form:
|
154
159
|
title: Informations générales
|
155
160
|
index:
|
156
|
-
not_published: Non publié
|
157
161
|
published: Publié
|
162
|
+
unpublished: Non publié
|
158
163
|
new:
|
159
164
|
create: Créer
|
160
165
|
title: Conférence
|
@@ -194,18 +199,18 @@ fr-CA:
|
|
194
199
|
conference_invites: Invitations
|
195
200
|
conference_speakers: Conférenciers
|
196
201
|
diploma: Certificat de participation
|
197
|
-
info:
|
202
|
+
info: À propos de cette conférence
|
198
203
|
media_links: Liens médias
|
199
204
|
moderations: Modération
|
200
205
|
partners: Partenaires
|
201
206
|
registration_types: Types d'inscription
|
202
207
|
registrations: Inscriptions
|
208
|
+
see_conference: Voir la conférence
|
203
209
|
user_registrations: Utilisateurs inscrits
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Créé à
|
208
|
-
promoted: Mise en avant
|
209
214
|
published: Publié
|
210
215
|
title: Titre
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ fr-CA:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
slug_help_html: 'Les identifiants d''URL sont utilisés pour générer les URL qui pointent vers cette conférence. N''accepte que des lettres, des chiffres et des tirets et doit commencer par une lettre. Exemple : %{url}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: Un problème est survenu lors de l'invitation de l'utilisateur à rejoindre la conférence.
|
@@ -348,12 +353,11 @@ fr-CA:
|
|
348
353
|
all: Tout
|
349
354
|
rejected: Rejeté
|
350
355
|
sent: Envoyé
|
351
|
-
filter_by: Filtrer par
|
352
356
|
invite_attendee: Inviter un participant
|
353
357
|
invites: Invite
|
354
358
|
search: Chercher
|
355
359
|
new:
|
356
|
-
explanation:
|
360
|
+
explanation: Le participant sera invité à se joindre à une conférence. Si son adresse électronique n'est pas enregistrée, il sera également invité à s'inscrire sur la plateforme.
|
357
361
|
invite: Inviter
|
358
362
|
new_invite: Inviter un utilisateur
|
359
363
|
conference_registrations:
|
@@ -373,7 +377,10 @@ fr-CA:
|
|
373
377
|
registrations_count:
|
374
378
|
one: Il y a eu une inscription.
|
375
379
|
other: Il y a eu %{count} inscriptions.
|
376
|
-
|
380
|
+
slug_help_html: 'Les identifiants d''URL sont utilisés pour générer les URL qui pointent vers cette conférence. N''accepte que des lettres, des chiffres et des tirets et doit commencer par une lettre. Exemple : %{url}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Nombre maximum d'éléments à afficher
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: sauvegarder
|
@@ -407,18 +414,11 @@ fr-CA:
|
|
407
414
|
cancel: Annuler
|
408
415
|
confirm: Confirmer
|
409
416
|
show:
|
410
|
-
free: Libre
|
411
417
|
going: Participe
|
412
418
|
no_slots_available: Il ne reste plus de place
|
413
419
|
registration: Inscription
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Contenu
|
417
|
-
location: Lieu
|
418
|
-
speakers: Conférenciers
|
419
|
-
streaming: Diffusion
|
420
421
|
show:
|
421
|
-
day: Jour
|
422
422
|
program: Programme
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -451,19 +451,24 @@ fr-CA:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Site Web personnel
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Aller sur Twitter
|
456
454
|
conference_speakers:
|
457
455
|
index:
|
458
|
-
speakers:
|
456
|
+
speakers:
|
457
|
+
one: Conférencier
|
458
|
+
other: Conférenciers
|
459
459
|
conferences:
|
460
460
|
partners:
|
461
461
|
collaborators: Partenaires
|
462
462
|
main_promotors: Organisateurs
|
463
463
|
show:
|
464
|
+
already_have_an_account?: Vous avez déjà un compte ?
|
465
|
+
are_you_new?: Nouveau participant ?
|
464
466
|
login_as: Vous êtes connecté en tant que %{name} <%{email}>
|
465
|
-
make_conference_registration: '
|
467
|
+
make_conference_registration: S'inscrire à la conférence
|
468
|
+
manage_registration: Gérer l'inscription
|
466
469
|
register: S'inscrire
|
470
|
+
sign_in_description: Connectez-vous pour vous inscrire à la conférence
|
471
|
+
sign_up_description: Créez un compte pour vous inscrire à la conférence
|
467
472
|
content_blocks:
|
468
473
|
highlighted_conferences:
|
469
474
|
name: Conférences mises en avant
|
@@ -472,9 +477,9 @@ fr-CA:
|
|
472
477
|
mailer:
|
473
478
|
conference_registration_mailer:
|
474
479
|
confirmation:
|
475
|
-
subject: Votre inscription à la conférence a été confirmée
|
480
|
+
subject: Votre inscription à la conférence a été confirmée.
|
476
481
|
pending_validation:
|
477
|
-
subject: Votre inscription à la conférence est en attente de confirmation
|
482
|
+
subject: Votre inscription à la conférence est en attente de confirmation.
|
478
483
|
invite_join_conference_mailer:
|
479
484
|
invite:
|
480
485
|
subject: Invitation à participer à une conférence
|
@@ -505,38 +510,19 @@ fr-CA:
|
|
505
510
|
pages:
|
506
511
|
home:
|
507
512
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: Voir toutes les conférences
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Image média
|
515
|
-
show:
|
516
|
-
close_modal: Fermer la fenêtre
|
517
|
-
photo: Photo
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Photos
|
513
|
+
active_spaces: Conférences actives
|
514
|
+
see_all_spaces: Voir toutes les conférences
|
521
515
|
registration_types:
|
522
516
|
index:
|
523
517
|
choose_an_option: 'Choisissez votre option d''inscription:'
|
524
|
-
login_as: Vous êtes connecté en tant que %{name} <%{email}>
|
525
518
|
no_registrations: Pas d'inscriptions
|
526
519
|
register: S'inscrire
|
527
520
|
title: Types d'inscription
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: Avez-vous déjà un compte dans decidim?
|
531
|
-
new_user: Nouvel utilisateur ?
|
532
|
-
sign_in: Connectez-vous pour vous inscrire à la conférence
|
533
|
-
sign_up: Créez un compte dans decidim pour vous inscrire à la conférence
|
534
521
|
show:
|
535
522
|
details: Détails
|
536
523
|
introduction: introduction
|
537
524
|
objectives: Objectifs
|
538
525
|
related_assemblies: Assemblées connexes
|
539
|
-
related_consultations: Votations connexes
|
540
526
|
related_participatory_processes: Concertations associées
|
541
527
|
events:
|
542
528
|
conferences:
|
@@ -578,7 +564,7 @@ fr-CA:
|
|
578
564
|
log:
|
579
565
|
value_types:
|
580
566
|
conference_presenter:
|
581
|
-
not_found: 'La conférence n''a pas été trouvée
|
567
|
+
not_found: 'La conférence n''a pas été trouvée dans la base de données (ID: %{id}).'
|
582
568
|
media:
|
583
569
|
index:
|
584
570
|
description: Liens sur cette conférence
|
@@ -594,10 +580,8 @@ fr-CA:
|
|
594
580
|
layouts:
|
595
581
|
decidim:
|
596
582
|
conference_hero:
|
583
|
+
manage_registration: Gérer l'inscription
|
597
584
|
register: S'inscrire
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Participer
|
601
585
|
conferences:
|
602
586
|
conference:
|
603
587
|
more_info: Plus d'informations
|
@@ -608,11 +592,7 @@ fr-CA:
|
|
608
592
|
conferences:
|
609
593
|
one: "%{count} conférence"
|
610
594
|
other: "%{count} conférences"
|
611
|
-
promoted_conference:
|
612
|
-
more_info: Plus d'informations
|
613
|
-
take_part: Participer
|
614
595
|
conferences_nav:
|
615
|
-
conference_menu_item: Information
|
616
596
|
conference_partners_menu_item: Partenaires
|
617
597
|
conference_speaker_menu_item: Conférenciers
|
618
598
|
media: Médias
|