decidim-meetings 0.30.3 → 0.31.0.rc2

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 (203) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +7 -4
  3. data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +1 -1
  4. data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
  5. data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
  6. data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +4 -5
  7. data/app/cells/decidim/meetings/join_meeting_button/show.erb +25 -28
  8. data/app/cells/decidim/meetings/join_meeting_button/waitlist_button.erb +22 -0
  9. data/app/cells/decidim/meetings/join_meeting_button_cell.rb +28 -0
  10. data/app/cells/decidim/meetings/question_responses/show.erb +7 -7
  11. data/app/cells/decidim/meetings/question_responses_cell.rb +28 -28
  12. data/app/commands/decidim/meetings/admin/copy_meeting.rb +5 -2
  13. data/app/commands/decidim/meetings/admin/create_agenda.rb +6 -2
  14. data/app/commands/decidim/meetings/admin/create_meeting.rb +7 -3
  15. data/app/commands/decidim/meetings/admin/mark_as_attendee.rb +44 -0
  16. data/app/commands/decidim/meetings/admin/publish_meeting.rb +2 -1
  17. data/app/commands/decidim/meetings/admin/update_agenda.rb +6 -2
  18. data/app/commands/decidim/meetings/admin/update_meeting.rb +15 -6
  19. data/app/commands/decidim/meetings/admin/update_questionnaire.rb +4 -4
  20. data/app/commands/decidim/meetings/admin/update_registrations.rb +19 -7
  21. data/app/commands/decidim/meetings/create_meeting.rb +2 -3
  22. data/app/commands/decidim/meetings/{create_answer.rb → create_response.rb} +11 -11
  23. data/app/commands/decidim/meetings/join_meeting.rb +4 -6
  24. data/app/commands/decidim/meetings/join_waitlist.rb +53 -0
  25. data/app/commands/decidim/meetings/leave_meeting.rb +14 -5
  26. data/app/commands/decidim/meetings/update_meeting.rb +1 -2
  27. data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +1 -1
  28. data/app/controllers/decidim/meetings/admin/agenda_controller.rb +2 -2
  29. data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
  30. data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
  31. data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +1 -1
  32. data/app/controllers/decidim/meetings/admin/meetings_controller.rb +4 -4
  33. data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +10 -10
  34. data/app/controllers/decidim/meetings/admin/registrations_attendees_controller.rb +79 -0
  35. data/app/controllers/decidim/meetings/admin/registrations_controller.rb +1 -22
  36. data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
  37. data/app/controllers/decidim/meetings/meetings_controller.rb +11 -11
  38. data/app/controllers/decidim/meetings/polls/{answers_controller.rb → responses_controller.rb} +7 -7
  39. data/app/controllers/decidim/meetings/registrations_controller.rb +39 -12
  40. data/app/events/decidim/meetings/registration_marked_as_attendee_event.rb +9 -0
  41. data/app/events/decidim/meetings/upcoming_meeting_event.rb +41 -0
  42. data/app/events/decidim/meetings/update_meeting_event.rb +25 -0
  43. data/app/forms/decidim/meetings/admin/close_meeting_form.rb +2 -1
  44. data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +4 -0
  45. data/app/forms/decidim/meetings/admin/meeting_form.rb +28 -3
  46. data/app/forms/decidim/meetings/admin/question_form.rb +3 -3
  47. data/app/forms/decidim/meetings/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
  48. data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
  49. data/app/forms/decidim/meetings/base_meeting_form.rb +0 -2
  50. data/app/forms/decidim/meetings/close_meeting_form.rb +2 -1
  51. data/app/forms/decidim/meetings/join_meeting_form.rb +0 -1
  52. data/app/forms/decidim/meetings/meeting_form.rb +3 -2
  53. data/app/forms/decidim/meetings/response_choice_form.rb +14 -0
  54. data/app/forms/decidim/meetings/{answer_form.rb → response_form.rb} +7 -7
  55. data/app/helpers/decidim/meetings/application_helper.rb +0 -1
  56. data/app/helpers/decidim/meetings/meetings_helper.rb +14 -5
  57. data/app/jobs/decidim/meetings/promote_from_waitlist_job.rb +63 -0
  58. data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
  59. data/app/mailers/decidim/meetings/registration_mailer.rb +13 -0
  60. data/app/models/decidim/meetings/agenda_item.rb +5 -0
  61. data/app/models/decidim/meetings/meeting.rb +15 -12
  62. data/app/models/decidim/meetings/question.rb +12 -12
  63. data/app/models/decidim/meetings/questionnaire.rb +1 -1
  64. data/app/models/decidim/meetings/registration.rb +19 -7
  65. data/app/models/decidim/meetings/{answer.rb → response.rb} +6 -6
  66. data/app/models/decidim/meetings/response_choice.rb +15 -0
  67. data/app/models/decidim/meetings/{answer_option.rb → response_option.rb} +5 -5
  68. data/app/packs/src/decidim/meetings/admin/destroy_meeting_alert.js +1 -1
  69. data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +1 -8
  70. data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
  71. data/app/packs/src/decidim/meetings/admin/registrations_form.js +1 -1
  72. data/app/packs/src/decidim/meetings/admin/registrations_invite_form.js +1 -1
  73. data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
  74. data/app/packs/src/decidim/meetings/meetings_polls.js +1 -1
  75. data/app/packs/src/decidim/meetings/poll.component.js +5 -5
  76. data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -1
  77. data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -4
  78. data/app/permissions/decidim/meetings/admin/agenda_permissions.rb +34 -0
  79. data/app/permissions/decidim/meetings/admin/meeting_permissions.rb +44 -0
  80. data/app/permissions/decidim/meetings/admin/permissions.rb +5 -66
  81. data/app/permissions/decidim/meetings/admin/questionnaire_permissions.rb +30 -0
  82. data/app/permissions/decidim/meetings/meeting_permissions.rb +90 -0
  83. data/app/permissions/decidim/meetings/permissions.rb +9 -105
  84. data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
  85. data/app/presenters/decidim/meetings/agenda_item_presenter.rb +29 -0
  86. data/app/presenters/decidim/meetings/meeting_presenter.rb +11 -15
  87. data/app/presenters/decidim/meetings/registration_presenter.rb +24 -0
  88. data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
  89. data/app/queries/decidim/meetings/{questionnaire_user_answers.rb → questionnaire_user_responses.rb} +5 -5
  90. data/app/serializers/decidim/meetings/registration_serializer.rb +5 -6
  91. data/app/services/decidim/meetings/diff_renderer.rb +0 -1
  92. data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -0
  93. data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +1 -1
  94. data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
  95. data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -1
  96. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -2
  97. data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +1 -1
  98. data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +10 -7
  99. data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
  100. data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +19 -0
  101. data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
  102. data/app/views/decidim/meetings/admin/meetings/index.html.erb +7 -5
  103. data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +2 -1
  104. data/app/views/decidim/meetings/admin/poll/_form.html.erb +7 -7
  105. data/app/views/decidim/meetings/admin/poll/_question.html.erb +9 -9
  106. data/app/views/decidim/meetings/admin/poll/_response_option.html.erb +35 -0
  107. data/app/views/decidim/meetings/admin/poll/_response_option_template.html.erb +7 -0
  108. data/app/views/decidim/meetings/admin/poll/edit.html.erb +5 -3
  109. data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +5 -5
  110. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +19 -39
  111. data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +126 -0
  112. data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
  113. data/app/views/decidim/meetings/meeting_closes/_form.html.erb +2 -2
  114. data/app/views/decidim/meetings/meetings/_form.html.erb +2 -11
  115. data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -2
  116. data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +6 -6
  117. data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
  118. data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +11 -10
  119. data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +3 -3
  120. data/app/views/decidim/meetings/meetings/_registration_code_modal.html.erb +16 -0
  121. data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +1 -1
  122. data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +5 -5
  123. data/app/views/decidim/meetings/polls/responses/_multiple_option.html.erb +13 -0
  124. data/app/views/decidim/meetings/polls/responses/_single_option.html.erb +13 -0
  125. data/app/views/decidim/meetings/polls/{answers → responses}/admin.html.erb +4 -4
  126. data/app/views/decidim/meetings/polls/{answers → responses}/index.html.erb +4 -4
  127. data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +6 -1
  128. data/config/assets.rb +2 -2
  129. data/config/locales/ar.yml +1 -26
  130. data/config/locales/bg.yml +2 -32
  131. data/config/locales/ca-IT.yml +88 -40
  132. data/config/locales/ca.yml +88 -40
  133. data/config/locales/cs.yml +73 -43
  134. data/config/locales/de.yml +87 -41
  135. data/config/locales/el.yml +1 -25
  136. data/config/locales/en.yml +91 -43
  137. data/config/locales/es-MX.yml +89 -41
  138. data/config/locales/es-PY.yml +89 -41
  139. data/config/locales/es.yml +89 -41
  140. data/config/locales/eu.yml +88 -40
  141. data/config/locales/fi-plain.yml +88 -40
  142. data/config/locales/fi.yml +87 -39
  143. data/config/locales/fr-CA.yml +81 -38
  144. data/config/locales/fr.yml +81 -38
  145. data/config/locales/ga-IE.yml +1 -7
  146. data/config/locales/gl.yml +1 -19
  147. data/config/locales/hu.yml +1 -22
  148. data/config/locales/id-ID.yml +0 -16
  149. data/config/locales/is-IS.yml +0 -10
  150. data/config/locales/it.yml +1 -29
  151. data/config/locales/ja.yml +90 -42
  152. data/config/locales/lb.yml +1 -15
  153. data/config/locales/lt.yml +1 -28
  154. data/config/locales/lv.yml +0 -16
  155. data/config/locales/nl.yml +1 -26
  156. data/config/locales/no.yml +1 -28
  157. data/config/locales/pl.yml +2 -32
  158. data/config/locales/pt-BR.yml +1 -28
  159. data/config/locales/pt.yml +1 -28
  160. data/config/locales/ro-RO.yml +56 -29
  161. data/config/locales/ru.yml +0 -16
  162. data/config/locales/sk.yml +0 -16
  163. data/config/locales/sl.yml +0 -4
  164. data/config/locales/sv.yml +85 -39
  165. data/config/locales/tr-TR.yml +0 -20
  166. data/config/locales/uk.yml +0 -12
  167. data/config/locales/zh-CN.yml +0 -19
  168. data/config/locales/zh-TW.yml +1 -26
  169. data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +8 -2
  170. data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +8 -2
  171. data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +8 -2
  172. data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +8 -2
  173. data/db/migrate/20250317103343_rename_answer_to_response_in_decidim_meetings.rb +18 -0
  174. data/db/migrate/20250403094034_add_reminder_customization_to_decidim_meetings.rb +9 -0
  175. data/db/migrate/20250408071941_add_status_to_registrations_to_decidim_meetings_registrations.rb +8 -0
  176. data/lib/decidim/api/agenda_item_type.rb +6 -2
  177. data/lib/decidim/api/agenda_type.rb +6 -2
  178. data/lib/decidim/api/linked_resources_interface.rb +1 -1
  179. data/lib/decidim/api/meeting_type.rb +20 -10
  180. data/lib/decidim/api/service_type.rb +3 -0
  181. data/lib/decidim/meetings/admin_engine.rb +9 -1
  182. data/lib/decidim/meetings/component.rb +38 -11
  183. data/lib/decidim/meetings/engine.rb +6 -21
  184. data/lib/decidim/meetings/meeting_serializer.rb +1 -2
  185. data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +0 -10
  186. data/lib/decidim/meetings/seeds.rb +5 -13
  187. data/lib/decidim/meetings/test/factories.rb +10 -16
  188. data/lib/decidim/meetings/user_responses_serializer.rb +47 -0
  189. data/lib/decidim/meetings/version.rb +1 -1
  190. data/lib/decidim/meetings.rb +7 -9
  191. metadata +48 -34
  192. data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +0 -32
  193. data/app/forms/decidim/meetings/answer_choice_form.rb +0 -14
  194. data/app/models/decidim/meetings/answer_choice.rb +0 -15
  195. data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +0 -31
  196. data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +0 -48
  197. data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +0 -35
  198. data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +0 -7
  199. data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +0 -13
  200. data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +0 -13
  201. data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +0 -39
  202. data/lib/decidim/meetings/user_answers_serializer.rb +0 -47
  203. /data/app/views/decidim/meetings/polls/{answers → responses}/create.js.erb +0 -0
@@ -2,8 +2,6 @@
2
2
  en:
3
3
  activemodel:
4
4
  attributes:
5
- answer:
6
- add_documents: Add documents
7
5
  close_meeting:
8
6
  attendees_count: Number of attendees
9
7
  attending_organizations: List of organizations that attended
@@ -19,7 +17,6 @@ en:
19
17
  customize_registration_email: Customize registration email
20
18
  decidim_category_id: Category
21
19
  decidim_scope_id: Scope
22
- decidim_user_group_id: User group
23
20
  description: Description
24
21
  end_time: End time
25
22
  id: ID
@@ -53,6 +50,8 @@ en:
53
50
  meeting_registration_invite:
54
51
  email: Email
55
52
  name: Name
53
+ response:
54
+ add_documents: Add documents
56
55
  validate_registration_code:
57
56
  code: Code
58
57
  errors:
@@ -123,7 +122,6 @@ en:
123
122
  values:
124
123
  official: Official
125
124
  participants: Participant
126
- user_group: User Groups
127
125
  with_any_type:
128
126
  label: Type of meeting
129
127
  values:
@@ -149,6 +147,16 @@ en:
149
147
  new:
150
148
  copy: Copy
151
149
  title: Duplicate meeting
150
+ tooltips:
151
+ cannot_close_meetings: Cannot close this meeting as it is created by a participant
152
+ cannot_duplicate_meetings: Cannot duplicate this meeting as it is created by a participant
153
+ cannot_edit_meetings: Cannt edit this meeting as it is created by a participant
154
+ cannot_manage_agenda_meetings: Cannot manage agenda in this meeting as it is created by a participant
155
+ cannot_manage_attachments_meetings: Cannot manage attachments in this meeting as it is created by a participant
156
+ cannot_manage_poll_meetings: Cannot manage poll in this meeting as it is created by a participant
157
+ cannot_manage_registrations_meetings: Cannt manage registrations on this meeting as it is created by a participant, it has registrations disabled or these registrations are externals
158
+ cannot_mark_attendee: Cannot mark as atteendee as it was already marked
159
+ deleted_meetings_info: Cannot delete this meeting as it is created by a participant.
152
160
  components:
153
161
  meetings:
154
162
  actions:
@@ -168,7 +176,7 @@ en:
168
176
  enable_pads_creation: Enable pads creation
169
177
  maps_enabled: Maps enabled
170
178
  no_taxonomy_filters_found: No taxonomy filters found.
171
- registration_code_enabled: Registration code enabled
179
+ registration_code_enabled: Registration code and QR enabled
172
180
  resources_permissions_enabled: Actions permissions can be set for each meeting
173
181
  taxonomy_filters: Select filters for the component
174
182
  taxonomy_filters_add: Add filter
@@ -177,7 +185,6 @@ en:
177
185
  announcement: Announcement
178
186
  comments_blocked: Comments blocked
179
187
  creation_enabled_for_participants: Meeting creation by participants enabled
180
- creation_enabled_for_user_groups: Meeting creation by user groups enabled
181
188
  download_your_data:
182
189
  help:
183
190
  invites:
@@ -227,25 +234,38 @@ en:
227
234
  email_subject: The allocated slots for the "%{resource_title}" meeting are over %{percentage}%
228
235
  notification_title: The allocated slots for the <a href="%{resource_path}">%{resource_title}</a> meeting are over %{percentage}%.
229
236
  meeting_updated:
230
- email_intro: 'The "%{resource_title}" meeting was updated. You can read the new version from its page:'
237
+ email_intro: 'The "%{resource_title}" meeting has been updated with changes to %{changed_fields}. You can read the new version from its page:'
231
238
  email_outro: You have received this notification because you are following the "%{resource_title}" meeting. You can unfollow it from the previous link.
232
239
  email_subject: The "%{resource_title}" meeting was updated
233
- notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting was updated.
240
+ field_names:
241
+ address: the address
242
+ end_time: the end time
243
+ location: the location
244
+ start_time: the start time
245
+ notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting has been updated with changes to %{changed_fields}.
246
+ meeting_waitlist_added:
247
+ notification_title: You have been added to the waiting list for the <a href="%{resource_url}">%{resource_title}</a> meeting.
234
248
  registration_code_validated:
235
249
  email_intro: Your registration code "%{registration_code}" for the "%{resource_title}" meeting has been validated.
236
250
  email_outro: You have received this notification because your registration code for the "%{resource_title}" meeting has been validated.
237
251
  email_subject: Your registration code "%{registration_code}" for the "%{resource_title}" meeting has been validated
238
252
  notification_title: Your registration code "%{registration_code}" for the <a href="%{resource_path}">%{resource_title}</a> meeting has been validated.
253
+ registration_marked_as_attendee:
254
+ email_intro: Your registration for the "%{resource_title}" meeting has been marked as attendee.
255
+ email_outro: You have received this notification because your registration for the "%{resource_title}" meeting has been marked as attendee.
256
+ email_subject: Your registration for the "%{resource_title}" meeting has been marked as attendee
257
+ notification_title: Your registration for the <a href="%{resource_path}">%{resource_title}</a> meeting has been marked as attendee.
239
258
  registrations_enabled:
