decidim-meetings 0.23.1 → 0.24.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_meetings_manifest.js +1 -0
  3. data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +47 -0
  4. data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +45 -0
  5. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/elements.erb +16 -0
  6. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/heading.erb +1 -0
  7. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings_cell.rb +27 -0
  8. data/app/cells/decidim/meetings/join_meeting_button/show.erb +7 -0
  9. data/app/cells/decidim/meetings/meeting_activity_cell.rb +13 -5
  10. data/app/cells/decidim/meetings/meeting_cell.rb +2 -4
  11. data/app/cells/decidim/meetings/meeting_highlighted_list_item/show.erb +21 -0
  12. data/app/cells/decidim/meetings/meeting_highlighted_list_item_cell.rb +10 -0
  13. data/app/cells/decidim/meetings/meeting_m/address.erb +5 -1
  14. data/app/cells/decidim/meetings/meeting_m_cell.rb +2 -0
  15. data/app/cells/decidim/meetings/meeting_url/show.erb +15 -0
  16. data/app/cells/decidim/meetings/meeting_url_cell.rb +17 -0
  17. data/app/cells/decidim/meetings/reported_content/show.erb +3 -0
  18. data/app/cells/decidim/meetings/reported_content_cell.rb +13 -0
  19. data/app/commands/decidim/meetings/admin/create_meeting.rb +5 -0
  20. data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +1 -1
  21. data/app/commands/decidim/meetings/admin/update_meeting.rb +5 -0
  22. data/app/commands/decidim/meetings/admin/validate_registration_code.rb +2 -0
  23. data/app/commands/decidim/meetings/close_meeting.rb +66 -0
  24. data/app/commands/decidim/meetings/create_meeting.rb +7 -1
  25. data/app/commands/decidim/meetings/leave_meeting.rb +2 -2
  26. data/app/commands/decidim/meetings/update_meeting.rb +8 -1
  27. data/app/controllers/decidim/meetings/admin/application_controller.rb +1 -1
  28. data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -2
  29. data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -2
  30. data/app/controllers/decidim/meetings/meeting_closes_controller.rb +43 -0
  31. data/app/controllers/decidim/meetings/meetings_controller.rb +10 -6
  32. data/app/forms/decidim/meetings/admin/close_meeting_form.rb +4 -4
  33. data/app/forms/decidim/meetings/admin/meeting_form.rb +62 -4
  34. data/app/forms/decidim/meetings/close_meeting_form.rb +31 -0
  35. data/app/forms/decidim/meetings/meeting_form.rb +71 -3
  36. data/app/helpers/decidim/meetings/application_helper.rb +20 -0
  37. data/app/helpers/decidim/meetings/map_helper.rb +1 -1
  38. data/app/models/decidim/meetings/agenda_item.rb +1 -1
  39. data/app/models/decidim/meetings/meeting.rb +95 -8
  40. data/app/permissions/decidim/meetings/permissions.rb +12 -2
  41. data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +2 -2
  42. data/app/presenters/decidim/meetings/meeting_presenter.rb +33 -0
  43. data/app/services/decidim/meetings/meeting_search.rb +20 -0
  44. data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +1 -1
  45. data/app/views/decidim/meetings/admin/invites/index.html.erb +1 -1
  46. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +31 -1
  47. data/app/views/decidim/meetings/admin/meetings/edit.html.erb +2 -2
  48. data/app/views/decidim/meetings/admin/meetings/index.html.erb +23 -1
  49. data/app/views/decidim/meetings/admin/meetings/new.html.erb +2 -2
  50. data/app/views/decidim/meetings/admin/minutes/edit.html.erb +1 -1
  51. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +20 -18
  52. data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -0
  53. data/app/views/decidim/meetings/directory/meetings/index.js.erb +0 -3
  54. data/app/views/decidim/meetings/meeting_closes/_form.html.erb +7 -0
  55. data/app/views/decidim/meetings/meeting_closes/edit.html.erb +25 -0
  56. data/app/views/decidim/meetings/meeting_closes/proposals_picker.html.erb +1 -0
  57. data/app/views/decidim/meetings/meetings/_filters.html.erb +6 -0
  58. data/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +1 -1
  59. data/app/views/decidim/meetings/meetings/_form.html.erb +36 -2
  60. data/app/views/decidim/meetings/meetings/_online_meeting_link.html.erb +11 -0
  61. data/app/views/decidim/meetings/meetings/edit.html.erb +1 -1
  62. data/app/views/decidim/meetings/meetings/index.js.erb +0 -3
  63. data/app/views/decidim/meetings/meetings/new.html.erb +1 -1
  64. data/app/views/decidim/meetings/meetings/show.html.erb +31 -25
  65. data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +3 -1
  66. data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -1
  67. data/config/locales/ar.yml +0 -7
  68. data/config/locales/ca.yml +48 -9
  69. data/config/locales/cs.yml +52 -13
  70. data/config/locales/de.yml +112 -73
  71. data/config/locales/el.yml +0 -10
  72. data/config/locales/en.yml +48 -9
  73. data/config/locales/es-MX.yml +47 -9
  74. data/config/locales/es-PY.yml +47 -9
  75. data/config/locales/es.yml +47 -9
  76. data/config/locales/eu.yml +0 -7
  77. data/config/locales/fi-plain.yml +46 -7
  78. data/config/locales/fi.yml +179 -140
  79. data/config/locales/fr-CA.yml +48 -9
  80. data/config/locales/fr.yml +50 -11
  81. data/config/locales/gl.yml +0 -7
  82. data/config/locales/hu.yml +0 -10
  83. data/config/locales/id-ID.yml +0 -7
  84. data/config/locales/is-IS.yml +0 -7
  85. data/config/locales/it.yml +0 -9
  86. data/config/locales/ja.yml +0 -9
  87. data/config/locales/lv.yml +0 -10
  88. data/config/locales/nl.yml +44 -8
  89. data/config/locales/no.yml +23 -11
  90. data/config/locales/pl.yml +54 -16
  91. data/config/locales/pt-BR.yml +0 -7
  92. data/config/locales/pt.yml +0 -9
  93. data/config/locales/ro-RO.yml +0 -9
  94. data/config/locales/ru.yml +0 -7
  95. data/config/locales/si-LK.yml +1 -0
  96. data/config/locales/sk.yml +0 -10
  97. data/config/locales/sv.yml +11 -9
  98. data/config/locales/sw-KE.yml +1 -0
  99. data/config/locales/tr-TR.yml +196 -97
  100. data/config/locales/uk.yml +0 -7
  101. data/config/locales/zh-CN.yml +0 -9
  102. data/db/migrate/20180809134748_add_upcoming_events_as_content_block.rb +1 -1
  103. data/db/migrate/20201006140511_add_online_meeting_url.rb +7 -0
  104. data/db/migrate/20201009124057_add_type_of_meeting.rb +7 -0
  105. data/db/migrate/20201016112641_add_registration_type_and_url_to_meetings.rb +19 -0
  106. data/db/migrate/20201111133246_add_salt_to_decidim_meetings.rb +8 -0
  107. data/lib/decidim/api/agenda_item_type.rb +22 -0
  108. data/lib/decidim/api/agenda_type.rb +19 -0
  109. data/lib/decidim/api/linked_resources_interface.rb +7 -6
  110. data/lib/decidim/api/meeting_type.rb +63 -0
  111. data/lib/decidim/api/meetings_type.rb +26 -0
  112. data/lib/decidim/api/minutes_type.rb +20 -0
  113. data/{app/types/decidim/meetings → lib/decidim/api}/service_type.rb +4 -4
  114. data/lib/decidim/api/services_interface.rb +3 -3
  115. data/lib/decidim/meetings.rb +1 -1
  116. data/lib/decidim/meetings/api.rb +6 -0
  117. data/lib/decidim/meetings/component.rb +53 -23
  118. data/lib/decidim/meetings/engine.rb +3 -17
  119. data/lib/decidim/meetings/test/factories.rb +16 -3
  120. data/lib/decidim/meetings/version.rb +1 -1
  121. metadata +49 -43
  122. data/app/types/decidim/meetings/agenda_item_type.rb +0 -28
  123. data/app/types/decidim/meetings/agenda_type.rb +0 -25
  124. data/app/types/decidim/meetings/meeting_type.rb +0 -65
  125. data/app/types/decidim/meetings/meetings_type.rb +0 -32
  126. data/app/types/decidim/meetings/minutes_type.rb +0 -26
  127. data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_meetings.html.erb +0 -15
  128. data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +0 -10
@@ -29,9 +29,7 @@ el:
29
29
  title: Τίτλος
30
30
  transparent: Διαφανής
31
31
  minutes:
32
- audio_url: Διεύθυνση url ήχου
33
32
  description: Περιγραφή
34
- video_url: Διεύθυνση url βίντεο
35
33
  visible: Είναι ορατό
36
34
  errors:
37
35
  models:
@@ -237,7 +235,6 @@ el:
237
235
  form:
238
236
  address_help: 'Διεύθυνση: χρησιμοποιείται από το Geocoder για τον εντοπισμό της τοποθεσίας'
239
237
  location_help: 'Τοποθεσία: μήνυμα που απευθύνεται στους χρήστες, που υποδηλώνει το σημείο συνάντησης στο'
240
- location_hints_help: 'Υποδείξεις τοποθεσίας: πρόσθετες πληροφορίες. Παράδειγμα: το δάπεδο του κτιρίου'
241
238
  index:
242
239
  title: Συσκέψεις
243
240
  new:
@@ -351,8 +348,6 @@ el:
351
348
  filter: Φίλτρο
352
349
  filter_by: Φιλτράρισμα κατά
353
350
  unfold: Αποκάλυψη
354
- form:
355
- location_hints_help: 'Υποδείξεις τοποθεσίας: πρόσθετες πληροφορίες. Παράδειγμα: το δάπεδο του κτιρίου'
356
351
  meeting_minutes:
357
352
  meeting_minutes: Πρακτικά σύσκεψης
358
353
  related_information: Σχετικές πληροφορίες
@@ -424,11 +419,6 @@ el:
424
419
  description: Αριθμός συσκέψεων που δημιουργήθηκαν
425
420
  object: συσκέψεις
426
421
  title: Συσκέψεις
427
- participatory_processes:
428
- participatory_process_groups:
429
- highlighted_meetings:
430
- past_meetings: Προηγούμενες συσκέψεις
431
- upcoming_meetings: Προσεχείς συσκέψεις
432
422
  participatory_spaces:
433
423
  highlighted_meetings:
434
424
  past_meetings: Προηγούμενες συσκέψεις
@@ -22,19 +22,22 @@ en:
22
22
  end_time: End Time
23
23
  location: Location
24
24
  location_hints: Location hints
25
+ online_meeting_url: Online meeting URL
25
26
  organizer_gid: Create as
26
27
  organizer_id: Organizer
27
28
  private_meeting: Private meeting
28
29
  registration_form_enabled: Registration form enabled
29
30
  registration_terms: Registration terms
31
+ registration_url: Registration URL
30
32
  registrations_enabled: Registrations enabled
31
33
  start_time: Start Time
32
34
  title: Title
33
35
  transparent: Transparent
36
+ type_of_meeting: Type
34
37
  minutes:
35
- audio_url: Audio url
38
+ audio_url: Audio URL
36
39
  description: Description
37
- video_url: Video url
40
+ video_url: Video URL
38
41
  visible: Is visible
39
42
  errors:
40
43
  models:
@@ -88,9 +91,11 @@ en:
88
91
  creation_enabled_for_participants: Participants can create meetings
89
92
  default_registration_terms: Default registration terms
90
93
  enable_pads_creation: Enable pads creation
94
+ registration_code_enabled: Registration code enabled
91
95
  resources_permissions_enabled: Actions permissions can be set for each meeting
92
96
  scope_id: Scope
93
97
  scopes_enabled: Scopes enabled
98
+ terms_and_conditions_url_for_meeting_creators: Terms and conditions URL for meeting creators
94
99
  step:
95
100
  announcement: Announcement
96
101
  comments_blocked: Comments blocked
@@ -203,6 +208,7 @@ en:
203
208
  invalid: There was a problem updating this agenda
204
209
  success: Agenda successfully updated
