decidim-meetings 0.23.6 → 0.24.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) 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 +5 -13
  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 +9 -5
  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 +52 -1
  40. data/app/permissions/decidim/meetings/permissions.rb +12 -2
  41. data/app/presenters/decidim/meetings/meeting_presenter.rb +33 -0
  42. data/app/services/decidim/meetings/meeting_search.rb +20 -0
  43. data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +1 -1
  44. data/app/views/decidim/meetings/admin/invites/index.html.erb +1 -1
  45. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +31 -1
  46. data/app/views/decidim/meetings/admin/meetings/edit.html.erb +2 -2
  47. data/app/views/decidim/meetings/admin/meetings/index.html.erb +23 -1
  48. data/app/views/decidim/meetings/admin/meetings/new.html.erb +2 -2
  49. data/app/views/decidim/meetings/admin/minutes/edit.html.erb +1 -1
  50. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +20 -18
  51. data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -0
  52. data/app/views/decidim/meetings/directory/meetings/index.js.erb +0 -3
  53. data/app/views/decidim/meetings/meeting_closes/_form.html.erb +7 -0
  54. data/app/views/decidim/meetings/meeting_closes/edit.html.erb +25 -0
  55. data/app/views/decidim/meetings/meeting_closes/proposals_picker.html.erb +1 -0
  56. data/app/views/decidim/meetings/meetings/_filters.html.erb +6 -0
  57. data/app/views/decidim/meetings/meetings/_form.html.erb +36 -2
  58. data/app/views/decidim/meetings/meetings/_online_meeting_link.html.erb +11 -0
  59. data/app/views/decidim/meetings/meetings/edit.html.erb +1 -1
  60. data/app/views/decidim/meetings/meetings/index.js.erb +0 -3
  61. data/app/views/decidim/meetings/meetings/new.html.erb +1 -1
  62. data/app/views/decidim/meetings/meetings/show.html.erb +25 -21
  63. data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +3 -1
  64. data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -1
  65. data/config/locales/ar.yml +0 -7
  66. data/config/locales/ca.yml +8 -10
  67. data/config/locales/cs.yml +53 -16
  68. data/config/locales/de.yml +45 -8
  69. data/config/locales/el.yml +0 -10
  70. data/config/locales/en.yml +47 -10
  71. data/config/locales/es-MX.yml +18 -10
  72. data/config/locales/es-PY.yml +18 -10
  73. data/config/locales/es.yml +18 -10
  74. data/config/locales/eu.yml +0 -7
  75. data/config/locales/fi-plain.yml +45 -8
  76. data/config/locales/fi.yml +47 -10
  77. data/config/locales/fr-CA.yml +47 -10
  78. data/config/locales/fr.yml +49 -12
  79. data/config/locales/gl.yml +0 -12
  80. data/config/locales/hu.yml +0 -10
  81. data/config/locales/id-ID.yml +0 -7
  82. data/config/locales/is-IS.yml +0 -6
  83. data/config/locales/it.yml +0 -9
  84. data/config/locales/ja.yml +0 -9
  85. data/config/locales/lv.yml +0 -10
  86. data/config/locales/nl.yml +43 -9
  87. data/config/locales/no.yml +11 -10
  88. data/config/locales/pl.yml +39 -13
  89. data/config/locales/pt-BR.yml +0 -7
  90. data/config/locales/pt.yml +0 -9
  91. data/config/locales/ro-RO.yml +0 -22
  92. data/config/locales/ru.yml +0 -7
  93. data/config/locales/sk.yml +0 -10
  94. data/config/locales/sl.yml +0 -4
  95. data/config/locales/sv.yml +11 -11
  96. data/config/locales/tr-TR.yml +44 -9
  97. data/config/locales/uk.yml +0 -6
  98. data/config/locales/zh-CN.yml +0 -9
  99. data/db/migrate/20180809134748_add_upcoming_events_as_content_block.rb +1 -1
  100. data/db/migrate/20201006140511_add_online_meeting_url.rb +7 -0
  101. data/db/migrate/20201009124057_add_type_of_meeting.rb +7 -0
  102. data/db/migrate/20201016112641_add_registration_type_and_url_to_meetings.rb +19 -0
  103. data/lib/decidim/api/agenda_item_type.rb +22 -0
  104. data/lib/decidim/api/agenda_type.rb +19 -0
  105. data/lib/decidim/api/linked_resources_interface.rb +7 -6
  106. data/lib/decidim/api/meeting_type.rb +63 -0
  107. data/lib/decidim/api/meetings_type.rb +26 -0
  108. data/lib/decidim/api/minutes_type.rb +20 -0
  109. data/{app/types/decidim/meetings → lib/decidim/api}/service_type.rb +4 -4
  110. data/lib/decidim/api/services_interface.rb +3 -3
  111. data/lib/decidim/meetings/api.rb +6 -0
  112. data/lib/decidim/meetings/component.rb +53 -23
  113. data/lib/decidim/meetings/engine.rb +3 -17
  114. data/lib/decidim/meetings/test/factories.rb +16 -3
  115. data/lib/decidim/meetings/version.rb +1 -1
  116. data/lib/decidim/meetings.rb +1 -1
  117. metadata +43 -40
  118. data/app/types/decidim/meetings/agenda_item_type.rb +0 -28
  119. data/app/types/decidim/meetings/agenda_type.rb +0 -25
  120. data/app/types/decidim/meetings/meeting_type.rb +0 -65
  121. data/app/types/decidim/meetings/meetings_type.rb +0 -32
  122. data/app/types/decidim/meetings/minutes_type.rb +0 -26
  123. data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_meetings.html.erb +0 -15
  124. data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +0 -10
