decidim-meetings 0.29.3 → 0.30.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +1 -1
  3. data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +3 -1
  4. data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -1
  5. data/app/cells/decidim/meetings/dates_and_map/show.erb +1 -1
  6. data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +1 -1
  7. data/app/cells/decidim/meetings/join_meeting_button/show.erb +5 -2
  8. data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +3 -3
  9. data/app/cells/decidim/meetings/meeting_l_cell.rb +12 -0
  10. data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -2
  11. data/app/commands/decidim/meetings/admin/create_meeting.rb +8 -2
  12. data/app/commands/decidim/meetings/admin/update_meeting.rb +8 -2
  13. data/app/commands/decidim/meetings/create_meeting.rb +2 -2
  14. data/app/commands/decidim/meetings/update_meeting.rb +2 -3
  15. data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +9 -5
  16. data/app/controllers/concerns/decidim/meetings/component_filterable.rb +1 -2
  17. data/app/controllers/decidim/meetings/admin/meetings_controller.rb +14 -22
  18. data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +8 -0
  19. data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -4
  20. data/app/controllers/decidim/meetings/meetings_controller.rb +40 -6
  21. data/app/forms/decidim/meetings/admin/meeting_form.rb +16 -30
  22. data/app/forms/decidim/meetings/base_meeting_form.rb +6 -0
  23. data/app/forms/decidim/meetings/meeting_form.rb +2 -30
  24. data/app/helpers/decidim/meetings/admin/application_helper.rb +11 -1
  25. data/app/helpers/decidim/meetings/application_helper.rb +35 -1
  26. data/app/helpers/decidim/meetings/directory/application_helper.rb +9 -48
  27. data/app/helpers/decidim/meetings/meetings_helper.rb +5 -0
  28. data/app/models/decidim/meetings/invite.rb +10 -0
  29. data/app/models/decidim/meetings/meeting.rb +28 -1
  30. data/app/models/decidim/meetings/meeting_link.rb +25 -0
  31. data/app/packs/entrypoints/decidim_meetings_admin.js +1 -0
  32. data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +77 -0
  33. data/app/packs/src/decidim/meetings/admin/meetings_form.js +8 -0
  34. data/app/permissions/decidim/meetings/admin/permissions.rb +1 -1
  35. data/app/permissions/decidim/meetings/permissions.rb +13 -9
  36. data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
  37. data/app/presenters/decidim/meetings/meeting_presenter.rb +13 -1
  38. data/app/queries/decidim/meetings/filtered_meetings.rb +2 -2
  39. data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +2 -2
  40. data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +6 -6
  41. data/app/serializers/decidim/meetings/base_download_your_data_serializer.rb +32 -0
  42. data/app/serializers/decidim/meetings/download_your_data_invite_serializer.rb +6 -26
  43. data/app/serializers/decidim/meetings/download_your_data_meeting_serializer.rb +15 -0
  44. data/app/serializers/decidim/meetings/download_your_data_registration_serializer.rb +6 -24
  45. data/app/views/decidim/meetings/admin/meetings/_component.html.erb +15 -0
  46. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +7 -9
  47. data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +53 -0
  48. data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +42 -0
  49. data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +70 -0
  50. data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +26 -0
  51. data/app/views/decidim/meetings/admin/meetings/index.html.erb +16 -142
  52. data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +23 -0
  53. data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +44 -0
  54. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +1 -0
  55. data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -2
  56. data/app/views/decidim/meetings/live_events/show.html.erb +5 -5
  57. data/app/views/decidim/meetings/meetings/_form.html.erb +4 -8
  58. data/app/views/decidim/meetings/meetings/_meeting.html.erb +51 -26
  59. data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +34 -0
  60. data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +20 -59
  61. data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +2 -5
  62. data/app/views/decidim/meetings/meetings/_schema_org_event_meeting.html.erb +3 -0
  63. data/app/views/decidim/meetings/meetings/index.html.erb +1 -2
  64. data/app/views/decidim/meetings/meetings/new.html.erb +0 -1
  65. data/app/views/decidim/meetings/meetings/show.html.erb +5 -5
  66. data/app/views/decidim/meetings/polls/answers/index.html.erb +5 -5
  67. data/app/views/decidim/meetings/shared/_filters.html.erb +1 -13
  68. data/app/views/decidim/meetings/shared/_index.html.erb +1 -1
  69. data/app/views/decidim/meetings/shared/_index.js.erb +3 -2
  70. data/app/views/decidim/meetings/shared/_meetings.html.erb +1 -1
  71. data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +2 -2
  72. data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
  73. data/config/locales/ar.yml +23 -17
  74. data/config/locales/bg.yml +16 -25
  75. data/config/locales/ca.yml +140 -30
  76. data/config/locales/cs.yml +145 -28
  77. data/config/locales/de.yml +152 -74
  78. data/config/locales/el.yml +7 -22
  79. data/config/locales/en.yml +132 -22
  80. data/config/locales/es-MX.yml +144 -34
  81. data/config/locales/es-PY.yml +145 -35
  82. data/config/locales/es.yml +145 -35
  83. data/config/locales/eu.yml +159 -49
  84. data/config/locales/fi-plain.yml +142 -27
  85. data/config/locales/fi.yml +142 -27
  86. data/config/locales/fr-CA.yml +79 -27
  87. data/config/locales/fr.yml +79 -27
  88. data/config/locales/ga-IE.yml +0 -13
  89. data/config/locales/gl.yml +6 -12
  90. data/config/locales/hu.yml +8 -20
  91. data/config/locales/id-ID.yml +6 -13
  92. data/config/locales/is-IS.yml +0 -15
  93. data/config/locales/it.yml +7 -19
  94. data/config/locales/ja.yml +94 -26
  95. data/config/locales/lb.yml +6 -14
  96. data/config/locales/lt.yml +7 -23
  97. data/config/locales/lv.yml +6 -13
  98. data/config/locales/nl.yml +8 -18
  99. data/config/locales/no.yml +6 -16
  100. data/config/locales/pl.yml +16 -21
  101. data/config/locales/pt-BR.yml +7 -21
  102. data/config/locales/pt.yml +7 -17
  103. data/config/locales/ro-RO.yml +32 -19
  104. data/config/locales/ru.yml +6 -13
  105. data/config/locales/sk.yml +7 -14
  106. data/config/locales/sv.yml +82 -28
  107. data/config/locales/tr-TR.yml +7 -19
  108. data/config/locales/uk.yml +5 -15
  109. data/config/locales/zh-CN.yml +7 -18
  110. data/config/locales/zh-TW.yml +7 -21
  111. data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +1 -1
  112. data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +1 -1
  113. data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
  114. data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +1 -1
  115. data/db/migrate/20240712104245_create_decidim_meetings_meeting_link.rb +12 -0
  116. data/db/migrate/20240828103603_add_deleted_at_to_decidim_meetings_meetings.rb +8 -0
  117. data/decidim-meetings.gemspec +1 -1
  118. data/lib/decidim/api/agenda_item_type.rb +6 -7
  119. data/lib/decidim/api/agenda_type.rb +3 -4
  120. data/lib/decidim/api/meeting_type.rb +33 -41
  121. data/lib/decidim/api/meetings_type.rb +4 -5
  122. data/lib/decidim/api/service_type.rb +1 -1
  123. data/lib/decidim/meetings/admin_engine.rb +9 -1
  124. data/lib/decidim/meetings/component.rb +14 -4
  125. data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +13 -7
  126. data/lib/decidim/meetings/engine.rb +1 -6
  127. data/lib/decidim/meetings/meeting_serializer.rb +70 -59
  128. data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +151 -0
  129. data/lib/decidim/meetings/seeds.rb +2 -4
  130. data/lib/decidim/meetings/test/factories.rb +8 -0
  131. data/lib/decidim/meetings/test/translated_event.rb +3 -3
  132. data/lib/decidim/meetings/version.rb +1 -1
  133. data/lib/decidim/meetings.rb +1 -0
  134. metadata +32 -22
  135. data/app/cells/decidim/meetings/meetings_map/show.erb +0 -16
  136. data/app/cells/decidim/meetings/meetings_map_cell.rb +0 -32
  137. data/app/commands/decidim/meetings/admin/destroy_meeting.rb +0 -21
  138. data/app/helpers/decidim/meetings/map_helper.rb +0 -21
  139. data/app/views/decidim/meetings/meetings/_actions.html.erb +0 -6
  140. data/config/locales/ca-IT.yml +0 -693
@@ -81,6 +81,10 @@ en:
81
81
  decidim/meetings/update_meeting_event: Meeting updated
82
82
  activerecord:
83
83
  models:
84
+ decidim:
85
+ meetings:
86
+ meeting:
87
+ text: 'It was discussed in this meeting: %{link}'
84
88
  decidim/meetings/meeting:
85
89
  one: Meeting
86
90
  other: Meetings
@@ -92,6 +96,9 @@ en:
92
96
  other: Registrations
93
97
  decidim:
94
98
  admin:
99
+ admin_log:
100
+ changeset:
101
+ meetings: Meetings
95
102
  filters:
96
103
  accepted_at_not_null:
97
104
  label: Accepted
@@ -99,8 +106,6 @@ en:
99
106
  'false': Not accepted
100
107
  'true': Accepted
101
108
  meetings:
102
- category_id_eq:
103
- label: Category
104
109
  closed_at_present:
105
110
  label: State
106
111
  values:
@@ -111,8 +116,8 @@ en:
111
116
  values:
112
117
  'false': Past
113
118
  'true': Upcoming
114
- scope_id_eq:
115
- label: Scope
119
+ taxonomies_part_of_contains:
120
+ label: Taxonomy
116
121
  with_any_origin:
117
122
  label: Origin
118
123
  values:
@@ -154,22 +159,47 @@ en:
154
159
  settings:
155
160
  global:
156
161
  announcement: Announcement
162
+ clear_all: Clear all
157
163
  comments_enabled: Comments enabled
158
164
  comments_max_length: Comments max length (Leave 0 for default value)
159
165
  creation_enabled_for_participants: Participants can create meetings
160
166
  default_registration_terms: Default registration terms
167
+ define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
161
168
  enable_pads_creation: Enable pads creation
162
169
  maps_enabled: Maps enabled
170
+ no_taxonomy_filters_found: No taxonomy filters found.
163
171
  registration_code_enabled: Registration code enabled
164
172
  resources_permissions_enabled: Actions permissions can be set for each meeting
165
- scope_id: Scope
166
- scopes_enabled: Scopes enabled
173
+ taxonomy_filters: Select filters for the component
174
+ taxonomy_filters_add: Add filter
167
175
  terms_and_conditions_url_for_meeting_creators: Terms and conditions URL for meeting creators
168
176
  step:
169
177
  announcement: Announcement
170
178
  comments_blocked: Comments blocked
171
179
  creation_enabled_for_participants: Meeting creation by participants enabled
172
180
  creation_enabled_for_user_groups: Meeting creation by user groups enabled
181
+ download_your_data:
182
+ help:
183
+ invites:
184
+ accepted_at: The date and time when this invitation was accepted
185
+ created_at: The date and time when this invitation was created
186
+ id: The unique identifier for this invitation
187
+ meeting: The meeting where this invitation has happened
188
+ rejected_at: The date and time when this invitation was rejected
189
+ sent_at: The date and time when this invitation was sent
190
+ updated_at: The date and time when this invitation was last updated
191
+ registrations:
192
+ code: The registration code
193
+ created_at: The date and time when this registration was created
194
+ id: The unique identifier of the registration
195
+ meeting: The meeting that the user registered to
196
+ public_participation: Wehter this participation was shown publicly
197
+ updated_at: The date and time when this registration was last updated
198
+ user: The user that made the registration
199
+ validated_at: The date and time when this registration was validated
200
+ show:
201
+ meeting_comments: Meeting comments export
202
+ meetings: Meetings export
173
203
  events:
174
204
  meetings:
175
205
  meeting_closed:
@@ -237,8 +267,8 @@ en:
237
267
  attachment_collections: Folders
238
268
  attachments: Attachments
239
269
  close: Close
240
- confirm_destroy: Are you sure you want to delete this meeting?
241
- destroy: Delete
270
+ confirm_delete_meeting: Are you sure you want to delete this meeting?
271
+ deleted_meetings_info: Deleted meetings can be restored from the trash.
242
272
  edit: Edit
243
273
  invalid_destroy:
244
274
  proposals_count:
@@ -249,6 +279,7 @@ en:
249
279
  preview: Preview
250
280
  registrations: Registrations
251
281
  title: Actions
282
+ view_deleted_meetings: View deleted meetings
252
283
  admin:
253
284
  agenda:
254
285
  agenda_item:
@@ -313,15 +344,11 @@ en:
313
344
  close:
314
345
  invalid: There was a problem closing this meeting.
315
346
  success: Meeting successfully closed.
347
+ component:
348
+ unlink: Unlink
316
349
  create:
317
350
  invalid: There was a problem creating this meeting.
318
351
  success: Meeting successfully created. Notice this is unpublished yet, you need to manually publish it.
319
- destroy:
320
- invalid:
321
- proposals_count:
322
- one: The meeting cannot be destroyed because it has %{count} proposal associated to it.
323
- other: The meeting cannot be destroyed because it has %{count} proposals associated to it.
324
- success: Meeting successfully deleted
325
352
  edit:
326
353
  title: Edit meeting
327
354
  update: Update
@@ -337,7 +364,20 @@ en:
337
364
  select_a_registration_type: Please select a registration type
338
365
  select_an_iframe_access_level: Please select an iframe access level
339
366
  index:
367
+ linked_meeting_warning_html: This meeting must be edited from <br><a href="%{href}">%{name}</a>
340
368
  title: Meetings
369
+ linked_spaces:
370
+ assign: Assign
371
+ link_a_space: Link a space
372
+ private_meeting_warning: Linked spaces will not be applied if the meeting is private and non transparent.
373
+ private_space_warning: Linked spaces will not be applied when the meeting belongs to a private non transparent space.
374
+ select: Select a space
375
+ table:
376
+ actions: Actions
377
+ component: Linked spaces
378
+ title: Linked spaces
379
+ manage_trash:
380
+ title: Deleted meetings
341
381
  new:
342
382
  create: Create
343
383
  title: Create meeting
@@ -381,6 +421,7 @@ en:
381
421
  form:
382
422
  available_slots_help: Leave it to 0 if you have unlimited slots available.
383
423
  invites: Invitations
424
+ manage_questions: Manage questions
384
425
  recommendation_message: For privacy reasons we recommend that you delete this inscription form when you no longer need it. By default this is 3 months after the meeting has ended.
385
426
  registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
386
427
  registration_form: Registration form
@@ -406,6 +447,8 @@ en:
406
447
  create: "%{user_name} created the %{resource_name} meeting on the %{space_name} space"
407
448
  delete: "%{user_name} deleted the %{resource_name} meeting on the %{space_name} space"
408
449
  export_registrations: "%{user_name} exported the registrations of the %{resource_name} meeting on the %{space_name} space"
450
+ restore: "%{user_name} restored the %{resource_name} meeting in %{space_name} space"
451
+ soft_delete: "%{user_name} moved the %{resource_name} meeting in %{space_name} space to the trash"
409
452
  update: "%{user_name} updated the %{resource_name} meeting on the %{space_name} space"
410
453
  value_types:
411
454
  organizer_presenter:
@@ -413,8 +456,6 @@ en:
413
456
  questionnaire:
414
457
  update: "%{user_name} updated the questionnaire for the %{meeting_name} meeting"
415
458
  application_helper:
416
- filter_category_values:
417
- all: All
418
459
  filter_meeting_space_values:
419
460
  all: All
420
461
  calendar:
@@ -524,7 +565,6 @@ en:
524
565
  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.'
525
566
  online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
526
567
  registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
527
- select_a_category: Please select a category
528
568
  select_a_meeting_type: Please select a meeting type
529
569
  select_a_registration_type: Please select a registration type
530
570
  select_an_iframe_access_level: Please select an iframe access level
@@ -535,9 +575,9 @@ en:
535
575
  see_all_withdrawn: See all withdrawn meetings
536
576
  text_banner: You are viewing the list of meetings withdrawn by their authors. %{go_back_link}.
537
577
  meeting:
538
- close_meeting: Close meeting
578
+ close_meeting: Close
539
579
  edit_close_meeting: Edit meeting report
540
- edit_meeting: Edit meeting
580
+ edit_meeting: Edit
541
581
  join_meeting: Join meeting
542
582
  reply_poll: Reply poll
543
583
  view_poll: View poll
@@ -547,7 +587,7 @@ en:
547
587
  new:
548
588
  back: Back
549
589
  create: Create
550
- title: Create new meeting
590
+ title: Create Your Meeting
551
591
  registration_confirm:
552
592
  cancel: Cancel
553
593
  confirm: Confirm
@@ -564,6 +604,7 @@ en:
564
604
  micro_camera_permissions_warning: When you click on the button below, you will be asked for microphone and/or camera permissions, and you will join the videoconference
565
605
  no_slots_available: No slots available
566
606
  organizations: Attending organizations
607
+ redirect_notice: This meeting is part of another space, so you have been moved to %{current_space_name}. <br>If you prefer, you can go back to <a href="%{previous_space_url}">%{previous_space_name}</a>.
567
608
  registration_code_help_text: Your registration code
568
609
  registration_state:
569
610
  validated: VALIDATED
@@ -574,7 +615,7 @@ en:
574
615
  visit_finished: View past meeting
575
616
  withdraw_btn_hint: You can withdraw your meeting if you change your mind. The meeting is not deleted, it will appear in the list of withdrawn meetings.
576
617
  withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
577
- withdraw_meeting: Withdraw meeting
618
+ withdraw_meeting: Withdraw
578
619
  update:
579
620
  invalid: There was a problem updating the meeting.
580
621
  success: You have updated the meeting successfully.
@@ -597,6 +638,7 @@ en:
597
638
  map: Map
598
639
  official_meeting: Official meeting
599
640
  start_time: Start date
641
+ taxonomies: Taxonomies
600
642
  title: Title
601
643
  polls:
602
644
  answers:
@@ -666,13 +708,80 @@ en:
666
708
  transparent: Transparent
667
709
  withdraw: Withdrawn
668
710
  withdraw:
669
- error: An error ocurred while withdrawing the meeting.
711
+ error: There was a problem withdrawing the meeting.
670
712
  success: The meeting has been withdrawn successfully.
671
713
  metrics:
672
714
  meetings:
673
715
  description: Number of meetings created
674
716
  object: meetings
675
717
  title: Meetings
718
+ open_data:
719
+ help:
720
+ meeting_comments:
721
+ alignment: If this comment was a favour, against or neutral
722
+ author: The name of the participant that made this comment
723
+ body: The comment itself
724
+ commentable_id: The unique id of the commentable
725
+ commentable_type: The type of the commentable (if it was a result, a proposal, etc.)
726
+ comments: The comments data of the meeting
727
+ created_at: The date when this comment was created
728
+ depth: The place where this comment is in the three of comments (if it is an answer or an answer of an answer)
729
+ id: The id for this comment
730
+ locale: The locale (language) that the participant had when leaving this comment
731
+ root_commentable_url: The URL of the resource that ties to this comment
732
+ user_group: The name of the user group that made this comment (if any)
733
+ meetings:
734
+ address: The address of the meeting in case it is in person and has a physical location
735
+ attachments: The number of attachments in this meeting
736
+ attendees: The number of people attending this meeting
737
+ attending_organizations: The organizations attending the meeting
738
+ audio_url: Audio recording of the meeting
739
+ author: The data for the author of this meeting
740
+ available_slots: The number of slots available in a meeting
741
+ closed_at: The date at which the meeting closed
742
+ closing_report: Report of the closed meeting
743
+ closing_visible: The visibilty of the meeting
744
+ comments: The comments data of the meeting
745
+ component: The component that the meeting belongs to
746
+ contributions: The number of contributions in this meeting made by the atteendes
747
+ created_at: The date at which the meeting was created
748
+ customize_registration_email: The ability to allow a custom email at registration
749
+ decidim_author_type: Author type of the meeting's author
750
+ decidim_user_group_id: User group ID of people involved in the meeting
751
+ description: The description of the meeting
752
+ end_time: The date and time that this meeting ends
753
+ follows_count: The number of follows the meeting has
754
+ id: The unique identifier of the meeting
755
+ iframe_access_level: The iframe access level of the meeting
756
+ iframe_embed_type: The type of iframe embeded in the meeting
757
+ latitude: The latitude of the meeting
758
+ location: The location of the meeting
759
+ location_hints: A hint of the location in which the meeting is taking place
760
+ longitude: The longitude of the meeting
761
+ online_meeting_url: The URL of the online meeting
762
+ organizations: The organizations attending this meeting
763
+ participatory_space: To which space (e.g. Participatory Process, or Assembly) this meeting belongs to
764
+ private_meeting: To indicate whether the meeting is private or not
765
+ published: When the meeting has been published
766
+ reference: The unique identifier of the resource in this platform
767
+ registration_form_enabled: Whether the registration form was enabled or not
768
+ registration_terms: The terms agreed prior to meeting participation
769
+ registration_type: The type of registration of the meeting
770
+ registration_url: URL of the meeting registration
771
+ registrations_enabled: Whether registrations were permitted
772
+ related_proposals: The proposals related to this meeting
773
+ related_results: The results related to this meeting
774
+ reserved_slots: The number of reserved slots the meeting has
775
+ start_time: The date and time that this meeting starts
776
+ taxonomies: The taxonomies that this meeting belongs to
777
+ title: The title of the meeting
778
+ transparent: The visabilty of the meetng for non-members
779
+ type_of_meeting: The meeting type
780
+ updated_at: The time at which the meeting was last updated
781
+ url: The URL of the meeting
782
+ video_url: Video recording of the meeting
783
+ withdrawn: Whether this meeting has been withdrawn
784
+ withdrawn_at: When this meeting was withdrawn
676
785
  participatory_spaces:
677
786
  highlighted_meetings:
678
787
  past_meetings: Past meetings
@@ -686,6 +795,7 @@ en:
686
795
  meeting_proposal: 'Related proposals:'
687
796
  proposal_meeting: 'Related meetings:'
688
797
  statistics:
798
+ attendees_count: Meeting attendees
689
799
  meetings_count: Meetings
690
800
  devise:
691
801
  mailer: