decidim-conferences 0.15.1 → 0.16.0

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.
Files changed (115) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/admin/decidim_conferences_manifest.js +1 -0
  3. data/app/assets/images/decidim/conferences/conference.svg +2 -5
  4. data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +3 -0
  5. data/app/cells/decidim/conferences/{join_conference_button/show.erb → registration_type/join_conference.erb} +6 -7
  6. data/app/cells/decidim/conferences/{join_conference_button → registration_type}/registration_confirm.erb +2 -2
  7. data/app/cells/decidim/conferences/registration_type/show.erb +16 -0
  8. data/app/cells/decidim/conferences/registration_type_cell.rb +51 -0
  9. data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +75 -0
  10. data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
  11. data/app/commands/decidim/conferences/admin/create_registration_type.rb +77 -0
  12. data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +56 -0
  13. data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +3 -2
  14. data/app/commands/decidim/conferences/admin/publish_registration_type.rb +36 -0
  15. data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +48 -0
  16. data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +36 -0
  17. data/app/commands/decidim/conferences/admin/update_conference.rb +2 -2
  18. data/app/commands/decidim/conferences/admin/update_diploma.rb +47 -0
  19. data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
  20. data/app/commands/decidim/conferences/admin/update_registration_type.rb +74 -0
  21. data/app/commands/decidim/conferences/join_conference.rb +21 -9
  22. data/app/commands/decidim/conferences/leave_conference.rb +5 -3
  23. data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +21 -0
  24. data/app/controllers/decidim/conferences/admin/conferences_controller.rb +0 -9
  25. data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +62 -0
  26. data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +53 -0
  27. data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +84 -0
  28. data/app/controllers/decidim/conferences/application_controller.rb +2 -0
  29. data/app/controllers/decidim/conferences/conference_registrations_controller.rb +6 -2
  30. data/app/controllers/decidim/conferences/conferences_controller.rb +4 -0
  31. data/app/controllers/decidim/conferences/registration_types_controller.rb +39 -0
  32. data/app/events/decidim/conferences/conference_registration_notification_event.rb +21 -0
  33. data/app/forms/decidim/conferences/admin/conference_form.rb +5 -2
  34. data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +15 -0
  35. data/app/forms/decidim/conferences/admin/diploma_form.rb +24 -0
  36. data/app/forms/decidim/conferences/admin/registration_type_form.rb +44 -0
  37. data/app/helpers/decidim/conferences/conference_helper.rb +15 -0
  38. data/app/jobs/decidim/conferences/admin/send_conference_diploma_job.rb +20 -0
  39. data/app/jobs/decidim/conferences/upcoming_conference_notification_job.rb +1 -1
  40. data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +2 -1
  41. data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +48 -0
  42. data/app/mailers/decidim/conferences/conference_registration_mailer.rb +16 -1
  43. data/app/models/decidim/conference.rb +12 -0
  44. data/app/models/decidim/conference_meeting.rb +2 -0
  45. data/app/models/decidim/conferences/conference_invite.rb +1 -0
  46. data/app/models/decidim/conferences/conference_meeting_registration_type.rb +10 -0
  47. data/app/models/decidim/conferences/conference_registration.rb +11 -0
  48. data/app/models/decidim/conferences/registration_type.rb +25 -0
  49. data/app/permissions/decidim/conferences/permissions.rb +19 -12
  50. data/app/presenters/decidim/conference_speaker_presenter.rb +4 -0
  51. data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +43 -0
  52. data/app/presenters/decidim/conferences/admin_log/conferences_presenter.rb +4 -2
  53. data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +1 -1
  54. data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +45 -0
  55. data/app/serializers/decidim/conferences/conference_registration_serializer.rb +4 -0
  56. data/app/serializers/decidim/conferences/data_portability_conference_invite_serializer.rb +4 -0
  57. data/app/serializers/decidim/conferences/data_portability_conference_registration_serializer.rb +4 -0
  58. data/app/uploaders/decidim/conferences/diploma_uploader.rb +12 -0
  59. data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +8 -0
  60. data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +4 -0
  61. data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +16 -0
  62. data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -4
  63. data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +31 -0
  64. data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +7 -0
  65. data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +2 -2
  66. data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +30 -0
  67. data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +7 -0
  68. data/app/views/decidim/conferences/admin/registration_types/index.html.erb +65 -0
  69. data/app/views/decidim/conferences/admin/registration_types/new.html.erb +7 -0
  70. data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma.html.erb +1 -0
  71. data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +24 -0
  72. data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +1 -2
  73. data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +9 -1
  74. data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +11 -0
  75. data/app/views/decidim/conferences/conferences/index.html.erb +2 -2
  76. data/app/views/decidim/conferences/conferences/show.html.erb +10 -24
  77. data/app/views/decidim/conferences/registration_types/index.html.erb +30 -0
  78. data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +14 -0
  79. data/app/views/layouts/decidim/_conference_hero.html.erb +5 -3
  80. data/app/views/layouts/decidim/_conferences_nav.html.erb +45 -89
  81. data/app/views/layouts/decidim/admin/conference.html.erb +26 -8
  82. data/app/views/layouts/decidim/diploma.html.erb +11 -0
  83. data/config/initializers/wicked_pdf.rb +23 -0
  84. data/config/locales/ca.yml +125 -19
  85. data/config/locales/de.yml +127 -21
  86. data/config/locales/en.yml +126 -23
  87. data/config/locales/es-PY.yml +125 -19
  88. data/config/locales/es.yml +125 -19
  89. data/config/locales/eu.yml +127 -21
  90. data/config/locales/fi-pl.yml +570 -0
  91. data/config/locales/fi.yml +145 -39
  92. data/config/locales/fr.yml +127 -21
  93. data/config/locales/gl.yml +126 -20
  94. data/config/locales/hu.yml +127 -21
  95. data/config/locales/id-ID.yml +563 -0
  96. data/config/locales/it.yml +127 -21
  97. data/config/locales/nl.yml +126 -20
  98. data/config/locales/pl.yml +127 -24
  99. data/config/locales/pt-BR.yml +125 -19
  100. data/config/locales/pt.yml +126 -20
  101. data/config/locales/sv.yml +164 -58
  102. data/config/locales/tr-TR.yml +567 -0
  103. data/db/migrate/20181023142325_add_conference_registration_types.rb +21 -0
  104. data/db/migrate/20181030090202_add_reference_registration_type_to_conference_registration.rb +9 -0
  105. data/db/migrate/20181030153614_add_registration_type_to_conference_invite.rb +8 -0
  106. data/db/migrate/20181106092826_add_diploma_fields_to_conference.rb +11 -0
  107. data/db/migrate/20181123124424_make_price_optional_conference_registration_type.rb +7 -0
  108. data/lib/decidim/conferences/admin_engine.rb +16 -2
  109. data/lib/decidim/conferences/engine.rb +8 -4
  110. data/lib/decidim/conferences/participatory_space.rb +11 -0
  111. data/lib/decidim/conferences/test/factories.rb +36 -0
  112. data/lib/decidim/conferences/version.rb +1 -1
  113. metadata +94 -22
  114. data/app/cells/decidim/conferences/join_conference_button_cell.rb +0 -42
  115. data/app/views/decidim/conferences/conferences/_conferences_sidebar.html.erb +0 -11
