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
@@ -44,11 +44,13 @@ gl:
44
44
  other: Conferenciantes de conferencias
45
45
  decidim/conference_user_role:
46
46
  one: Rol de usuario da conferencia
47
- other: Funcións do usuario da conferencia
47
+ other: Rol de usuario da conferencia
48
48
  decidim:
49
49
  admin:
50
50
  actions:
51
+ confirm: Confirmar
51
52
  new_conference: Nova conferencia
53
+ send_diplomas: Enviar diplomas
52
54
  conference_copies:
53
55
  new:
54
56
  copy: Copiar
@@ -61,6 +63,10 @@ gl:
61
63
  destroy:
62
64
  error: Produciuse un erro ao publicar esta conferencia.
63
65
  success: Conferencia inédita con éxito.
66
+ conference_registration:
67
+ confirm:
68
+ error: Produciuse un erro ao confirmar este rexistro da conferencia.
69
+ success: O rexistro da conferencia confirmouse con éxito.
64
70
  conference_speakers:
65
71
  create:
66
72
  error: Houbo un erro engadindo un altofalante para esta conferencia.
@@ -99,8 +105,6 @@ gl:
99
105
  create:
100
106
  error: Produciuse un erro ao crear unha nova conferencia.
101
107
  success: Conferencia creada con éxito.
102
- destroy:
103
- success: A conferencia eliminouse con éxito.
104
108
  edit:
105
109
  update: Actualización
106
110
  exports:
@@ -145,14 +149,17 @@ gl:
145
149
  attachments: Anexos
146
150
  categories: Categorías
147
151
  components: Compoñentes
148
- conference_admins: Administradores de conferencias
149
- conference_invites: Conferencia convida
150
- conference_registrations: Rexistros de conferencias
151
- conference_speakers: Conferenciantes de conferencias
152
+ conference_admins: Usuarios da conferencia
153
+ conference_invites: Invitacións
154
+ conference_speakers: Ponentes
155
+ diploma: Diploma
152
156
  info: Información
153
157
  media_links: Ligazóns multimedia
154
158
  moderations: Moderacións
155
159
  partners: Socios
160
+ registration_types: Tipos de Rexistro
161
+ registrations: Rexistros
162
+ user_registrations: Rexistros de usuarios
156
163
  models:
157
164
  conference:
158
165
  fields:
@@ -192,6 +199,14 @@ gl:
192
199
  types:
193
200
  collaborator: Colaborador
194
201
  main_promotor: Promotor principal
202
+ registration_type:
203
+ fields:
204
+ conference_meetings: Reunións de conferencias
205
+ price: Prezo
206
+ registrations_count: Contas de rexistro
207
+ title: Título
208
+ weight: Peso
209
+ name: Tipo de rexistro
195
210
  partners:
196
211
  create:
197
212
  error: Houbo un erro engadindo un compañeiro para esta conferencia.
@@ -207,14 +222,38 @@ gl:
207
222
  update:
208
223
  error: Houbo un erro actualizado por un compañeiro desta conferencia.
209
224
  success: O socio actualizouse con éxito para esta conferencia.
225
+ registration_type_publications:
226
+ create:
227
+ error: Produciuse un erro ao publicar este tipo de rexistro.
228
+ success: O tipo de rexistro publicouse con éxito.
229
+ destroy:
230
+ error: Produciuse un erro ao publicar este tipo de rexistro.
231
+ success: O tipo de rexistro non foi publicado con éxito.
232
+ registration_types:
233
+ create:
234
+ error: Produciuse un erro engadindo un tipo de rexistro para esta conferencia.
235
+ success: O tipo de rexistro engadiuse con éxito a esta conferencia.
236
+ destroy:
237
+ success: O tipo de rexistro eliminouse con éxito desta conferencia.
238
+ edit:
239
+ title: Actualizar o tipo de rexistro.
240
+ update: Actualización
241
+ new:
242
+ create: Crear
243
+ title: Novo tipo de rexistro
244
+ update:
245
+ error: Houbo un erro actualizado un tipo de rexistro para esta conferencia.
246
+ success: O tipo de rexistro actualizouse con éxito para esta conferencia.
210
247
  titles:
211
248
  conferences: Conferencias
212
249
  admin_log:
213
250
  conference:
214
251
  create: "%{user_name} creou a %{resource_name} conferencia"
215
252
  publish: "%{user_name} publicou a %{resource_name} conferencia"
253
+ send_conference_diplomas: "%{user_name} envía diplomas aos %{resource_name} usuarios da conferencia"
216
254
  unpublish: "%{user_name} inédita a %{resource_name} conferencia"
217
255
  update: "%{user_name} actualizou a %{resource_name} conferencia"
256
+ update_diploma: "%{user_name} actualizou a conferencia de configuración do diploma %{resource_name}"
218
257
  conference_speaker:
219
258
  create: "%{user_name} creou o %{resource_name} altofalante na %{space_name} conferencia"
220
259
  delete: "%{user_name} eliminou o %{resource_name} altofalante da %{space_name} conferencia"
@@ -223,6 +262,22 @@ gl:
223
262
  create: "%{user_name} invitados %{resource_name} á %{space_name} conferencias"
224
263
  delete: "%{user_name} eliminou o usuario %{resource_name} da %{space_name} conferencia"
225
264
  update: "%{user_name} cambiou o papel de %{resource_name} na %{space_name} conferencia"
265
+ conferences:
266
+ conference_registration:
267
+ confirm: "%{user_name} confirmou a inscrición na conferencia en %{resource_name} conferencia"
268
+ partner:
269
+ create: "%{user_name} creou %{resource_name} á %{space_name} conferencia"
270
+ delete: "%{user_name} eliminou o usuario %{resource_name} da %{space_name} conferencia"
271
+ update: "%{user_name} actualizouse %{resource_name} na %{space_name} conferencia"
272
+ registration_type:
273
+ create: "%{user_name} creou o %{resource_name} tipo de rexistro na %{space_name} conferencia"
274
+ publish: "%{user_name} publicou o %{resource_name} tipo de rexistro na %{space_name} conferencia"
275
+ unpublish: "%{user_name} inédita o %{resource_name} tipo de rexistro na %{space_name} conferencia"
276
+ update: "%{user_name} actualizou o tipo de rexistro %{resource_name} na conferencia %{space_name}"
277
+ media_link:
278
+ create: "%{user_name} creou a ligazón de %{resource_name} medio na %{space_name} conferencia"
279
+ delete: "%{user_name} eliminou a ligazón de %{resource_name} medio da %{space_name} conferencia"
280
+ update: "%{user_name} actualizou a %{resource_name} ligazón de medios na %{space_name} conferencia"
226
281
  conference_program:
227
282
  index:
228
283
  title: Programa
@@ -276,25 +331,42 @@ gl:
276
331
  one: Houbo 1 rexistro.
277
332
  other: Houbo %{count} rexistros.
278
333
  slug_help: 'As babosas de URL úsanse para xerar os URL que apuntan a esta conferencia. Só acepta letras, números e guións, e debe comezar cunha letra. Exemplo: %{url}'
334
+ diplomas:
335
+ edit:
336
+ save: Gardar
337
+ title: Diploma
279
338
  invite_join_conference_mailer:
280
339
  invite:
281
340
  decline: Declina a invitación '%{conference_title}'
282
341
  invited_you_to_join_a_conference: "%{invited_by} convidoute a unirse a unha conferencia en %{application}. Podes rexeitalo ou aceptalo a través das ligazóns a continuación."
283
- join: Únete á conferencia '%{conference_title}'
342
+ registration: Rexistro para '%{conference_title}'
284
343
  partners:
285
344
  index:
286
345
  title: Socios
346
+ registration_types:
347
+ form:
348
+ select_conference_meetings: Seleccionar reunións de conferencias
349
+ index:
350
+ title: Tipos de rexistro
351
+ send_conference_diploma_mailer:
352
+ diploma:
353
+ diploma_html: Atopará o diploma da conferencia <a href="%{url}">%{title}</a> nos anexos.
354
+ diploma_user:
355
+ attendance_verified_by: Asistencia verificada por
356
+ certificate_of_attendance: Certificado de asistencia
357
+ 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>
358
+ send_diploma:
359
+ error: Houbo un problema ao enviar os diplomas da 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: Indo
293
- join: Únete á conferencia
294
368
  no_slots_available: Non hai slots dispoñibles
295
- remaining_slots:
296
- one: 1 slot restante
297
- other: "%{count} slots restantes"
369
+ registration: Rexistro
298
370
  conference_program:
299
371
  program_meeting:
300
372
  content: Contido
@@ -307,7 +379,12 @@ gl:
307
379
  conference_registration_mailer:
308
380
  confirmation:
309
381
  confirmed_html: Inscríbase o rexistro da conferencia <a href="%{url}">%{title}</a>.
310
- details: Atoparás os detalles da conferencia no anexo.
382
+ details_1: 'Estás rexistrado na conferencia con %{registration_type} tipo. Ten un custo de %{price} e podes asistir aos seguintes eventos:'
383
+ details_2: Atoparás os detalles da conferencia no anexo.
384
+ pending_validation:
385
+ confirmation_pending: Recibirás a confirmación en breve
386
+ details: 'Rexistráronse en %{registration_type} tipo cun custo de %{price} e podes asistir aos seguintes eventos:'
387
+ pending_html: O teu rexistro para a conferencia <a href="%{url}">%{title}</a> está pendente de ser confirmado.
311
388
  conference_registrations:
312
389
  create:
313
390
  invalid: Houbo un problema ao participar nesta conferencia.
@@ -334,16 +411,12 @@ gl:
334
411
  speakers: Ponentes
335
412
  conferences:
336
413
  partners:
337
- collaborators: Colaboradores
338
- main_promotors: Principais promotores
414
+ collaborators: Socios
415
+ main_promotors: Organizadores
339
416
  show:
340
- already_account: Xa tes unha conta en decidir?
341
417
  login_as: Estás conectado como %{name} <%{email}>
342
418
  make_conference_registration: 'Fai a túa inscrición na conferencia:'
343
- new_user: Novo usuario?
344
419
  register: Rexistrarse
345
- sign_in: Iniciar sesión para rexistrarse nesta conferencia
346
- sign_up: Inscríbase de forma gratuita na decisión de rexistrarse
347
420
  content_blocks:
348
421
  highlighted_conferences:
349
422
  name: Conferencias destacadas
@@ -353,14 +426,20 @@ gl:
353
426
  conference_registration_mailer:
354
427
  confirmation:
355
428
  subject: O rexistro da túa conferencia foi confirmado
429
+ pending_validation:
430
+ subject: A inscrición da túa conferencia está pendente de confirmación
356
431
  invite_join_conference_mailer:
357
432
  invite:
358
433
  subject: Invitación para participar nunha conferencia
434
+ send_conference_diploma_mailer:
435
+ diploma:
436
+ subject: Enviouse o diploma da súa conferencia
359
437
  models:
360
438
  conference_invite:
361
439
  fields:
362
440
  email: Correo electrónico
363
441
  name: Nome
442
+ registration_type: Tipo de rexistro
364
443
  sent_at: Enviado en
365
444
  status: Estado
366
445
  status:
@@ -371,6 +450,11 @@ gl:
371
450
  fields:
372
451
  email: Correo electrónico
373
452
  name: Nome
453
+ registration_type: Tipo de rexistro
454
+ state: Estado
455
+ states:
456
+ confirmed: Confirmado
457
+ pending: Pendente
374
458
  pages:
375
459
  home:
376
460
  highlighted_conferences:
@@ -383,6 +467,18 @@ gl:
383
467
  photos_list:
384
468
  show:
385
469
  related_photos: Fotos
470
+ registration_types:
471
+ index:
472
+ choose_an_option: 'Elixe a túa opción de rexistro:'
473
+ login_as: Estás conectado como %{name} <%{email}>
474
+ register: Rexistrarse
475
+ title: Tipos de rexistro
476
+ shared:
477
+ conference_user_login:
478
+ already_account: Xa tes unha conta en decidir?
479
+ new_user: Novo usuario?
480
+ sign_in: Iniciar sesión para rexistrarse na conferencia
481
+ sign_up: Crea unha conta na que decidimos rexistrarte para a conferencia
386
482
  show:
387
483
  details: Detalles
388
484
  introduction: Introdución
@@ -409,6 +505,10 @@ gl:
409
505
  votes_count: Votos
410
506
  events:
411
507
  conferences:
508
+ conference_registration_validation_pending:
509
+ notification_title: O teu rexistro para a conferencia <a href="%{resource_url}">%{resource_title}</a> está pendente de ser confirmado.
510
+ conference_registration_confirmed:
511
+ notification_title: Inscríbase o rexistro da conferencia <a href="%{resource_url}">%{resource_title}</a>.
412
512
  conference_registrations_over_percentage:
413
513
  email_intro: Os slots ocupados por "%{resource_title}" ocupan máis do %{percentage}%.