@@ -21,15 +21,18 @@ de:
21
21
  end_time: Endzeit
22
22
  location: Ort
23
23
  location_hints: Standorthinweise
24
+ online_meeting_url: Online Meeting URL
24
25
  organizer_gid: Erstellt als
25
26
  organizer_id: Veranstalter
26
27
  private_meeting: Private Sitzung
27
28
  registration_form_enabled: Anmeldeformular aktiviert
28
29
  registration_terms: Registrierungsbedingungen
30
+ registration_url: Registrierungs-URL
29
31
  registrations_enabled: Registrierungen aktiviert
30
32
  start_time: Startzeit
31
33
  title: Titel
32
34
  transparent: Transparent
35
+ type_of_meeting: Art
33
36
  minutes:
34
37
  audio_url: Audio-URL
35
38
  description: Beschreibung
@@ -87,9 +90,11 @@ de:
87
90
  creation_enabled_for_participants: Teilnehmer können Besprechungen erstellen
88
91
  default_registration_terms: Standard-Registrierungsbedingungen
89
92
  enable_pads_creation: Aktivieren Sie die Pads-Erstellung
93
+ registration_code_enabled: Registrierungscode aktiviert
90
94
  resources_permissions_enabled: Aktionsberechtigungen können für jedes Meeting festgelegt werden
91
95
  scope_id: Bereich
92
96
  scopes_enabled: Bereiche aktiviert
97
+ terms_and_conditions_url_for_meeting_creators: Nutzungsbedingungen URL für Meeting-Ersteller
93
98
  step:
94
99
  announcement: Ankündigung
95
100
  comments_blocked: Kommentare blockiert
@@ -202,6 +207,7 @@ de:
202
207
  invalid: Beim Aktualisieren dieser Agenda ist ein Problem aufgetreten
203
208
  success: Agenda erfolgreich aktualisiert
204
209
  exports:
210
+ meeting_comments: Kommentare
205
211
  meetings: Treffen
206
212
  registrations: Anmeldungen
207
213
  invite_join_meeting_mailer:
@@ -249,11 +255,18 @@ de:
249
255
  other: Die Besprechung kann nicht gelöscht werden, da %{count} Vorschläge mit dieser verbunden sind
250
256
  success: Das Meeting wurde erfolgreich gelöscht
251
257
  edit:
258
+ title: Meeting bearbeiten
252
259
  update: Aktualisieren
253
260
  form:
254
261
  address_help: 'Adresse: wird von Geocoder zur Lokalisierung verwendet'
262
+ available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben
263
+ disclaimer: 'Haftungsausschluss: Durch Verwendung eines externen Registrierungssystems wissen Sie, dass die Organisatoren von %{organization} nicht für die Daten verantwortlich sind, welche die Benutzer dem externen Dienst zur Verfügung stellen.'
255
264
  location_help: 'Ort: an die Benutzer gerichtete Nachricht mit dem Treffpunkt'