@@ -1,4 +1,3 @@
1
- ---
2
1
  en:
3
2
  activemodel:
4
3
  attributes:
@@ -49,7 +48,9 @@ en:
49
48
  decidim:
50
49
  admin:
51
50
  actions:
51
+ confirm: Confirm
52
52
  new_conference: New Conference
53
+ send_diplomas: Send Diplomas
53
54
  conference_copies:
54
55
  new:
55
56
  copy: Copy
@@ -62,6 +63,10 @@ en:
62
63
  destroy:
63
64
  error: There was an error unpublishing this conference.
64
65
  success: Conference unpublished successfully.
66
+ conference_registration:
67
+ confirm:
68
+ error: There was an error when confirm this conference registration.
69
+ success: Conference registration confirmed successfully.
65
70
  conference_speakers:
66
71
  create:
67
72
  error: There was an error adding a speaker for this conference.
@@ -100,8 +105,6 @@ en:
100
105
  create:
101
106
  error: There was an error creating a new conference.
102
107
  success: Conference created successfully.
103
- destroy:
104
- success: Conference deleted successfully.
105
108
  edit:
106
109
  update: Update
107
110
  exports:
@@ -146,14 +149,17 @@ en:
146
149
  attachments: Attachments
147
150
  categories: Categories
148
151
  components: Components
149
- conference_admins: Conference admins
150
- conference_invites: Conference Invites
151
- conference_registrations: Conference Registrations
152
- conference_speakers: Conference speakers
152
+ conference_admins: Conference users
153
+ conference_invites: Invites
154
+ conference_speakers: Speakers
155
+ diploma: Diploma
153
156
  info: Info