205
210
  exports:
211
+ meeting_comments: Comments
206
212
  meetings: Meetings
207
213
  registrations: Registrations
208
214
  invite_join_meeting_mailer:
@@ -250,11 +256,18 @@ en:
250
256
  other: The meeting cannot be destroyed because it has %{count} proposals associated to it
251
257
  success: Meeting successfully deleted
252
258
  edit:
259
+ title: Edit meeting
253
260
  update: Update
254
261
  form:
255
262
  address_help: 'Address: used by Geocoder to find the location'
263
+ available_slots_help: Leave it to 0 if you have unlimited slots available
264
+ disclaimer: 'Disclaimer: By using an external registration system, you''re aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
256
265
  location_help: 'Location: message directed to the users implying the spot to meet at'
257
- location_hints_help: 'Location hints: additional info. Example: the floor of the building'
266
+ location_hints_help: 'Location hints: additional info. Example: the floor of the building if it is an in-person meeting, or the meeting password if it is an online meeting with restricted access.'
267
+ online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
268
+ registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
269
+ select_a_meeting_type: Please select a meeting type
270
+ select_a_registration_type: Please select a registration type
258
271
  index:
259
272
  title: Meetings
260
273
  new:
@@ -278,6 +291,7 @@ en:
278
291
  invalid: There was a problem creating this minutes
279
292
  success: Minutes successfully created
280
293
  edit:
294
+ title: Edit minutes
281
295
  update: Update
282
296
  new:
283
297
  create: Create
@@ -348,6 +362,7 @@ en:
348
362
  space_type: Participatory space
349
363
  upcoming: Upcoming
350
364
  last_activity:
365
+ meeting_updated_at_html: "<span>Meeting updated at %{link}</span>"
351
366
  new_meeting_at_html: "<span>New meeting at %{link}</span>"
352
367
  mailer:
353
368
  invite_join_meeting_mailer:
@@ -358,6 +373,11 @@ en:
358
373
  subject: Your meeting's registration has been confirmed
359
374
  meeting:
360
375
  not_allowed: You are not allowed to view this meeting
376
+ meeting_closes:
377
+ edit:
378
+ back: Back
379
+ close: Close meeting
380
+ title: Close meeting
361
381
  meetings:
362
382
  count:
363
383
  meetings_count:
@@ -371,12 +391,15 @@ en:
371
391
  title: Edit Your Meeting
372
392
  update: Update
373
393
  filters:
394
+ activity: My activity
395
+ all: All
374
396
  category: Category
375
397
  date: Date
376
398
  date_values:
377
399
  all: All
378
400
  past: Past
379
401
  upcoming: Upcoming
402
+ my_meetings: My meetings
380
403
  origin: Origin
381
404
  origin_values:
382
405
  all: All
@@ -385,6 +408,12 @@ en:
385
408
  user_groups: Groups
386
409
  scope: Scope
387
410
  search: Search
411
+ type: Type
412
+ type_values:
413
+ all: All
414
+ hybrid: Both
415
+ in_person: In-person
416
+ online: Online
388
417
  filters_small_view:
389
418
  close_modal: Close modal
390
419
  filter: Filter
@@ -392,10 +421,16 @@ en:
392
421
  unfold: Unfold
393
422
  form:
394
423
  address_help: 'Address: used by Geocoder to find the location'
424
+ available_slots_help: Leave it to 0 if you have unlimited slots available
395
425
  create_as: Create meeting as
426
+ disclaimer: 'Disclaimer: By using an external registration system, you''re aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
396
427
  location_help: 'Location: message directed to the users implying the spot to meet at'
397
- location_hints_help: 'Location hints: additional info. Example: the floor of the building'
428
+ location_hints_help: 'Location hints: additional info. Example: the floor of the building if it is an in-person meeting, or the meeting password if it is an online meeting with restricted access.'
429
+ online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
430
+ registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
398
431
  select_a_category: Please select a category
432
+ select_a_meeting_type: Please select a meeting type
433
+ select_a_registration_type: Please select a registration type
399
434
  index:
400
435
  new_meeting: New meeting
401
436
  meeting_minutes:
@@ -414,6 +449,7 @@ en:
414
449
  show:
415
450
  attendees: Attendees count
416
451
  back: Back to list
452
+ close_meeting: Close meeting
417
453
  contributions: Contributions count
418
454
  date: Date
419
455
  edit_meeting: Edit meeting
@@ -460,6 +496,10 @@ en:
460
496
  confirmed_html: Your registration for the meeting <a href="%{url}">%{title}</a> has been confirmed.
461
497
  details: You will find the meeting's details in the attachment.
462
498
  registration_code: Your registration code is %{code}.
499
+ registration_type:
500
+ on_different_platform: On a different platform
501
+ on_this_platform: On this platform
502
+ registration_disabled: Registration disabled
463
503
  registrations:
464
504
  create:
465
505
  invalid: There was a problem joining this meeting.
@@ -470,6 +510,10 @@ en:
470
510
  destroy:
471
511
  invalid: There was a problem leaving this meeting.
472
512
  success: You have left the meeting successfully.
513
+ type_of_meeting:
514
+ hybrid: Both
515
+ in_person: In person
516
+ online: Online
473
517
  types:
474
518
  private_meeting: Private meeting
475
519
  transparent: Transparent
@@ -480,11 +524,6 @@ en:
480
524
  description: Number of meetings created
481
525
  object: meetings
482
526
  title: Meetings
483
- participatory_processes:
484
- participatory_process_groups:
485
- highlighted_meetings:
486
- past_meetings: Past meetings
487
- upcoming_meetings: Upcoming meetings
488
527
  participatory_spaces:
489
528
  highlighted_meetings:
490
529
  past_meetings: Past meetings
@@ -21,19 +21,22 @@ es-MX:
21
21
  end_time: Hora de finalización
22
22
  location: Ubicación
23
23
  location_hints: Pistas de ubicación
24
+ online_meeting_url: URL del encuentro online
24
25
  organizer_gid: Crear como
25
26
  organizer_id: Organizador
26
27
  private_meeting: Encuentro privado
27
28
  registration_form_enabled: Formulario de inscripción habilitado
28
29
  registration_terms: Términos y condiciones de inscripción
30
+ registration_url: URL de inscripción
29
31
  registrations_enabled: Inscripciones abiertas
30
32
  start_time: Hora de inicio
31
33
  title: Título
32
34
  transparent: Transparente
35
+ type_of_meeting: Tipo
33
36
  minutes:
34
- audio_url: URL del audio
37
+ audio_url: URL de audio
35
38
  description: Descripción
36
- video_url: URL del vídeo
39
+ video_url: URL de video
37
40
  visible: Es visible
38
41
  errors:
39
42
  models:
@@ -87,9 +90,11 @@ es-MX:
87
90
  creation_enabled_for_participants: Las participantes pueden crear encuentros
88
91
  default_registration_terms: Términos de registro predeterminados
89
92
  enable_pads_creation: Habilitar la creación de pads
93
+ registration_code_enabled: Código de inscripción activado
90
94
  resources_permissions_enabled: Se pueden establecer permisos de acciones para cada encuentro
91
95
  scope_id: Ámbito
92
96
  scopes_enabled: Ámbitos habilitados
97
+ terms_and_conditions_url_for_meeting_creators: URL de términos y condiciones para las creadoras de encuentros
93
98
  step:
94
99
  announcement: Anuncio
95
100
  comments_blocked: Comentarios bloqueados
@@ -202,6 +207,7 @@ es-MX:
202
207
  invalid: Ha habido un problema al actualizar el orden del día
203
208
  success: Orden del día actualizado correctamente
204
209
  exports:
210
+ meeting_comments: Comentarios
205
211
  meetings: Reuniones
206
212
  registrations: Inscripciones
207
213
  invite_join_meeting_mailer:
@@ -249,11 +255,18 @@ es-MX:
249
255
  other: El encuentro no se puede eliminar porque tiene %{count} propuestas asociadas
250
256
  success: El encuentro se ha eliminado correctamente
251
257
  edit:
258
+ title: Editar encuentro
252
259
  update: Actualizar
253
260
  form:
254
261
  address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
262
+ available_slots_help: Déjalo a 0 si tienes espacio ilimitado disponible
263
+ disclaimer: 'Descargo de responsabilidad: Mediante el uso de un sistema de inscripción externo, aceptas que los organizadores de %{organization} no son responsables de los datos proporcionados por los usuarios al servicio externo.'
255
264
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
256
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
265
+ location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
266
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
267
+ registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
268
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
269
+ select_a_registration_type: Por favor, seleccione un tipo de inscripción
257
270
  index:
258
271
  title: Encuentros
259
272
  new:
@@ -277,6 +290,7 @@ es-MX:
277
290
  invalid: Ha habido un problema al crear el acta
278
291
  success: Acta creada con éxito
279
292
  edit:
293
+ title: Editar actas
280
294
  update: Actualizar
281
295
  new:
282
296
  create: Crear
@@ -357,6 +371,11 @@ es-MX:
357
371
  subject: La inscripción a tu encuentro ha sido confirmada
358
372
  meeting:
359
373
  not_allowed: No puedes ver esta reunión
374
+ meeting_closes:
375
+ edit:
376
+ back: Atrás
377
+ close: Crear encuentro
378
+ title: Cerrar el encuentro
360
379
  meetings:
361
380
  count:
362
381
  meetings_count:
@@ -370,12 +389,15 @@ es-MX:
370
389
  title: Editar el encuentro
371
390
  update: Actualizar
372
391
  filters:
392
+ activity: Mi actividad
393
+ all: Todos
373
394
  category: Categoría
374
395
  date: Fecha
375
396
  date_values:
376
397
  all: Todas
377
398
  past: Pasadas
378
399
  upcoming: Próximas
400
+ my_meetings: Mis encuentros
379
401
  origin: Origen
380
402
  origin_values:
381
403
  all: Todos
@@ -384,6 +406,12 @@ es-MX:
384
406
  user_groups: Grupos
385
407
  scope: Ámbito
386
408
  search: Buscar
409
+ type: Tipo
410
+ type_values:
411
+ all: Todos
412
+ hybrid: Ambos
413
+ in_person: Presencial
414
+ online: Online
387
415
  filters_small_view:
388
416
  close_modal: Cerrar ventana
389
417
  filter: Filtrar
@@ -391,10 +419,16 @@ es-MX:
391
419
  unfold: Desplegar
392
420
  form:
393
421
  address_help: 'Dirección: que utilizará Geocoder para encontrar la ubicación'
422
+ available_slots_help: Déjalo a 0 si tienes espacio ilimitado disponible
394
423
  create_as: Crear encuentro como
424
+ disclaimer: 'Descargo de responsabilidad: Mediante el uso de un sistema de inscripción externo, aceptas que los organizadores de %{organization} no son responsables de los datos proporcionados por los usuarios al servicio externo.'
395
425
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
396
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
426
+ location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
427
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
428
+ registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
397
429
  select_a_category: Por favor, selecciona una categoría
430
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
431
+ select_a_registration_type: Por favor, selecciona un tipo de inscripción
398
432
  index:
399
433
  new_meeting: Nuevo encuentro
400
434
  meeting_minutes:
@@ -413,6 +447,7 @@ es-MX:
413
447
  show:
414
448
  attendees: Número de asistentes
415
449
  back: Volver al listado
450
+ close_meeting: Cerrar encuentro
416
451
  contributions: Número de contribuciones
417
452
  date: Fecha
418
453
  edit_meeting: Editar el encuentro
@@ -459,6 +494,10 @@ es-MX:
459
494
  confirmed_html: Se ha confirmado su inscripción para el encuentro <a href="%{url}">%{title}</a>.
460
495
  details: Encontrarás detalles del encuentro en el archivo adjunto.
461
496
  registration_code: Tu código de registro es %{code}.
497
+ registration_type:
498
+ on_different_platform: En una plataforma diferente
499
+ on_this_platform: En esta plataforma
500
+ registration_disabled: Inscripciones deshabilitadas
462
501
  registrations:
463
502
  create:
464
503
  invalid: Ha habido un problema al unirse a este encuentro.
@@ -469,6 +508,10 @@ es-MX:
469
508
  destroy:
470
509
  invalid: Ha habido un problema al salir de esta encuentro.
471
510
  success: Has salido del encuentro con éxito.
511
+ type_of_meeting:
512
+ hybrid: Ambos
513
+ in_person: Presencial
514
+ online: En línea
472
515
  types:
473
516
  private_meeting: Encuentro privado
474
517
  transparent: Transparente
@@ -479,11 +522,6 @@ es-MX:
479
522
  description: Número de encuentros creados
480
523
  object: encuentros
481
524
  title: Encuentros
482
- participatory_processes:
483
- participatory_process_groups:
484
- highlighted_meetings:
485
- past_meetings: Encuentros pasados
486
- upcoming_meetings: Próximos encuentros
487
525
  participatory_spaces:
488
526
  highlighted_meetings:
489
527
  past_meetings: Encuentros pasados
@@ -21,19 +21,22 @@ es-PY:
21
21
  end_time: Hora de finalización
22
22
  location: Ubicación
23
23
  location_hints: Pistas de ubicación
24
+ online_meeting_url: URL del encuentro online
24
25
  organizer_gid: Crear como
25
26
  organizer_id: Organizador
26
27
  private_meeting: Encuentro privado
27
28
  registration_form_enabled: Formulario de inscripción habilitado
28
29
  registration_terms: Términos y condiciones de inscripción
30
+ registration_url: URL de inscripción
29
31
  registrations_enabled: Inscripciones abiertas
30
32
  start_time: Hora de inicio
31
33
  title: Título
32
34
  transparent: Transparente
35
+ type_of_meeting: Tipo
33
36
  minutes:
34
- audio_url: URL del audio
37
+ audio_url: URL de audio
35
38
  description: Descripción
36
- video_url: URL del vídeo
39
+ video_url: URL de video
37
40
  visible: Es visible
38
41
  errors:
39
42
  models:
@@ -87,9 +90,11 @@ es-PY:
87
90
  creation_enabled_for_participants: Las participantes pueden crear encuentros
88
91
  default_registration_terms: Términos de registro predeterminados
89
92
  enable_pads_creation: Habilitar la creación de pads
93
+ registration_code_enabled: Código de inscripción activado
90
94
  resources_permissions_enabled: Los permisos sobre acciones pueden establecerse para cada encuentro
91
95
  scope_id: Ámbito
92
96
  scopes_enabled: Ámbitos habilitados
97
+ terms_and_conditions_url_for_meeting_creators: URL de términos y condiciones para las creadoras de encuentros
93
98
  step:
94
99
  announcement: Anuncio
95
100
  comments_blocked: Comentarios bloqueados
@@ -202,6 +207,7 @@ es-PY:
202
207
  invalid: Ha habido un problema al actualizar el orden del día
203
208
  success: Orden del día actualizado correctamente
204
209
  exports:
210
+ meeting_comments: Comentarios
205
211
  meetings: Reuniones
206
212
  registrations: Inscripciones
207
213
  invite_join_meeting_mailer:
@@ -249,11 +255,18 @@ es-PY:
249
255
  other: El encuentro no se puede eliminar porque tiene %{count} propuestas asociadas
250
256
  success: El encuentro se ha eliminado correctamente
251
257
  edit:
258
+ title: Editar encuentro
252
259
  update: Actualizar
253
260
  form:
254
261
  address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
262
+ available_slots_help: Déjalo a 0 si tienes espacio ilimitado disponible
263
+ disclaimer: 'Descargo de responsabilidad: Mediante el uso de un sistema de inscripción externo, aceptas que los organizadores de %{organization} no son responsables de los datos proporcionados por los usuarios al servicio externo.'
255
264
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
256
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
265
+ location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
266
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
267
+ registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
268
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
269
+ select_a_registration_type: Por favor, seleccione un tipo de inscripción
257
270
  index:
258
271
  title: Encuentros
259
272
  new:
@@ -277,6 +290,7 @@ es-PY:
277
290
  invalid: Ha habido un problema al crear el acta
278
291
  success: Acta creada con éxito
279
292
  edit:
293
+ title: Editar actas
280
294
  update: Actualizar
281
295
  new:
282
296
  create: Crear