256
- location_hints_help: 'Hinweise zu Ort: zusätzliche Informationen. Beispielsweise die Etage des Gebäudes'
265
+ location_hints_help: 'Hinweise zum Standort: Zusätzliche Informationen. Beispiel: das Stockwerk im Gebäude wenn es eine Sitzung vor Ort ist, oder das Passwort wenn es eine Online-Sitzung mit eingeschränktem Zugriff ist.'
266
+ online_meeting_url_help: 'Link: Erlaubt Teilnehmern, sich direkt mit Ihrem Meeting zu verbinden'
267
+ registration_url_help: 'Link: Erlaubt den Teilnehmern den externen Service zu nutzen, den Sie für die Registrierung verwenden'
268
+ select_a_meeting_type: Bitte eine Meeting-Typ auswählen
269
+ select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
257
270
  index:
258
271
  title: Meetings
259
272
  new:
@@ -277,6 +290,7 @@ de:
277
290
  invalid: Beim Erstellen dieser Minuten ist ein Problem aufgetreten
278
291
  success: Minuten erfolgreich erstellt
279
292
  edit:
293
+ title: Minuten bearbeiten
280
294
  update: Aktualisieren
281
295
  new:
282
296
  create: Erstellen
@@ -347,7 +361,6 @@ de:
347
361
  space_type: Partizipativer Raum
348
362
  upcoming: Bevorstehende
349
363
  last_activity:
350
- meeting_updated_at_html: "<span>Besprechung aktualisiert unter %{link}</span>"
351
364
  new_meeting_at_html: "<span>Neues Treffen um %{link}</span>"
352
365
  mailer:
353
366
  invite_join_meeting_mailer:
@@ -358,6 +371,11 @@ de:
358
371
  subject: Die Registrierung Ihrer Konferenz wurde bestätigt
359
372
  meeting:
360
373
  not_allowed: Sie dürfen dieses Meeting nicht sehen
374
+ meeting_closes:
375
+ edit:
376
+ back: Zurück
377
+ close: Sitzung beenden
378
+ title: Sitzung beenden
361
379
  meetings:
362
380
  count:
363
381
  meetings_count:
@@ -371,12 +389,15 @@ de:
371
389
  title: Ihre Besprechung bearbeiten
372
390
  update: Aktualisieren
373
391
  filters:
392
+ activity: Meine Aktivität
393
+ all: Alles
374
394
  category: Kategorie
375
395
  date: Datum
376
396
  date_values:
377
397
  all: Alle
378
398
  past: Vergangene
379
399
  upcoming: Bevorstehende
400
+ my_meetings: Meine Sitzungen
380
401
  origin: Ursprung
381
402
  origin_values:
382
403
  all: Alle
@@ -385,6 +406,12 @@ de:
385
406
  user_groups: Gruppen
386
407
  scope: Umfang
387
408
  search: Suche
409
+ type: Art
410
+ type_values:
411
+ all: Alle
412
+ hybrid: Beides
413
+ in_person: Persönlich
414
+ online: Online
388
415
  filters_small_view:
389
416
  close_modal: Modal schließen
390
417
  filter: Filter
@@ -392,10 +419,16 @@ de:
392
419
  unfold: Entfalten
393
420
  form:
394
421
  address_help: 'Adresse: wird von Geocoder zur Lokalisierung verwendet'
422
+ available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben
395
423
  create_as: Besprechung erstellen als
424
+ disclaimer: 'Haftungsausschluss: Durch Verwendung eines externen Registrierungssystems wissen Sie, dass die Organisatoren von %{organization} nicht für die Daten verantwortlich sind, welche die Benutzer dem externen Dienst zur Verfügung stellen.'
396
425
  location_help: 'Ort: an die Benutzer gerichtete Nachricht mit dem Treffpunkt'
397
- location_hints_help: 'Hinweise zu Ort: zusätzliche Informationen. Beispielsweise die Etage des Gebäudes'
426
+ location_hints_help: 'Standorthinweise: Zusätzliche Informationen. Beispiel: die Etage des Gebäudes, wenn es sich um eine persönliche Sitzung oder das Sitzungspasswort, wenn es sich um ein Online-Meeting mit eingeschränktem Zugriff handelt.'
427
+ online_meeting_url_help: 'Link: Erlaubt Teilnehmern, sich direkt mit Ihrem Meeting zu verbinden'
428
+ registration_url_help: 'Link: Erlaubt den Teilnehmern den externen Service zu nutzen, den Sie für die Registrierung verwenden'
398
429
  select_a_category: Bitte wählen sie eine Kategorie