414
514
  email_outro: Recibiches esta notificación porque es administrador do espazo participativo da conferencia.
@@ -424,6 +524,11 @@ gl:
424
524
  email_outro: Recibiches esta notificación porque estás seguindo a conferencia "%{resource_title}". Podes deixar de seguir desde a ligazón anterior.
425
525
  email_subject: A conferencia "%{resource_title}" habilitou as inscricións.
426
526
  notification_title: A conferencia <a href="%{resource_path}">%{resource_title}</a> habilitou as inscricións.
527
+ upcoming_conference:
528
+ email_intro: 'A conferencia "%{resource_title}" ten lugar en 2 días. Podes ler a descrición da súa páxina:'
529
+ email_outro: Recibiches esta notificación porque estás seguindo a conferencia "%{resource_title}". Podes deixar de seguir desde a ligazón anterior.
530
+ email_subject: A conferencia "%{resource_title}" está chegando!
531
+ notification_title: A conferencia <a href="%{resource_path}">%{resource_title}</a> chegará en 2 días.
427
532
  log:
428
533
  value_types:
429
534
  conference_presenter:
@@ -440,6 +545,8 @@ gl:
440
545
  subject: Invitación para participar nunha conferencia
441
546
  layouts:
442
547
  decidim:
548
+ conference_hero:
549
+ register: Rexistrarse
443
550
  conference_widgets:
444
551
  show:
445
552
  take_part: Tomar parte en
@@ -460,5 +567,4 @@ gl:
460
567
  conference_partners_menu_item: Socios
461
568
  conference_speaker_menu_item: Ponentes
462
569
  media: Medios de comunicación
463
- unfold: Despregar
464
570
  venues: Lugares
@@ -44,11 +44,13 @@ hu:
44
44
  other: Konferencia hangszórók
45
45
  decidim/conference_user_role:
46
46
  one: Konferencia felhasználói szerepkör
47
- other: Konferencia felhasználói szerepkörök
47
+ other: Konferencia felhasználói szerepkör
48
48
  decidim:
49
49
  admin:
50
50
  actions:
51
+ confirm: megerősít
51
52
  new_conference: Új konferencia
53
+ send_diplomas: Oklevél küldése
52
54
  conference_copies:
53
55
  new:
54
56
  copy: Másolat
@@ -61,6 +63,10 @@ hu:
61
63
  destroy:
62
64
  error: Hiba történt a konferencia közzétételének közzétételénél.
63
65
  success: A konferencia sikeresen közzétett.
66
+ conference_registration:
67
+ confirm:
68
+ error: Hiba történt a konferencia regisztráció során.
69
+ success: A konferencia regisztráció sikeresen megtörtént.
64
70
  conference_speakers:
65
71
  create:
66
72
  error: Hiba történt a konferencia hangszórójának hozzáadásával.
@@ -99,8 +105,6 @@ hu:
99
105
  create:
100
106
  error: Hiba történt egy új konferencia létrehozásakor.
101
107
  success: A konferencia sikeresen létrejött.
102
- destroy:
103
- success: A konferencia sikeresen törölve.
104
108
  edit:
105
109
  update: frissítés
106
110
  exports:
@@ -145,14 +149,17 @@ hu:
145
149
  attachments: Mellékletek
146
150
  categories: Kategóriák
147
151
  components: Alkatrészek
148
- conference_admins: Konferencia adminisztrátorok
149
- conference_invites: Konferenciahívások
150
- conference_registrations: Konferencia regisztrációk
151
- conference_speakers: Konferencia hangszórók
152
+ conference_admins: Konferencia felhasználók
153
+ conference_invites: Meghívottak
154
+ conference_speakers: Hangszórók
155
+ diploma: Diploma
152
156
  info: Info
153
157
  media_links: Média linkek
154
158
  moderations: moderálások
155
159
  partners: Partnerek
160
+ registration_types: Regisztrációs típusok
161
+ registrations: regisztrációk
162
+ user_registrations: Felhasználói regisztrálások
156
163
  models:
157
164
  conference:
158
165
  fields:
@@ -192,6 +199,14 @@ hu:
192
199
  types:
193
200
  collaborator: Együttműködő
194
201
  main_promotor: Fő promoter
202
+ registration_type:
203
+ fields:
204
+ conference_meetings: Konferencia-találkozók
205
+ price: Ár
206
+ registrations_count: A regisztrációk számítanak
207
+ title: Cím
208
+ weight: Súly
209
+ name: Regisztrációs típus
195
210
  partners:
196
211
  create:
197
212
  error: Hiba történt a konferencia partnerének hozzáadása esetén.
@@ -207,14 +222,38 @@ hu:
207
222
  update:
208
223
  error: Hiba történt a konferencia partnerének frissítéséhez.
209
224
  success: Partner sikeresen frissült a konferencia számára.
225
+ registration_type_publications:
226
+ create:
227
+ error: Hiba történt a regisztrációs típus közzétételében.
228
+ success: A regisztrációs típus sikeresen közzétett.
229
+ destroy:
230
+ error: Hiba történt a regisztrációs típus közzétételének közzétételénél.
231
+ success: A regisztrációs típus sikeresen be nem jelentett.
232
+ registration_types:
233
+ create:
234
+ error: Hiba történt a konferencia regisztrációs típusa hozzáadásával.
235
+ success: A regisztrációs típus sikeresen hozzá lett adva a konferenciához.
236
+ destroy:
237
+ success: A regisztrációs típus sikeresen el lett távolítva ebből a konferenciából.
238
+ edit:
239
+ title: A regisztrációs típus frissítése.
240
+ update: frissítés
241
+ new:
242
+ create: teremt
243
+ title: Új regisztrációs típus
244
+ update:
245
+ error: Hiba történt a konferencia regisztrációs típusának frissítéséhez.
246
+ success: A regisztrációs típus sikeresen frissült a konferencia számára.
210
247
  titles:
211
248
  conferences: Konferenciák
212
249
  admin_log:
213
250
  conference:
214
251
  create: "%{user_name} létrehozta az %{resource_name} konferenciát"
215
252
  publish: "%{user_name} közzétette az %{resource_name} konferenciát"
253
+ send_conference_diplomas: "%{user_name} okleveleket küld az %{resource_name} konferencia-felhasználónak"
216
254
  unpublish: "%{user_name} nem publikált az %{resource_name} konferencia"
217
255
  update: "%{user_name} frissítette az %{resource_name} konferenciát"
256
+ update_diploma: "%{user_name} frissítette a diploma konfiguráció %{resource_name} konferenciát"
218
257
  conference_speaker:
219
258
  create: "%{user_name} létrehozta az %{resource_name} hangszórót a %{space_name} konferencián"
220
259
  delete: "%{user_name} eltávolította az %{resource_name} hangsugárzót a %{space_name} konferenciából"
@@ -223,6 +262,22 @@ hu:
223
262
  create: "%{user_name} meghívott %{resource_name} a %{space_name} konferenciára"
224
263
  delete: "%{user_name} eltávolította a felhasználó %{resource_name} -et a %{space_name} konferenciából"
225
264
  update: "%{user_name} megváltoztatta az %{resource_name} szerepét a %{space_name} konferencián"
265
+ conferences:
266
+ conference_registration:
267
+ confirm: "%{user_name} megerősítette konferencia regisztrációját %{resource_name} konferencián"
268
+ partner:
269
+ create: "%{user_name} létre %{resource_name} a %{space_name} konferencia"
270
+ delete: "%{user_name} eltávolította a felhasználó %{resource_name} -et a %{space_name} konferenciából"
271
+ update: "%{user_name} frissített %{resource_name} a %{space_name} konferencián"
272
+ registration_type:
273
+ create: "%{user_name} létrehozta az %{resource_name} regisztrációs típust a %{space_name} konferencián"
274
+ publish: "%{user_name} közzétette az %{resource_name} regisztrációs típust a %{space_name} konferencián"
275
+ unpublish: "%{user_name} az %{resource_name} regisztrációs típus közzétételének meg nem jelentése a %{space_name} konferencián"
276
+ update: "%{user_name} frissítette az %{resource_name} regisztrációs típust a %{space_name} konferencián"
277
+ media_link:
278
+ create: "%{user_name} létrehozta az %{resource_name} média linket a %{space_name} konferencián"
279
+ delete: "%{user_name} eltávolította az %{resource_name} média linket a %{space_name} konferenciából"
280
+ update: "%{user_name} frissítette az %{resource_name} médiakapcsolatot a %{space_name} konferencián"
226
281
  conference_program:
227
282
  index:
228
283
  title: Program
@@ -276,25 +331,42 @@ hu:
276
331
  one: 1 regisztráció volt.
277
332
  other: '%{count} regisztráció volt.'
278
333
  slug_help: 'Az URL-csigákat használják az e konferenciára utaló URL-ek előállításához. Csak leveleket, számokat és kötőjeleket fogad el, és betűvel kell kezdenie. Példa: %{url}'
334
+ diplomas:
335
+ edit:
336
+ save: Mentés
337
+ title: Diploma
279
338
  invite_join_conference_mailer:
280
339
  invite:
281
340
  decline: A "%{conference_title}" meghívása
282
341
  invited_you_to_join_a_conference: "%{invited_by} meghívta Önt, hogy csatlakozzon egy konferenciához %{application}kor. Az alábbi linkeken keresztül visszautasíthatja vagy elfogadhatja."
283
- join: Csatlakozzon a "%{conference_title}"
342
+ registration: Regisztráció a '%{conference_title}'
284
343
  partners:
285
344
  index:
286
345
  title: Partnerek
346
+ registration_types:
347
+ form:
348
+ select_conference_meetings: Válasszon konferencia-találkozókat
349
+ index:
350
+ title: Regisztrációs típusok
351
+ send_conference_diploma_mailer:
352
+ diploma:
353
+ diploma_html: Megtalálja a <a href="%{url}">%{title}</a> konferencia diplomáját a mellékletekhez.
354
+ diploma_user:
355
+ attendance_verified_by: Látogatás által ellenőrzött
356
+ certificate_of_attendance: Tanúsítvány a részvételről
357
+ certificate_of_attendance_description: Ez azt igazolja, hogy <strong>%{user}</strong> részt vett és részt vett a <strong>%{title}</strong> ben a <strong>%{location}</strong> , <strong>%{start} - %{end}</strong>
358
+ send_diploma:
359
+ error: Probléma merült fel a konferencia diplomák küldésekor.
360
+ success: Konferencia diplomák helyesen elküldve
287
361
  conference:
288
362
  registration_confirm:
289
363
  cancel: Megszünteti
290
364
  confirm: megerősít
291
365
  show:
366
+ free: Ingyenes
292
367
  going: Haladó
293
- join: Csatlakozzon a konferenciához
294
368
  no_slots_available: Nincs szabad hely
295
- remaining_slots:
296
- one: 1 hely marad
297
- other: "%{count} hely marad"
369
+ registration: Bejegyzés
298
370
  conference_program:
299
371
  program_meeting:
300
372
  content: Tartalom
@@ -307,7 +379,12 @@ hu:
307
379
  conference_registration_mailer:
308
380
  confirmation:
309
381
  confirmed_html: A <a href="%{url}">%{title}</a> konferencia regisztrációja megerősítést nyert.
310
- details: A konferencia részleteit megtalálja a mellékletben.
382
+ details_1: 'Regisztrálva van a konferencia %{registration_type} típusára. Az ára %{price} és a következő eseményeken vehet részt:'
383
+ details_2: A konferencia részleteit megtalálja a mellékletben.
384
+ pending_validation:
385
+ confirmation_pending: Rövidesen megkapja a visszaigazolást
386
+ details: 'Ön már regisztrált %{registration_type} típusú melyek költsége %{price} és részt vehet a következő eseményekre:'
387
+ pending_html: A <a href="%{url}">%{title}</a> konferencia regisztrációja függőben van.
311
388
  conference_registrations:
312
389
  create:
313
390
  invalid: Probléma merült fel a konferencián.
@@ -334,16 +411,12 @@ hu:
334
411
  speakers: Hangszórók
335
412
  conferences:
336
413
  partners:
337
- collaborators: Együttműködők
338
- main_promotors: Fő promóterek
414
+ collaborators: partnerek
415
+ main_promotors: szervezők
339
416
  show:
340
- already_account: Van már fiókja decidimben?
341
- login_as: A bejelentkezés %{name} <%{email}>
417
+ login_as: '%{name} <%{email}> -ként jelentkezett be'
342
418
  make_conference_registration: 'Regisztráljon a konferencián:'
343
- new_user: Új felhasználó?
344
419
  register: Regisztráció
345
- sign_in: Jelentkezzen be ezen a konferencián
346
- sign_up: Regisztrálj ingyen decidim regisztrációhoz
347
420
  content_blocks:
348
421
  highlighted_conferences:
349
422
  name: Kiemelt konferenciák
@@ -353,14 +426,20 @@ hu:
353
426
  conference_registration_mailer:
354
427
  confirmation:
355
428
  subject: A konferencia regisztrációja megerősítést nyert
429
+ pending_validation:
430
+ subject: A konferencia regisztrációja függőben van, hogy megerősítést nyerjen
356
431
  invite_join_conference_mailer:
357
432
  invite:
358
433
  subject: Meghívás egy konferenciára való belépéshez
434
+ send_conference_diploma_mailer:
435
+ diploma:
436
+ subject: A konferencia oklevelét elküldték
359
437
  models:
360
438
  conference_invite:
361
439
  fields:
362
440
  email: Email
363
441
  name: Név
442
+ registration_type: Regisztrációs típus
364
443
  sent_at: Elküldve
365
444
  status: Állapot
366
445
  status:
@@ -371,6 +450,11 @@ hu:
371
450
  fields:
372
451
  email: Email
373
452
  name: Név
453
+ registration_type: Regisztrációs típus
454
+ state: Állapot
455
+ states:
456
+ confirmed: Megerősített
457
+ pending: Függőben levő
374
458
  pages:
375
459
  home:
376
460
  highlighted_conferences:
@@ -383,6 +467,18 @@ hu:
383
467
  photos_list:
384
468
  show:
385
469
  related_photos: Fotók
470
+ registration_types:
471
+ index:
472
+ choose_an_option: 'Válassza ki a regisztrációs lehetőséget:'
473
+ login_as: '%{name} <%{email}> -ként jelentkezett be'
474
+ register: Regisztráció
475
+ title: Regisztrációs típusok
476
+ shared:
477
+ conference_user_login:
478
+ already_account: Van már fiókja decidimben?
479
+ new_user: Új felhasználó?
480
+ sign_in: Jelentkezzen be a konferencia regisztrálásához
481
+ sign_up: Hozzon létre egy fiókot decidimben, hogy regisztráljon a konferenciára
386
482
  show:
387
483
  details: Részletek
388
484
  introduction: Bevezetés
@@ -409,6 +505,10 @@ hu:
409
505
  votes_count: szavazatok
410
506
  events:
411
507
  conferences:
508
+ conference_registration_validation_pending:
509
+ notification_title: A <a href="%{resource_url}">%{resource_title}</a> konferencia regisztrációja függőben van.
510
+ conference_registration_confirmed:
511
+ notification_title: A <a href="%{resource_url}">%{resource_title}</a> konferencia regisztrációja megerősítést nyert.
412
512
  conference_registrations_over_percentage:
413
513
  email_intro: A "%{resource_title}" konferencia foglalt rések több mint %{percentage}%.
414
514
  email_outro: Ezt az értesítést megkaptuk, mert Ön a konferencia részvételi helyének adminisztrátora.
@@ -424,6 +524,11 @@ hu:
424
524
  email_outro: Ezt az értesítést megkapta, mert a "%{resource_title}" konferenciát követi. Leiratkozhat az előző linkről.
425
525
  email_subject: A "%{resource_title}" konferencia lehetővé tette a regisztrációt.
426
526
  notification_title: A <a href="%{resource_path}">%{resource_title}</a> konferencia engedélyezte a regisztrációkat.
527
+ upcoming_conference:
528
+ email_intro: 'A "%{resource_title}" konferencia 2 nap alatt zajlik. A leírás az oldaláról olvasható:'
529
+ email_outro: Ezt az értesítést megkapta, mert a "%{resource_title}" konferenciát követi. Leiratkozhat az előző linkről.
530
+ email_subject: A "%{resource_title}" konferencia jön!
531
+ notification_title: A <a href="%{resource_path}">%{resource_title}</a> konferencia 2 nap alatt érkezik.
427
532
  log:
428
533
  value_types:
429
534
  conference_presenter:
@@ -440,6 +545,8 @@ hu:
440
545
  subject: Meghívás egy konferenciára való belépéshez
441
546
  layouts:
442
547
  decidim:
548
+ conference_hero:
549
+ register: Regisztráció
443
550
  conference_widgets:
444
551
  show:
445
552
  take_part: Részt vesz
@@ -460,5 +567,4 @@ hu:
460
567
  conference_partners_menu_item: Partnerek
461
568
  conference_speaker_menu_item: Hangszórók
462
569
  media: Média
463
- unfold: kibontakozik
464
570
  venues: helyszínek