154
157
  media_links: Media Links
155
158
  moderations: Moderations
156
159
  partners: Partners
160
+ registration_types: Registration Types
161
+ registrations: Registrations
162
+ user_registrations: User Registrations
157
163
  models:
158
164
  conference:
159
165
  fields:
@@ -193,6 +199,14 @@ en:
193
199
  types:
194
200
  collaborator: Collaborator
195
201
  main_promotor: Main promotor
202
+ registration_type:
203
+ fields:
204
+ conference_meetings: Conference meetings
205
+ price: Price
206
+ registrations_count: Registrations count
207
+ title: Title
208
+ weight: Weight
209
+ name: Registration type
196
210
  partners:
197
211
  create:
198
212
  error: There was an error adding a partner for this conference.
@@ -208,14 +222,38 @@ en:
208
222
  update:
209
223
  error: There was an error updated a partner for this conference.
210
224
  success: Partner updated successfully for this conference.
225
+ registration_type_publications:
226
+ create:
227
+ error: There was an error publishing this registration type.
228
+ success: Registration type published successfully.
229
+ destroy:
230
+ error: There was an error unpublishing this registration type.
231
+ success: Registration type unpublished successfully.
232
+ registration_types:
233
+ create:
234
+ error: There was an error adding a registration type for this conference.
235
+ success: Registration type added successfully to this conference.
236
+ destroy:
237
+ success: Registration type removed successfully from this conference.
238
+ edit:
239
+ title: Update registration type.
240
+ update: Update
241
+ new:
242
+ create: Create
243
+ title: New registration type
244
+ update:
245
+ error: There was an error updated a registration type for this conference.
246
+ success: Registration type updated successfully for this conference.
211
247
  titles:
212
248
  conferences: Conferences
213
249
  admin_log:
214
250
  conference:
215
251
  create: "%{user_name} created the %{resource_name} conference"
216
252
  publish: "%{user_name} published the %{resource_name} conference"
253
+ send_conference_diplomas: "%{user_name} send diplomas to the %{resource_name} conference users"
217
254
  unpublish: "%{user_name} unpublished the %{resource_name} conference"
218
255
  update: "%{user_name} updated the %{resource_name} conference"
256
+ update_diploma: "%{user_name} updated the diploma configuration %{resource_name} conference"
219
257
  conference_speaker:
220
258
  create: "%{user_name} created the %{resource_name} speaker in the %{space_name} conference"
221
259
  delete: "%{user_name} removed the %{resource_name} speaker from the %{space_name} conference"
@@ -224,6 +262,22 @@ en:
224
262
  create: "%{user_name} invited %{resource_name} to the %{space_name} conference"
225
263
  delete: "%{user_name} removed the user %{resource_name} from the %{space_name} conference"
226
264
  update: "%{user_name} changed the role of %{resource_name} in the %{space_name} conference"
265
+ conferences:
266
+ conference_registration:
267
+ confirm: "%{user_name} confirmed a conference registration in %{resource_name} conference"
268
+ partner:
269
+ create: "%{user_name} created %{resource_name} to the %{space_name} conference"
270
+ delete: "%{user_name} removed the user %{resource_name} from the %{space_name} conference"
271
+ update: "%{user_name} updated %{resource_name} in the %{space_name} conference"
272
+ registration_type:
273
+ create: "%{user_name} created the %{resource_name} registration type in the %{space_name} conference"
274
+ publish: "%{user_name} published the %{resource_name} registration type in the %{space_name} conference"
275
+ unpublish: "%{user_name} unpublished the %{resource_name} registration type in the %{space_name} conference"
276
+ update: "%{user_name} updated the %{resource_name} registration type in the %{space_name} conference"
277
+ media_link:
278
+ create: "%{user_name} created the %{resource_name} media link in the %{space_name} conference"
279
+ delete: "%{user_name} removed the %{resource_name} media link from the %{space_name} conference"
280
+ update: "%{user_name} updated the %{resource_name} media link in the %{space_name} conference"
227
281
  conference_program:
228
282
  index:
229
283
  title: Program
@@ -276,28 +330,43 @@ en:
276
330
  registrations_count:
277
331
  one: There has been 1 registration.
278
332
  other: There has been %{count} registrations.
279
- zero: There has not been registrations yet.
280
333
  slug_help: 'URL slugs are used to generate the URLs that point to this conference. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
334
+ diplomas:
335
+ edit:
336
+ save: Save
337
+ title: Diploma
281
338
  invite_join_conference_mailer:
282
339
  invite:
283
340
  decline: Decline invitation '%{conference_title}'
284
341
  invited_you_to_join_a_conference: "%{invited_by} has invited you to join a conference at %{application}. You can decline or accept it through the links below."
285
- join: Join conference '%{conference_title}'
342
+ registration: Registration for '%{conference_title}'
286
343
  partners:
287
344
  index:
288
345
  title: Partners
346
+ registration_types:
347
+ form:
348
+ select_conference_meetings: Select conference meetings
349
+ index:
350
+ title: Registration types
351
+ send_conference_diploma_mailer:
352
+ diploma:
353
+ diploma_html: You will be find the diploma for the conference <a href="%{url}">%{title}</a> in the attachments.
354
+ diploma_user:
355
+ attendance_verified_by: Attendance verified by
356
+ certificate_of_attendance: Certificate of Attendance
357
+ certificate_of_attendance_description: This is to certify that <strong>%{user}</strong> has attended and taken part in the <strong>%{title}</strong> held at the <strong>%{location}</strong> on <strong>%{start} - %{end}</strong>
358
+ send_diploma:
359
+ error: There's been a problem while sending the conference diplomas.
360
+ success: Conference Diplomas sent correctly
289
361
  conference:
290
362
  registration_confirm:
291
363
  cancel: Cancel
292
364
  confirm: Confirm
293
365
  show:
366
+ free: Free
294
367
  going: Going
295
- join: Join Conference
296
368
  no_slots_available: No slots available
297
- remaining_slots:
298
- one: 1 slot remaining
299
- other: "%{count} slots remaining"
300
- zero: No slots remaining
369
+ registration: Registration
301
370
  conference_program:
302
371
  program_meeting:
303
372
  content: Content
@@ -310,7 +379,12 @@ en:
310
379
  conference_registration_mailer:
311
380
  confirmation:
312
381
  confirmed_html: Your registration for the conference <a href="%{url}">%{title}</a> has been confirmed.
313
- details: You will find the conference's details in the attachment.
382
+ details_1: 'You are registered to the conference with %{registration_type} type. It has a cost of %{price} and you can attend to the following events:'
383
+ details_2: You will find the conference's details in the attachment.
384
+ pending_validation:
385
+ confirmation_pending: You will receive the confirmation shortly
386
+ details: 'You have registered to %{registration_type} type with a cost of %{price} and you can attend to the following events:'
387
+ pending_html: Your registration for the conference <a href="%{url}">%{title}</a> is pending to be confirmed.
314
388
  conference_registrations:
315
389
  create:
316
390
  invalid: There's been a problem joining this conference.
@@ -337,16 +411,12 @@ en:
337
411
  speakers: Speakers
338
412
  conferences:
339
413
  partners:
340
- collaborators: Collaborators
341
- main_promotors: Main promotors
414
+ collaborators: Partners
415
+ main_promotors: Organizers
342
416
  show:
343
- already_account: Do you already have an account in decidim?
344
- login_as: You are login as %{name} <%{email}>
417
+ login_as: You are logged in as %{name} <%{email}>
345
418
  make_conference_registration: 'Make your registration in the conference:'
346
- new_user: New user?
347
419
  register: Register
348
- sign_in: Login to register at this conference
349
- sign_up: Register for free in decidim to register
350
420
  content_blocks:
351
421
  highlighted_conferences:
352
422
  name: Highlighted conferences
@@ -356,14 +426,20 @@ en:
356
426
  conference_registration_mailer:
357
427
  confirmation:
358
428
  subject: Your conference's registration has been confirmed
429
+ pending_validation:
430
+ subject: Your conference's registration is pending to be confirmed
359
431
  invite_join_conference_mailer:
360
432
  invite:
361
433
  subject: Invitation to join a conference
434
+ send_conference_diploma_mailer:
435
+ diploma:
436
+ subject: Your conference's diploma has been sent
362
437
  models:
363
438
  conference_invite:
364
439
  fields:
365
440
  email: Email
366
441
  name: Name
442
+ registration_type: Registration type
367
443
  sent_at: Sent at
368
444
  status: Status
369
445
  status:
@@ -374,6 +450,11 @@ en:
374
450
  fields:
375
451
  email: Email
376
452
  name: Name
453
+ registration_type: Registration type
454
+ state: State
455
+ states:
456
+ confirmed: Confirmed
457
+ pending: Pending
377
458
  pages:
378
459
  home:
379
460
  highlighted_conferences:
@@ -386,6 +467,18 @@ en:
386
467
  photos_list:
387
468
  show:
388
469
  related_photos: Photos
470
+ registration_types:
471
+ index:
472
+ choose_an_option: 'Choose your registration option:'
473
+ login_as: You are logged in as %{name} <%{email}>
474
+ register: Register
475
+ title: Registration types
476
+ shared:
477
+ conference_user_login:
478
+ already_account: Do you already have an account in decidim?
479
+ new_user: New user?
480
+ sign_in: Login to register for the conference
481
+ sign_up: Create an account in decidim to register for the conference
389
482
  show:
390
483
  details: Details
391
484
  introduction: Introduction
@@ -412,6 +505,10 @@ en:
412
505
  votes_count: Votes
413
506
  events:
414
507
  conferences:
508
+ conference_registration_validation_pending:
509
+ notification_title: Your registration for the conference <a href="%{resource_url}">%{resource_title}</a> is pending to be confirmed.
510
+ conference_registration_confirmed:
511
+ notification_title: Your registration for the conference <a href="%{resource_url}">%{resource_title}</a> has been confirmed.
415
512
  conference_registrations_over_percentage:
416
513
  email_intro: The "%{resource_title}" conference occupied slots are over %{percentage}%.
417
514
  email_outro: You have received this notification because you are an admin of the conference's participatory space.
@@ -427,6 +524,11 @@ en:
427
524
  email_outro: You have received this notification because you are following the "%{resource_title}" conference. You can unfollow it from the previous link.
428
525
  email_subject: The "%{resource_title}" conference has enabled registrations.
429
526
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> conference has enabled registrations.
527
+ upcoming_conference:
528
+ email_intro: 'The "%{resource_title}" conference is taking place in 2 days. You can read the description from its page:'
529
+ email_outro: You have received this notification because you are following the "%{resource_title}" conference. You can unfollow it from the previous link.
530
+ email_subject: The "%{resource_title}" conference is coming!
531
+ notification_title: The <a href="%{resource_path}">%{resource_title}</a> conference is coming in 2 days.
430
532
  log:
431
533
  value_types:
432
534
  conference_presenter:
@@ -443,6 +545,8 @@ en:
443
545
  subject: Invitation to join a conference
444
546
  layouts:
445
547
  decidim:
548
+ conference_hero:
549
+ register: Register
446
550
  conference_widgets:
447
551
  show:
448
552
  take_part: Take part
@@ -463,5 +567,4 @@ en:
463
567
  conference_partners_menu_item: Partners
464
568
  conference_speaker_menu_item: Speakers
465
569
  media: Media
466
- unfold: Unfold
467
570
  venues: Venues
@@ -48,7 +48,9 @@ es-PY:
48
48
  decidim:
49
49
  admin:
50
50
  actions:
51
+ confirm: Confirmar
51
52
  new_conference: Nueva conferencia
53
+ send_diplomas: Enviar diplomas
52
54
  conference_copies:
53
55
  new:
54
56
  copy: Dupdo
@@ -61,6 +63,10 @@ es-PY:
61
63
  destroy:
62
64
  error: Hubo un error al anular la publicación de esta conferencia.
63
65
  success: Conferencia no publicada con éxito.
66
+ conference_registration:
67
+ confirm:
68
+ error: Hubo un error al confirmar la inscripción a esta conferencia.
69
+ success: Inscripción a la conferencia confirmada con éxito.
64
70
  conference_speakers:
65
71
  create:
66
72
  error: Hubo un error al agregar un orador para esta conferencia.
@@ -99,8 +105,6 @@ es-PY:
99
105
  create:
100
106
  error: Hubo un error al crear una nueva conferencia.
101
107
  success: Conferencia creada con éxito.
102
- destroy:
103
- success: Conferencia borrada con éxito.
104
108
  edit:
105
109
  update: Actualizar
106
110
  exports:
@@ -145,14 +149,17 @@ es-PY:
145
149
  attachments: Archivos adjuntos
146
150
  categories: Categorías
147
151
  components: Componentes
148
- conference_admins: Administradores de conferencia
149
- conference_invites: Invitaciones a conferencias
150
- conference_registrations: Registros de conferencia
151
- conference_speakers: Conferenciantes
152
+ conference_admins: Usuarios de la conferencia
153
+ conference_invites: Invita
154
+ conference_speakers: Ponentes
155
+ diploma: Certificado de asistencia
152
156
  info: Información
153
157
  media_links: Enlaces de medios
154
158
  moderations: Moderaciones
155
159
  partners: Fogonadura
160
+ registration_types: Tipos de inscripción
161
+ registrations: Inscripciones
162
+ user_registrations: Inscripciones de usuario
156
163
  models:
157
164
  conference:
158
165
  fields:
@@ -192,6 +199,14 @@ es-PY:
192
199
  types:
193
200
  collaborator: Colaborador
194
201
  main_promotor: Promotor principal
202
+ registration_type:
203
+ fields:
204
+ conference_meetings: Encuentros de la conferencia
205
+ price: Precio
206
+ registrations_count: Número de inscripciones
207
+ title: Título
208
+ weight: Peso
209
+ name: Tipo de inscripción
195
210
  partners:
196
211
  create:
197
212
  error: Hubo un error al agregar un socio para esta conferencia.
@@ -207,14 +222,38 @@ es-PY:
207
222
  update:
208
223
  error: Hubo un error actualizado de un socio para esta conferencia.
209
224
  success: Socio actualizado exitosamente para esta conferencia.
225
+ registration_type_publications:
226
+ create:
227
+ error: Se ha producido un error al publicar este tipo de registro.
228
+ success: Tipo de registro publicado con éxito.
229
+ destroy:
230
+ error: Se ha producido un error al publicar este tipo de registro.
231
+ success: Tipo de registro despublicado con éxito.
232
+ registration_types:
233
+ create:
234
+ error: Se produjo un error al agregar un tipo de registro para esta conferencia.
235
+ success: Tipo de registro agregado con éxtio a esta conferencia.
236
+ destroy:
237
+ success: Tipo de registro eliminado con éxito de esta conferencia.
238
+ edit:
239
+ title: Actualizar el tipo de registro.
240
+ update: Actualizar
241
+ new:
242
+ create: Crear
243
+ title: Nuevo tipo de registro
244
+ update:
245
+ error: Hubo un error al actualizar un tipo de registro para esta conferencia.
246
+ success: Tipo de registro actualizado con éxito para esta conferencia.
210
247
  titles:
211
248
  conferences: Conferencias
212
249
  admin_log:
213
250
  conference:
214
251
  create: "%{user_name} creó la %{resource_name} conferencia"
215
252
  publish: "%{user_name} publicado la %{resource_name} conferencia"
253
+ send_conference_diplomas: "%{user_name} enviar diplomas a los %{resource_name} usuarios de la conferencia."
216
254
  unpublish: "%{user_name} inédito la %{resource_name} conferencia."
217
255
  update: "%{user_name} actualizado la %{resource_name} conferencia"
256
+ update_diploma: "%{user_name} actualizó la configuración de diploma %{resource_name} conferencia"
218
257
  conference_speaker:
219
258
  create: "%{user_name} creó el altavoz de %{resource_name} en la conferencia %{space_name}"
220
259
  delete: "%{user_name} quitó el %{resource_name} altavoz de la conferencia %{space_name}"
@@ -223,6 +262,22 @@ es-PY:
223
262
  create: "%{user_name} invitados %{resource_name} a la %{space_name} conferencia"
224
263
  delete: "%{user_name} quitó el usuario %{resource_name} de la %{space_name} conferencia"
225
264
  update: "%{user_name} cambió el rol de %{resource_name} en la %{space_name} conferencia"
265
+ conferences:
266
+ conference_registration:
267
+ confirm: "%{user_name} ha confirmado su inscripción a la conferencia %{resource_name}"
268
+ partner:
269
+ create: "%{user_name} ha creado %{resource_name} en la conferencia %{space_name}"
270
+ delete: "%{user_name} ha eliminado al usuario %{resource_name} de la conferencia %{space_name}"
271
+ update: "%{user_name} ha actualizado %{resource_name} en la conferencia %{space_name}"
272
+ registration_type:
273
+ create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
274
+ publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
275
+ unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
276
+ update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
277
+ media_link:
278
+ create: "%{user_name} creó el enlace %{resource_name} media en la conferencia %{space_name}"
279
+ delete: "%{user_name} eliminó el %{resource_name} enlace de medios de la conferencia %{space_name}"
280
+ update: "%{user_name} actualizado el enlace de %{resource_name} media en la conferencia %{space_name}"
226
281
  conference_program:
227
282
  index:
228
283
  title: Programa
@@ -276,25 +331,42 @@ es-PY:
276
331
  one: Ha habido 1 registro.
277
332
  other: Ha habido %{count} registros.
278
333
  slug_help: 'Las barras URL se utilizan para generar las URL que apuntan a esta conferencia. Solo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
334
+ diplomas:
335
+ edit:
336
+ save: Salvar
337
+ title: Certificado de asistencia
279
338
  invite_join_conference_mailer:
280
339
  invite:
281
340
  decline: Rechazar invitación '%{conference_title}'
282
341
  invited_you_to_join_a_conference: "%{invited_by} ha invitado a unirse a una conferencia en %{application}. Puede rechazarlo o aceptarlo a través de los enlaces a continuación."
283
- join: Únete a la conferencia '%{conference_title}'
342
+ registration: Registro para '%{conference_title}'
284
343
  partners:
285
344
  index:
286
345
  title: Fogonadura
346
+ registration_types:
347
+ form:
348
+ select_conference_meetings: Seleccionar los encuentros de la conferencia
349
+ index:
350
+ title: Tipos de inscripción
351
+ send_conference_diploma_mailer:
352
+ diploma:
353
+ diploma_html: Encontrará el diploma para la conferencia <a href="%{url}">%{title}</a> en los anexos.
354
+ diploma_user:
355
+ attendance_verified_by: Asistencia verificada por
356
+ certificate_of_attendance: Certificado de asistencia
357
+ certificate_of_attendance_description: Esto es para certificar que <strong>%{user}</strong> ha asistido y participado en los <strong>%{title}</strong> celebrados en el <strong>%{location}</strong> del <strong>%{start} - %{end}</strong>
358
+ send_diploma:
359
+ error: Ha habido un problema al enviar los diplomas de la conferencia.
360
+ success: Diplomas de Conferencia enviados correctamente
287
361
  conference:
288
362
  registration_confirm:
289
363
  cancel: Cancelar
290
364
  confirm: Confirmar
291
365
  show:
366
+ free: Gratis
292
367
  going: Yendo
293
- join: Únete a la Conferencia
294
368
  no_slots_available: No hay espacios disponibles
295
- remaining_slots:
296
- one: 1 ranura restante
297
- other: "%{count} ranuras restantes"
369
+ registration: Registro
298
370
  conference_program:
299
371
  program_meeting:
300
372
  content: Contenido
@@ -307,7 +379,12 @@ es-PY:
307
379
  conference_registration_mailer:
308
380
  confirmation:
309
381
  confirmed_html: Su registro para la conferencia <a href="%{url}">%{title}</a> ha sido confirmado.
310
- details: Encontrará los detalles de la conferencia en el archivo adjunto.
382
+ details_1: 'Tu inscripción a la conferencia es de tipo %{registration_type}. Tiene un costo de %{price} y puedes asistir a los siguientes eventos:'
383
+ details_2: Encontrará los detalles de la conferencia en el archivo adjunto.
384
+ pending_validation:
385
+ confirmation_pending: Recibirás la confirmación en breve
386
+ details: 'Tu inscripción a la conferencia es de tipo %{registration_type} con un coste de %{price} y puede asistir a los siguientes eventos:'
387
+ pending_html: Tu inscripción a la conferencia <a href="%{url}">%{title}</a> está pendiente de confirmación.
311
388
  conference_registrations:
312
389
  create:
313
390
  invalid: Ha habido un problema al unirse a esta conferencia.
@@ -334,16 +411,12 @@ es-PY:
334
411
  speakers: Altavoces
335
412
  conferences:
336
413
  partners:
337
- collaborators: Colaboradores
338
- main_promotors: Promotores principales
414
+ collaborators: Fogonadura
415
+ main_promotors: Organizadores
339
416
  show:
340
- already_account: '¿Ya tienes una cuenta en decidim?'
341
417
  login_as: Has iniciado sesión como %{name} <%{email}>
342
418
  make_conference_registration: 'Haga su inscripción en la conferencia:'
343
- new_user: '¿Nuevo usuario?'
344
419
  register: Registro
345
- sign_in: Inicie sesión para registrarse en esta conferencia
346
- sign_up: Regístrese gratis en decidim para registrarse
347
420
  content_blocks:
348
421
  highlighted_conferences:
349
422
  name: Conferencias destacadas