430
+ select_a_meeting_type: Bitte eine Meeting-Art auswählen
431
+ select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
399
432
  index:
400
433
  new_meeting: Neue Besprechung
401
434
  meeting_minutes:
@@ -414,6 +447,7 @@ de:
414
447
  show:
415
448
  attendees: Teilnehmer zählen
416
449
  back: Zurück zur Liste
450
+ close_meeting: Meeting beenden
417
451
  contributions: Beiträge zählen
418
452
  date: Datum
419
453
  edit_meeting: Besprechung bearbeiten
@@ -460,6 +494,10 @@ de:
460
494
  confirmed_html: Ihre Registrierung für das Treffen <a href="%{url}">%{title}</a> wurde bestätigt.
461
495
  details: Sie finden die Details zum Meeting im Anhang.
462
496
  registration_code: Ihr Registrierungscode ist %{code}.
497
+ registration_type:
498
+ on_different_platform: Auf einer anderen Plattform
499
+ on_this_platform: Auf dieser Plattform
500
+ registration_disabled: Registrierung ist gesperrt
463
501
  registrations:
464
502
  create:
465
503
  invalid: Bei diesem Meeting ist ein Problem aufgetreten.
@@ -470,6 +508,10 @@ de:
470
508
  destroy:
471
509
  invalid: Beim Verlassen dieses Meetings ist ein Problem aufgetreten.
472
510
  success: Sie haben das Meeting erfolgreich verlassen.
511
+ type_of_meeting:
512
+ hybrid: Beides
513
+ in_person: In Person
514
+ online: Online
473
515
  types:
474
516
  private_meeting: Private Sitzung
475
517
  transparent: Transparent
@@ -480,11 +522,6 @@ de:
480
522
  description: Anzahl der erstellten Meetings
481
523
  object: Treffen
482
524
  title: Meetings
483
- participatory_processes:
484
- participatory_process_groups:
485
- highlighted_meetings:
486
- past_meetings: Vergangene Treffen
487
- upcoming_meetings: Bevorstehende Treffen
488
525
  participatory_spaces:
489
526
  highlighted_meetings:
490
527
  past_meetings: Vergangene Treffen
@@ -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,7 +362,6 @@ en:
348
362
  space_type: Participatory space
349
363
  upcoming: Upcoming
350
364
  last_activity:
351
- meeting_updated_at_html: "<span>Meeting updated at %{link}</span>"
352
365
  new_meeting_at_html: "<span>New meeting at %{link}</span>"
353
366
  mailer:
354
367
  invite_join_meeting_mailer:
@@ -359,6 +372,11 @@ en:
359
372
  subject: Your meeting's registration has been confirmed
360
373
  meeting:
361
374
  not_allowed: You are not allowed to view this meeting
375
+ meeting_closes:
376
+ edit:
377
+ back: Back
378
+ close: Close meeting
379
+ title: Close meeting
362
380
  meetings:
363
381
  count:
364
382
  meetings_count:
@@ -372,12 +390,15 @@ en:
372
390
  title: Edit Your Meeting
373
391
  update: Update
374
392
  filters:
393
+ activity: My activity
394
+ all: All
375
395
  category: Category
376
396
  date: Date
377
397
  date_values:
378
398
  all: All
379
399
  past: Past
380
400
  upcoming: Upcoming
401
+ my_meetings: My meetings
381
402
  origin: Origin
382
403
  origin_values:
383
404
  all: All
@@ -386,6 +407,12 @@ en:
386
407
  user_groups: Groups
387
408
  scope: Scope
388
409
  search: Search
410
+ type: Type
411
+ type_values:
412
+ all: All
413
+ hybrid: Both
414
+ in_person: In-person
415
+ online: Online
389
416
  filters_small_view:
390
417
  close_modal: Close modal
391
418
  filter: Filter
@@ -393,10 +420,16 @@ en:
393
420
  unfold: Unfold
394
421
  form:
395
422
  address_help: 'Address: used by Geocoder to find the location'
423
+ available_slots_help: Leave it to 0 if you have unlimited slots available
396
424
  create_as: Create meeting as
425
+ 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.'
397
426
  location_help: 'Location: message directed to the users implying the spot to meet at'
398
- location_hints_help: 'Location hints: additional info. Example: the floor of the building'
427
+ 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.'
428
+ online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
429
+ registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
399
430
  select_a_category: Please select a category
431
+ select_a_meeting_type: Please select a meeting type
432
+ select_a_registration_type: Please select a registration type
400
433
  index:
401
434
  new_meeting: New meeting
402
435
  meeting_minutes:
@@ -415,6 +448,7 @@ en:
415
448
  show:
416
449
  attendees: Attendees count
417
450
  back: Back to list
451
+ close_meeting: Close meeting
418
452
  contributions: Contributions count
419
453
  date: Date
420
454
  edit_meeting: Edit meeting
@@ -461,6 +495,10 @@ en:
461
495
  confirmed_html: Your registration for the meeting <a href="%{url}">%{title}</a> has been confirmed.
462
496
  details: You will find the meeting's details in the attachment.
463
497
  registration_code: Your registration code is %{code}.
498
+ registration_type:
499
+ on_different_platform: On a different platform
500
+ on_this_platform: On this platform
501
+ registration_disabled: Registration disabled
464
502
  registrations:
465
503
  create:
466
504
  invalid: There was a problem joining this meeting.
@@ -471,6 +509,10 @@ en:
471
509
  destroy:
472
510
  invalid: There was a problem leaving this meeting.
473
511
  success: You have left the meeting successfully.
512
+ type_of_meeting:
513
+ hybrid: Both
514
+ in_person: In person
515
+ online: Online
474
516
  types:
475
517
  private_meeting: Private meeting
476
518
  transparent: Transparent
@@ -481,11 +523,6 @@ en:
481
523
  description: Number of meetings created
482
524
  object: meetings
483
525
  title: Meetings
484
- participatory_processes:
485
- participatory_process_groups:
486
- highlighted_meetings:
487
- past_meetings: Past meetings
488
- upcoming_meetings: Upcoming meetings
489
526
  participatory_spaces:
490
527
  highlighted_meetings:
491
528
  past_meetings: Past meetings
@@ -21,6 +21,7 @@ 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
@@ -30,10 +31,9 @@ es-MX:
30
31
  start_time: Hora de inicio
31
32
  title: Título
32
33
  transparent: Transparente
34
+ type_of_meeting: Tipo
33
35
  minutes:
34
- audio_url: URL del audio
35
36
  description: Descripción
36
- video_url: URL del vídeo
37
37
  visible: Es visible
38
38
  errors:
39
39
  models:
@@ -90,6 +90,7 @@ es-MX:
90
90
  resources_permissions_enabled: Se pueden establecer permisos de acciones para cada encuentro
91
91
  scope_id: Ámbito
92
92
  scopes_enabled: Ámbitos habilitados
93
+ terms_and_conditions_url_for_meeting_creators: URL de términos y condiciones para las creadoras de encuentros
93
94
  step:
94
95
  announcement: Anuncio
95
96
  comments_blocked: Comentarios bloqueados
@@ -202,6 +203,7 @@ es-MX:
202
203
  invalid: Ha habido un problema al actualizar el orden del día
203
204
  success: Orden del día actualizado correctamente
204
205
  exports:
206
+ meeting_comments: Comentarios
205
207
  meetings: Reuniones
206
208
  registrations: Inscripciones
207
209
  invite_join_meeting_mailer:
@@ -253,7 +255,9 @@ es-MX:
253
255
  form:
254
256
  address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
255
257
  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'
258
+ 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.'
259
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
260
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
257
261
  index:
258
262
  title: Encuentros
259
263
  new:
@@ -347,7 +351,6 @@ es-MX:
347
351
  space_type: Espacio participativo
348
352
  upcoming: Próximo
349
353
  last_activity:
350
- meeting_updated_at_html: "<span>Encuentro actualizado a las %{link}</span>"
351
354
  new_meeting_at_html: "<span>Nuevo encuentro en %{link}</span>"
352
355
  mailer:
353
356
  invite_join_meeting_mailer:
@@ -358,6 +361,11 @@ es-MX:
358
361
  subject: La inscripción a tu encuentro ha sido confirmada
359
362
  meeting:
360
363
  not_allowed: No puedes ver esta reunión
364
+ meeting_closes:
365
+ edit:
366
+ back: Atrás
367
+ close: Crear encuentro
368
+ title: Cerrar el encuentro
361
369
  meetings:
362
370
  count:
363
371
  meetings_count:
@@ -385,6 +393,11 @@ es-MX:
385
393
  user_groups: Grupos
386
394
  scope: Ámbito
387
395
  search: Buscar
396
+ type: Tipo
397
+ type_values:
398
+ all: Todos
399
+ in_person: Presencial
400
+ online: Online
388
401
  filters_small_view:
389
402
  close_modal: Cerrar ventana
390
403
  filter: Filtrar
@@ -394,7 +407,7 @@ es-MX:
394
407
  address_help: 'Dirección: que utilizará Geocoder para encontrar la ubicación'
395
408
  create_as: Crear encuentro como
396
409
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
397
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
410
+ 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.'
398
411
  select_a_category: Por favor, selecciona una categoría
399
412
  index:
400
413
  new_meeting: Nuevo encuentro
@@ -480,11 +493,6 @@ es-MX:
480
493
  description: Número de encuentros creados
481
494
  object: encuentros
482
495
  title: Encuentros
483
- participatory_processes:
484
- participatory_process_groups:
485
- highlighted_meetings:
486
- past_meetings: Encuentros pasados
487
- upcoming_meetings: Próximos encuentros
488
496
  participatory_spaces:
489
497
  highlighted_meetings:
490
498
  past_meetings: Encuentros pasados
@@ -21,6 +21,7 @@ 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
@@ -30,10 +31,9 @@ es-PY:
30
31
  start_time: Hora de inicio
31
32
  title: Título
32
33
  transparent: Transparente
34
+ type_of_meeting: Tipo
33
35
  minutes:
34
- audio_url: URL del audio
35
36
  description: Descripción
36
- video_url: URL del vídeo
37
37
  visible: Es visible
38
38
  errors:
39
39
  models:
@@ -90,6 +90,7 @@ es-PY:
90
90
  resources_permissions_enabled: Los permisos sobre acciones pueden establecerse para cada encuentro
91
91
  scope_id: Ámbito
92
92
  scopes_enabled: Ámbitos habilitados
93
+ terms_and_conditions_url_for_meeting_creators: URL de términos y condiciones para las creadoras de encuentros
93
94
  step:
94
95
  announcement: Anuncio
95
96
  comments_blocked: Comentarios bloqueados
@@ -202,6 +203,7 @@ es-PY:
202
203
  invalid: Ha habido un problema al actualizar el orden del día
203
204
  success: Orden del día actualizado correctamente
204
205
  exports:
206
+ meeting_comments: Comentarios
205
207
  meetings: Reuniones
206
208
  registrations: Inscripciones
207
209
  invite_join_meeting_mailer:
@@ -253,7 +255,9 @@ es-PY:
253
255
  form:
254
256
  address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
255
257
  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'
258
+ 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.'
259
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
260
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
257
261
  index:
258
262
  title: Encuentros
259
263
  new:
@@ -347,7 +351,6 @@ es-PY:
347
351
  space_type: Espacio participativo
348
352
  upcoming: Próximo
349
353
  last_activity:
350
- meeting_updated_at_html: "<span>Encuentro actualizado a las %{link}</span>"
351
354
  new_meeting_at_html: "<span>Nueva reunión en %{link}</span>"
352
355
  mailer:
353
356
  invite_join_meeting_mailer:
@@ -358,6 +361,11 @@ es-PY:
358
361
  subject: La inscripción a tu encuentro ha sido confirmada
359
362
  meeting:
360
363
  not_allowed: No puedes ver esta reunión
364
+ meeting_closes:
365
+ edit:
366
+ back: Atrás
367
+ close: Crear encuentro
368
+ title: Cerrar el encuentro
361
369
  meetings:
362
370
  count:
363
371
  meetings_count:
@@ -385,6 +393,11 @@ es-PY:
385
393
  user_groups: Grupos
386
394
  scope: Ámbito
387
395
  search: Buscar
396
+ type: Tipo
397
+ type_values:
398
+ all: Todos
399
+ in_person: Presencial
400
+ online: Online
388
401
  filters_small_view:
389
402
  close_modal: Cerrar ventana
390
403
  filter: Filtrar
@@ -394,7 +407,7 @@ es-PY:
394
407
  address_help: 'Dirección: que utilizará Geocoder para encontrar la ubicación'
395
408
  create_as: Crear encuentro como
396
409
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
397
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
410
+ 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.'
398
411
  select_a_category: Por favor, selecciona una categoría
399
412
  index:
400
413
  new_meeting: Nuevo encuentro
@@ -480,11 +493,6 @@ es-PY:
480
493
  description: Número de reuniones creadas
481
494
  object: reuniones
482
495
  title: Reuniones
483
- participatory_processes:
484
- participatory_process_groups:
485
- highlighted_meetings:
486
- past_meetings: Encuentros pasados
487
- upcoming_meetings: Próximas reuniones
488
496
  participatory_spaces:
489
497
  highlighted_meetings:
490
498
  past_meetings: Encuentros pasados
@@ -21,6 +21,7 @@ es:
21
21
  end_time: Hora de finalización
22
22
  location: Ubicación
23
23
  location_hints: Detalles 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
@@ -30,10 +31,9 @@ es:
30
31
  start_time: Hora de inicio
31
32
  title: Título
32
33
  transparent: Transparente
34
+ type_of_meeting: Tipo
33
35
  minutes:
34
- audio_url: URL del audio
35
36
  description: Descripción
36
- video_url: URL del vídeo
37
37
  visible: Es visible
38
38
  errors:
39
39
  models:
@@ -90,6 +90,7 @@ es:
90
90
  resources_permissions_enabled: Se pueden establecer permisos de acciones para cada encuentro
91
91
  scope_id: Ámbito
92
92
  scopes_enabled: Ámbitos habilitados
93
+ terms_and_conditions_url_for_meeting_creators: URL de términos y condiciones para las creadoras de encuentros
93
94
  step:
94
95
  announcement: Aviso
95
96
  comments_blocked: Comentarios bloqueados
@@ -202,6 +203,7 @@ es:
202
203
  invalid: Se ha producido un error al actualizar este orden del día
203
204
  success: Orden del día actualizado correctamente
204
205
  exports:
206
+ meeting_comments: Comentarios
205
207
  meetings: Encuentros
206
208
  registrations: Inscripciones
207
209
  invite_join_meeting_mailer:
@@ -253,7 +255,9 @@ es:
253
255
  form:
254
256
  address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
255
257
  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'
258
+ 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.'
259
+ online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
260
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
257
261
  index:
258
262
  title: Encuentros
259
263
  new:
@@ -347,7 +351,6 @@ es:
347
351
  space_type: Espacio participativo
348
352
  upcoming: Próximas
349
353
  last_activity:
350
- meeting_updated_at_html: "<span>Encuentro actualizado a las %{link}</span>"
351
354
  new_meeting_at_html: "<span>Nuevo encuentro en %{link}</span>"
352
355
  mailer:
353
356
  invite_join_meeting_mailer:
@@ -358,6 +361,11 @@ es:
358
361
  subject: Tu inscripción al encuentro ha sido confirmada
359
362
  meeting:
360
363
  not_allowed: No tienes permiso para ver este encuentro
364
+ meeting_closes:
365
+ edit:
366
+ back: Atrás
367
+ close: Crear encuentro
368
+ title: Cerrar el encuentro
361
369
  meetings:
362
370
  count:
363
371
  meetings_count:
@@ -385,6 +393,11 @@ es:
385
393
  user_groups: Grupos
386
394
  scope: Ámbito
387
395
  search: Buscar
396
+ type: Tipo
397
+ type_values:
398
+ all: Todos
399
+ in_person: Presencial
400
+ online: Online
388
401
  filters_small_view:
389
402
  close_modal: Cerrar ventana
390
403
  filter: Filtrar
@@ -394,7 +407,7 @@ es:
394
407
  address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
395
408
  create_as: Crear encuentro como
396
409
  location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
397
- location_hints_help: 'Sugerencias de ubicación: información adicional. Ejemplo: la planta del edificio'
410
+ 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.'
398
411
  select_a_category: Por favor, selecciona una categoría
399
412
  index:
400
413
  new_meeting: Nuevo encuentro
@@ -480,11 +493,6 @@ es:
480
493
  description: Número de encuentros creados
481
494
  object: encuentros
482
495
  title: Encuentros
483
- participatory_processes:
484
- participatory_process_groups:
485
- highlighted_meetings:
486
- past_meetings: Encuentros pasados
487
- upcoming_meetings: Próximos encuentros
488
496
  participatory_spaces:
489
497
  highlighted_meetings:
490
498
  past_meetings: Encuentros pasados