decidim-conferences 0.28.6 → 0.29.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/conference_g_cell.rb +2 -2
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +1 -1
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +0 -2
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +0 -1
- data/app/cells/decidim/conferences/media_link/show.erb +1 -1
- data/app/cells/decidim/conferences/media_link_cell.rb +0 -3
- data/app/cells/decidim/conferences/partner/image.erb +1 -1
- data/app/cells/decidim/conferences/partner_cell.rb +1 -1
- data/app/cells/decidim/conferences/registration_type_cell.rb +1 -5
- data/app/commands/decidim/conferences/admin/create_conference.rb +20 -65
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +17 -81
- data/app/commands/decidim/conferences/admin/create_media_link.rb +10 -44
- data/app/commands/decidim/conferences/admin/create_partner.rb +9 -62
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +15 -51
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +6 -38
- data/app/commands/decidim/conferences/admin/publish_conference_speaker.rb +51 -0
- data/app/commands/decidim/conferences/admin/unpublish_conference_speaker.rb +44 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +35 -93
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +17 -74
- data/app/commands/decidim/conferences/admin/update_media_link.rb +8 -44
- data/app/commands/decidim/conferences/admin/update_partner.rb +10 -61
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +12 -47
- data/app/controllers/concerns/decidim/conferences/admin/conferences_invites/filterable.rb +41 -0
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +8 -3
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +33 -1
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +1 -1
- data/app/controllers/decidim/conferences/application_controller.rb +4 -1
- data/app/controllers/decidim/conferences/conference_program_controller.rb +1 -2
- data/app/controllers/decidim/conferences/conference_speakers_controller.rb +1 -4
- data/app/controllers/decidim/conferences/conferences_controller.rb +1 -4
- data/app/controllers/decidim/conferences/media_controller.rb +1 -4
- data/app/controllers/decidim/conferences/registration_types_controller.rb +0 -3
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +0 -5
- data/app/forms/decidim/conferences/admin/conference_form.rb +5 -5
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -1
- data/app/helpers/decidim/conferences/conference_helper.rb +2 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +5 -9
- data/app/models/decidim/conference.rb +2 -2
- data/app/models/decidim/conference_speaker.rb +2 -0
- data/app/permissions/decidim/conferences/permissions.rb +2 -10
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -1
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +5 -5
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +1 -33
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +2 -4
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +11 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +1 -1
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +1 -1
- data/app/views/decidim/conferences/admin/partners/index.html.erb +3 -3
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +7 -11
- data/app/views/decidim/conferences/conference_program/_program_item.html.erb +1 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +1 -0
- data/app/views/decidim/conferences/conferences/_conference_hero.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +5 -3
- data/app/views/decidim/conferences/media/index.html.erb +1 -0
- data/app/views/decidim/conferences/registration_types/index.html.erb +2 -1
- data/app/views/devise/mailer/join_conference.html.erb +1 -1
- data/app/views/devise/mailer/join_conference.text.erb +1 -1
- data/app/views/layouts/decidim/diploma.html.erb +1 -1
- data/config/initializers/wicked_pdf.rb +6 -4
- data/config/locales/ar.yml +21 -6
- data/config/locales/bg.yml +27 -6
- data/config/locales/ca.yml +18 -22
- data/config/locales/cs.yml +18 -23
- data/config/locales/de.yml +19 -23
- data/config/locales/el.yml +21 -6
- data/config/locales/en.yml +25 -29
- data/config/locales/es-MX.yml +18 -22
- data/config/locales/es-PY.yml +21 -25
- data/config/locales/es.yml +14 -18
- data/config/locales/eu.yml +182 -186
- data/config/locales/fi-plain.yml +17 -21
- data/config/locales/fi.yml +23 -27
- data/config/locales/fr-CA.yml +19 -23
- data/config/locales/fr.yml +19 -23
- data/config/locales/ga-IE.yml +0 -6
- data/config/locales/gl.yml +21 -4
- data/config/locales/hu.yml +21 -6
- data/config/locales/id-ID.yml +21 -4
- data/config/locales/it.yml +21 -6
- data/config/locales/ja.yml +17 -21
- data/config/locales/lb.yml +19 -6
- data/config/locales/lt.yml +21 -6
- data/config/locales/lv.yml +21 -6
- data/config/locales/nl.yml +21 -4
- data/config/locales/no.yml +21 -6
- data/config/locales/pl.yml +27 -6
- data/config/locales/pt-BR.yml +21 -51
- data/config/locales/pt.yml +21 -6
- data/config/locales/ro-RO.yml +12 -21
- data/config/locales/sk.yml +21 -6
- data/config/locales/sv.yml +42 -98
- data/config/locales/tr-TR.yml +21 -4
- data/config/locales/zh-CN.yml +21 -4
- data/config/locales/zh-TW.yml +21 -6
- data/db/migrate/20240613095855_add_published_at_to_conference_speakers.rb +7 -0
- data/decidim-conferences.gemspec +3 -2
- data/lib/decidim/api/conference_partner_type.rb +1 -1
- data/lib/decidim/api/conference_speaker_type.rb +1 -1
- data/lib/decidim/api/conference_type.rb +6 -2
- data/lib/decidim/conferences/admin_engine.rb +6 -1
- data/lib/decidim/conferences/engine.rb +1 -0
- data/lib/decidim/conferences/menu.rb +11 -0
- data/lib/decidim/conferences/seeds.rb +4 -22
- data/lib/decidim/conferences/test/factories.rb +5 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +33 -24
- data/app/cells/decidim/conference_activity_cell.rb +0 -10
- data/app/helpers/decidim/conferences/media_attachments_helper.rb +0 -19
- data/app/helpers/decidim/conferences/partners_helper.rb +0 -17
- data/app/uploaders/decidim/cw/conferences/diploma_uploader.rb +0 -14
- data/app/uploaders/decidim/cw/conferences/partner_logo_uploader.rb +0 -15
- data/app/views/layouts/decidim/conference.html.erb +0 -17
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -14
- data/config/locales/ca-IT.yml +0 -603
data/config/locales/fi-plain.yml
CHANGED
@@ -69,8 +69,6 @@ fi-pl:
|
|
69
69
|
email: Sähköposti
|
70
70
|
name: Nimi
|
71
71
|
role: Rooli
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -122,13 +120,19 @@ fi-pl:
|
|
122
120
|
destroy:
|
123
121
|
success: Puhuja poistettiin onnistuneesti konferenssista.
|
124
122
|
edit:
|
125
|
-
title: Päivitä konferenssin
|
123
|
+
title: Päivitä konferenssin puhuja.
|
126
124
|
update: Päivitä
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Konferenssin puhujat
|
129
127
|
new:
|
130
128
|
create: Luo
|
131
|
-
title: Uusi konferenssin puhuja
|
129
|
+
title: Uusi konferenssin puhuja.
|
130
|
+
publish:
|
131
|
+
invalid: Puhujan julkaiseminen epäonnistui.
|
132
|
+
success: Konferenssin puhujan julkaiseminen onnistui.
|
133
|
+
unpublish:
|
134
|
+
invalid: Puhujan julkaisun lopettaminen epäonnistui.
|
135
|
+
success: Konferenssin puhujan julkaisu onnistui.
|
132
136
|
update:
|
133
137
|
error: Konferenssin puhujan päivittämisessä tapahtui virhe.
|
134
138
|
success: Konferenssin puhuja päivitettiin onnistuneesti.
|
@@ -139,13 +143,13 @@ fi-pl:
|
|
139
143
|
destroy:
|
140
144
|
success: Käyttäjä poistettiin onnistuneesti konferenssista.
|
141
145
|
edit:
|
142
|
-
title: Päivitä konferenssin
|
146
|
+
title: Päivitä konferenssin käyttäjä.
|
143
147
|
update: Päivitä
|
144
148
|
index:
|
145
149
|
conference_admins_title: Konferenssin ylläpitäjät
|
146
150
|
new:
|
147
151
|
create: Luo
|
148
|
-
title: Uusi konferenssin
|
152
|
+
title: Uusi konferenssin käyttäjä.
|
149
153
|
update:
|
150
154
|
error: Konferenssin käyttäjän päivittämisessä tapahtui virhe.
|
151
155
|
success: Konferenssin käyttäjä päivitettiin onnistuneesti.
|
@@ -175,20 +179,20 @@ fi-pl:
|
|
175
179
|
media_links:
|
176
180
|
create:
|
177
181
|
error: Luotaessa uutta medialinkkiä tapahtui virhe.
|
178
|
-
success:
|
182
|
+
success: Medialinkki luotu onnistuneesti.
|
179
183
|
destroy:
|
180
|
-
success:
|
184
|
+
success: Medialinkki poistettiin onnistuneesti.
|
181
185
|
edit:
|
182
|
-
title: Päivitä
|
186
|
+
title: Päivitä medialinkki.
|
183
187
|
update: Päivitä
|
184
188
|
index:
|
185
189
|
media_links_title: Medialinkit
|
186
190
|
new:
|
187
191
|
create: Luo
|
188
|
-
title:
|
192
|
+
title: Medialinkki
|
189
193
|
update:
|
190
194
|
error: Medialinkin päivittämisessä esiintyi virhe.
|
191
|
-
success:
|
195
|
+
success: Medialinkki päivitettiin onnistuneesti.
|
192
196
|
menu:
|
193
197
|
conferences: Konferenssit
|
194
198
|
conferences_submenu:
|
@@ -263,7 +267,7 @@ fi-pl:
|
|
263
267
|
destroy:
|
264
268
|
success: Yhteistyökumppani poistettu onnistuneesti tästä konferenssista.
|
265
269
|
edit:
|
266
|
-
title: Päivitä
|
270
|
+
title: Päivitä yhteistyökumppani.
|
267
271
|
update: Päivitä
|
268
272
|
new:
|
269
273
|
create: Luo
|
@@ -285,7 +289,7 @@ fi-pl:
|
|
285
289
|
destroy:
|
286
290
|
success: Ilmoittautumistyyppi poistettiin onnistuneesti tästä konferenssista.
|
287
291
|
edit:
|
288
|
-
title: Päivitä
|
292
|
+
title: Päivitä ilmoittautumistyyppi.
|
289
293
|
update: Päivitä
|
290
294
|
new:
|
291
295
|
create: Luo
|
@@ -350,14 +354,8 @@ fi-pl:
|
|
350
354
|
non_user: Käyttäjää ei ole olemassa
|
351
355
|
select_user: Valitse käyttäjä
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Hyväksytyt
|
355
|
-
all: Kaikki
|
356
|
-
rejected: Hylätyt
|
357
|
-
sent: Lähetetty
|
358
357
|
invite_attendee: Kutsu osallistuja
|
359
358
|
invites: Kutsut
|
360
|
-
search: Hae
|
361
359
|
new:
|
362
360
|
explanation: Käyttäjä kutsutaan mukaan konferenssiin. Jos sähköpostiosoitteella ei ole käyttäjätiliä, käyttäjä kutsutaan myös organisaatioon.
|
363
361
|
invite: Kutsu
|
@@ -476,8 +474,6 @@ fi-pl:
|
|
476
474
|
name: Tärkeimmät konferenssit
|
477
475
|
index:
|
478
476
|
title: Konferenssit
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'Uusi konferenssi:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|
data/config/locales/fi.yml
CHANGED
@@ -69,8 +69,6 @@ fi:
|
|
69
69
|
email: Sähköposti
|
70
70
|
name: Nimi
|
71
71
|
role: Rooli
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -109,8 +107,8 @@ fi:
|
|
109
107
|
error: Konferenssin julkaiseminen epäonnistui.
|
110
108
|
success: Konferenssin julkaisu onnistui.
|
111
109
|
destroy:
|
112
|
-
error: Konferenssin julkaisun
|
113
|
-
success: Konferenssin julkaisun
|
110
|
+
error: Konferenssin julkaisun lopettaminen epäonnistui.
|
111
|
+
success: Konferenssin julkaisun lopettaminen onnistui.
|
114
112
|
conference_registration:
|
115
113
|
confirm:
|
116
114
|
error: Konferenssin ilmoittautumisen vahvistaminen epäonnistui.
|
@@ -120,15 +118,21 @@ fi:
|
|
120
118
|
error: Puhujan lisääminen tähän konferenssiin epäonnistui.
|
121
119
|
success: Puhujan lisääminen konferenssiin onnistui.
|
122
120
|
destroy:
|
123
|
-
success: Puhujan
|
121
|
+
success: Puhujan poistaminen konferenssista onnistui.
|
124
122
|
edit:
|
125
|
-
title: Päivitä konferenssin
|
123
|
+
title: Päivitä konferenssin puhuja.
|
126
124
|
update: Päivitä
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Konferenssin puhujat
|
129
127
|
new:
|
130
128
|
create: Luo
|
131
|
-
title: Uusi konferenssin puhuja
|
129
|
+
title: Uusi konferenssin puhuja.
|
130
|
+
publish:
|
131
|
+
invalid: Puhujan julkaiseminen epäonnistui.
|
132
|
+
success: Konferenssin puhujan julkaiseminen onnistui.
|
133
|
+
unpublish:
|
134
|
+
invalid: Puhujan julkaisun lopettaminen epäonnistui.
|
135
|
+
success: Konferenssin puhujan julkaisu onnistui.
|
132
136
|
update:
|
133
137
|
error: Konferenssin puhujan päivittäminen epäonnistui.
|
134
138
|
success: Konferenssin puhujan päivitys onnistui.
|
@@ -137,15 +141,15 @@ fi:
|
|
137
141
|
error: Hallintakäyttäjän lisääminen tähän konferenssiin epäonnistui.
|
138
142
|
success: Hallintakäyttäjän lisääminen konferenssiin onnistui.
|
139
143
|
destroy:
|
140
|
-
success: Hallintakäyttäjä
|
144
|
+
success: Hallintakäyttäjä poistaminen konferenssista onnistui.
|
141
145
|
edit:
|
142
|
-
title: Päivitä konferenssin
|
146
|
+
title: Päivitä konferenssin hallintakäyttäjä.
|
143
147
|
update: Päivitä
|
144
148
|
index:
|
145
149
|
conference_admins_title: Konferenssin ylläpitäjät
|
146
150
|
new:
|
147
151
|
create: Luo
|
148
|
-
title: Uusi konferenssin
|
152
|
+
title: Uusi konferenssin hallintakäyttäjä.
|
149
153
|
update:
|
150
154
|
error: Konferenssin hallintakäyttäjän päivittäminen epäonnistui.
|
151
155
|
success: Konferenssin hallintakäyttäjän päivittäminen onnistui.
|
@@ -179,13 +183,13 @@ fi:
|
|
179
183
|
destroy:
|
180
184
|
success: Medialinkin poisto onnistui.
|
181
185
|
edit:
|
182
|
-
title: Päivitä
|
186
|
+
title: Päivitä medialinkki.
|
183
187
|
update: Päivitä
|
184
188
|
index:
|
185
189
|
media_links_title: Medialinkit
|
186
190
|
new:
|
187
191
|
create: Luo
|
188
|
-
title:
|
192
|
+
title: Medialinkki
|
189
193
|
update:
|
190
194
|
error: Medialinkin päivitys epäonnistui.
|
191
195
|
success: Medialinkin päivitys onnistui.
|
@@ -263,7 +267,7 @@ fi:
|
|
263
267
|
destroy:
|
264
268
|
success: Yhteistyökumppanin poisto tästä konferenssista onnistui.
|
265
269
|
edit:
|
266
|
-
title: Päivitä
|
270
|
+
title: Päivitä yhteistyökumppani.
|
267
271
|
update: Päivitä
|
268
272
|
new:
|
269
273
|
create: Luo
|
@@ -276,16 +280,16 @@ fi:
|
|
276
280
|
error: Ilmoittautumistyypin julkaisu epäonnistui.
|
277
281
|
success: Ilmoittautumistyypin julkaisu onnistui.
|
278
282
|
destroy:
|
279
|
-
error: Ilmoittautumistyypin julkaisun
|
280
|
-
success: Ilmoittamistyypin julkaisun
|
283
|
+
error: Ilmoittautumistyypin julkaisun lopettaminen epäonnistui.
|
284
|
+
success: Ilmoittamistyypin julkaisun lopettaminen onnistui.
|
281
285
|
registration_types:
|
282
286
|
create:
|
283
287
|
error: Ilmoittautumistyyppin lisääminen tälle konferenssille epäonnistui.
|
284
288
|
success: Ilmoittautumistyypin lisääminen onnistui.
|
285
289
|
destroy:
|
286
|
-
success: Ilmoittautumistyypin
|
290
|
+
success: Ilmoittautumistyypin poistaminen onnistui.
|
287
291
|
edit:
|
288
|
-
title: Päivitä
|
292
|
+
title: Päivitä ilmoittautumistyyppi.
|
289
293
|
update: Päivitä
|
290
294
|
new:
|
291
295
|
create: Luo
|
@@ -300,7 +304,7 @@ fi:
|
|
300
304
|
create: "%{user_name} loi konferenssin %{resource_name}"
|
301
305
|
publish: "%{user_name} julkaisi konferenssin %{resource_name}"
|
302
306
|
send_conference_diplomas: "%{user_name} lähetti konferenssin %{resource_name} läsnäolotodistukset osallistujille"
|
303
|
-
unpublish: "%{user_name}
|
307
|
+
unpublish: "%{user_name} lopetti konferenssin %{resource_name} julkaisun"
|
304
308
|
update: "%{user_name} päivitti konferenssia %{resource_name}"
|
305
309
|
update_diploma: "%{user_name} päivitti läsnäolotodistusten asetuksia konferenssille %{resource_name}"
|
306
310
|
conference_speaker:
|
@@ -322,7 +326,7 @@ fi:
|
|
322
326
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
323
327
|
delete: "%{user_name} poisti ilmoittautumistyypin %{resource_name} konferenssista %{space_name}"
|
324
328
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
325
|
-
unpublish: "%{user_name}
|
329
|
+
unpublish: "%{user_name} lopetti ilmoittautumistyypin %{resource_name} julkaisun konferenssissa %{space_name}"
|
326
330
|
update: "%{user_name} päivitti ilmoittautumistyyppiä %{resource_name} konferenssissa %{space_name}"
|
327
331
|
media_link:
|
328
332
|
create: "%{user_name} loi medialinkin %{resource_name} konferenssissa %{space_name}"
|
@@ -350,14 +354,8 @@ fi:
|
|
350
354
|
non_user: Käyttäjää ei ole olemassa
|
351
355
|
select_user: Valitse käyttäjä
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Hyväksytyt
|
355
|
-
all: Kaikki
|
356
|
-
rejected: Hylätyt
|
357
|
-
sent: Lähetetty
|
358
357
|
invite_attendee: Kutsu käyttäjä
|
359
358
|
invites: Kutsut
|
360
|
-
search: Hae
|
361
359
|
new:
|
362
360
|
explanation: Käyttäjä kutsutaan mukaan konferenssiin. Jos sähköpostiosoitteella ei ole käyttäjätiliä, käyttäjä kutsutaan myös organisaatioon.
|
363
361
|
invite: Kutsu
|
@@ -476,8 +474,6 @@ fi:
|
|
476
474
|
name: Tärkeimmät konferenssit
|
477
475
|
index:
|
478
476
|
title: Konferenssit
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'Uusi konferenssi:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -69,8 +69,6 @@ fr-CA:
|
|
69
69
|
email: Email
|
70
70
|
name: Nom
|
71
71
|
role: Rôle
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -122,13 +120,19 @@ fr-CA:
|
|
122
120
|
destroy:
|
123
121
|
success: Conférencier supprimé avec succès pour cette conférence.
|
124
122
|
edit:
|
125
|
-
title: Mettre à jour le conférencier
|
123
|
+
title: Mettre à jour le conférencier.
|
126
124
|
update: Mettre à jour
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Conférenciers
|
129
127
|
new:
|
130
128
|
create: Créer
|
131
129
|
title: Nouveau conférencier
|
130
|
+
publish:
|
131
|
+
invalid: Il y a eu un problème lors de la publication de cet intervenant.
|
132
|
+
success: L'intervenant de la conférence a été publié avec succès.
|
133
|
+
unpublish:
|
134
|
+
invalid: Il y a eu un problème lors de la dépublication de cet intervenant.
|
135
|
+
success: L'intervenant de la conférence a été dépublié avec succès.
|
132
136
|
update:
|
133
137
|
error: Une erreur s'est produite lors de la mise à jour du conférencier pour cette conférence.
|
134
138
|
success: Conférencier mis à jour avec succès pour cette conférence.
|
@@ -139,13 +143,13 @@ fr-CA:
|
|
139
143
|
destroy:
|
140
144
|
success: Administrateur supprimé de cette conférence.
|
141
145
|
edit:
|
142
|
-
title: Mettre à jour l'administrateur de la conférence
|
146
|
+
title: Mettre à jour l'administrateur de la conférence.
|
143
147
|
update: Mettre à jour
|
144
148
|
index:
|
145
149
|
conference_admins_title: Administrateurs de conférence
|
146
150
|
new:
|
147
151
|
create: Créer
|
148
|
-
title: Nouvel administrateur de conférence
|
152
|
+
title: Nouvel administrateur de conférence.
|
149
153
|
update:
|
150
154
|
error: Il y avait une erreur mise à jour d'un administrateur pour cette conférence.
|
151
155
|
success: Administrateur mis à jour avec succès pour cette conférence.
|
@@ -179,13 +183,13 @@ fr-CA:
|
|
179
183
|
destroy:
|
180
184
|
success: Lien média supprimé avec succès.
|
181
185
|
edit:
|
182
|
-
title: Mettre à jour le lien média
|
186
|
+
title: Mettre à jour le lien média.
|
183
187
|
update: Mettre à jour
|
184
188
|
index:
|
185
|
-
media_links_title: Liens
|
189
|
+
media_links_title: Liens médias
|
186
190
|
new:
|
187
191
|
create: Créer
|
188
|
-
title:
|
192
|
+
title: Lien média
|
189
193
|
update:
|
190
194
|
error: Une erreur s'est produite lors de la mise à jour de ce lien multimédia.
|
191
195
|
success: Lien média mis à jour avec succès.
|
@@ -200,15 +204,15 @@ fr-CA:
|
|
200
204
|
conference_admins: Administrateurs de conférence
|
201
205
|
conference_invites: Invitations
|
202
206
|
conference_speakers: Conférenciers
|
203
|
-
diploma:
|
207
|
+
diploma: Certificat de participation
|
204
208
|
info: À propos de cette conférence
|
205
|
-
media_links: Liens
|
209
|
+
media_links: Liens médias
|
206
210
|
moderations: Modération
|
207
211
|
partners: Partenaires
|
208
212
|
registration_types: Types d'inscription
|
209
213
|
registrations: Inscriptions
|
210
214
|
see_conference: Voir la conférence
|
211
|
-
user_registrations:
|
215
|
+
user_registrations: Utilisateurs inscrits
|
212
216
|
models:
|
213
217
|
conference:
|
214
218
|
fields:
|
@@ -263,7 +267,7 @@ fr-CA:
|
|
263
267
|
destroy:
|
264
268
|
success: Le partenaire a été supprimé avec succès de cette conférence.
|
265
269
|
edit:
|
266
|
-
title: Mettre à jour le partenaire
|
270
|
+
title: Mettre à jour le partenaire.
|
267
271
|
update: Mettre à jour
|
268
272
|
new:
|
269
273
|
create: Créer
|
@@ -285,7 +289,7 @@ fr-CA:
|
|
285
289
|
destroy:
|
286
290
|
success: Le type d'inscription a bien été supprimé de cette conférence.
|
287
291
|
edit:
|
288
|
-
title: Mettre à jour le type d'inscription
|
292
|
+
title: Mettre à jour le type d'inscription.
|
289
293
|
update: Mettre à jour
|
290
294
|
new:
|
291
295
|
create: Créer
|
@@ -350,14 +354,8 @@ fr-CA:
|
|
350
354
|
non_user: Utilisateur non existant
|
351
355
|
select_user: Sélectionnez l'utilisateur
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Accepté
|
355
|
-
all: Tout
|
356
|
-
rejected: Rejeté
|
357
|
-
sent: Envoyé
|
358
357
|
invite_attendee: Inviter un participant
|
359
358
|
invites: Invite
|
360
|
-
search: Chercher
|
361
359
|
new:
|
362
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.
|
363
361
|
invite: Inviter
|
@@ -386,7 +384,7 @@ fr-CA:
|
|
386
384
|
diplomas:
|
387
385
|
edit:
|
388
386
|
save: sauvegarder
|
389
|
-
title:
|
387
|
+
title: Certificat de participation
|
390
388
|
invite_join_conference_mailer:
|
391
389
|
invite:
|
392
390
|
decline: Refuser l'invitation '%{conference_title}'
|
@@ -406,7 +404,7 @@ fr-CA:
|
|
406
404
|
diploma_html: Vous trouverez le certificat de participation à la conférence <a href="%{url}">%{title}</a> dans les pièces jointes.
|
407
405
|
diploma_user:
|
408
406
|
attendance_verified_by: Présence vérifiée par
|
409
|
-
certificate_of_attendance:
|
407
|
+
certificate_of_attendance: Certificat de participation
|
410
408
|
certificate_of_attendance_description: Ceci certifie que <strong>%{user}</strong> a assisté et participé aux <strong>%{title}</strong> tenus au <strong>%{location}</strong> sur <strong>%{start} - %{end}</strong>
|
411
409
|
send_diploma:
|
412
410
|
error: Il y a eu un problème lors de l'envoi des certificats de participation à la conférence.
|
@@ -476,8 +474,6 @@ fr-CA:
|
|
476
474
|
name: Conférences mises en avant
|
477
475
|
index:
|
478
476
|
title: Conférences
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'Nouvelle conférence:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|
data/config/locales/fr.yml
CHANGED
@@ -69,8 +69,6 @@ fr:
|
|
69
69
|
email: Email
|
70
70
|
name: Nom
|
71
71
|
role: Rôle
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -122,13 +120,19 @@ fr:
|
|
122
120
|
destroy:
|
123
121
|
success: Conférencier supprimé avec succès pour cette conférence.
|
124
122
|
edit:
|
125
|
-
title: Mettre à jour le conférencier
|
123
|
+
title: Mettre à jour le conférencier.
|
126
124
|
update: Mettre à jour
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Conférenciers
|
129
127
|
new:
|
130
128
|
create: Créer
|
131
129
|
title: Nouveau conférencier
|
130
|
+
publish:
|
131
|
+
invalid: Il y a eu un problème lors de la publication de cet intervenant.
|
132
|
+
success: L'intervenant de la conférence a été publié avec succès.
|
133
|
+
unpublish:
|
134
|
+
invalid: Il y a eu un problème lors de la dépublication de cet intervenant.
|
135
|
+
success: L'intervenant de la conférence a été dépublié avec succès.
|
132
136
|
update:
|
133
137
|
error: Une erreur s'est produite lors de la mise à jour du conférencier pour cette conférence.
|
134
138
|
success: Conférencier mis à jour avec succès pour cette conférence.
|
@@ -139,13 +143,13 @@ fr:
|
|
139
143
|
destroy:
|
140
144
|
success: Administrateur supprimé de cette conférence.
|
141
145
|
edit:
|
142
|
-
title: Mettre à jour l'administrateur de la conférence
|
146
|
+
title: Mettre à jour l'administrateur de la conférence.
|
143
147
|
update: Mettre à jour
|
144
148
|
index:
|
145
149
|
conference_admins_title: Administrateurs de conférence
|
146
150
|
new:
|
147
151
|
create: Créer
|
148
|
-
title: Nouvel administrateur de conférence
|
152
|
+
title: Nouvel administrateur de conférence.
|
149
153
|
update:
|
150
154
|
error: Il y avait une erreur mise à jour d'un administrateur pour cette conférence.
|
151
155
|
success: Administrateur mis à jour avec succès pour cette conférence.
|
@@ -179,13 +183,13 @@ fr:
|
|
179
183
|
destroy:
|
180
184
|
success: Lien média supprimé avec succès.
|
181
185
|
edit:
|
182
|
-
title: Mettre à jour le lien média
|
186
|
+
title: Mettre à jour le lien média.
|
183
187
|
update: Mettre à jour
|
184
188
|
index:
|
185
|
-
media_links_title: Liens
|
189
|
+
media_links_title: Liens médias
|
186
190
|
new:
|
187
191
|
create: Créer
|
188
|
-
title:
|
192
|
+
title: Lien média
|
189
193
|
update:
|
190
194
|
error: Une erreur s'est produite lors de la mise à jour de ce lien multimédia.
|
191
195
|
success: Lien média mis à jour avec succès.
|
@@ -200,15 +204,15 @@ fr:
|
|
200
204
|
conference_admins: Administrateurs de conférence
|
201
205
|
conference_invites: Invitations
|
202
206
|
conference_speakers: Conférenciers
|
203
|
-
diploma:
|
207
|
+
diploma: Certificat de participation
|
204
208
|
info: À propos de cette conférence
|
205
|
-
media_links: Liens
|
209
|
+
media_links: Liens médias
|
206
210
|
moderations: Modération
|
207
211
|
partners: Partenaires
|
208
212
|
registration_types: Types d'inscription
|
209
213
|
registrations: Inscriptions
|
210
214
|
see_conference: Voir la conférence
|
211
|
-
user_registrations:
|
215
|
+
user_registrations: Utilisateurs inscrits
|
212
216
|
models:
|
213
217
|
conference:
|
214
218
|
fields:
|
@@ -263,7 +267,7 @@ fr:
|
|
263
267
|
destroy:
|
264
268
|
success: Le partenaire a été supprimé avec succès de cette conférence.
|
265
269
|
edit:
|
266
|
-
title: Mettre à jour le partenaire
|
270
|
+
title: Mettre à jour le partenaire.
|
267
271
|
update: Mettre à jour
|
268
272
|
new:
|
269
273
|
create: Créer
|
@@ -285,7 +289,7 @@ fr:
|
|
285
289
|
destroy:
|
286
290
|
success: Le type d'inscription a bien été supprimé de cette conférence.
|
287
291
|
edit:
|
288
|
-
title: Mettre à jour le type d'inscription
|
292
|
+
title: Mettre à jour le type d'inscription.
|
289
293
|
update: Mettre à jour
|
290
294
|
new:
|
291
295
|
create: Créer
|
@@ -350,14 +354,8 @@ fr:
|
|
350
354
|
non_user: Utilisateur non existant
|
351
355
|
select_user: Sélectionnez l'utilisateur
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Accepté
|
355
|
-
all: Tout
|
356
|
-
rejected: Rejeté
|
357
|
-
sent: Envoyé
|
358
357
|
invite_attendee: Inviter un participant
|
359
358
|
invites: Invite
|
360
|
-
search: Chercher
|
361
359
|
new:
|
362
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.
|
363
361
|
invite: Inviter
|
@@ -386,7 +384,7 @@ fr:
|
|
386
384
|
diplomas:
|
387
385
|
edit:
|
388
386
|
save: sauvegarder
|
389
|
-
title:
|
387
|
+
title: Certificat de participation
|
390
388
|
invite_join_conference_mailer:
|
391
389
|
invite:
|
392
390
|
decline: Refuser l'invitation '%{conference_title}'
|
@@ -406,7 +404,7 @@ fr:
|
|
406
404
|
diploma_html: Vous trouverez le certificat de participation à la conférence <a href="%{url}">%{title}</a> dans les pièces jointes.
|
407
405
|
diploma_user:
|
408
406
|
attendance_verified_by: Présence vérifiée par
|
409
|
-
certificate_of_attendance:
|
407
|
+
certificate_of_attendance: Certificat de participation
|
410
408
|
certificate_of_attendance_description: Ceci certifie que <strong>%{user}</strong> a assisté et participé aux <strong>%{title}</strong> tenus au <strong>%{location}</strong> sur <strong>%{start} - %{end}</strong>
|
411
409
|
send_diploma:
|
412
410
|
error: Il y a eu un problème lors de l'envoi des certificats de participation à la conférence.
|
@@ -476,8 +474,6 @@ fr:
|
|
476
474
|
name: Conférences mises en avant
|
477
475
|
index:
|
478
476
|
title: Conférences
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'Nouvelle conférence:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|
data/config/locales/ga-IE.yml
CHANGED
@@ -122,13 +122,7 @@ ga:
|
|
122
122
|
admin:
|
123
123
|
conference_invites:
|
124
124
|
index:
|
125
|
-
filter:
|
126
|
-
accepted: Glactha
|
127
|
-
all: Uile
|
128
|
-
rejected: Diúltaithe
|
129
|
-
sent: Seolta
|
130
125
|
invites: Cuirí
|
131
|
-
search: Cuardaigh
|
132
126
|
new:
|
133
127
|
invite: Tabhair Cuireadh
|
134
128
|
conference_speakers:
|
data/config/locales/gl.yml
CHANGED
@@ -100,11 +100,13 @@ gl:
|
|
100
100
|
destroy:
|
101
101
|
success: Orador eliminouse con éxito para esta conferencia.
|
102
102
|
edit:
|
103
|
+
title: Actualice o altofalante da conferencia.
|
103
104
|
update: Actualización
|
104
105
|
index:
|
105
106
|
conference_speakers_title: Conferenciantes de conferencias
|
106
107
|
new:
|
107
108
|
create: Crear
|
109
|
+
title: Novas conferencias.
|
108
110
|
update:
|
109
111
|
error: Houbo un erro ao actualizar o altofalante para esta conferencia.
|
110
112
|
success: O presidente actualizouse con éxito para esta conferencia.
|
@@ -115,9 +117,11 @@ gl:
|
|
115
117
|
destroy:
|
116
118
|
success: O usuario eliminouse con éxito desta conferencia.
|
117
119
|
edit:
|
120
|
+
title: Actualiza o usuario da conferencia.
|
118
121
|
update: Actualización
|
119
122
|
new:
|
120
123
|
create: Crear
|
124
|
+
title: Novo usuario da conferencia.
|
121
125
|
update:
|
122
126
|
error: Houbo un erro actualizado por un usuario para esta conferencia.
|
123
127
|
success: Usuario actualizado con éxito para esta conferencia.
|
@@ -146,12 +150,20 @@ gl:
|
|
146
150
|
media_links:
|
147
151
|
create:
|
148
152
|
error: Produciuse un erro ao crear unha nova ligazón multimedia.
|
153
|
+
success: Media Link creouse con éxito.
|
154
|
+
destroy:
|
155
|
+
success: Ligazón de medios eliminouse con éxito.
|
149
156
|
edit:
|
157
|
+
title: Actualiza a ligazón de medios.
|
150
158
|
update: Actualización
|
159
|
+
index:
|
160
|
+
media_links_title: Ligazóns multimedia
|
151
161
|
new:
|
152
162
|
create: Crear
|
163
|
+
title: Ligazón multimedia
|
153
164
|
update:
|
154
165
|
error: Produciuse un erro ao actualizar esta ligazón multimedia.
|
166
|
+
success: Media Link actualizouse con éxito.
|
155
167
|
menu:
|
156
168
|
conferences: Conferencias
|
157
169
|
conferences_submenu:
|
@@ -163,9 +175,13 @@ gl:
|
|
163
175
|
conference_admins: Administradores de conferencias
|
164
176
|
conference_invites: Invitacións
|
165
177
|
conference_speakers: Ponentes
|
178
|
+
diploma: Certificado de asistencia
|
179
|
+
media_links: Ligazóns multimedia
|
166
180
|
moderations: Moderacións
|
167
181
|
partners: Socios
|
182
|
+
registration_types: Tipos de Rexistro
|
168
183
|
registrations: Rexistros
|
184
|
+
user_registrations: Rexistros de usuarios
|
169
185
|
models:
|
170
186
|
conference:
|
171
187
|
fields:
|
@@ -194,6 +210,7 @@ gl:
|
|
194
210
|
date: Data
|
195
211
|
link: Ligazón
|
196
212
|
title: Título
|
213
|
+
name: Ligazón multimedia
|
197
214
|
partner:
|
198
215
|
fields:
|
199
216
|
link: Ligazón
|
@@ -219,6 +236,7 @@ gl:
|
|
219
236
|
destroy:
|
220
237
|
success: O socio eliminouse con éxito desta conferencia.
|
221
238
|
edit:
|
239
|
+
title: Actualizar socio.
|
222
240
|
update: Actualización
|
223
241
|
new:
|
224
242
|
create: Crear
|
@@ -240,6 +258,7 @@ gl:
|
|
240
258
|
destroy:
|
241
259
|
success: O tipo de rexistro eliminouse con éxito desta conferencia.
|
242
260
|
edit:
|
261
|
+
title: Actualizar o tipo de rexistro.
|
243
262
|
update: Actualización
|
244
263
|
new:
|
245
264
|
create: Crear
|
@@ -296,12 +315,8 @@ gl:
|
|
296
315
|
non_user: Usuario non existente
|
297
316
|
select_user: Seleccionar usuario
|
298
317
|
index:
|
299
|
-
filter:
|
300
|
-
all: Todo
|
301
|
-
sent: Enviado
|
302
318
|
invite_attendee: Invitar asistente
|
303
319
|
invites: Invitacións
|
304
|
-
search: Busca
|
305
320
|
new:
|
306
321
|
invite: Invitar
|
307
322
|
new_invite: Invitar ao usuario
|
@@ -325,6 +340,7 @@ gl:
|
|
325
340
|
diplomas:
|
326
341
|
edit:
|
327
342
|
save: Gardar
|
343
|
+
title: Certificado de asistencia
|
328
344
|
invite_join_conference_mailer:
|
329
345
|
invite:
|
330
346
|
decline: Declina a invitación '%{conference_title}'
|
@@ -343,6 +359,7 @@ gl:
|
|
343
359
|
diploma_html: Atopará o certificado de asistencia á conferencia <a href="%{url}">%{title}</a> nos anexos.
|
344
360
|
diploma_user:
|
345
361
|
attendance_verified_by: Asistencia verificada por
|
362
|
+
certificate_of_attendance: Certificado de asistencia
|
346
363
|
certificate_of_attendance_description: Isto acredita que <strong>%{user}</strong> asistiu e participou no <strong>%{title}</strong> realizado no <strong>%{location}</strong> do <strong>%{start} - %{end}</strong>
|
347
364
|
send_diploma:
|
348
365
|
error: Produciuse un problema ao enviar os certificados de asistencia da conferencia.
|