240
259
  email_intro: 'The "%{resource_title}" meeting has enabled registrations. You can register yourself on its page:'
241
260
  email_outro: You have received this notification because you are following the "%{resource_title}" meeting. You can unfollow it from the previous link.
242
261
  email_subject: The "%{resource_title}" meeting has enabled registrations.
243
262
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting has enabled registrations.
244
263
  upcoming_meeting:
245
- email_intro: The "%{resource_title}" meeting will start in less than 48h.
246
- email_outro: You have received this notification because you are following the "%{resource_title}" meeting. You can unfollow it from the previous link.
247
- email_subject: The "%{resource_title}" meeting will start in less than 48h.
248
- notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting will start in less than 48h.
264
+ default_body: The "{{meeting_title}}" meeting will start in less than {{before_hours}}h.
265
+ email_intro: The "%{resource_title}" meeting will start in less than %{reminders_before_hours}h.
266
+ email_outro: You have received this notification because you are following the %{resource_title} meeting. You can unfollow it from the previous link.
267
+ email_subject: The "%{resource_title}" meeting will start in less than %{reminders_before_hours}h.
268
+ notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting will start in less than %{reminders_before_hours}h.
249
269
  forms:
250
270
  meetings:
251
271
  attendees_count_help_text: Do not forget to include the total number of attendees at your meeting, whether in person, online or hybrid.
@@ -264,10 +284,9 @@ en:
264
284
  meetings:
265
285
  actions:
266
286
  agenda: Agenda
267
- attachment_collections: Folders
268
- attachments: Attachments
269
287
  close: Close
270
288
  confirm_delete_meeting: Are you sure you want to delete this meeting?
289
+ confirm_unpublish_meeting: Are you sure you want to unpublish this meeting?
271
290
  deleted_meetings_info: Deleted meetings can be restored from the trash.
272
291
  edit: Edit
273
292
  invalid_destroy:
@@ -275,6 +294,7 @@ en:
275
294
  one: 'The meeting cannot be destroyed because it has %{count} proposal associated to it:'
276
295
  other: 'The meeting cannot be destroyed because it has %{count} proposals associated to it:'
277
296
  manage_poll: Manage poll
297
+ mark_as_attendee: Mark as attendee
278
298
  new_meeting: New meeting
279
299
  preview: Preview
280
300
  registrations: Registrations
@@ -311,11 +331,12 @@ en:
311
331
  update:
312
332
  invalid: There was a problem updating this agenda.
313
333
  success: Agenda successfully updated.
334
+ deprecation_warning_polls_html: "⚠️ <b>Deprecation Notice.</b> The Polls feature will be removed in a future version (to be determined). Organizations using meeting polls should plan to use external polling tools (for instance, through Jitsi) or migrate to other voting mechanisms available in Decidim, such as the new Elections module (`decidim-elections`)."
314
335
  exports:
315
- answers: Answers
316
336
  meeting_comments: Comments
317
337
  meetings: Meetings
318
338
  registrations: Registrations
339
+ responses: Responses
319
340
  invite_join_meeting_mailer:
320
341
  invite:
321
342
  decline: Decline invitation
@@ -386,6 +407,13 @@ en:
386
407
  publish:
387
408
  invalid: There was a problem publishing this meeting.
388
409
  success: Meeting successfully published.
410
+ reminders:
411
+ reminder_enabled: Send a reminder for this meeting
412
+ reminder_message: Reminder email content
413
+ reminder_message_help_text: Customize the message as needed. Use {{meeting_title}} to display the meeting name.
414
+ send_reminder: Scheduled reminder email
415
+ send_reminder_help_text: Reminder time in hours before the meeting.
416
+ title: Reminders
389
417
  service:
390
418
  description: Description
391
419
  down: Down
@@ -411,22 +439,21 @@ en:
411
439
  poll:
412
440
  form:
