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/fr.yml
CHANGED
@@ -6,7 +6,6 @@ fr:
|
|
6
6
|
assemblies_ids: Assemblées associées
|
7
7
|
available_slots: Nombre de places 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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
data/config/locales/ga-IE.yml
CHANGED
@@ -70,7 +70,6 @@ ga:
|
|
70
70
|
categories: Catagóirí
|
71
71
|
conference_invites: Cuirí
|
72
72
|
conference_speakers: Cainteoirí
|
73
|
-
info: Eolas
|
74
73
|
partners: Comhpháirtithe
|
75
74
|
models:
|
76
75
|
conference:
|
@@ -145,19 +144,9 @@ ga:
|
|
145
144
|
registration_confirm:
|
146
145
|
cancel: Cealaigh
|
147
146
|
confirm: Deimhnigh
|
148
|
-
show:
|
149
|
-
free: Saor in aisce
|
150
147
|
conference_program:
|
151
|
-
program_meeting:
|
152
|
-
content: Inneachar
|
153
|
-
location: Suíomh
|
154
|
-
speakers: Cainteoirí
|
155
148
|
show:
|
156
|
-
day: Lá
|
157
149
|
program: Clár
|
158
|
-
conference_speakers:
|
159
|
-
index:
|
160
|
-
speakers: Cainteoirí
|
161
150
|
conferences:
|
162
151
|
partners:
|
163
152
|
collaborators: Comhpháirtithe
|
@@ -179,12 +168,6 @@ ga:
|
|
179
168
|
state: Stádas
|
180
169
|
states:
|
181
170
|
pending: Ar feitheamh
|
182
|
-
photo:
|
183
|
-
show:
|
184
|
-
photo: Íomhá
|
185
|
-
photos_list:
|
186
|
-
show:
|
187
|
-
related_photos: Íomhánna
|
188
171
|
registration_types:
|
189
172
|
index:
|
190
173
|
register: Cláraigh
|
data/config/locales/gl.yml
CHANGED
@@ -6,7 +6,6 @@ gl:
|
|
6
6
|
assemblies_ids: Asembleas relacionadas
|
7
7
|
available_slots: Prazas dispoñíbeis
|
8
8
|
banner_image: Imaxe do banner
|
9
|
-
consultations_ids: Consultas relacionadas
|
10
9
|
copy_categories: Copiar categorías
|
11
10
|
copy_components: Copiar compoñentes
|
12
11
|
copy_features: Copiar funcións
|
@@ -62,12 +61,6 @@ gl:
|
|
62
61
|
email: Correo electrónico
|
63
62
|
name: Nome
|
64
63
|
role: Rol
|
65
|
-
errors:
|
66
|
-
models:
|
67
|
-
conference_registration_invite:
|
68
|
-
attributes:
|
69
|
-
email:
|
70
|
-
already_invited: Este correo electrónico xa foi convidado
|
71
64
|
activerecord:
|
72
65
|
models:
|
73
66
|
decidim/conference:
|
@@ -83,7 +76,6 @@ gl:
|
|
83
76
|
admin:
|
84
77
|
actions:
|
85
78
|
confirm: Confirmar
|
86
|
-
new_conference: Nova conferencia
|
87
79
|
send_diplomas: Enviar certificados de asistencia
|
88
80
|
conference_copies:
|
89
81
|
new:
|
@@ -144,7 +136,6 @@ gl:
|
|
144
136
|
form:
|
145
137
|
title: Información xeral
|
146
138
|
index:
|
147
|
-
not_published: Non publicado
|
148
139
|
published: Publicado
|
149
140
|
new:
|
150
141
|
create: Crear
|
@@ -185,7 +176,6 @@ gl:
|
|
185
176
|
conference_invites: Invitacións
|
186
177
|
conference_speakers: Ponentes
|
187
178
|
diploma: Certificado de asistencia
|
188
|
-
info: Información
|
189
179
|
media_links: Ligazóns multimedia
|
190
180
|
moderations: Moderacións
|
191
181
|
partners: Socios
|
@@ -196,7 +186,6 @@ gl:
|
|
196
186
|
conference:
|
197
187
|
fields:
|
198
188
|
created_at: Creado en
|
199
|
-
promoted: Promocionado
|
200
189
|
published: Publicado
|
201
190
|
title: Título
|
202
191
|
conference_speaker:
|
@@ -327,14 +316,14 @@ gl:
|
|
327
316
|
select_user: Seleccionar usuario
|
328
317
|
index:
|
329
318
|
filter:
|
319
|
+
accepted: Aceptada
|
330
320
|
all: Todo
|
321
|
+
rejected: Rexeitado
|
331
322
|
sent: Enviado
|
332
|
-
filter_by: Filtrar por
|
333
323
|
invite_attendee: Invitar asistente
|
334
324
|
invites: Invitacións
|
335
325
|
search: Busca
|
336
326
|
new:
|
337
|
-
explanation: Invitarase ao usuario a participar nunha conferencia. Se o correo electrónico non está rexistrado, tamén serán invitados á organización.
|
338
327
|
invite: Invitar
|
339
328
|
new_invite: Invitar ao usuario
|
340
329
|
conference_registrations:
|
@@ -386,18 +375,11 @@ gl:
|
|
386
375
|
cancel: Cancelar
|
387
376
|
confirm: Confirmar
|
388
377
|
show:
|
389
|
-
free: Gratis
|
390
378
|
going: Indo
|
391
379
|
no_slots_available: Non hai slots dispoñibles
|
392
380
|
registration: Rexistro
|
393
381
|
conference_program:
|
394
|
-
program_meeting:
|
395
|
-
content: Contido
|
396
|
-
location: Localización
|
397
|
-
speakers: Ponentes
|
398
|
-
streaming: Transmisión
|
399
382
|
show:
|
400
|
-
day: Día
|
401
383
|
program: Programa
|
402
384
|
conference_registration_mailer:
|
403
385
|
confirmation:
|
@@ -427,18 +409,12 @@ gl:
|
|
427
409
|
conference_speaker_cell:
|
428
410
|
personal_url:
|
429
411
|
personal_website: Sitio web persoal
|
430
|
-
twitter_handle:
|
431
|
-
go_to_twitter: Ir a Twitter
|
432
|
-
conference_speakers:
|
433
|
-
index:
|
434
|
-
speakers: Ponentes
|
435
412
|
conferences:
|
436
413
|
partners:
|
437
414
|
collaborators: Socios
|
438
415
|
main_promotors: Organizadores
|
439
416
|
show:
|
440
417
|
login_as: Estás conectado como %{name} <%{email}>
|
441
|
-
make_conference_registration: 'Fai a túa inscrición na conferencia:'
|
442
418
|
register: Rexistrarse
|
443
419
|
content_blocks:
|
444
420
|
highlighted_conferences:
|
@@ -446,11 +422,6 @@ gl:
|
|
446
422
|
index:
|
447
423
|
title: Conferencias
|
448
424
|
mailer:
|
449
|
-
conference_registration_mailer:
|
450
|
-
confirmation:
|
451
|
-
subject: O rexistro da túa conferencia foi confirmado
|
452
|
-
pending_validation:
|
453
|
-
subject: A inscrición da túa conferencia está pendente de confirmación
|
454
425
|
invite_join_conference_mailer:
|
455
426
|
invite:
|
456
427
|
subject: Invitación para participar nunha conferencia
|
@@ -481,37 +452,18 @@ gl:
|
|
481
452
|
pages:
|
482
453
|
home:
|
483
454
|
highlighted_conferences:
|
484
|
-
|
485
|
-
conferences_button_title: Ligazón á páxina de Conferencias que amosa todas as conferencias
|
486
|
-
photo:
|
487
|
-
image:
|
488
|
-
attributes:
|
489
|
-
alt: Imaxe
|
490
|
-
show:
|
491
|
-
close_modal: Pechar modal
|
492
|
-
photo: Foto
|
493
|
-
photos_list:
|
494
|
-
show:
|
495
|
-
related_photos: Fotos
|
455
|
+
active_spaces: Conferencias activas
|
496
456
|
registration_types:
|
497
457
|
index:
|
498
458
|
choose_an_option: 'Elixe a túa opción de rexistro:'
|
499
|
-
login_as: Estás conectado como %{name} <%{email}>
|
500
459
|
no_registrations: Sen rexistros
|
501
460
|
register: Rexistrarse
|
502
461
|
title: Tipos de rexistro
|
503
|
-
shared:
|
504
|
-
conference_user_login:
|
505
|
-
already_account: Xa tes unha conta en decidir?
|
506
|
-
new_user: Novo usuario?
|
507
|
-
sign_in: Iniciar sesión para rexistrarse na conferencia
|
508
|
-
sign_up: Crea unha conta na que decidimos rexistrarte para a conferencia
|
509
462
|
show:
|
510
463
|
details: Detalles
|
511
464
|
introduction: Introdución
|
512
465
|
objectives: Obxectivos
|
513
466
|
related_assemblies: Asembleas relacionadas
|
514
|
-
related_consultations: Consultas relacionadas
|
515
467
|
related_participatory_processes: Procesos participativos relacionados
|
516
468
|
events:
|
517
469
|
conferences:
|
@@ -547,10 +499,6 @@ gl:
|
|
547
499
|
participatory_spaces:
|
548
500
|
conferences:
|
549
501
|
title: Que son as conferencias?
|
550
|
-
log:
|
551
|
-
value_types:
|
552
|
-
conference_presenter:
|
553
|
-
not_found: 'Non se atopou a conferencia na base de datos (ID: %{id})'
|
554
502
|
media:
|
555
503
|
index:
|
556
504
|
description: Ligazóns sobre esta conferencia
|
@@ -567,9 +515,6 @@ gl:
|
|
567
515
|
decidim:
|
568
516
|
conference_hero:
|
569
517
|
register: Rexistrarse
|
570
|
-
conference_widgets:
|
571
|
-
show:
|
572
|
-
take_part: Tomar parte en
|
573
518
|
conferences:
|
574
519
|
conference:
|
575
520
|
more_info: Máis información
|
@@ -580,11 +525,7 @@ gl:
|
|
580
525
|
conferences:
|
581
526
|
one: "%{count} conferencia"
|
582
527
|
other: "%{count} conferencias"
|
583
|
-
promoted_conference:
|
584
|
-
more_info: Máis información
|
585
|
-
take_part: Tomar parte en
|
586
528
|
conferences_nav:
|
587
|
-
conference_menu_item: Información
|
588
529
|
conference_partners_menu_item: Socios
|
589
530
|
conference_speaker_menu_item: Ponentes
|
590
531
|
media: Medios de comunicación
|
data/config/locales/hu.yml
CHANGED
@@ -6,7 +6,6 @@ hu:
|
|
6
6
|
assemblies_ids: Kapcsolódó gyűlések
|
7
7
|
available_slots: Rendelkezésre álló időpontok
|
8
8
|
banner_image: Banner kép
|
9
|
-
consultations_ids: Kapcsolódó konzultációk
|
10
9
|
copy_categories: Másolási kategóriák
|
11
10
|
copy_components: Másoljon komponenseket
|
12
11
|
copy_features: Másolási funkciók
|
@@ -33,6 +32,7 @@ hu:
|
|
33
32
|
slug: URL slug
|
34
33
|
start_date: Kezdő dátum
|
35
34
|
title: Cím
|
35
|
+
weight: Pozíció sorrend
|
36
36
|
conference_media_link:
|
37
37
|
date: Dátum
|
38
38
|
link: Hivatkozás
|
@@ -62,7 +62,6 @@ hu:
|
|
62
62
|
personal_url: Személyes URL-cím
|
63
63
|
position: Pozíció
|
64
64
|
short_bio: Rövid önéletrajz
|
65
|
-
twitter_handle: X kezelő
|
66
65
|
user_id: Felhasználó
|
67
66
|
conference_user_role:
|
68
67
|
email: Email
|
@@ -73,7 +72,7 @@ hu:
|
|
73
72
|
conference_registration_invite:
|
74
73
|
attributes:
|
75
74
|
email:
|
76
|
-
already_invited: Ezt az
|
75
|
+
already_invited: Ezt az email címet már meghívták.
|
77
76
|
activerecord:
|
78
77
|
models:
|
79
78
|
decidim/conference:
|
@@ -89,7 +88,6 @@ hu:
|
|
89
88
|
admin:
|
90
89
|
actions:
|
91
90
|
confirm: Megerősít
|
92
|
-
new_conference: Új konferencia
|
93
91
|
send_diplomas: Küldési igazolások küldése
|
94
92
|
conference_copies:
|
95
93
|
new:
|
@@ -152,7 +150,6 @@ hu:
|
|
152
150
|
form:
|
153
151
|
title: Általános információ
|
154
152
|
index:
|
155
|
-
not_published: Nem publikált
|
156
153
|
published: Közzétett
|
157
154
|
new:
|
158
155
|
create: Teremt
|
@@ -193,7 +190,6 @@ hu:
|
|
193
190
|
conference_invites: Meghívottak
|
194
191
|
conference_speakers: Előadók
|
195
192
|
diploma: Tanúsítvány a jelenlétről
|
196
|
-
info: Info
|
197
193
|
media_links: Média linkek
|
198
194
|
moderations: moderálások
|
199
195
|
partners: Partnerek
|
@@ -204,7 +200,6 @@ hu:
|
|
204
200
|
conference:
|
205
201
|
fields:
|
206
202
|
created_at: 'Létrehozva:'
|
207
|
-
promoted: Kiemelt
|
208
203
|
published: Közzétett
|
209
204
|
title: Cím
|
210
205
|
conference_speaker:
|
@@ -344,12 +339,11 @@ hu:
|
|
344
339
|
all: Minden
|
345
340
|
rejected: Elutasítva
|
346
341
|
sent: Küldött
|
347
|
-
filter_by: Szűrés vlami alapján
|
348
342
|
invite_attendee: Hívja meg a résztvevőt
|
349
343
|
invites: Meghívottak
|
350
344
|
search: Keresés
|
351
345
|
new:
|
352
|
-
explanation: A
|
346
|
+
explanation: A résztvevő meghívást kap egy konferenciára. Ha az e-mail cím nincs regisztrálva, akkor a szervezethez is meghívást kap.
|
353
347
|
invite: Meghívás
|
354
348
|
new_invite: Felhasználó meghívása
|
355
349
|
conference_registrations:
|
@@ -402,18 +396,11 @@ hu:
|
|
402
396
|
cancel: Megszünteti
|
403
397
|
confirm: megerősít
|
404
398
|
show:
|
405
|
-
free: Ingyenes
|
406
399
|
going: Haladó
|
407
400
|
no_slots_available: Nincs szabad hely
|
408
401
|
registration: Regisztráció
|
409
402
|
conference_program:
|
410
|
-
program_meeting:
|
411
|
-
content: Tartalom
|
412
|
-
location: Helyszín
|
413
|
-
speakers: Előadók
|
414
|
-
streaming: Élő közvetítés
|
415
403
|
show:
|
416
|
-
day: Nap
|
417
404
|
program: Program
|
418
405
|
conference_registration_mailer:
|
419
406
|
confirmation:
|
@@ -428,11 +415,9 @@ hu:
|
|
428
415
|
create:
|
429
416
|
invalid: Probléma merült fel a konferencián.
|
430
417
|
success: A konferencia sikeresen csatlakozott.
|
431
|
-
unauthorized: A konferenciára való regisztráció előtt be kell jelentkeznie.
|
432
418
|
decline_invitation:
|
433
419
|
invalid: Hiba történt a meghívás visszautasításában.
|
434
420
|
success: Elutasította a meghívást sikeresen.
|
435
|
-
unauthorized: A meghívás elutasítása előtt be kell jelentkeznie.
|
436
421
|
destroy:
|
437
422
|
invalid: Probléma merült fel a konferencián.
|
438
423
|
success: A konferencia sikeres volt.
|
@@ -445,19 +430,23 @@ hu:
|
|
445
430
|
conference_speaker_cell:
|
446
431
|
personal_url:
|
447
432
|
personal_website: Személyes weboldal
|
448
|
-
twitter_handle:
|
449
|
-
go_to_twitter: Menjen a Twitterre
|
450
433
|
conference_speakers:
|
451
434
|
index:
|
452
|
-
speakers:
|
435
|
+
speakers:
|
436
|
+
one: Előadó
|
437
|
+
other: Előadók
|
453
438
|
conferences:
|
454
439
|
partners:
|
455
440
|
collaborators: Partnerek
|
456
441
|
main_promotors: Szervezők
|
457
442
|
show:
|
443
|
+
already_have_an_account?: Van már fiókja?
|
444
|
+
are_you_new?: Új résztvevő?
|
458
445
|
login_as: '%{name} <%{email}> -ként jelentkeztél be'
|
459
|
-
make_conference_registration:
|
446
|
+
make_conference_registration: Regisztráció a konferenciára
|
460
447
|
register: Regisztráció
|
448
|
+
sign_in_description: Jelentkezzen be a konferenciára történő regisztrációhoz
|
449
|
+
sign_up_description: Hozzon létre egy fiókot a konferenciára való jelentkezéshez
|
461
450
|
content_blocks:
|
462
451
|
highlighted_conferences:
|
463
452
|
name: Kiemelt konferenciák
|
@@ -466,9 +455,9 @@ hu:
|
|
466
455
|
mailer:
|
467
456
|
conference_registration_mailer:
|
468
457
|
confirmation:
|
469
|
-
subject:
|
458
|
+
subject: Regisztrációja a konferenciára megerősítésre került.
|
470
459
|
pending_validation:
|
471
|
-
subject: A
|
460
|
+
subject: A regisztráció megerősítése a konferenciára függőben van.
|
472
461
|
invite_join_conference_mailer:
|
473
462
|
invite:
|
474
463
|
subject: Meghívás egy konferenciára való belépéshez
|
@@ -499,38 +488,18 @@ hu:
|
|
499
488
|
pages:
|
500
489
|
home:
|
501
490
|
highlighted_conferences:
|
502
|
-
|
503
|
-
conferences_button_title: Link a Konferenciák oldalra, ahol az összes konferencia látható
|
504
|
-
see_all_conferences: Az összes konferencia megtekintése
|
505
|
-
photo:
|
506
|
-
image:
|
507
|
-
attributes:
|
508
|
-
alt: Média ké
|
509
|
-
show:
|
510
|
-
close_modal: Modal bezárása
|
511
|
-
photo: Fénykép
|
512
|
-
photos_list:
|
513
|
-
show:
|
514
|
-
related_photos: Fotók
|
491
|
+
active_spaces: Aktív konferenciák
|
515
492
|
registration_types:
|
516
493
|
index:
|
517
494
|
choose_an_option: 'Válassza ki a regisztrációs lehetőséget:'
|
518
|
-
login_as: '%{name} <%{email}> -ként jelentkeztél be'
|
519
495
|
no_registrations: Nincs regisztráció
|
520
496
|
register: Regisztráció
|
521
497
|
title: Regisztrációs típusok
|
522
|
-
shared:
|
523
|
-
conference_user_login:
|
524
|
-
already_account: Van már fiókod a Decidimben?
|
525
|
-
new_user: Új felhasználó?
|
526
|
-
sign_in: Jelentkezz be a konferenciára való regisztrálásához
|
527
|
-
sign_up: Hozz létre egy fiókot a Decidimben, hogy regisztrálni tudja a konferenciára
|
528
498
|
show:
|
529
499
|
details: Részletek
|
530
500
|
introduction: Bevezetés
|
531
501
|
objectives: célok
|
532
502
|
related_assemblies: Kapcsolódó gyűlések
|
533
|
-
related_consultations: Kapcsolódó konzultációk
|
534
503
|
related_participatory_processes: Kapcsolódó részvételi folyamatok
|
535
504
|
events:
|
536
505
|
conferences:
|
@@ -572,7 +541,7 @@ hu:
|
|
572
541
|
log:
|
573
542
|
value_types:
|
574
543
|
conference_presenter:
|
575
|
-
not_found: 'A konferencia nem található az adatbázisban (ID: %{id})'
|
544
|
+
not_found: 'A konferencia nem található az adatbázisban (ID: %{id}).'
|
576
545
|
media:
|
577
546
|
index:
|
578
547
|
description: Linkek erről a konferenciáról
|
@@ -589,9 +558,6 @@ hu:
|
|
589
558
|
decidim:
|
590
559
|
conference_hero:
|
591
560
|
register: Regisztráció
|
592
|
-
conference_widgets:
|
593
|
-
show:
|
594
|
-
take_part: Részt vesz
|
595
561
|
conferences:
|
596
562
|
conference:
|
597
563
|
more_info: Több információ
|
@@ -602,11 +568,7 @@ hu:
|
|
602
568
|
conferences:
|
603
569
|
one: "%{count} konferencia"
|
604
570
|
other: "%{count} konferencia"
|
605
|
-
promoted_conference:
|
606
|
-
more_info: Több információ
|
607
|
-
take_part: Részt vesz
|
608
571
|
conferences_nav:
|
609
|
-
conference_menu_item: Információ
|
610
572
|
conference_partners_menu_item: Partnerek
|
611
573
|
conference_speaker_menu_item: Hangszórók
|
612
574
|
media: Média
|