@@ -357,6 +371,11 @@ es-PY:
357
371
  subject: La inscripción a tu encuentro ha sido confirmada
358
372
  meeting:
359
373
  not_allowed: No puedes ver esta reunión
374
+ meeting_closes:
375
+ edit:
376
+ back: Atrás
377
+ close: Crear encuentro
378
+ title: Cerrar el encuentro
360
379
  meetings:
361
380
  count:
362
381
  meetings_count:
@@ -370,12 +389,15 @@ es-PY:
370
389
  title: Editar el encuentro
371
390
  update: Actualizar
372
391
  filters:
392
+ activity: Mi actividad
393
+ all: Todos
373
394
  category: Categoría
374
395
  date: Fecha
375
396
  date_values:
376
397
  all: Todas
377
398
  past: Pasadas
378
399
  upcoming: Próximas
400
+ my_meetings: Mis encuentros
379
401
  origin: Origen
380
402
  origin_values:
381
403
  all: Todos
@@ -384,6 +406,12 @@ es-PY:
384
406
  user_groups: Grupos
385
407
  scope: Ámbito
386
408
  search: Buscar
409
+ type: Tipo
410
+ type_values:
411
+ all: Todos
412
+ hybrid: Ambos
413
+ in_person: Presencial
414
+ online: Online
387
415
  filters_small_view:
388
416
  close_modal: Cerrar ventana
389
417
  filter: Filtrar
@@ -391,10 +419,16 @@ es-PY:
391
419
  unfold: Desplegar
392
420
  form:
393
421
  address_help: 'Dirección: que utilizará Geocoder para encontrar la ubicación'
422
+ available_slots_help: Déjalo a 0 si tienes espacio ilimitado disponible
394
423
  create_as: Crear encuentro como
424
+ disclaimer: 'Descargo de responsabilidad: Mediante el uso de un sistema de inscripción externo, aceptas que los organizadores de %{organization} no son responsables de los datos proporcionados por los usuarios al servicio externo.'
395
425
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
396
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
426
+ location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
427
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
428
+ registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
397
429
  select_a_category: Por favor, selecciona una categoría
430
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
431
+ select_a_registration_type: Por favor, selecciona un tipo de inscripción
398
432
  index:
399
433
  new_meeting: Nuevo encuentro
400
434
  meeting_minutes:
@@ -413,6 +447,7 @@ es-PY:
413
447
  show:
414
448
  attendees: Número de asistentes
415
449
  back: Volver al listado
450
+ close_meeting: Cerrar encuentro
416
451
  contributions: Número de contribuciones
417
452
  date: Fecha
418
453
  edit_meeting: Editar el encuentro
@@ -459,6 +494,10 @@ es-PY:
459
494
  confirmed_html: Se ha confirmado su inscripción para el encuentro <a href="%{url}">%{title}</a>.
460
495
  details: Encontrarás detalles del encuentro en el archivo adjunto.
461
496
  registration_code: Tu código de registro es %{code}.
497
+ registration_type:
498
+ on_different_platform: En una plataforma diferente
499
+ on_this_platform: En esta plataforma
500
+ registration_disabled: Inscripciones deshabilitadas
462
501
  registrations:
463
502
  create:
464
503
  invalid: Ha habido un problema al unirse a este encuentro.
@@ -469,6 +508,10 @@ es-PY:
469
508
  destroy:
470
509
  invalid: Ha habido un problema al salir de esta encuentro.
471
510
  success: Has salido del encuentro con éxito.
511
+ type_of_meeting:
512
+ hybrid: Ambos
513
+ in_person: Presencial
514
+ online: En línea
472
515
  types:
473
516
  private_meeting: Encuentro privado
474
517
  transparent: Transparente
@@ -479,11 +522,6 @@ es-PY:
479
522
  description: Número de reuniones creadas
480
523
  object: reuniones
481
524
  title: Reuniones
482
- participatory_processes:
483
- participatory_process_groups:
484
- highlighted_meetings:
485
- past_meetings: Encuentros pasados
486
- upcoming_meetings: Próximos encuentros
487
525
  participatory_spaces:
488
526
  highlighted_meetings:
489
527
  past_meetings: Encuentros pasados