413
441
  announcement_html:
414
- - When a question receives answers or is published/closed, it can no longer be edited.
442
+ - When a question receives responses or is published/closed, it can no longer be edited.
415
443
  - You can add a question at any time.
416
444
  - The poll will be closed when the results of all created questions have been published.
417
445
  - Visit the <a href='%{admin_link}'>poll administration page</a> to send questions and publish results.
418
446
  registrations:
419
447
  edit:
420
448
  save: Save
421
- validate: Validate
422
- validate_registration_code: Validate registration code
423
449
  form:
424
450
  available_slots_help: Leave it to 0 if you have unlimited slots available.
425
451
  invites: Invitations
426
- manage_questions: Manage questions
452
+ manage_questions: Questions
427
453
  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.
428
454
  registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
429
455
  registration_form: Registration form
456
+ registrations: View registrations
430
457
  registrations_count:
431
458
  one: There has been %{count} registration.
432
459
  other: There has been %{count} registrations.
@@ -436,6 +463,14 @@ en:
436
463
  update:
437
464
  invalid: There was a problem saving the registration settings.
438
465
  success: Meeting registrations settings successfully saved.
466
+ registrations_attendees:
467
+ index:
468
+ title: Registrations
469
+ validate: Validate
470
+ validate_registration_code: Validate registration code
471
+ mark_attendee:
472
+ invalid: Registration already marked as attended.
473
+ success: Registration marked as attended successfully.
439
474
  validate_registration_code:
440
475
  invalid: This registration code is invalid.
441
476
  success: Registration code successfully validated.
@@ -549,7 +584,6 @@ en:
549
584
  all: All
550
585
  official: Official
551
586
  participants: Participants
552
- user_group: Groups
553
587
  search: Search
554
588
  type: Type
555
589
  type_values:
@@ -560,7 +594,6 @@ en:
560
594
  form:
561
595
  address_help: 'Address: used by Geocoder to find the location'
562
596
  available_slots_help: Leave it to 0 if you have unlimited slots available
563
- create_as: Create meeting as
564
597
  disclaimer: 'Disclaimer: By using an external registration system, you are aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
565
598
  iframe_embed_type_html: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
566
599
  location_help: 'Location: message directed to the users implying the spot to meet at'
@@ -597,8 +630,11 @@ en:
597
630
  attendees: Attendees count
598
631
  contributions: Contributions count
599
632
  join: Register
633
+ join_waitlist: Join waitlist
600
634
  leave: Cancel your registration
601
635
  leave_confirmation: Are you sure you want to cancel your registration for this meeting?
636
+ leave_waitlist: Leave waitlist
637
+ leave_waitlist_confirmation: Are you sure you want to leave the waitlist for this meeting?
602
638
  link_available_soon: Link available soon
603
639
  link_closed: The link to join the meeting will be available a few minutes before it starts
604
640
  live_event: This meeting is happening right now
@@ -606,8 +642,11 @@ en:
606
642
  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
607
643
  no_slots_available: No slots available
608
644
  organizations: Attending organizations
645
+ pending_address: The location will be announced soon.
609
646
  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>.
610
- registration_code_help_text: Your registration code
647
+ registration_and_qr_code: Registration and QR Code
648
+ registration_code: 'Registration code: %{code}'
649
+ registration_code_help_text: Your registration and QR code
611
650
  registration_state:
612
651
  validated: VALIDATED
613
652
  validation_pending: VALIDATION PENDING
@@ -615,6 +654,9 @@ en:
615
654
  one: "%{count} slot remaining"
616
655
  other: "%{count} slots remaining"
617
656
  visit_finished: View past meeting
657
+ waitlist:
658
+ description: If a spot becomes available, we well process your registration automatically and notify you via email.
659
+ status: You are on the waitlist
618
660
  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.
619
661
  withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
620
662
  withdraw_meeting: Withdraw
@@ -643,27 +685,28 @@ en:
643
685
  start_time: Start date
644
686
  taxonomies: Taxonomies
645
687
  title: Title
688
+ registration:
689
+ actions: Actions
690
+ fields:
691
+ email: Email
692
+ name: Name
693
+ status: Status
694
+ status:
695
+ attended: Attended
696
+ not_attended: Not attended
646
697
  polls:
647
- answers:
648
- index:
649
- administrate: Administrate
650
- title: Poll
651
- index_admin:
652
- back_to_meeting: Back to meeting
653
- title: Administrate poll
654
- view_poll: View poll
655
698
  questions:
656
699
  closed_question:
657
700
  announcement: The replies for this question have been closed.
658
701
  question: Question
659
702
  question_results: Results
660
703
  index:
661
- empty_questions: Throughout this meeting, some questions will be sent and you will be able to answer them. They will be displayed here.
704
+ empty_questions: Throughout this meeting, some questions will be sent and you will be able to respond them. They will be displayed here.
662
705
  index_admin:
663
706
  edit: Edit in the admin panel
664
707
  question: Question
665
- received_answer: received answer
666
- received_answers: received answers
708
+ received_response: received response
709
+ received_responses: received responses
667
710
  results: Results
668
711
  send: Send
669
712
  sent: Sent
@@ -676,8 +719,15 @@ en:
676
719
  question: Question
677
720
  question_replied: Question replied
678
721
  reply_question: Reply question
722
+ responses:
723
+ index:
724
+ administrate: Administrate
725
+ title: Poll
726
+ index_admin:
727
+ back_to_meeting: Back to meeting
728
+ title: Administrate poll
729
+ view_poll: View poll
679
730
  public_participants_list:
680
- attending_organizations: Organizations
681
731
  attending_participants: Participants
682
732
  hidden_participants_count:
683
733
  one: and %{count} more person
@@ -687,7 +737,7 @@ en:
687
737
  confirmation:
688
738
  confirmed_html: Your registration for the meeting <a href="%{url}">%{title}</a> has been confirmed.
689
739
  details: You will find the meeting's details in the attachment.
690
- registration_code: Your registration code is %{code}.
740
+ registration_code: Your registration code is %{code}. Please, show the following QR code to an administrator to validate your attendance.
691
741
  registration_type:
692
742
  on_different_platform: On a different platform
693
743
  on_this_platform: On this platform
@@ -702,6 +752,9 @@ en:
702
752
  destroy:
703
753
  invalid: There was a problem leaving this meeting.
704
754
  success: You have left the meeting successfully.
755
+ waitlist:
756
+ invalid: There was a problem joining the waitlist.
757
+ success: You have joined the meeting waitlist successfully. You will be notified if your registration is successfully secured.
705
758
  type_of_meeting:
706
759
  hybrid: Hybrid
707
760
  in_person: In person
@@ -713,11 +766,6 @@ en:
713
766
  withdraw:
714
767
  error: There was a problem withdrawing the meeting.
715
768
  success: The meeting has been withdrawn successfully.
716
- metrics:
717
- meetings:
718
- description: Number of meetings created
719
- object: meetings
720
- title: Meetings
721
769
  open_data:
722
770
  help:
723
771
  meeting_comments:
@@ -728,11 +776,10 @@ en:
728
776
  commentable_type: The type of the commentable (if it was a result, a proposal, etc.)
729
777
  comments: The comments data of the meeting
730
778
  created_at: The date when this comment was created
731
- depth: The place where this comment is in the three of comments (if it is an answer or an answer of an answer)
779
+ depth: The place where this comment is in the three of comments (if it is a response or a response of a response)
732
780
  id: The id for this comment
733
781
  locale: The locale (language) that the participant had when leaving this comment
734
782
  root_commentable_url: The URL of the resource that ties to this comment
735
- user_group: The name of the user group that made this comment (if any)
736
783
  meetings:
737
784
  address: The address of the meeting in case it is in person and has a physical location
738
785
  attachments: The number of attachments in this meeting
@@ -750,7 +797,6 @@ en:
750
797
  created_at: The date at which the meeting was created
751
798
  customize_registration_email: The ability to allow a custom email at registration
752
799
  decidim_author_type: Author type of the meeting's author
753
- decidim_user_group_id: User group ID of people involved in the meeting
754
800
  description: The description of the meeting
755
801
  end_time: The date and time that this meeting ends
756
802
  follows_count: The number of follows the meeting has
@@ -800,6 +846,8 @@ en:
800
846
  statistics:
801
847
  attendees_count: Meeting attendees
802
848
  meetings_count: Meetings
849
+ meetings_count_tooltip: The number of meetings that have taken place, both online and in person.
850
+ participatory_space_meetings_count: Meetings
803
851
  devise:
804
852
  mailer:
805
853
  join_meeting: