decidim-meetings 0.29.2 → 0.30.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 (136) 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 +23 -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 +10 -2
  64. data/app/views/decidim/meetings/meetings/show.html.erb +5 -5
  65. data/app/views/decidim/meetings/polls/answers/index.html.erb +5 -5
  66. data/app/views/decidim/meetings/shared/_filters.html.erb +1 -13
  67. data/app/views/decidim/meetings/shared/_index.html.erb +1 -1
  68. data/app/views/decidim/meetings/shared/_index.js.erb +3 -2
  69. data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +2 -2
  70. data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
  71. data/config/locales/ar.yml +17 -17
  72. data/config/locales/bg.yml +5 -25
  73. data/config/locales/ca.yml +137 -25
  74. data/config/locales/cs.yml +138 -28
  75. data/config/locales/de.yml +138 -26
  76. data/config/locales/el.yml +1 -22
  77. data/config/locales/en.yml +133 -21
  78. data/config/locales/es-MX.yml +137 -25
  79. data/config/locales/es-PY.yml +137 -25
  80. data/config/locales/es.yml +137 -25
  81. data/config/locales/eu.yml +138 -26
  82. data/config/locales/fi-plain.yml +138 -26
  83. data/config/locales/fi.yml +138 -26
  84. data/config/locales/fr-CA.yml +79 -26
  85. data/config/locales/fr.yml +79 -26
  86. data/config/locales/ga-IE.yml +0 -13
  87. data/config/locales/gl.yml +1 -12
  88. data/config/locales/hu.yml +1 -19
  89. data/config/locales/id-ID.yml +1 -13
  90. data/config/locales/is-IS.yml +0 -12
  91. data/config/locales/it.yml +1 -17
  92. data/config/locales/ja.yml +95 -25
  93. data/config/locales/lb.yml +0 -11
  94. data/config/locales/lt.yml +1 -23
  95. data/config/locales/lv.yml +1 -13
  96. data/config/locales/nl.yml +1 -17
  97. data/config/locales/no.yml +1 -16
  98. data/config/locales/pl.yml +5 -21
  99. data/config/locales/pt-BR.yml +1 -21
  100. data/config/locales/pt.yml +1 -17
  101. data/config/locales/ro-RO.yml +30 -17
  102. data/config/locales/ru.yml +1 -13
  103. data/config/locales/sk.yml +1 -13
  104. data/config/locales/sv.yml +74 -26
  105. data/config/locales/tr-TR.yml +1 -19
  106. data/config/locales/uk.yml +0 -12
  107. data/config/locales/zh-CN.yml +1 -18
  108. data/config/locales/zh-TW.yml +1 -21
  109. data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +1 -1
  110. data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +1 -1
  111. data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
  112. data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +1 -1
  113. data/db/migrate/20240712104245_create_decidim_meetings_meeting_link.rb +12 -0
  114. data/db/migrate/20240828103603_add_deleted_at_to_decidim_meetings_meetings.rb +8 -0
  115. data/decidim-meetings.gemspec +1 -1
  116. data/lib/decidim/api/agenda_item_type.rb +6 -7
  117. data/lib/decidim/api/agenda_type.rb +3 -4
  118. data/lib/decidim/api/meeting_type.rb +33 -41
  119. data/lib/decidim/api/meetings_type.rb +4 -5
  120. data/lib/decidim/api/service_type.rb +1 -1
  121. data/lib/decidim/meetings/admin_engine.rb +9 -1
  122. data/lib/decidim/meetings/component.rb +14 -4
  123. data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +13 -7
  124. data/lib/decidim/meetings/meeting_serializer.rb +70 -59
  125. data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +151 -0
  126. data/lib/decidim/meetings/seeds.rb +2 -4
  127. data/lib/decidim/meetings/test/factories.rb +8 -0
  128. data/lib/decidim/meetings/test/translated_event.rb +3 -3
  129. data/lib/decidim/meetings/version.rb +1 -1
  130. data/lib/decidim/meetings.rb +1 -0
  131. metadata +32 -21
  132. data/app/cells/decidim/meetings/meetings_map/show.erb +0 -16
  133. data/app/cells/decidim/meetings/meetings_map_cell.rb +0 -32
  134. data/app/commands/decidim/meetings/admin/destroy_meeting.rb +0 -21
  135. data/app/helpers/decidim/meetings/map_helper.rb +0 -21
  136. data/app/views/decidim/meetings/meetings/_actions.html.erb +0 -6
@@ -2,6 +2,8 @@
2
2
  en:
3
3
  activemodel:
4
4
  attributes:
5
+ answer:
6
+ add_documents: Add documents
5
7
  close_meeting:
6
8
  attendees_count: Number of attendees
7
9
  attending_organizations: List of organizations that attended
@@ -79,6 +81,10 @@ en:
79
81
  decidim/meetings/update_meeting_event: Meeting updated
80
82
  activerecord:
81
83
  models:
84
+ decidim:
85
+ meetings:
86
+ meeting:
87
+ text: 'It was discussed in this meeting: %{link}'
82
88
  decidim/meetings/meeting:
83
89
  one: Meeting
84
90
  other: Meetings
@@ -90,6 +96,9 @@ en:
90
96
  other: Registrations
91
97
  decidim:
92
98
  admin:
99
+ admin_log:
100
+ changeset:
101
+ meetings: Meetings
93
102
  filters:
94
103
  accepted_at_not_null:
95
104
  label: Accepted
@@ -97,8 +106,6 @@ en:
97
106
  'false': Not accepted
98
107
  'true': Accepted
99
108
  meetings:
100
- category_id_eq:
101
- label: Category
102
109
  closed_at_present:
103
110
  label: State
104
111
  values:
@@ -109,8 +116,8 @@ en:
109
116
  values:
110
117
  'false': Past
111
118
  'true': Upcoming
112
- scope_id_eq:
113
- label: Scope
119
+ taxonomies_part_of_contains:
120
+ label: Taxonomy
114
121
  with_any_origin:
115
122
  label: Origin
116
123
  values:
@@ -152,22 +159,47 @@ en:
152
159
  settings:
153
160
  global:
154
161
  announcement: Announcement
162
+ clear_all: Clear all
155
163
  comments_enabled: Comments enabled
156
164
  comments_max_length: Comments max length (Leave 0 for default value)
157
165
  creation_enabled_for_participants: Participants can create meetings
158
166
  default_registration_terms: Default registration terms
167
+ define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
159
168
  enable_pads_creation: Enable pads creation
160
169
  maps_enabled: Maps enabled
170
+ no_taxonomy_filters_found: No taxonomy filters found.
161
171
  registration_code_enabled: Registration code enabled
162
172
  resources_permissions_enabled: Actions permissions can be set for each meeting
163
- scope_id: Scope
164
- scopes_enabled: Scopes enabled
173
+ taxonomy_filters: Select filters for the component
174
+ taxonomy_filters_add: Add filter
165
175
  terms_and_conditions_url_for_meeting_creators: Terms and conditions URL for meeting creators
166
176
  step:
167
177
  announcement: Announcement
168
178
  comments_blocked: Comments blocked
169
179
  creation_enabled_for_participants: Meeting creation by participants enabled
170
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
171
203
  events:
172
204
  meetings:
173
205
  meeting_closed:
@@ -235,8 +267,8 @@ en:
235
267
  attachment_collections: Folders
236
268
  attachments: Attachments
237
269
  close: Close
238
- confirm_destroy: Are you sure you want to delete this meeting?
239
- 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.
240
272
  edit: Edit
241
273
  invalid_destroy:
242
274
  proposals_count:
@@ -247,6 +279,7 @@ en:
247
279
  preview: Preview
248
280
  registrations: Registrations
249
281
  title: Actions
282
+ view_deleted_meetings: View deleted meetings
250
283
  admin:
251
284
  agenda:
252
285
  agenda_item:
@@ -311,15 +344,11 @@ en:
311
344
  close:
312
345
  invalid: There was a problem closing this meeting.
313
346
  success: Meeting successfully closed.
347
+ component:
348
+ unlink: Unlink
314
349
  create:
315
350
  invalid: There was a problem creating this meeting.
316
351
  success: Meeting successfully created. Notice this is unpublished yet, you need to manually publish it.
317
- destroy:
318
- invalid:
319
- proposals_count:
320
- one: The meeting cannot be destroyed because it has %{count} proposal associated to it.
321
- other: The meeting cannot be destroyed because it has %{count} proposals associated to it.
322
- success: Meeting successfully deleted
323
352
  edit:
324
353
  title: Edit meeting
325
354
  update: Update
@@ -335,7 +364,20 @@ en:
335
364
  select_a_registration_type: Please select a registration type
336
365
  select_an_iframe_access_level: Please select an iframe access level
337
366
  index:
367
+ linked_meeting_warning_html: This meeting must be edited from <br><a href="%{href}">%{name}</a>
338
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
339
381
  new:
340
382
  create: Create
341
383
  title: Create meeting
@@ -379,6 +421,7 @@ en:
379
421
  form:
380
422
  available_slots_help: Leave it to 0 if you have unlimited slots available.
381
423
  invites: Invitations
424
+ manage_questions: Manage questions
382
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.
383
426
  registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
384
427
  registration_form: Registration form
@@ -404,6 +447,8 @@ en:
404
447
  create: "%{user_name} created the %{resource_name} meeting on the %{space_name} space"
405
448
  delete: "%{user_name} deleted the %{resource_name} meeting on the %{space_name} space"
406
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"
407
452
  update: "%{user_name} updated the %{resource_name} meeting on the %{space_name} space"
408
453
  value_types:
409
454
  organizer_presenter:
@@ -411,8 +456,6 @@ en:
411
456
  questionnaire:
412
457
  update: "%{user_name} updated the questionnaire for the %{meeting_name} meeting"
413
458
  application_helper:
414
- filter_category_values:
415
- all: All
416
459
  filter_meeting_space_values:
417
460
  all: All
418
461
  calendar:
@@ -522,7 +565,6 @@ en:
522
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.'
523
566
  online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
524
567
  registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
525
- select_a_category: Please select a category
526
568
  select_a_meeting_type: Please select a meeting type
527
569
  select_a_registration_type: Please select a registration type
528
570
  select_an_iframe_access_level: Please select an iframe access level
@@ -533,9 +575,9 @@ en:
533
575
  see_all_withdrawn: See all withdrawn meetings
534
576
  text_banner: You are viewing the list of meetings withdrawn by their authors. %{go_back_link}.
535
577
  meeting:
536
- close_meeting: Close meeting
578
+ close_meeting: Close
537
579
  edit_close_meeting: Edit meeting report
538
- edit_meeting: Edit meeting
580
+ edit_meeting: Edit
539
581
  join_meeting: Join meeting
540
582
  reply_poll: Reply poll
541
583
  view_poll: View poll
@@ -562,6 +604,7 @@ en:
562
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
563
605
  no_slots_available: No slots available
564
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>.
565
608
  registration_code_help_text: Your registration code
566
609
  registration_state:
567
610
  validated: VALIDATED
@@ -572,7 +615,7 @@ en:
572
615
  visit_finished: View past meeting
573
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.
574
617
  withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
575
- withdraw_meeting: Withdraw meeting
618
+ withdraw_meeting: Withdraw
576
619
  update:
577
620
  invalid: There was a problem updating the meeting.
578
621
  success: You have updated the meeting successfully.
@@ -595,6 +638,7 @@ en:
595
638
  map: Map
596
639
  official_meeting: Official meeting
597
640
  start_time: Start date
641
+ taxonomies: Taxonomies
598
642
  title: Title
599
643
  polls:
600
644
  answers:
@@ -664,13 +708,80 @@ en:
664
708
  transparent: Transparent
665
709
  withdraw: Withdrawn
666
710
  withdraw:
667
- error: An error ocurred while withdrawing the meeting.
711
+ error: There was a problem withdrawing the meeting.
668
712
  success: The meeting has been withdrawn successfully.
669
713
  metrics:
670
714
  meetings:
671
715
  description: Number of meetings created
672
716
  object: meetings
673
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
674
785
  participatory_spaces:
675
786
  highlighted_meetings:
676
787
  past_meetings: Past meetings
@@ -684,6 +795,7 @@ en:
684
795
  meeting_proposal: 'Related proposals:'
685
796
  proposal_meeting: 'Related meetings:'
686
797
  statistics:
798
+ attendees_count: Meeting attendees
687
799
  meetings_count: Meetings
688
800
  devise:
689
801
  mailer:
@@ -2,6 +2,8 @@
2
2
  es-MX:
3
3
  activemodel:
4
4
  attributes:
5
+ answer:
6
+ add_documents: Añadir documentos
5
7
  close_meeting:
6
8
  attendees_count: Número de asistentes
7
9
  attending_organizations: Lista de organizaciones que han participado
@@ -79,6 +81,10 @@ es-MX:
79
81
  decidim/meetings/update_meeting_event: Encuentro actualizado
80
82
  activerecord:
81
83
  models:
84
+ decidim:
85
+ meetings:
86
+ meeting:
87
+ text: 'Se debatió en este encuentro: %{link}'
82
88
  decidim/meetings/meeting:
83
89
  one: Encuentro
84
90
  other: Encuentros
@@ -90,6 +96,9 @@ es-MX:
90
96
  other: Registros
91
97
  decidim:
92
98
  admin:
99
+ admin_log:
100
+ changeset:
101
+ meetings: Encuentros
93
102
  filters:
94
103
  accepted_at_not_null:
95
104
  label: Aceptada
@@ -97,8 +106,6 @@ es-MX:
97
106
  'false': No aceptada
98
107
  'true': Aceptada
99
108
  meetings:
100
- category_id_eq:
101
- label: Categoría
102
109
  closed_at_present:
103
110
  label: Estado
104
111
  values:
@@ -109,8 +116,8 @@ es-MX:
109
116
  values:
110
117
  'false': Pasados
111
118
  'true': Próximos
112
- scope_id_eq:
113
- label: Ámbito
119
+ taxonomies_part_of_contains:
120
+ label: Taxonomía
114
121
  with_any_origin:
115
122
  label: Origen
116
123
  values:
@@ -152,22 +159,47 @@ es-MX:
152
159
  settings:
153
160
  global:
154
161
  announcement: Anuncio
162
+ clear_all: Limpiar todo
155
163
  comments_enabled: Comentarios habilitados
156
164
  comments_max_length: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
157
165
  creation_enabled_for_participants: Las participantes pueden crear encuentros
158
166
  default_registration_terms: Términos de registro predeterminados
167
+ define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
159
168
  enable_pads_creation: Habilitar la creación de pads
160
169
  maps_enabled: Mapas habilitados
170
+ no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
161
171
  registration_code_enabled: Código de inscripción activado
162
172
  resources_permissions_enabled: Se pueden establecer permisos de acciones para cada encuentro
163
- scope_id: Ámbito
164
- scopes_enabled: Ámbitos habilitados
173
+ taxonomy_filters: Seleccionar filtros para el componente
174
+ taxonomy_filters_add: Añadir un filtro
165
175
  terms_and_conditions_url_for_meeting_creators: URL de términos y condiciones para las creadoras de encuentros
166
176
  step:
167
177
  announcement: Anuncio
168
178
  comments_blocked: Comentarios bloqueados
169
179
  creation_enabled_for_participants: Habilitar la creación de encuentros por parte de las participantes
170
180
  creation_enabled_for_user_groups: Habilitar la creación de encuentros por parte de los grupos de usuarias
181
+ download_your_data:
182
+ help:
183
+ invites:
184
+ accepted_at: La fecha y hora en que se aceptó esta invitación
185
+ created_at: La fecha y hora en que se creó esta invitación
186
+ id: El identificador único de la invitación
187
+ meeting: El encuentro al que corresponde esta invitación
188
+ rejected_at: La fecha y hora en que se rechazó esta invitación
189
+ sent_at: La fecha y hora en que se envió esta invitación
190
+ updated_at: La fecha y hora en que esta invitación fue actualizada por última vez
191
+ registrations:
192
+ code: El código de inscripción
193
+ created_at: La fecha y hora en que se realizó esta inscripción
194
+ id: El identificador único de la inscripción
195
+ meeting: El encuentro al que se inscribió la usuaria
196
+ public_participation: Si la inscripción se mostraba públicamente, o no
197
+ updated_at: La fecha y hora en que esta inscripción fue actualizada por última vez
198
+ user: La usuaria que realizó la inscripción
199
+ validated_at: La fecha y hora en que se confirmó/validó esta inscripción
200
+ show:
201
+ meeting_comments: Exportar los comentarios en los encuentros
202
+ meetings: Exportar los encuentros
171
203
  events:
172
204
  meetings:
173
205
  meeting_closed:
@@ -221,7 +253,7 @@ es-MX:
221
253
  badges:
222
254
  attended_meetings:
223
255
  conditions:
224
- - Regístrate en los encuentros a los que quieres asistir
256
+ - Regístrate en los encuentros a los que quieres asistir
225
257
  description: Este distintivo se otorga cuando asistas a varias reuniones presenciales.
226
258
  description_another: Este usuario asistió a %{score} encuentros.
227
259
  description_own: Has asistido a %{score} encuentros.
@@ -235,8 +267,8 @@ es-MX:
235
267
  attachment_collections: Carpetas
236
268
  attachments: Archivos adjuntos
237
269
  close: Cerrar
238
- confirm_destroy: '¿Seguro que quiere eliminar este encuentro?'
239
- destroy: Borrar
270
+ confirm_delete_meeting: '¿Seguro que quiere eliminar este encuentro?'
271
+ deleted_meetings_info: Los encuentros eliminados se pueden restaurar desde papelera.
240
272
  edit: Editar
241
273
  invalid_destroy:
242
274
  proposals_count:
@@ -247,6 +279,7 @@ es-MX:
247
279
  preview: Previsualizar
248
280
  registrations: Inscripciones
249
281
  title: Acciones
282
+ view_deleted_meetings: Ver los encuentros eliminados
250
283
  admin:
251
284
  agenda:
252
285
  agenda_item:
@@ -311,15 +344,11 @@ es-MX:
311
344
  close:
312
345
  invalid: Se ha producido un error al cerrar este encuentro.
313
346
  success: Encuentro cerrado con éxito.
347
+ component:
348
+ unlink: Suprimir el enlace
314
349
  create:
315
350
  invalid: Se ha producido un error al crear este encuentro.
316
351
  success: Encuentro creado correctamente. Ten en cuenta que aún no se ha publicado, deberás publicarlo manualmente.
317
- destroy:
318
- invalid:
319
- proposals_count:
320
- one: No se puede eliminar el encuentro porque tiene %{count} propuesta relacionada.
321
- other: No se puede eliminar el encuentro porque tiene %{count} propuestas relacionadas.
322
- success: El encuentro se ha eliminado correctamente
323
352
  edit:
324
353
  title: Editar encuentro
325
354
  update: Actualizar
@@ -335,7 +364,20 @@ es-MX:
335
364
  select_a_registration_type: Por favor, seleccione un tipo de inscripción
336
365
  select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
337
366
  index:
367
+ linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
338
368
  title: Encuentros
369
+ linked_spaces:
370
+ assign: Asignar
371
+ link_a_space: Vincular un espacio
372
+ private_meeting_warning: Los espacios enlazados no se aplicarán si la reunión es privada y no transparente.
373
+ private_space_warning: Los espacios enlazados no se aplicarán cuando la reunión pertenezca a un espacio privado no transparente.
374
+ select: Selecciona un espacio
375
+ table:
376
+ actions: Acciones
377
+ component: Espacios vinculados
378
+ title: Espacios vinculados
379
+ manage_trash:
380
+ title: Encuentros eliminados
339
381
  new:
340
382
  create: Crear
341
383
  title: Crear encuentro
@@ -367,10 +409,10 @@ es-MX:
367
409
  poll:
368
410
  form:
369
411
  announcement_html:
370
- - Cuando una pregunta recibe respuestas o está publicada/cerrada, ya no se puede editar.
371
- - Puedes añadir una pregunta en cualquier momento.
372
- - La consulta se cerrará cuando se hayan publicado los resultados de todas las preguntas creadas.
373
- - Visita la <a href='%{admin_link}'>página de administración de encuestas</a> para enviar preguntas y publicar resultados.
412
+ - Cuando una pregunta recibe respuestas o está publicada/cerrada, ya no se puede editar.
413
+ - Puedes añadir una pregunta en cualquier momento.
414
+ - La consulta se cerrará cuando se hayan publicado los resultados de todas las preguntas creadas.
415
+ - Visita la <a href='%{admin_link}'>página de administración de encuestas</a> para enviar preguntas y publicar resultados.
374
416
  registrations:
375
417
  edit:
376
418
  save: Guardar
@@ -379,6 +421,7 @@ es-MX:
379
421
  form:
380
422
  available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
381
423
  invites: Invitaciones
424
+ manage_questions: Gestionar las preguntas
382
425
  recommendation_message: Por razones de privacidad te recomendamos que elimines este formulario de inscripción cuando ya no lo necesites. Por defecto, esto es 3 meses después de que la reunión haya finalizado.
383
426
  registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
384
427
  registration_form: Formulario de inscripción
@@ -404,6 +447,8 @@ es-MX:
404
447
  create: "%{user_name} creó el encuentro %{resource_name} en el espacio %{space_name}"
405
448
  delete: "%{user_name} eliminó el encuentro %{resource_name} en el espacio %{space_name}"
406
449
  export_registrations: "%{user_name} exportó los registros del encuentro %{resource_name} en el espacio %{space_name}"
450
+ restore: "%{user_name} restauró el encuentro %{resource_name} en el espacio %{space_name}"
451
+ soft_delete: "%{user_name} ha movido el encuentro %{resource_name} desde %{space_name} a la papelera"
407
452
  update: "%{user_name} actualizó el encuentro %{resource_name} en el espacio %{space_name}"
408
453
  value_types:
409
454
  organizer_presenter:
@@ -411,8 +456,6 @@ es-MX:
411
456
  questionnaire:
412
457
  update: "%{user_name} ha actualizado el cuestionario del encuentro %{meeting_name}"
413
458
  application_helper:
414
- filter_category_values:
415
- all: Todas
416
459
  filter_meeting_space_values:
417
460
  all: Todos
418
461
  calendar:
@@ -522,7 +565,6 @@ es-MX:
522
565
  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.'
523
566
  online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
524
567
  registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
525
- select_a_category: Por favor, selecciona una categoría
526
568
  select_a_meeting_type: Por favor, selecciona un tipo de encuentro
527
569
  select_a_registration_type: Por favor, selecciona un tipo de inscripción
528
570
  select_an_iframe_access_level: Por favor, selecciona un nivel de acceso iframe
@@ -533,9 +575,9 @@ es-MX:
533
575
  see_all_withdrawn: Ver todos los encuentros retirados
534
576
  text_banner: Estás viendo la lista de encuentros retirados por sus autores. %{go_back_link}.
535
577
  meeting:
536
- close_meeting: Cerrar encuentro
578
+ close_meeting: Cerrar
537
579
  edit_close_meeting: Editar el informe del encuentro
538
- edit_meeting: Editar encuentro
580
+ edit_meeting: Editar
539
581
  join_meeting: Unirse al encuentro
540
582
  reply_poll: Responder consulta
541
583
  view_poll: Ver consulta
@@ -562,6 +604,7 @@ es-MX:
562
604
  micro_camera_permissions_warning: Cuando hagas clic en el botón de abajo, se te pedirán permisos de micrófono y/o cámara y te unirás a la videoconferencia
563
605
  no_slots_available: No hay espacio disponible
564
606
  organizations: Organizaciones que han asistido
607
+ redirect_notice: Este encuentro pertenece a otro espacio de participación, por lo que se te ha trasladado a %{current_space_name}.<br>Si lo prefieres, puedes volver a <a href="%{previous_space_url}">%{previous_space_name}</a>.
565
608
  registration_code_help_text: Tu codigo de registro
566
609
  registration_state:
567
610
  validated: Validado
@@ -572,7 +615,7 @@ es-MX:
572
615
  visit_finished: Ver encuentro pasado
573
616
  withdraw_btn_hint: Puedes retirar tu encuentro si cambias de opinión. El encuentro no será eliminado, aparecerá en la lista de encuentros retirados.
574
617
  withdraw_confirmation_html: '¿Seguro que quieres retirar este encuentro?<br><br><strong>¡Esta acción no se puede cancelar!</strong>'
575
- withdraw_meeting: Retirar encuentro
618
+ withdraw_meeting: Retirar
576
619
  update:
577
620
  invalid: Se ha producido un error al actualizar este encuentro.
578
621
  success: Has actualizado el encuentro con éxito.
@@ -595,6 +638,7 @@ es-MX:
595
638
  map: Mapa
596
639
  official_meeting: Encuentro oficial
597
640
  start_time: Fecha de inicio
641
+ taxonomies: Taxonomías
598
642
  title: Título
599
643
  polls:
600
644
  answers:
@@ -671,6 +715,73 @@ es-MX:
671
715
  description: Número de encuentros creados
672
716
  object: encuentros
673
717
  title: Encuentros
718
+ open_data:
719
+ help:
720
+ meeting_comments:
721
+ alignment: Si este comentario fue un favor, en contra o neutral
722
+ author: El nombre usuaria de la participante que hizo este comentario
723
+ body: El comentario en sí
724
+ commentable_id: El identificador único de aquello que se podía comentar
725
+ commentable_type: La tipología de aquello sobre lo que se realizó el comentario (si fue un resultado, una propuesta, etc.)
726
+ comments: Los datos de los comentarios del encuentro
727
+ created_at: La fecha en la que se creó este comentario
728
+ depth: El lugar donde se encuentra este comentario en la terna de comentarios (si es un comentario, una respuesta a un comentario, o la respuesta de una respuesta)
729
+ id: El identificador de este comentario
730
+ locale: La configuración regional (idioma) que la participante tuvo al dejar este comentario
731
+ root_commentable_url: La URL (dirección web) del recurso que enlaza con este comentario
732
+ user_group: El nombre del grupo de usuarias que hizo este comentario (si lo hay)
733
+ meetings:
734
+ address: La dirección del encuentro en caso de que este sea presencial y tenga una ubicación física
735
+ attachments: El número de archivos adjuntos en este encuentro
736
+ attendees: El número de personas que asistieron a este encuentro
737
+ attending_organizations: Las organizaciones que asistieron a este encuentro
738
+ audio_url: Grabación de audio del encuentro
739
+ author: Los datos de autoría de este encuentro
740
+ available_slots: El número de plazas disponibles para el encuentro
741
+ closed_at: La fecha en la que se cerró el encuentro
742
+ closing_report: Acta/Informe del encuentro cerrado
743
+ closing_visible: La visibilidad de la información de cierre del encuentro
744
+ comments: Los datos de los comentarios del encuentro
745
+ component: El componente al que pertenece este encuentro
746
+ contributions: El número de contribuciones realizadas en este encuentro por las asistentes
747
+ created_at: La fecha en la que se creó este encuentro
748
+ customize_registration_email: Posibilidad de introducir un correo electrónico personalizado al registrarse en el encuentro
749
+ decidim_author_type: Tipo de autoría (origen) del encuentro
750
+ decidim_user_group_id: ID del grupo de usuarias involucrado en el encuentro
751
+ description: La descripción del encuentro
752
+ end_time: La fecha y hora en que terminó este encuentro
753
+ follows_count: El número de seguidoras que tiene el encuentro
754
+ id: El identificador único del encuentro
755
+ iframe_access_level: El nivel de acceso de la sala de videoconferencias del encuentro
756
+ iframe_embed_type: El tipo de visualización de la sala de videoconferencias del encuentro
757
+ latitude: La latitud del lugar de encuentro
758
+ location: La localización del encuentro
759
+ location_hints: Detalle de ubicación dentro del lugar donde se celebró el encuentro
760
+ longitude: La longitud del lugar de encuentro
761
+ online_meeting_url: La URL de la sala de videoconferencias
762
+ organizations: Las organizaciones que asistieron a esta reunión
763
+ participatory_space: A qué espacio pertenece este encuentro (proceso participativo, asamblea, etc.)
764
+ private_meeting: Si el encuentro fue privado o no
765
+ published: Cuando se publicó el encuentro
766
+ reference: El identificador único del recurso en esta plataforma
767
+ registration_form_enabled: Si se habilitó, o no, un formulario de inscripción al encuentro
768
+ registration_terms: Los términos y condiciones de registro al encuentro que se aceptaron antes de participar
769
+ registration_type: El tipo de inscripción al encuentro
770
+ registration_url: La URL para inscribirse al encuentro
771
+ registrations_enabled: Si se habilitó la inscripción al encuentro
772
+ related_proposals: Las propuestas relacionadas con este encuentro
773
+ related_results: Los resultados relacionados con este encuentro
774
+ reserved_slots: El número de plazas reservadas que tenía el encuentro
775
+ start_time: La fecha y hora en que se inició este encuentro
776
+ taxonomies: Las taxonomías a las que pertenece este encuentro
777
+ title: El título del encuentro
778
+ transparent: La visibilidad del encuentro para visitantes
779
+ type_of_meeting: El tipo de reunión
780
+ updated_at: La fecha de la última actualización del encuentro
781
+ url: La URL del encuentro
782
+ video_url: La URL del vídeo del encuentro
783
+ withdrawn: Si se canceló el encuentro
784
+ withdrawn_at: Cuando fue retirado/cancelado este encuentro
674
785
  participatory_spaces:
675
786
  highlighted_meetings:
676
787
  past_meetings: Encuentros pasados
@@ -684,6 +795,7 @@ es-MX:
684
795
  meeting_proposal: 'Propuestas relacionadas:'
685
796
  proposal_meeting: 'Encuentros relacionados:'
686
797
  statistics:
798
+ attendees_count: Asistentes a la reunión
687
799
  meetings_count: Encuentros
688
800
  devise:
689
801
  mailer: