decidim-conferences 0.29.6 → 0.30.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/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +1 -1
- data/app/commands/decidim/conferences/admin/copy_conference.rb +2 -12
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/controllers/decidim/conferences/admin/component_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +17 -4
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +0 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +3 -8
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -11
- data/app/models/decidim/conference.rb +19 -0
- data/app/models/decidim/conferences/conference_invite.rb +10 -0
- data/app/permissions/decidim/conferences/permissions.rb +11 -10
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/conference_presenter.rb +19 -0
- data/app/serializers/decidim/conferences/conference_serializer.rb +24 -0
- data/app/serializers/decidim/conferences/download_your_data_conference_invite_serializer.rb +3 -4
- data/app/serializers/decidim/conferences/download_your_data_conference_registration_serializer.rb +4 -4
- data/app/serializers/decidim/conferences/open_data_conference_serializer.rb +30 -0
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +0 -3
- data/app/views/decidim/conferences/admin/conferences/_actions.html.erb +35 -0
- data/app/views/decidim/conferences/admin/conferences/_conference_row.html.erb +28 -0
- data/app/views/decidim/conferences/admin/conferences/_conferences_thead.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +27 -8
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +14 -52
- data/app/views/decidim/conferences/admin/conferences/manage_trash.html.erb +20 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +3 -1
- data/app/views/decidim/conferences/conference_program/show.html.erb +3 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +4 -1
- data/app/views/decidim/conferences/conferences/index.html.erb +3 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +6 -6
- data/app/views/decidim/conferences/media/index.html.erb +3 -1
- data/app/views/decidim/conferences/registration_types/index.html.erb +3 -1
- data/app/views/layouts/decidim/admin/conference.html.erb +1 -1
- data/config/locales/ar.yml +16 -3
- data/config/locales/bg.yml +6 -3
- data/config/locales/ca.yml +62 -4
- data/config/locales/cs.yml +61 -3
- data/config/locales/de.yml +70 -12
- data/config/locales/el.yml +6 -3
- data/config/locales/en.yml +62 -4
- data/config/locales/es-MX.yml +64 -6
- data/config/locales/es-PY.yml +65 -7
- data/config/locales/es.yml +63 -5
- data/config/locales/eu.yml +84 -26
- data/config/locales/fi-plain.yml +63 -5
- data/config/locales/fi.yml +63 -5
- data/config/locales/fr-CA.yml +21 -4
- data/config/locales/fr.yml +22 -5
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +6 -3
- data/config/locales/id-ID.yml +6 -3
- data/config/locales/it.yml +6 -3
- data/config/locales/ja.yml +62 -4
- data/config/locales/lb.yml +4 -3
- data/config/locales/lt.yml +6 -3
- data/config/locales/lv.yml +6 -3
- data/config/locales/nl.yml +6 -3
- data/config/locales/no.yml +6 -3
- data/config/locales/pl.yml +6 -3
- data/config/locales/pt-BR.yml +7 -4
- data/config/locales/pt.yml +6 -3
- data/config/locales/ro-RO.yml +6 -5
- data/config/locales/sk.yml +6 -3
- data/config/locales/sv.yml +37 -41
- data/config/locales/tr-TR.yml +6 -3
- data/config/locales/zh-CN.yml +6 -3
- data/config/locales/zh-TW.yml +6 -3
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +1 -1
- data/db/migrate/20240822161330_add_deleted_at_to_decidim_conferences.rb +8 -0
- data/decidim-conferences.gemspec +1 -2
- data/lib/decidim/api/conference_media_link_type.rb +4 -4
- data/lib/decidim/api/conference_partner_type.rb +4 -4
- data/lib/decidim/api/conference_speaker_type.rb +7 -8
- data/lib/decidim/api/conference_type.rb +17 -19
- data/lib/decidim/conferences/admin_engine.rb +87 -58
- data/lib/decidim/conferences/conference_diploma_pdf.rb +242 -0
- data/lib/decidim/conferences/engine.rb +6 -1
- data/lib/decidim/conferences/menu.rb +23 -9
- data/lib/decidim/conferences/participatory_space.rb +13 -0
- data/lib/decidim/conferences/seeds.rb +134 -115
- data/lib/decidim/conferences/test/factories.rb +10 -9
- data/lib/decidim/conferences/version.rb +1 -1
- data/lib/decidim/conferences.rb +1 -0
- metadata +23 -29
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
- data/config/locales/ca-IT.yml +0 -603
data/config/locales/fi.yml
CHANGED
|
@@ -22,8 +22,6 @@ fi:
|
|
|
22
22
|
published_at: Julkaisuaika
|
|
23
23
|
registration_terms: Ilmoittautumisehdot
|
|
24
24
|
registrations_enabled: Ilmoittautumiset ovat käytössä
|
|
25
|
-
scope_id: Teema
|
|
26
|
-
scopes_enabled: Teemat käytössä
|
|
27
25
|
short_description: Lyhyt kuvaus
|
|
28
26
|
show_statistics: Näytä tilastot
|
|
29
27
|
sign_date: Allekirjoituksen päivämäärä
|
|
@@ -92,6 +90,7 @@ fi:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Vahvista
|
|
93
|
+
confirm_delete_conference: Haluatko varmasti poistaa tämän konferenssin? Mikäli muutat mieltäsi, voit palauttaa konferenssin myöhemmin.
|
|
95
94
|
new_conference: Uusi konferenssi
|
|
96
95
|
new_conference_user_role: Uusi konferenssin hallintakäyttäjä
|
|
97
96
|
new_media_link: Uusi medialinkki
|
|
@@ -99,6 +98,7 @@ fi:
|
|
|
99
98
|
new_registration_type: Uusi ilmoittautumistyyppi
|
|
100
99
|
new_speaker: Uusi puhuja
|
|
101
100
|
send_diplomas: Lähetä läsnäolotodistukset
|
|
101
|
+
view_deleted_conferences: Näytä poistetut konferenssit
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Kopioi
|
|
@@ -168,6 +168,8 @@ fi:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Julkaistu
|
|
170
170
|
unpublished: Julkaisematon
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Poistetut konferenssit
|
|
171
173
|
new:
|
|
172
174
|
create: Luo
|
|
173
175
|
title: Konferenssi
|
|
@@ -176,8 +178,8 @@ fi:
|
|
|
176
178
|
success: Konferenssin päivitys onnistui.
|
|
177
179
|
conferences_copies:
|
|
178
180
|
create:
|
|
179
|
-
error: Konferenssin
|
|
180
|
-
success: Konferenssin
|
|
181
|
+
error: Konferenssin kopiointi epäonnistui.
|
|
182
|
+
success: Konferenssin kopiointi onnistui.
|
|
181
183
|
media_links:
|
|
182
184
|
create:
|
|
183
185
|
error: Uuden medialinkin luonti epäonnistui.
|
|
@@ -201,7 +203,6 @@ fi:
|
|
|
201
203
|
attachment_collections: Kansiot
|
|
202
204
|
attachment_files: Tiedostot
|
|
203
205
|
attachments: Liitteet
|
|
204
|
-
categories: Aihepiirit
|
|
205
206
|
components: Komponentit
|
|
206
207
|
conference_admins: Konferenssin ylläpitäjät
|
|
207
208
|
conference_invites: Kutsut
|
|
@@ -299,13 +300,21 @@ fi:
|
|
|
299
300
|
update:
|
|
300
301
|
error: Tämän konferenssin ilmoittautumistyyppin päivitys epäonnistui.
|
|
301
302
|
success: Konferenssin ilmoittautumistyypin päivitys onnistui.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: Kaikki konferenssit
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Konferenssit
|
|
308
|
+
conferences_deleted: Poistetut konferenssit
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Konferenssi voidaan poistaa ainoastaan, mikäli sitä ei ole julkaistu.
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} loi konferenssin %{resource_name}"
|
|
307
314
|
publish: "%{user_name} julkaisi konferenssin %{resource_name}"
|
|
315
|
+
restore: "%{user_name} palautti konferenssin %{resource_name}"
|
|
308
316
|
send_conference_diplomas: "%{user_name} lähetti konferenssin %{resource_name} läsnäolotodistukset osallistujille"
|
|
317
|
+
soft_delete: "%{user_name} siirsi konferenssin %{resource_name} roskakoriin"
|
|
309
318
|
unpublish: "%{user_name} perui konferenssin %{resource_name} julkaisun"
|
|
310
319
|
update: "%{user_name} päivitti konferenssia %{resource_name}"
|
|
311
320
|
update_diploma: "%{user_name} päivitti läsnäolotodistusten asetuksia konferenssille %{resource_name}"
|
|
@@ -376,10 +385,13 @@ fi:
|
|
|
376
385
|
conferences:
|
|
377
386
|
form:
|
|
378
387
|
available_slots_help: Jätä arvoksi 0, mikäli paikkojen määrää ei ole rajoitettu.
|
|
388
|
+
define_taxonomy_filters: Määritä osallistumistilalle suodattimia ennen kuin käytät tätä asetusta.
|
|
389
|
+
no_taxonomy_filters_found: Luokittelusuodattimia ei löytynyt.
|
|
379
390
|
registrations_count:
|
|
380
391
|
one: Ilmoittautumisia on 1 kpl.
|
|
381
392
|
other: Ilmoittautumisia on %{count} kpl.
|
|
382
393
|
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}'
|
|
394
|
+
taxonomies: Luokittelut
|
|
383
395
|
content_blocks:
|
|
384
396
|
highlighted_conferences:
|
|
385
397
|
max_results: Näytettävien elementtien enimmäismäärä
|
|
@@ -528,6 +540,25 @@ fi:
|
|
|
528
540
|
objectives: Tavoitteet
|
|
529
541
|
related_assemblies: Liittyvät ryhmät
|
|
530
542
|
related_participatory_processes: Liittyvät osallistumisprosessit
|
|
543
|
+
download_your_data:
|
|
544
|
+
help:
|
|
545
|
+
conference_invites:
|
|
546
|
+
accepted_at: Konferenssikutsun hyväksymisen ajankohta
|
|
547
|
+
conference: Konferenssi, jolle tämä kutsu oli osoitettu
|
|
548
|
+
confirmed_at: Kutsun hyväksymisaika
|
|
549
|
+
created_at: Kutsun laatimisaika
|
|
550
|
+
id: Konferenssikutsun yksilöivä tunniste
|
|
551
|
+
registration_type: Konferenssi-ilmoittautumisen tyyppi
|
|
552
|
+
rejected_at: Konferenssikutsun hylkäämisen ajankohta
|
|
553
|
+
sent_at: Konferenssikutsun lähetyksen ajankohta
|
|
554
|
+
updated_at: Kutsun viimeisimmän päivityksen ajankohta
|
|
555
|
+
conference_registrations:
|
|
556
|
+
conference: Konferenssi, johon tämä kuuluu
|
|
557
|
+
confirmed_at: Ilmoittautumisen vahvistusaika
|
|
558
|
+
created_at: Ilmoittautumisaika
|
|
559
|
+
id: Konferenssi-ilmoittautumisen yksilöivä tunniste
|
|
560
|
+
registration_type: Ilmoittautumisen tyyppi, johon tämä kuuluu
|
|
561
|
+
updated_at: Ilmoittautumisen viimeisimmän päivityksen ajankohta
|
|
531
562
|
events:
|
|
532
563
|
conferences:
|
|
533
564
|
conference_registration_confirmed:
|
|
@@ -575,6 +606,33 @@ fi:
|
|
|
575
606
|
title: Media ja linkit
|
|
576
607
|
menu:
|
|
577
608
|
conferences: Konferenssit
|
|
609
|
+
open_data:
|
|
610
|
+
help:
|
|
611
|
+
conferences:
|
|
612
|
+
created_at: Tilan luontiaika
|
|
613
|
+
decidim_scope_id: Konferenssin teema
|
|
614
|
+
description: Konferenssin pitkä kuvaus
|
|
615
|
+
end_date: Konferenssin päättymispäivä.
|
|
616
|
+
follows_count: Tilaa seuraavien käyttäjien määrä
|
|
617
|
+
hashtag: Konferenssia vastaava aihetunniste (hashtag), jota käytetään Twitter/X-palvelussa
|
|
618
|
+
id: Konferenssin yksilöivä tunniste
|
|
619
|
+
location: Konferenssin paikka, eli missä konferenssi järjestetään.
|
|
620
|
+
objectives: Konferenssin tavoitteet tai päämäärät.
|
|
621
|
+
promoted: Onko konferenssi korostettu vai ei
|
|
622
|
+
published_at: Tilan julkaisuaika
|
|
623
|
+
reference: Tilan yksilöivä viite
|
|
624
|
+
remote_banner_image_url: Konferenssin bannerikuvan URL-osoite
|
|
625
|
+
remote_hero_image_url: Konferenssin hero-kuvan URL-osoite
|
|
626
|
+
scope: Konferenssin teema
|
|
627
|
+
scopes_enabled: Ovatko teemat otettu käyttöön vai eivät
|
|
628
|
+
short_description: Konferenssin lyhyt kuvaus
|
|
629
|
+
slogan: Konferenssin tunnuslause
|
|
630
|
+
slug: Konferenssin URL-tunniste (URL-osoitteen osa, joka erottaa konferenssin muista konferensseista)
|
|
631
|
+
start_date: Konferenssin alkamispäivä.
|
|
632
|
+
taxonomies: Konferenssin luokittelut
|
|
633
|
+
title: Konferenssin otsikko
|
|
634
|
+
updated_at: Osallistumistilan viimeisimmän päivityksen ajankohta
|
|
635
|
+
url: Tilan URL-osoite
|
|
578
636
|
statistics:
|
|
579
637
|
conferences_count: Konferenssia
|
|
580
638
|
devise:
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -22,8 +22,6 @@ fr-CA:
|
|
|
22
22
|
published_at: Publié à
|
|
23
23
|
registration_terms: Conditions d’inscription
|
|
24
24
|
registrations_enabled: Inscriptions ouvertes
|
|
25
|
-
scope_id: Périmètre
|
|
26
|
-
scopes_enabled: Périmètres d'application activés
|
|
27
25
|
short_description: Brève description
|
|
28
26
|
show_statistics: Montrer les statistiques
|
|
29
27
|
sign_date: Date de signature
|
|
@@ -92,6 +90,7 @@ fr-CA:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Confirmer
|
|
93
|
+
confirm_delete_conference: Êtes-vous sûr(e) de vouloir supprimer cette conférence ? Si vous changez d'avis, vous pourrez la restaurer plus tard.
|
|
95
94
|
new_conference: Nouvelle conférence
|
|
96
95
|
new_conference_user_role: Nouvel administrateur de conférence
|
|
97
96
|
new_media_link: Nouveau lien média
|
|
@@ -99,6 +98,7 @@ fr-CA:
|
|
|
99
98
|
new_registration_type: Nouveau type d'inscription
|
|
100
99
|
new_speaker: Nouveau conférencier
|
|
101
100
|
send_diplomas: Envoyer des certificats de présence
|
|
101
|
+
view_deleted_conferences: Voir les conférences supprimées
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Copier
|
|
@@ -168,6 +168,8 @@ fr-CA:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Publié
|
|
170
170
|
unpublished: Non publié
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Conférences supprimées
|
|
171
173
|
new:
|
|
172
174
|
create: Créer
|
|
173
175
|
title: Conférence
|
|
@@ -176,7 +178,7 @@ fr-CA:
|
|
|
176
178
|
success: Conférence mise à jour avec succès.
|
|
177
179
|
conferences_copies:
|
|
178
180
|
create:
|
|
179
|
-
error:
|
|
181
|
+
error: Une erreur s'est produite lors de la duplication de cette conférence.
|
|
180
182
|
success: Conférence dupliquée avec succès.
|
|
181
183
|
media_links:
|
|
182
184
|
create:
|
|
@@ -201,7 +203,6 @@ fr-CA:
|
|
|
201
203
|
attachment_collections: Dossiers
|
|
202
204
|
attachment_files: Fichiers
|
|
203
205
|
attachments: Pièces jointes
|
|
204
|
-
categories: Catégories
|
|
205
206
|
components: Composants
|
|
206
207
|
conference_admins: Administrateurs de conférence
|
|
207
208
|
conference_invites: Invitations
|
|
@@ -299,8 +300,14 @@ fr-CA:
|
|
|
299
300
|
update:
|
|
300
301
|
error: Une erreur s'est produite lors de la mise à jour d'un type d'inscription pour cette conférence.
|
|
301
302
|
success: Le type d'inscription a été mis à jour avec succès pour cette conférence.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: Toutes les conférences
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Conférences
|
|
308
|
+
conferences_deleted: Conférences supprimées
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Les conférences ne peuvent être supprimées que si leur statut est "non publiée".
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} créé la %{resource_name} conférence"
|
|
@@ -528,6 +535,16 @@ fr-CA:
|
|
|
528
535
|
objectives: Objectifs
|
|
529
536
|
related_assemblies: Assemblées connexes
|
|
530
537
|
related_participatory_processes: Concertations associées
|
|
538
|
+
download_your_data:
|
|
539
|
+
help:
|
|
540
|
+
conference_invites:
|
|
541
|
+
confirmed_at: La date à laquelle cette invitation a été confirmée
|
|
542
|
+
created_at: La date à laquelle cette invitation a été créée
|
|
543
|
+
updated_at: La date à laquelle cette invitation a été mise à jour pour la dernière fois
|
|
544
|
+
conference_registrations:
|
|
545
|
+
confirmed_at: La date à laquelle cette inscription a été confirmée
|
|
546
|
+
created_at: La date à laquelle cette inscription a été créée
|
|
547
|
+
updated_at: La date à laquelle cette inscription a été mise à jour pour la dernière fois
|
|
531
548
|
events:
|
|
532
549
|
conferences:
|
|
533
550
|
conference_registration_confirmed:
|
data/config/locales/fr.yml
CHANGED
|
@@ -22,8 +22,6 @@ fr:
|
|
|
22
22
|
published_at: Publié à
|
|
23
23
|
registration_terms: Conditions d’inscription
|
|
24
24
|
registrations_enabled: Inscriptions ouvertes
|
|
25
|
-
scope_id: Périmètre
|
|
26
|
-
scopes_enabled: Secteurs activés
|
|
27
25
|
short_description: Brève description
|
|
28
26
|
show_statistics: Montrer les statistiques
|
|
29
27
|
sign_date: Date de signature
|
|
@@ -92,6 +90,7 @@ fr:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Confirmer
|
|
93
|
+
confirm_delete_conference: Êtes-vous sûr(e) de vouloir supprimer cette conférence ? Si vous changez d'avis, vous pourrez la restaurer plus tard.
|
|
95
94
|
new_conference: Nouvelle conférence
|
|
96
95
|
new_conference_user_role: Nouvel administrateur de conférence
|
|
97
96
|
new_media_link: Nouveau lien média
|
|
@@ -99,6 +98,7 @@ fr:
|
|
|
99
98
|
new_registration_type: Nouveau type d'inscription
|
|
100
99
|
new_speaker: Nouveau conférencier
|
|
101
100
|
send_diplomas: Envoyer des certificats de présence
|
|
101
|
+
view_deleted_conferences: Voir les conférences supprimées
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Copier
|
|
@@ -168,6 +168,8 @@ fr:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Publié
|
|
170
170
|
unpublished: Non publié
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Conférences supprimées
|
|
171
173
|
new:
|
|
172
174
|
create: Créer
|
|
173
175
|
title: Conférence
|
|
@@ -176,7 +178,7 @@ fr:
|
|
|
176
178
|
success: Conférence mise à jour avec succès.
|
|
177
179
|
conferences_copies:
|
|
178
180
|
create:
|
|
179
|
-
error:
|
|
181
|
+
error: Une erreur s'est produite lors de la duplication de cette conférence.
|
|
180
182
|
success: Conférence dupliquée avec succès.
|
|
181
183
|
media_links:
|
|
182
184
|
create:
|
|
@@ -201,7 +203,6 @@ fr:
|
|
|
201
203
|
attachment_collections: Dossiers
|
|
202
204
|
attachment_files: Fichiers
|
|
203
205
|
attachments: Pièces jointes
|
|
204
|
-
categories: Catégories
|
|
205
206
|
components: Fonctionnalités
|
|
206
207
|
conference_admins: Administrateurs de conférence
|
|
207
208
|
conference_invites: Invitations
|
|
@@ -299,8 +300,14 @@ fr:
|
|
|
299
300
|
update:
|
|
300
301
|
error: Une erreur s'est produite lors de la mise à jour d'un type d'inscription pour cette conférence.
|
|
301
302
|
success: Le type d'inscription a été mis à jour avec succès pour cette conférence.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: Toutes les conférences
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Conférences
|
|
308
|
+
conferences_deleted: Conférences supprimées
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Les conférences ne peuvent être supprimées que si leur statut est "non publiée".
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} créé la %{resource_name} conférence"
|
|
@@ -524,10 +531,20 @@ fr:
|
|
|
524
531
|
title: Types d'inscription
|
|
525
532
|
show:
|
|
526
533
|
details: Détails
|
|
527
|
-
introduction:
|
|
534
|
+
introduction: introduction
|
|
528
535
|
objectives: Objectifs
|
|
529
536
|
related_assemblies: Assemblées connexes
|
|
530
537
|
related_participatory_processes: Concertations associées
|
|
538
|
+
download_your_data:
|
|
539
|
+
help:
|
|
540
|
+
conference_invites:
|
|
541
|
+
confirmed_at: La date à laquelle cette invitation a été confirmée
|
|
542
|
+
created_at: La date à laquelle cette invitation a été créée
|
|
543
|
+
updated_at: La date à laquelle cette invitation a été mise à jour pour la dernière fois
|
|
544
|
+
conference_registrations:
|
|
545
|
+
confirmed_at: La date à laquelle cette inscription a été confirmée
|
|
546
|
+
created_at: La date à laquelle cette inscription a été créée
|
|
547
|
+
updated_at: La date à laquelle cette inscription a été mise à jour pour la dernière fois
|
|
531
548
|
events:
|
|
532
549
|
conferences:
|
|
533
550
|
conference_registration_confirmed:
|
data/config/locales/ga-IE.yml
CHANGED
|
@@ -9,7 +9,6 @@ ga:
|
|
|
9
9
|
hashtag: Haischlib
|
|
10
10
|
location: Suíomh
|
|
11
11
|
participatory_processes_ids: Próisis Rannpháirteacha Ceangailte
|
|
12
|
-
scope_id: Scóip
|
|
13
12
|
slogan: Mana
|
|
14
13
|
slug: Píosa URL
|
|
15
14
|
title: Teideal
|
|
@@ -67,7 +66,6 @@ ga:
|
|
|
67
66
|
attachment_collections: Fillteáin
|
|
68
67
|
attachment_files: Comhaid
|
|
69
68
|
attachments: Ceangaltáin
|
|
70
|
-
categories: Catagóirí
|
|
71
69
|
conference_invites: Cuirí
|
|
72
70
|
conference_speakers: Cainteoirí
|
|
73
71
|
partners: Comhpháirtithe
|
data/config/locales/gl.yml
CHANGED
|
@@ -22,8 +22,6 @@ gl:
|
|
|
22
22
|
published_at: Publicado en
|
|
23
23
|
registration_terms: Condicións do rexistro
|
|
24
24
|
registrations_enabled: Rexistro habilitado
|
|
25
|
-
scope_id: Alcance
|
|
26
|
-
scopes_enabled: Ámbitos habilitados
|
|
27
25
|
short_description: Descrición curta
|
|
28
26
|
show_statistics: Amosar estatísticas
|
|
29
27
|
sign_date: Data de sinatura
|
|
@@ -80,6 +78,8 @@ gl:
|
|
|
80
78
|
conference_copies:
|
|
81
79
|
new:
|
|
82
80
|
copy: Copiar
|
|
81
|
+
select: Seleccione os datos que desexa duplicar
|
|
82
|
+
title: Conferencia duplicada
|
|
83
83
|
conference_publications:
|
|
84
84
|
create:
|
|
85
85
|
error: Produciuse un erro ao publicar esta conferencia.
|
|
@@ -137,6 +137,10 @@ gl:
|
|
|
137
137
|
update:
|
|
138
138
|
error: Houbo un erro ao actualizar esta conferencia.
|
|
139
139
|
success: A conferencia actualizouse con éxito.
|
|
140
|
+
conferences_copies:
|
|
141
|
+
create:
|
|
142
|
+
error: Produciuse un erro ao duplicar esta conferencia.
|
|
143
|
+
success: A conferencia duplicouse con éxito.
|
|
140
144
|
media_links:
|
|
141
145
|
create:
|
|
142
146
|
error: Produciuse un erro ao crear unha nova ligazón multimedia.
|
|
@@ -152,7 +156,6 @@ gl:
|
|
|
152
156
|
attachment_collections: Carpetas
|
|
153
157
|
attachment_files: Arquivos
|
|
154
158
|
attachments: Anexos
|
|
155
|
-
categories: Categorías
|
|
156
159
|
components: Compoñentes
|
|
157
160
|
conference_admins: Administradores de conferencias
|
|
158
161
|
conference_invites: Invitacións
|
data/config/locales/hu.yml
CHANGED
|
@@ -22,8 +22,6 @@ hu:
|
|
|
22
22
|
published_at: Megjelent a
|
|
23
23
|
registration_terms: Regisztrációs feltételek
|
|
24
24
|
registrations_enabled: Regisztráció engedélyezve
|
|
25
|
-
scope_id: terület
|
|
26
|
-
scopes_enabled: A hatókör engedélyezett
|
|
27
25
|
short_description: Rövid leírás
|
|
28
26
|
show_statistics: Statisztikák megjelenítése
|
|
29
27
|
signature: Aláírás
|
|
@@ -99,6 +97,8 @@ hu:
|
|
|
99
97
|
conference_copies:
|
|
100
98
|
new:
|
|
101
99
|
copy: Másolat
|
|
100
|
+
select: Válassza ki, mely adatokat szeretné megismételni
|
|
101
|
+
title: Duplikált konferencia
|
|
102
102
|
conference_publications:
|
|
103
103
|
create:
|
|
104
104
|
error: Hiba történt a konferencia közzétételében.
|
|
@@ -159,6 +159,10 @@ hu:
|
|
|
159
159
|
update:
|
|
160
160
|
error: Hiba történt a konferencia frissítésekor.
|
|
161
161
|
success: A konferencia sikeresen frissült.
|
|
162
|
+
conferences_copies:
|
|
163
|
+
create:
|
|
164
|
+
error: Hiba történt a konferencia másolása során.
|
|
165
|
+
success: A konferencia sikeresen megismétlődött.
|
|
162
166
|
media_links:
|
|
163
167
|
create:
|
|
164
168
|
error: Hiba történt új média link létrehozása közben.
|
|
@@ -174,7 +178,6 @@ hu:
|
|
|
174
178
|
attachment_collections: mappák
|
|
175
179
|
attachment_files: Files
|
|
176
180
|
attachments: Mellékletek
|
|
177
|
-
categories: Kategóriák
|
|
178
181
|
components: Alkatrészek
|
|
179
182
|
conference_admins: Konferencia adminisztrátorok
|
|
180
183
|
conference_invites: Meghívottak
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -15,8 +15,6 @@ id:
|
|
|
15
15
|
participatory_processes_ids: Proses Partisipatif Terkait
|
|
16
16
|
promoted: Dipromosikan
|
|
17
17
|
published_at: Diterbitkan di
|
|
18
|
-
scope_id: Cakupan
|
|
19
|
-
scopes_enabled: Lingkup diaktifkan
|
|
20
18
|
short_description: Deskripsi Singkat
|
|
21
19
|
show_statistics: Tampilkan statistik
|
|
22
20
|
slogan: Slogan
|
|
@@ -44,6 +42,8 @@ id:
|
|
|
44
42
|
conference_copies:
|
|
45
43
|
new:
|
|
46
44
|
copy: Salinan
|
|
45
|
+
select: Pilih data mana yang ingin Anda gandakan
|
|
46
|
+
title: Konferensi duplikat
|
|
47
47
|
conference_publications:
|
|
48
48
|
create:
|
|
49
49
|
error: Terjadi kesalahan saat mempublikasikan konferensi ini.
|
|
@@ -101,6 +101,10 @@ id:
|
|
|
101
101
|
update:
|
|
102
102
|
error: Ada kesalahan saat memperbarui konferensi ini.
|
|
103
103
|
success: Konferensi berhasil diperbarui.
|
|
104
|
+
conferences_copies:
|
|
105
|
+
create:
|
|
106
|
+
error: Ada kesalahan saat menduplikasi konferensi ini.
|
|
107
|
+
success: Konferensi berhasil digandakan.
|
|
104
108
|
media_links:
|
|
105
109
|
create:
|
|
106
110
|
error: Terjadi kesalahan saat membuat tautan media baru.
|
|
@@ -116,7 +120,6 @@ id:
|
|
|
116
120
|
attachment_collections: Folder
|
|
117
121
|
attachment_files: File
|
|
118
122
|
attachments: Lampiran
|
|
119
|
-
categories: Kategori
|
|
120
123
|
components: Komponen
|
|
121
124
|
conference_admins: Admin konferensi
|
|
122
125
|
conference_invites: Undangan
|
data/config/locales/it.yml
CHANGED
|
@@ -22,8 +22,6 @@ it:
|
|
|
22
22
|
published_at: Pubblicato il
|
|
23
23
|
registration_terms: Termini di registrazione
|
|
24
24
|
registrations_enabled: Registrazioni abilitate
|
|
25
|
-
scope_id: Obiettivo
|
|
26
|
-
scopes_enabled: Ambiti abilitati
|
|
27
25
|
short_description: Breve descrizione
|
|
28
26
|
show_statistics: Mostra statistiche
|
|
29
27
|
sign_date: Firmato il
|
|
@@ -80,6 +78,8 @@ it:
|
|
|
80
78
|
conference_copies:
|
|
81
79
|
new:
|
|
82
80
|
copy: Copia
|
|
81
|
+
select: Seleziona i dati che desideri duplicare
|
|
82
|
+
title: Duplica Conferenza
|
|
83
83
|
conference_publications:
|
|
84
84
|
create:
|
|
85
85
|
error: Si è verificato un errore durante la pubblicazione di questa conferenza.
|
|
@@ -138,6 +138,10 @@ it:
|
|
|
138
138
|
update:
|
|
139
139
|
error: Si è verificato un errore durante l'aggiornamento di questa conferenza.
|
|
140
140
|
success: Conferenza aggiornata con successo.
|
|
141
|
+
conferences_copies:
|
|
142
|
+
create:
|
|
143
|
+
error: Si è verificato un errore durante la duplicazione di questa conferenza.
|
|
144
|
+
success: Conferenza duplicata con successo.
|
|
141
145
|
media_links:
|
|
142
146
|
create:
|
|
143
147
|
error: Si è verificato un errore durante la creazione di un nuovo collegamento multimediale.
|
|
@@ -153,7 +157,6 @@ it:
|
|
|
153
157
|
attachment_collections: Cartelle
|
|
154
158
|
attachment_files: Files
|
|
155
159
|
attachments: Allegati
|
|
156
|
-
categories: Categorie
|
|
157
160
|
components: Componenti
|
|
158
161
|
conference_admins: Amministratori della conferenza
|
|
159
162
|
conference_invites: Inviti
|
data/config/locales/ja.yml
CHANGED
|
@@ -22,8 +22,6 @@ ja:
|
|
|
22
22
|
published_at: 公開日時
|
|
23
23
|
registration_terms: 参加規約
|
|
24
24
|
registrations_enabled: 登録可能
|
|
25
|
-
scope_id: スコープ
|
|
26
|
-
scopes_enabled: スコープは有効です
|
|
27
25
|
short_description: 短い説明
|
|
28
26
|
show_statistics: 統計情報を表示
|
|
29
27
|
sign_date: 署名日
|
|
@@ -89,6 +87,7 @@ ja:
|
|
|
89
87
|
admin:
|
|
90
88
|
actions:
|
|
91
89
|
confirm: 確認する
|
|
90
|
+
confirm_delete_conference: このカンファレンスを削除してもよろしいですか?気が変わった場合は、後で復元できます。
|
|
92
91
|
new_conference: 新しいカンファレンス
|
|
93
92
|
new_conference_user_role: 新しいカンファレンス管理者
|
|
94
93
|
new_media_link: 新しいメディア リンク
|
|
@@ -96,10 +95,11 @@ ja:
|
|
|
96
95
|
new_registration_type: 新規登録種別
|
|
97
96
|
new_speaker: 新しいスピーカー
|
|
98
97
|
send_diplomas: 出席証明書を送信
|
|
98
|
+
view_deleted_conferences: 削除されたカンファレンスを表示
|
|
99
99
|
conference_copies:
|
|
100
100
|
new:
|
|
101
101
|
copy: コピー
|
|
102
|
-
select:
|
|
102
|
+
select: 複製したいデータを選択してください
|
|
103
103
|
title: カンファレンスを複製
|
|
104
104
|
conference_publications:
|
|
105
105
|
create:
|
|
@@ -165,6 +165,8 @@ ja:
|
|
|
165
165
|
index:
|
|
166
166
|
published: 公開済み
|
|
167
167
|
unpublished: 未公開
|
|
168
|
+
manage_trash:
|
|
169
|
+
title: 削除されたカンファレンス
|
|
168
170
|
new:
|
|
169
171
|
create: 作成
|
|
170
172
|
title: カンファレンス
|
|
@@ -198,7 +200,6 @@ ja:
|
|
|
198
200
|
attachment_collections: フォルダ
|
|
199
201
|
attachment_files: ファイル
|
|
200
202
|
attachments: 添付ファイル
|
|
201
|
-
categories: カテゴリ
|
|
202
203
|
components: コンポーネント
|
|
203
204
|
conference_admins: カンファレンス管理者
|
|
204
205
|
conference_invites: 招待
|
|
@@ -296,13 +297,21 @@ ja:
|
|
|
296
297
|
update:
|
|
297
298
|
error: このカンファレンスの登録種別の更新に問題がありました。
|
|
298
299
|
success: カンファレンスの登録種別を更新しました。
|
|
300
|
+
taxonomy_filters:
|
|
301
|
+
space_filter_for:
|
|
302
|
+
conferences: すべてのカンファレンス
|
|
299
303
|
titles:
|
|
300
304
|
conferences: カンファレンス
|
|
305
|
+
conferences_deleted: 削除されたカンファレンス
|
|
306
|
+
tooltips:
|
|
307
|
+
deleted_conferences_info: カンファレンスは、ステータスが "未公開" の場合にのみ削除できます。
|
|
301
308
|
admin_log:
|
|
302
309
|
conference:
|
|
303
310
|
create: "%{user_name} が %{resource_name} カンファレンスを作成しました"
|
|
304
311
|
publish: "%{user_name} が %{resource_name} カンファレンスを公開しました"
|
|
312
|
+
restore: "%{user_name} が %{resource_name} カンファレンスを復元しました"
|
|
305
313
|
send_conference_diplomas: "%{user_name} が %{resource_name} カンファレンスに出席証明書を送信しました"
|
|
314
|
+
soft_delete: "%{user_name} が %{resource_name} カンファレンスをゴミ箱に移動しました"
|
|
306
315
|
unpublish: "%{user_name} が %{resource_name} カンファレンスを非公開にしました"
|
|
307
316
|
update: "%{user_name} が %{resource_name} のカンファレンスを更新しました"
|
|
308
317
|
update_diploma: "%{user_name} が %{resource_name} カンファレンスの出席設定証明書を更新しました"
|
|
@@ -373,9 +382,12 @@ ja:
|
|
|
373
382
|
conferences:
|
|
374
383
|
form:
|
|
375
384
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
|
385
|
+
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
|
386
|
+
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
|
376
387
|
registrations_count:
|
|
377
388
|
other: '%{count} 件の登録がありました。'
|
|
378
389
|
slug_help_html: 'URLスラグは、このカンファレンスを指すURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
|
390
|
+
taxonomies: タクソノミー
|
|
379
391
|
content_blocks:
|
|
380
392
|
highlighted_conferences:
|
|
381
393
|
max_results: 表示する要素の最大数
|
|
@@ -523,6 +535,25 @@ ja:
|
|
|
523
535
|
objectives: 目的
|
|
524
536
|
related_assemblies: 関連する参加スペース
|
|
525
537
|
related_participatory_processes: 関連する参加型プロセス
|
|
538
|
+
download_your_data:
|
|
539
|
+
help:
|
|
540
|
+
conference_invites:
|
|
541
|
+
accepted_at: カンファレンスへの招待が承認された日時
|
|
542
|
+
conference: この招待状が送信されたカンファレンス
|
|
543
|
+
confirmed_at: この招待の確認日時
|
|
544
|
+
created_at: この招待の作成日時
|
|
545
|
+
id: カンファレンス招待の固有ID
|
|
546
|
+
registration_type: 送信されたカンファレンス参加登録の種別
|
|
547
|
+
rejected_at: カンファレンスへの招待が却下された日時
|
|
548
|
+
sent_at: カンファレンスへの招待が送信された日時
|
|
549
|
+
updated_at: この招待の最終更新日時
|
|
550
|
+
conference_registrations:
|
|
551
|
+
conference: 所属するカンファレンス
|
|
552
|
+
confirmed_at: この登録の確認日時
|
|
553
|
+
created_at: この登録の作成日時
|
|
554
|
+
id: カンファレンス参加登録の固有ID
|
|
555
|
+
registration_type: これが属する参加登録の種別
|
|
556
|
+
updated_at: この登録の最終更新日時
|
|
526
557
|
events:
|
|
527
558
|
conferences:
|
|
528
559
|
conference_registration_confirmed:
|
|
@@ -570,6 +601,33 @@ ja:
|
|
|
570
601
|
title: メディアとリンク
|
|
571
602
|
menu:
|
|
572
603
|
conferences: カンファレンス
|
|
604
|
+
open_data:
|
|
605
|
+
help:
|
|
606
|
+
conferences:
|
|
607
|
+
created_at: このスペースが作成された日時
|
|
608
|
+
decidim_scope_id: カンファレンスのスコープ
|
|
609
|
+
description: カンファレンスの詳しい説明
|
|
610
|
+
end_date: カンファレンスの終了日時
|
|
611
|
+
follows_count: このスペースをフォローしているユーザー数
|
|
612
|
+
hashtag: Twitter/Xで使用されるカンファレンスハッシュタグ
|
|
613
|
+
id: このカンファレンスの固有ID
|
|
614
|
+
location: カンファレンスの場所. このカンファレンスが開催されるところ.
|
|
615
|
+
objectives: この感ファンレスの目的。開催する目標は何か。
|
|
616
|
+
promoted: カンファレンスがプロモートされるかどうか
|
|
617
|
+
published_at: このスペースが公開された日時
|
|
618
|
+
reference: スペースのユニークな参照
|
|
619
|
+
remote_banner_image_url: カンファレンスバナー画像のURL
|
|
620
|
+
remote_hero_image_url: カンファレンスのヒーロー画像のURL
|
|
621
|
+
scope: カンファレンスのスコープ
|
|
622
|
+
scopes_enabled: スコープが有効かどうか
|
|
623
|
+
short_description: カンファレンスの簡単な説明
|
|
624
|
+
slogan: このカンファレンスのスローガン
|
|
625
|
+
slug: カンファレンスのスラグ(識別目的、URLに使用)
|
|
626
|
+
start_date: カンファレンスの開始日時
|
|
627
|
+
taxonomies: このカンファレンスのタクソノミー
|
|
628
|
+
title: カンファレンスのタイトル
|
|
629
|
+
updated_at: このスペースの最終更新日時
|
|
630
|
+
url: スペースのURL
|
|
573
631
|
statistics:
|
|
574
632
|
conferences_count: カンファレンス
|
|
575
633
|
devise:
|
data/config/locales/lb.yml
CHANGED
|
@@ -22,8 +22,6 @@ lb:
|
|
|
22
22
|
published_at: Veröffentlicht unter
|
|
23
23
|
registration_terms: Registrierungsbedingungen
|
|
24
24
|
registrations_enabled: Registrierungen aktiviert
|
|
25
|
-
scope_id: Umfang
|
|
26
|
-
scopes_enabled: Bereiche aktiviert
|
|
27
25
|
short_description: Kurze Beschreibung
|
|
28
26
|
show_statistics: Zeige Statistiken
|
|
29
27
|
sign_date: Datum der Unterschrift
|
|
@@ -77,6 +75,10 @@ lb:
|
|
|
77
75
|
update:
|
|
78
76
|
error: Beim Aktualisieren dieser Konferenz ist ein Fehler aufgetreten.
|
|
79
77
|
success: Konferenz wurde erfolgreich aktualisiert.
|
|
78
|
+
conferences_copies:
|
|
79
|
+
create:
|
|
80
|
+
error: Beim Duplizieren dieser Konferenz ist ein Fehler aufgetreten.
|
|
81
|
+
success: Konferenz wurde erfolgreich dupliziert.
|
|
80
82
|
media_links:
|
|
81
83
|
create:
|
|
82
84
|
error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
|
|
@@ -92,7 +94,6 @@ lb:
|
|
|
92
94
|
attachment_collections: Ordner
|
|
93
95
|
attachment_files: Dateien
|
|
94
96
|
attachments: Anhänge
|
|
95
|
-
categories: Kategorien
|
|
96
97
|
components: Komponenten
|
|
97
98
|
conference_admins: Konferenzadministratoren
|
|
98
99
|
conference_invites: Lädt ein
|
data/config/locales/lt.yml
CHANGED
|
@@ -22,8 +22,6 @@ lt:
|
|
|
22
22
|
published_at: Publikuota
|
|
23
23
|
registration_terms: Registracijos sąlygos
|
|
24
24
|
registrations_enabled: Registracijos įjungtos
|
|
25
|
-
scope_id: Apimtis
|
|
26
|
-
scopes_enabled: Sritys įjungtos
|
|
27
25
|
short_description: Trumpas aprašymas
|
|
28
26
|
show_statistics: Rodyti statistiką
|
|
29
27
|
sign_date: Pasirašymo data
|
|
@@ -99,6 +97,8 @@ lt:
|
|
|
99
97
|
conference_copies:
|
|
100
98
|
new:
|
|
101
99
|
copy: Kopijuoti
|
|
100
|
+
select: Pasirinkite, kuriuos duomenis norėtumėte dubliuoti
|
|
101
|
+
title: Dubliuoti konferenciją
|
|
102
102
|
conference_publications:
|
|
103
103
|
create:
|
|
104
104
|
error: Publikuojant šią konferenciją iškilo problema.
|
|
@@ -158,6 +158,10 @@ lt:
|
|
|
158
158
|
update:
|
|
159
159
|
error: Atnaujinant šią konferenciją iškilo problema.
|
|
160
160
|
success: Konferencija atnaujinta.
|
|
161
|
+
conferences_copies:
|
|
162
|
+
create:
|
|
163
|
+
error: Dubliuojant šią konferenciją iškilo problema.
|
|
164
|
+
success: Konferencija dubliuota.
|
|
161
165
|
media_links:
|
|
162
166
|
create:
|
|
163
167
|
error: Kuriant naują multimedijos nuorodą iškilo problema.
|
|
@@ -173,7 +177,6 @@ lt:
|
|
|
173
177
|
attachment_collections: Aplankai
|
|
174
178
|
attachment_files: Dokumentai
|
|
175
179
|
attachments: Priedai
|
|
176
|
-
categories: Kategorijos
|
|
177
180
|
components: Komponentai
|
|
178
181
|
conference_admins: Konferencijos administratoriai
|
|
179
182
|
conference_invites: Pakvietimai
|