decidim-conferences 0.28.5 → 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 -2
- 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 -4
- data/config/locales/bg.yml +27 -6
- data/config/locales/ca.yml +18 -20
- data/config/locales/cs.yml +18 -21
- data/config/locales/de.yml +19 -21
- data/config/locales/el.yml +21 -6
- data/config/locales/en.yml +25 -27
- data/config/locales/es-MX.yml +18 -20
- data/config/locales/es-PY.yml +21 -23
- data/config/locales/es.yml +14 -16
- data/config/locales/eu.yml +169 -171
- data/config/locales/fi-plain.yml +17 -19
- data/config/locales/fi.yml +23 -25
- data/config/locales/fr-CA.yml +19 -21
- data/config/locales/fr.yml +19 -21
- 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 -4
- data/config/locales/ja.yml +17 -17
- 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 -19
- data/config/locales/sk.yml +21 -6
- data/config/locales/sv.yml +52 -37
- 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 -23
- 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/fi-plain.yml
CHANGED
@@ -120,13 +120,19 @@ fi-pl:
|
|
120
120
|
destroy:
|
121
121
|
success: Puhuja poistettiin onnistuneesti konferenssista.
|
122
122
|
edit:
|
123
|
-
title: Päivitä konferenssin
|
123
|
+
title: Päivitä konferenssin puhuja.
|
124
124
|
update: Päivitä
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Konferenssin puhujat
|
127
127
|
new:
|
128
128
|
create: Luo
|
129
|
-
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.
|
130
136
|
update:
|
131
137
|
error: Konferenssin puhujan päivittämisessä tapahtui virhe.
|
132
138
|
success: Konferenssin puhuja päivitettiin onnistuneesti.
|
@@ -137,13 +143,13 @@ fi-pl:
|
|
137
143
|
destroy:
|
138
144
|
success: Käyttäjä poistettiin onnistuneesti konferenssista.
|
139
145
|
edit:
|
140
|
-
title: Päivitä konferenssin
|
146
|
+
title: Päivitä konferenssin käyttäjä.
|
141
147
|
update: Päivitä
|
142
148
|
index:
|
143
149
|
conference_admins_title: Konferenssin ylläpitäjät
|
144
150
|
new:
|
145
151
|
create: Luo
|
146
|
-
title: Uusi konferenssin
|
152
|
+
title: Uusi konferenssin käyttäjä.
|
147
153
|
update:
|
148
154
|
error: Konferenssin käyttäjän päivittämisessä tapahtui virhe.
|
149
155
|
success: Konferenssin käyttäjä päivitettiin onnistuneesti.
|
@@ -173,20 +179,20 @@ fi-pl:
|
|
173
179
|
media_links:
|
174
180
|
create:
|
175
181
|
error: Luotaessa uutta medialinkkiä tapahtui virhe.
|
176
|
-
success:
|
182
|
+
success: Medialinkki luotu onnistuneesti.
|
177
183
|
destroy:
|
178
|
-
success:
|
184
|
+
success: Medialinkki poistettiin onnistuneesti.
|
179
185
|
edit:
|
180
|
-
title: Päivitä
|
186
|
+
title: Päivitä medialinkki.
|
181
187
|
update: Päivitä
|
182
188
|
index:
|
183
189
|
media_links_title: Medialinkit
|
184
190
|
new:
|
185
191
|
create: Luo
|
186
|
-
title:
|
192
|
+
title: Medialinkki
|
187
193
|
update:
|
188
194
|
error: Medialinkin päivittämisessä esiintyi virhe.
|
189
|
-
success:
|
195
|
+
success: Medialinkki päivitettiin onnistuneesti.
|
190
196
|
menu:
|
191
197
|
conferences: Konferenssit
|
192
198
|
conferences_submenu:
|
@@ -261,7 +267,7 @@ fi-pl:
|
|
261
267
|
destroy:
|
262
268
|
success: Yhteistyökumppani poistettu onnistuneesti tästä konferenssista.
|
263
269
|
edit:
|
264
|
-
title: Päivitä
|
270
|
+
title: Päivitä yhteistyökumppani.
|
265
271
|
update: Päivitä
|
266
272
|
new:
|
267
273
|
create: Luo
|
@@ -283,7 +289,7 @@ fi-pl:
|
|
283
289
|
destroy:
|
284
290
|
success: Ilmoittautumistyyppi poistettiin onnistuneesti tästä konferenssista.
|
285
291
|
edit:
|
286
|
-
title: Päivitä
|
292
|
+
title: Päivitä ilmoittautumistyyppi.
|
287
293
|
update: Päivitä
|
288
294
|
new:
|
289
295
|
create: Luo
|
@@ -348,14 +354,8 @@ fi-pl:
|
|
348
354
|
non_user: Käyttäjää ei ole olemassa
|
349
355
|
select_user: Valitse käyttäjä
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Hyväksytyt
|
353
|
-
all: Kaikki
|
354
|
-
rejected: Hylätyt
|
355
|
-
sent: Lähetetty
|
356
357
|
invite_attendee: Kutsu osallistuja
|
357
358
|
invites: Kutsut
|
358
|
-
search: Hae
|
359
359
|
new:
|
360
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.
|
361
361
|
invite: Kutsu
|
@@ -474,8 +474,6 @@ fi-pl:
|
|
474
474
|
name: Tärkeimmät konferenssit
|
475
475
|
index:
|
476
476
|
title: Konferenssit
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'Uusi konferenssi:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
479
|
confirmation:
|
data/config/locales/fi.yml
CHANGED
@@ -107,8 +107,8 @@ fi:
|
|
107
107
|
error: Konferenssin julkaiseminen epäonnistui.
|
108
108
|
success: Konferenssin julkaisu onnistui.
|
109
109
|
destroy:
|
110
|
-
error: Konferenssin julkaisun
|
111
|
-
success: Konferenssin julkaisun
|
110
|
+
error: Konferenssin julkaisun lopettaminen epäonnistui.
|
111
|
+
success: Konferenssin julkaisun lopettaminen onnistui.
|
112
112
|
conference_registration:
|
113
113
|
confirm:
|
114
114
|
error: Konferenssin ilmoittautumisen vahvistaminen epäonnistui.
|
@@ -118,15 +118,21 @@ fi:
|
|
118
118
|
error: Puhujan lisääminen tähän konferenssiin epäonnistui.
|
119
119
|
success: Puhujan lisääminen konferenssiin onnistui.
|
120
120
|
destroy:
|
121
|
-
success: Puhujan
|
121
|
+
success: Puhujan poistaminen konferenssista onnistui.
|
122
122
|
edit:
|
123
|
-
title: Päivitä konferenssin
|
123
|
+
title: Päivitä konferenssin puhuja.
|
124
124
|
update: Päivitä
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Konferenssin puhujat
|
127
127
|
new:
|
128
128
|
create: Luo
|
129
|
-
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.
|
130
136
|
update:
|
131
137
|
error: Konferenssin puhujan päivittäminen epäonnistui.
|
132
138
|
success: Konferenssin puhujan päivitys onnistui.
|
@@ -135,15 +141,15 @@ fi:
|
|
135
141
|
error: Hallintakäyttäjän lisääminen tähän konferenssiin epäonnistui.
|
136
142
|
success: Hallintakäyttäjän lisääminen konferenssiin onnistui.
|
137
143
|
destroy:
|
138
|
-
success: Hallintakäyttäjä
|
144
|
+
success: Hallintakäyttäjä poistaminen konferenssista onnistui.
|
139
145
|
edit:
|
140
|
-
title: Päivitä konferenssin
|
146
|
+
title: Päivitä konferenssin hallintakäyttäjä.
|
141
147
|
update: Päivitä
|
142
148
|
index:
|
143
149
|
conference_admins_title: Konferenssin ylläpitäjät
|
144
150
|
new:
|
145
151
|
create: Luo
|
146
|
-
title: Uusi konferenssin
|
152
|
+
title: Uusi konferenssin hallintakäyttäjä.
|
147
153
|
update:
|
148
154
|
error: Konferenssin hallintakäyttäjän päivittäminen epäonnistui.
|
149
155
|
success: Konferenssin hallintakäyttäjän päivittäminen onnistui.
|
@@ -177,13 +183,13 @@ fi:
|
|
177
183
|
destroy:
|
178
184
|
success: Medialinkin poisto onnistui.
|
179
185
|
edit:
|
180
|
-
title: Päivitä
|
186
|
+
title: Päivitä medialinkki.
|
181
187
|
update: Päivitä
|
182
188
|
index:
|
183
189
|
media_links_title: Medialinkit
|
184
190
|
new:
|
185
191
|
create: Luo
|
186
|
-
title:
|
192
|
+
title: Medialinkki
|
187
193
|
update:
|
188
194
|
error: Medialinkin päivitys epäonnistui.
|
189
195
|
success: Medialinkin päivitys onnistui.
|
@@ -261,7 +267,7 @@ fi:
|
|
261
267
|
destroy:
|
262
268
|
success: Yhteistyökumppanin poisto tästä konferenssista onnistui.
|
263
269
|
edit:
|
264
|
-
title: Päivitä
|
270
|
+
title: Päivitä yhteistyökumppani.
|
265
271
|
update: Päivitä
|
266
272
|
new:
|
267
273
|
create: Luo
|
@@ -274,16 +280,16 @@ fi:
|
|
274
280
|
error: Ilmoittautumistyypin julkaisu epäonnistui.
|
275
281
|
success: Ilmoittautumistyypin julkaisu onnistui.
|
276
282
|
destroy:
|
277
|
-
error: Ilmoittautumistyypin julkaisun
|
278
|
-
success: Ilmoittamistyypin julkaisun
|
283
|
+
error: Ilmoittautumistyypin julkaisun lopettaminen epäonnistui.
|
284
|
+
success: Ilmoittamistyypin julkaisun lopettaminen onnistui.
|
279
285
|
registration_types:
|
280
286
|
create:
|
281
287
|
error: Ilmoittautumistyyppin lisääminen tälle konferenssille epäonnistui.
|
282
288
|
success: Ilmoittautumistyypin lisääminen onnistui.
|
283
289
|
destroy:
|
284
|
-
success: Ilmoittautumistyypin
|
290
|
+
success: Ilmoittautumistyypin poistaminen onnistui.
|
285
291
|
edit:
|
286
|
-
title: Päivitä
|
292
|
+
title: Päivitä ilmoittautumistyyppi.
|
287
293
|
update: Päivitä
|
288
294
|
new:
|
289
295
|
create: Luo
|
@@ -298,7 +304,7 @@ fi:
|
|
298
304
|
create: "%{user_name} loi konferenssin %{resource_name}"
|
299
305
|
publish: "%{user_name} julkaisi konferenssin %{resource_name}"
|
300
306
|
send_conference_diplomas: "%{user_name} lähetti konferenssin %{resource_name} läsnäolotodistukset osallistujille"
|
301
|
-
unpublish: "%{user_name}
|
307
|
+
unpublish: "%{user_name} lopetti konferenssin %{resource_name} julkaisun"
|
302
308
|
update: "%{user_name} päivitti konferenssia %{resource_name}"
|
303
309
|
update_diploma: "%{user_name} päivitti läsnäolotodistusten asetuksia konferenssille %{resource_name}"
|
304
310
|
conference_speaker:
|
@@ -320,7 +326,7 @@ fi:
|
|
320
326
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
321
327
|
delete: "%{user_name} poisti ilmoittautumistyypin %{resource_name} konferenssista %{space_name}"
|
322
328
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
323
|
-
unpublish: "%{user_name}
|
329
|
+
unpublish: "%{user_name} lopetti ilmoittautumistyypin %{resource_name} julkaisun konferenssissa %{space_name}"
|
324
330
|
update: "%{user_name} päivitti ilmoittautumistyyppiä %{resource_name} konferenssissa %{space_name}"
|
325
331
|
media_link:
|
326
332
|
create: "%{user_name} loi medialinkin %{resource_name} konferenssissa %{space_name}"
|
@@ -348,14 +354,8 @@ fi:
|
|
348
354
|
non_user: Käyttäjää ei ole olemassa
|
349
355
|
select_user: Valitse käyttäjä
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Hyväksytyt
|
353
|
-
all: Kaikki
|
354
|
-
rejected: Hylätyt
|
355
|
-
sent: Lähetetty
|
356
357
|
invite_attendee: Kutsu käyttäjä
|
357
358
|
invites: Kutsut
|
358
|
-
search: Hae
|
359
359
|
new:
|
360
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.
|
361
361
|
invite: Kutsu
|
@@ -474,8 +474,6 @@ fi:
|
|
474
474
|
name: Tärkeimmät konferenssit
|
475
475
|
index:
|
476
476
|
title: Konferenssit
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'Uusi konferenssi:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
479
|
confirmation:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -120,13 +120,19 @@ fr-CA:
|
|
120
120
|
destroy:
|
121
121
|
success: Conférencier supprimé avec succès pour cette conférence.
|
122
122
|
edit:
|
123
|
-
title: Mettre à jour le conférencier
|
123
|
+
title: Mettre à jour le conférencier.
|
124
124
|
update: Mettre à jour
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Conférenciers
|
127
127
|
new:
|
128
128
|
create: Créer
|
129
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.
|
130
136
|
update:
|
131
137
|
error: Une erreur s'est produite lors de la mise à jour du conférencier pour cette conférence.
|
132
138
|
success: Conférencier mis à jour avec succès pour cette conférence.
|
@@ -137,13 +143,13 @@ fr-CA:
|
|
137
143
|
destroy:
|
138
144
|
success: Administrateur supprimé de cette conférence.
|
139
145
|
edit:
|
140
|
-
title: Mettre à jour l'administrateur de la conférence
|
146
|
+
title: Mettre à jour l'administrateur de la conférence.
|
141
147
|
update: Mettre à jour
|
142
148
|
index:
|
143
149
|
conference_admins_title: Administrateurs de conférence
|
144
150
|
new:
|
145
151
|
create: Créer
|
146
|
-
title: Nouvel administrateur de conférence
|
152
|
+
title: Nouvel administrateur de conférence.
|
147
153
|
update:
|
148
154
|
error: Il y avait une erreur mise à jour d'un administrateur pour cette conférence.
|
149
155
|
success: Administrateur mis à jour avec succès pour cette conférence.
|
@@ -177,13 +183,13 @@ fr-CA:
|
|
177
183
|
destroy:
|
178
184
|
success: Lien média supprimé avec succès.
|
179
185
|
edit:
|
180
|
-
title: Mettre à jour le lien média
|
186
|
+
title: Mettre à jour le lien média.
|
181
187
|
update: Mettre à jour
|
182
188
|
index:
|
183
|
-
media_links_title: Liens
|
189
|
+
media_links_title: Liens médias
|
184
190
|
new:
|
185
191
|
create: Créer
|
186
|
-
title:
|
192
|
+
title: Lien média
|
187
193
|
update:
|
188
194
|
error: Une erreur s'est produite lors de la mise à jour de ce lien multimédia.
|
189
195
|
success: Lien média mis à jour avec succès.
|
@@ -198,15 +204,15 @@ fr-CA:
|
|
198
204
|
conference_admins: Administrateurs de conférence
|
199
205
|
conference_invites: Invitations
|
200
206
|
conference_speakers: Conférenciers
|
201
|
-
diploma:
|
207
|
+
diploma: Certificat de participation
|
202
208
|
info: À propos de cette conférence
|
203
|
-
media_links: Liens
|
209
|
+
media_links: Liens médias
|
204
210
|
moderations: Modération
|
205
211
|
partners: Partenaires
|
206
212
|
registration_types: Types d'inscription
|
207
213
|
registrations: Inscriptions
|
208
214
|
see_conference: Voir la conférence
|
209
|
-
user_registrations:
|
215
|
+
user_registrations: Utilisateurs inscrits
|
210
216
|
models:
|
211
217
|
conference:
|
212
218
|
fields:
|
@@ -261,7 +267,7 @@ fr-CA:
|
|
261
267
|
destroy:
|
262
268
|
success: Le partenaire a été supprimé avec succès de cette conférence.
|
263
269
|
edit:
|
264
|
-
title: Mettre à jour le partenaire
|
270
|
+
title: Mettre à jour le partenaire.
|
265
271
|
update: Mettre à jour
|
266
272
|
new:
|
267
273
|
create: Créer
|
@@ -283,7 +289,7 @@ fr-CA:
|
|
283
289
|
destroy:
|
284
290
|
success: Le type d'inscription a bien été supprimé de cette conférence.
|
285
291
|
edit:
|
286
|
-
title: Mettre à jour le type d'inscription
|
292
|
+
title: Mettre à jour le type d'inscription.
|
287
293
|
update: Mettre à jour
|
288
294
|
new:
|
289
295
|
create: Créer
|
@@ -348,14 +354,8 @@ fr-CA:
|
|
348
354
|
non_user: Utilisateur non existant
|
349
355
|
select_user: Sélectionnez l'utilisateur
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Accepté
|
353
|
-
all: Tout
|
354
|
-
rejected: Rejeté
|
355
|
-
sent: Envoyé
|
356
357
|
invite_attendee: Inviter un participant
|
357
358
|
invites: Invite
|
358
|
-
search: Chercher
|
359
359
|
new:
|
360
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.
|
361
361
|
invite: Inviter
|
@@ -384,7 +384,7 @@ fr-CA:
|
|
384
384
|
diplomas:
|
385
385
|
edit:
|
386
386
|
save: sauvegarder
|
387
|
-
title:
|
387
|
+
title: Certificat de participation
|
388
388
|
invite_join_conference_mailer:
|
389
389
|
invite:
|
390
390
|
decline: Refuser l'invitation '%{conference_title}'
|
@@ -404,7 +404,7 @@ fr-CA:
|
|
404
404
|
diploma_html: Vous trouverez le certificat de participation à la conférence <a href="%{url}">%{title}</a> dans les pièces jointes.
|
405
405
|
diploma_user:
|
406
406
|
attendance_verified_by: Présence vérifiée par
|
407
|
-
certificate_of_attendance:
|
407
|
+
certificate_of_attendance: Certificat de participation
|
408
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>
|
409
409
|
send_diploma:
|
410
410
|
error: Il y a eu un problème lors de l'envoi des certificats de participation à la conférence.
|
@@ -474,8 +474,6 @@ fr-CA:
|
|
474
474
|
name: Conférences mises en avant
|
475
475
|
index:
|
476
476
|
title: Conférences
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'Nouvelle conférence:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
479
|
confirmation:
|
data/config/locales/fr.yml
CHANGED
@@ -120,13 +120,19 @@ fr:
|
|
120
120
|
destroy:
|
121
121
|
success: Conférencier supprimé avec succès pour cette conférence.
|
122
122
|
edit:
|
123
|
-
title: Mettre à jour le conférencier
|
123
|
+
title: Mettre à jour le conférencier.
|
124
124
|
update: Mettre à jour
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Conférenciers
|
127
127
|
new:
|
128
128
|
create: Créer
|
129
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.
|
130
136
|
update:
|
131
137
|
error: Une erreur s'est produite lors de la mise à jour du conférencier pour cette conférence.
|
132
138
|
success: Conférencier mis à jour avec succès pour cette conférence.
|
@@ -137,13 +143,13 @@ fr:
|
|
137
143
|
destroy:
|
138
144
|
success: Administrateur supprimé de cette conférence.
|
139
145
|
edit:
|
140
|
-
title: Mettre à jour l'administrateur de la conférence
|
146
|
+
title: Mettre à jour l'administrateur de la conférence.
|
141
147
|
update: Mettre à jour
|
142
148
|
index:
|
143
149
|
conference_admins_title: Administrateurs de conférence
|
144
150
|
new:
|
145
151
|
create: Créer
|
146
|
-
title: Nouvel administrateur de conférence
|
152
|
+
title: Nouvel administrateur de conférence.
|
147
153
|
update:
|
148
154
|
error: Il y avait une erreur mise à jour d'un administrateur pour cette conférence.
|
149
155
|
success: Administrateur mis à jour avec succès pour cette conférence.
|
@@ -177,13 +183,13 @@ fr:
|
|
177
183
|
destroy:
|
178
184
|
success: Lien média supprimé avec succès.
|
179
185
|
edit:
|
180
|
-
title: Mettre à jour le lien média
|
186
|
+
title: Mettre à jour le lien média.
|
181
187
|
update: Mettre à jour
|
182
188
|
index:
|
183
|
-
media_links_title: Liens
|
189
|
+
media_links_title: Liens médias
|
184
190
|
new:
|
185
191
|
create: Créer
|
186
|
-
title:
|
192
|
+
title: Lien média
|
187
193
|
update:
|
188
194
|
error: Une erreur s'est produite lors de la mise à jour de ce lien multimédia.
|
189
195
|
success: Lien média mis à jour avec succès.
|
@@ -198,15 +204,15 @@ fr:
|
|
198
204
|
conference_admins: Administrateurs de conférence
|
199
205
|
conference_invites: Invitations
|
200
206
|
conference_speakers: Conférenciers
|
201
|
-
diploma:
|
207
|
+
diploma: Certificat de participation
|
202
208
|
info: À propos de cette conférence
|
203
|
-
media_links: Liens
|
209
|
+
media_links: Liens médias
|
204
210
|
moderations: Modération
|
205
211
|
partners: Partenaires
|
206
212
|
registration_types: Types d'inscription
|
207
213
|
registrations: Inscriptions
|
208
214
|
see_conference: Voir la conférence
|
209
|
-
user_registrations:
|
215
|
+
user_registrations: Utilisateurs inscrits
|
210
216
|
models:
|
211
217
|
conference:
|
212
218
|
fields:
|
@@ -261,7 +267,7 @@ fr:
|
|
261
267
|
destroy:
|
262
268
|
success: Le partenaire a été supprimé avec succès de cette conférence.
|
263
269
|
edit:
|
264
|
-
title: Mettre à jour le partenaire
|
270
|
+
title: Mettre à jour le partenaire.
|
265
271
|
update: Mettre à jour
|
266
272
|
new:
|
267
273
|
create: Créer
|
@@ -283,7 +289,7 @@ fr:
|
|
283
289
|
destroy:
|
284
290
|
success: Le type d'inscription a bien été supprimé de cette conférence.
|
285
291
|
edit:
|
286
|
-
title: Mettre à jour le type d'inscription
|
292
|
+
title: Mettre à jour le type d'inscription.
|
287
293
|
update: Mettre à jour
|
288
294
|
new:
|
289
295
|
create: Créer
|
@@ -348,14 +354,8 @@ fr:
|
|
348
354
|
non_user: Utilisateur non existant
|
349
355
|
select_user: Sélectionnez l'utilisateur
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Accepté
|
353
|
-
all: Tout
|
354
|
-
rejected: Rejeté
|
355
|
-
sent: Envoyé
|
356
357
|
invite_attendee: Inviter un participant
|
357
358
|
invites: Invite
|
358
|
-
search: Chercher
|
359
359
|
new:
|
360
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.
|
361
361
|
invite: Inviter
|
@@ -384,7 +384,7 @@ fr:
|
|
384
384
|
diplomas:
|
385
385
|
edit:
|
386
386
|
save: sauvegarder
|
387
|
-
title:
|
387
|
+
title: Certificat de participation
|
388
388
|
invite_join_conference_mailer:
|
389
389
|
invite:
|
390
390
|
decline: Refuser l'invitation '%{conference_title}'
|
@@ -404,7 +404,7 @@ fr:
|
|
404
404
|
diploma_html: Vous trouverez le certificat de participation à la conférence <a href="%{url}">%{title}</a> dans les pièces jointes.
|
405
405
|
diploma_user:
|
406
406
|
attendance_verified_by: Présence vérifiée par
|
407
|
-
certificate_of_attendance:
|
407
|
+
certificate_of_attendance: Certificat de participation
|
408
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>
|
409
409
|
send_diploma:
|
410
410
|
error: Il y a eu un problème lors de l'envoi des certificats de participation à la conférence.
|
@@ -474,8 +474,6 @@ fr:
|
|
474
474
|
name: Conférences mises en avant
|
475
475
|
index:
|
476
476
|
title: Conférences
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'Nouvelle conférence:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
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.
|