@@ -353,14 +426,20 @@ es-PY:
353
426
  conference_registration_mailer:
354
427
  confirmation:
355
428
  subject: El registro de su conferencia ha sido confirmado
429
+ pending_validation:
430
+ subject: Tu inscripción a la conferencia está pendiente de confirmación
356
431
  invite_join_conference_mailer:
357
432
  invite:
358
433
  subject: Invitación para unirse a una conferencia
434
+ send_conference_diploma_mailer:
435
+ diploma:
436
+ subject: El diploma de su conferencia ha sido enviado.
359
437
  models:
360
438
  conference_invite:
361
439
  fields:
362
440
  email: Correo electrónico
363
441
  name: Nombre
442
+ registration_type: Tipo de inscripción
364
443
  sent_at: Enviado a
365
444
  status: Estado
366
445
  status:
@@ -371,6 +450,11 @@ es-PY:
371
450
  fields:
372
451
  email: Correo electrónico
373
452
  name: Nombre
453
+ registration_type: Tipo de inscripción
454
+ state: Estado
455
+ states:
456
+ confirmed: Confirmada
457
+ pending: Pendiente
374
458
  pages:
375
459
  home:
376
460
  highlighted_conferences:
@@ -383,6 +467,18 @@ es-PY:
383
467
  photos_list:
384
468
  show:
385
469
  related_photos: Las fotos
470
+ registration_types:
471
+ index:
472
+ choose_an_option: 'Elige tu tipo de inscripción:'
473
+ login_as: Has iniciado sesión como %{name} <%{email}>
474
+ register: Inscribirse
475
+ title: Tipos de inscripción
476
+ shared:
477
+ conference_user_login:
478
+ already_account: '¿Ya tienes una cuenta en decidim?'
479
+ new_user: '¿Nuevo usuario?'
480
+ sign_in: Inicie sesión para registrarse para la conferencia
481
+ sign_up: Crear una cuenta en decidim para registrarse para la conferencia
386
482
  show:
387
483
  details: Detalles
388
484
  introduction: Introducción
@@ -409,6 +505,10 @@ es-PY:
409
505
  votes_count: Votos
410
506
  events:
411
507
  conferences:
508
+ conference_registration_validation_pending:
509
+ notification_title: Su inscripción para la conferencia <a href="%{resource_url}">%{resource_title}</a> está pendiente de confirmación.
510
+ conference_registration_confirmed:
511
+ notification_title: Su registro para la conferencia <a href="%{resource_url}">%{resource_title}</a> ha sido confirmado.
412
512
  conference_registrations_over_percentage:
413
513
  email_intro: Las ranuras ocupadas por la conferencia "%{resource_title}" superan el %{percentage}%.
414
514
  email_outro: Recibió esta notificación porque usted es administrador del espacio participativo de la conferencia.
@@ -424,6 +524,11 @@ es-PY:
424
524
  email_outro: Recibió esta notificación porque está siguiendo la conferencia "%{resource_title}". Puedes dejar de seguirlo desde el enlace anterior.
425
525
  email_subject: La conferencia "%{resource_title}" ha habilitado los registros.
426
526
  notification_title: La conferencia <a href="%{resource_path}">%{resource_title}</a> ha permitido registros.
527
+ upcoming_conference:
528
+ email_intro: 'La conferencia "%{resource_title}" se lleva a cabo en 2 días. Puedes leer la descripción de su página:'
529
+ email_outro: Ha recibido esta notificación porque está siguiendo la conferencia "%{resource_title}". Puedes dejar de seguirlo desde el enlace anterior.
530
+ email_subject: '¡Se acerca la conferencia "%{resource_title}"!'
531
+ notification_title: La conferencia <a href="%{resource_path}">%{resource_title}</a> llegará en 2 días.
427
532
  log:
428
533
  value_types:
429
534
  conference_presenter:
@@ -440,6 +545,8 @@ es-PY:
440
545
  subject: Invitación para unirse a una conferencia
441
546
  layouts:
442
547
  decidim:
548
+ conference_hero:
549
+ register: Inscripción
443
550
  conference_widgets:
444
551
  show:
445
552
  take_part: Participar
@@ -460,5 +567,4 @@ es-PY:
460
567
  conference_partners_menu_item: Fogonadura
461
568
  conference_speaker_menu_item: Altavoces
462
569
  media: Medios de comunicación
463
- unfold: Desplegar
464
570
  venues: Sedes