decidim-meetings 0.30.2 → 0.31.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.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +7 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +4 -5
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +25 -28
- data/app/cells/decidim/meetings/join_meeting_button/waitlist_button.erb +22 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +28 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -7
- data/app/cells/decidim/meetings/question_responses_cell.rb +28 -28
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +5 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +7 -3
- data/app/commands/decidim/meetings/admin/mark_as_attendee.rb +44 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +15 -6
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +4 -4
- data/app/commands/decidim/meetings/admin/update_registrations.rb +19 -7
- data/app/commands/decidim/meetings/create_meeting.rb +2 -3
- data/app/commands/decidim/meetings/{create_answer.rb → create_response.rb} +11 -11
- data/app/commands/decidim/meetings/join_meeting.rb +4 -6
- data/app/commands/decidim/meetings/join_waitlist.rb +53 -0
- data/app/commands/decidim/meetings/leave_meeting.rb +14 -5
- data/app/commands/decidim/meetings/update_meeting.rb +1 -2
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +1 -1
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +4 -4
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +10 -10
- data/app/controllers/decidim/meetings/admin/registrations_attendees_controller.rb +79 -0
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +1 -22
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +11 -11
- data/app/controllers/decidim/meetings/polls/{answers_controller.rb → responses_controller.rb} +7 -7
- data/app/controllers/decidim/meetings/registrations_controller.rb +39 -12
- data/app/events/decidim/meetings/registration_marked_as_attendee_event.rb +9 -0
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +41 -0
- data/app/events/decidim/meetings/update_meeting_event.rb +25 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +4 -0
- data/app/forms/decidim/meetings/admin/meeting_form.rb +28 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
- data/app/forms/decidim/meetings/base_meeting_form.rb +0 -2
- data/app/forms/decidim/meetings/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/join_meeting_form.rb +0 -1
- data/app/forms/decidim/meetings/meeting_form.rb +3 -2
- data/app/forms/decidim/meetings/response_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/{answer_form.rb → response_form.rb} +7 -7
- data/app/helpers/decidim/meetings/application_helper.rb +0 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +14 -5
- data/app/jobs/decidim/meetings/promote_from_waitlist_job.rb +63 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
- data/app/mailers/decidim/meetings/registration_mailer.rb +13 -0
- data/app/models/decidim/meetings/agenda_item.rb +5 -0
- data/app/models/decidim/meetings/meeting.rb +15 -12
- data/app/models/decidim/meetings/question.rb +12 -12
- data/app/models/decidim/meetings/questionnaire.rb +1 -1
- data/app/models/decidim/meetings/registration.rb +19 -7
- data/app/models/decidim/meetings/{answer.rb → response.rb} +6 -6
- data/app/models/decidim/meetings/response_choice.rb +15 -0
- data/app/models/decidim/meetings/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/src/decidim/meetings/admin/destroy_meeting_alert.js +1 -1
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +1 -8
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_invite_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_polls.js +1 -1
- data/app/packs/src/decidim/meetings/poll.component.js +5 -5
- data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -1
- data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -4
- data/app/permissions/decidim/meetings/admin/agenda_permissions.rb +34 -0
- data/app/permissions/decidim/meetings/admin/meeting_permissions.rb +44 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +5 -66
- data/app/permissions/decidim/meetings/admin/questionnaire_permissions.rb +30 -0
- data/app/permissions/decidim/meetings/meeting_permissions.rb +90 -0
- data/app/permissions/decidim/meetings/permissions.rb +9 -105
- data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/agenda_item_presenter.rb +29 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +11 -15
- data/app/presenters/decidim/meetings/registration_presenter.rb +24 -0
- data/app/queries/decidim/meetings/{questionnaire_user_answers.rb → questionnaire_user_responses.rb} +5 -5
- data/app/serializers/decidim/meetings/registration_serializer.rb +5 -6
- data/app/services/decidim/meetings/diff_renderer.rb +0 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -0
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -2
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +11 -8
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
- data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +19 -0
- data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +7 -5
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +2 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +6 -6
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +13 -13
- data/app/views/decidim/meetings/admin/poll/_response_option.html.erb +35 -0
- data/app/views/decidim/meetings/admin/poll/_response_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +3 -3
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +5 -5
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +19 -39
- data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +126 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_form.html.erb +2 -11
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +11 -10
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_registration_code_modal.html.erb +16 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +5 -5
- data/app/views/decidim/meetings/polls/responses/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/responses/_single_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/{answers → responses}/admin.html.erb +4 -4
- data/app/views/decidim/meetings/polls/{answers → responses}/index.html.erb +4 -4
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +6 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +1 -26
- data/config/locales/bg.yml +2 -32
- data/config/locales/ca-IT.yml +86 -40
- data/config/locales/ca.yml +86 -40
- data/config/locales/cs.yml +71 -43
- data/config/locales/de.yml +87 -41
- data/config/locales/el.yml +1 -25
- data/config/locales/en.yml +89 -43
- data/config/locales/es-MX.yml +87 -41
- data/config/locales/es-PY.yml +87 -41
- data/config/locales/es.yml +87 -41
- data/config/locales/eu.yml +86 -40
- data/config/locales/fi-plain.yml +86 -40
- data/config/locales/fi.yml +85 -39
- data/config/locales/fr-CA.yml +79 -38
- data/config/locales/fr.yml +79 -38
- data/config/locales/ga-IE.yml +1 -7
- data/config/locales/gl.yml +1 -19
- data/config/locales/hu.yml +1 -22
- data/config/locales/id-ID.yml +0 -16
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +1 -29
- data/config/locales/ja.yml +88 -42
- data/config/locales/lb.yml +1 -15
- data/config/locales/lt.yml +1 -28
- data/config/locales/lv.yml +0 -16
- data/config/locales/nl.yml +1 -26
- data/config/locales/no.yml +1 -28
- data/config/locales/pl.yml +2 -32
- data/config/locales/pt-BR.yml +1 -28
- data/config/locales/pt.yml +1 -28
- data/config/locales/ro-RO.yml +56 -29
- data/config/locales/ru.yml +0 -16
- data/config/locales/sk.yml +0 -16
- data/config/locales/sl.yml +0 -4
- data/config/locales/sv.yml +85 -39
- data/config/locales/tr-TR.yml +0 -20
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +0 -19
- data/config/locales/zh-TW.yml +1 -26
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +8 -2
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +8 -2
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20250317103343_rename_answer_to_response_in_decidim_meetings.rb +18 -0
- data/db/migrate/20250403094034_add_reminder_customization_to_decidim_meetings.rb +9 -0
- data/db/migrate/20250408071941_add_status_to_registrations_to_decidim_meetings_registrations.rb +8 -0
- data/lib/decidim/api/agenda_item_type.rb +6 -2
- data/lib/decidim/api/agenda_type.rb +6 -2
- data/lib/decidim/api/linked_resources_interface.rb +1 -1
- data/lib/decidim/api/meeting_type.rb +20 -10
- data/lib/decidim/api/service_type.rb +3 -0
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +29 -8
- data/lib/decidim/meetings/engine.rb +6 -21
- data/lib/decidim/meetings/meeting_serializer.rb +1 -2
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +0 -10
- data/lib/decidim/meetings/seeds.rb +4 -13
- data/lib/decidim/meetings/test/factories.rb +10 -16
- data/lib/decidim/meetings/user_responses_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +7 -9
- metadata +49 -35
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +0 -32
- data/app/forms/decidim/meetings/answer_choice_form.rb +0 -14
- data/app/models/decidim/meetings/answer_choice.rb +0 -15
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +0 -31
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +0 -48
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +0 -35
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +0 -13
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +0 -13
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +0 -39
- data/lib/decidim/meetings/user_answers_serializer.rb +0 -47
- /data/app/views/decidim/meetings/polls/{answers → responses}/create.js.erb +0 -0
data/config/locales/en.yml
CHANGED
@@ -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
|
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
|
-
|
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
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
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,8 +284,6 @@ 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?
|
271
289
|
deleted_meetings_info: Deleted meetings can be restored from the trash.
|
@@ -275,6 +293,7 @@ en:
|
|
275
293
|
one: 'The meeting cannot be destroyed because it has %{count} proposal associated to it:'
|
276
294
|
other: 'The meeting cannot be destroyed because it has %{count} proposals associated to it:'
|
277
295
|
manage_poll: Manage poll
|
296
|
+
mark_as_attendee: Mark as attendee
|
278
297
|
new_meeting: New meeting
|
279
298
|
preview: Preview
|
280
299
|
registrations: Registrations
|
@@ -312,10 +331,10 @@ en:
|
|
312
331
|
invalid: There was a problem updating this agenda.
|
313
332
|
success: Agenda successfully updated.
|
314
333
|
exports:
|
315
|
-
answers: Answers
|
316
334
|
meeting_comments: Comments
|
317
335
|
meetings: Meetings
|
318
336
|
registrations: Registrations
|
337
|
+
responses: Responses
|
319
338
|
invite_join_meeting_mailer:
|
320
339
|
invite:
|
321
340
|
decline: Decline invitation
|
@@ -384,6 +403,13 @@ en:
|
|
384
403
|
publish:
|
385
404
|
invalid: There was a problem publishing this meeting.
|
386
405
|
success: Meeting successfully published.
|
406
|
+
reminders:
|
407
|
+
reminder_enabled: Send a reminder for this meeting
|
408
|
+
reminder_message: Reminder email content
|
409
|
+
reminder_message_help_text: Customize the message as needed. Use {{meeting_title}} to display the meeting name.
|
410
|
+
send_reminder: Scheduled reminder email
|
411
|
+
send_reminder_help_text: Reminder time in hours before the meeting.
|
412
|
+
title: Reminders
|
387
413
|
service:
|
388
414
|
description: Description
|
389
415
|
down: Down
|
@@ -409,22 +435,21 @@ en:
|
|
409
435
|
poll:
|
410
436
|
form:
|
411
437
|
announcement_html:
|
412
|
-
- When a question receives
|
438
|
+
- When a question receives responses or is published/closed, it can no longer be edited.
|
413
439
|
- You can add a question at any time.
|
414
440
|
- The poll will be closed when the results of all created questions have been published.
|
415
441
|
- Visit the <a href='%{admin_link}'>poll administration page</a> to send questions and publish results.
|
416
442
|
registrations:
|
417
443
|
edit:
|
418
444
|
save: Save
|
419
|
-
validate: Validate
|
420
|
-
validate_registration_code: Validate registration code
|
421
445
|
form:
|
422
446
|
available_slots_help: Leave it to 0 if you have unlimited slots available.
|
423
447
|
invites: Invitations
|
424
|
-
manage_questions:
|
448
|
+
manage_questions: Questions
|
425
449
|
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.
|
426
450
|
registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
|
427
451
|
registration_form: Registration form
|
452
|
+
registrations: View registrations
|
428
453
|
registrations_count:
|
429
454
|
one: There has been %{count} registration.
|
430
455
|
other: There has been %{count} registrations.
|
@@ -434,6 +459,14 @@ en:
|
|
434
459
|
update:
|
435
460
|
invalid: There was a problem saving the registration settings.
|
436
461
|
success: Meeting registrations settings successfully saved.
|
462
|
+
registrations_attendees:
|
463
|
+
index:
|
464
|
+
title: Registrations
|
465
|
+
validate: Validate
|
466
|
+
validate_registration_code: Validate registration code
|
467
|
+
mark_attendee:
|
468
|
+
invalid: Registration already marked as attended.
|
469
|
+
success: Registration marked as attended successfully.
|
437
470
|
validate_registration_code:
|
438
471
|
invalid: This registration code is invalid.
|
439
472
|
success: Registration code successfully validated.
|
@@ -547,7 +580,6 @@ en:
|
|
547
580
|
all: All
|
548
581
|
official: Official
|
549
582
|
participants: Participants
|
550
|
-
user_group: Groups
|
551
583
|
search: Search
|
552
584
|
type: Type
|
553
585
|
type_values:
|
@@ -558,7 +590,6 @@ en:
|
|
558
590
|
form:
|
559
591
|
address_help: 'Address: used by Geocoder to find the location'
|
560
592
|
available_slots_help: Leave it to 0 if you have unlimited slots available
|
561
|
-
create_as: Create meeting as
|
562
593
|
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.'
|
563
594
|
iframe_embed_type_html: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
|
564
595
|
location_help: 'Location: message directed to the users implying the spot to meet at'
|
@@ -595,8 +626,11 @@ en:
|
|
595
626
|
attendees: Attendees count
|
596
627
|
contributions: Contributions count
|
597
628
|
join: Register
|
629
|
+
join_waitlist: Join waitlist
|
598
630
|
leave: Cancel your registration
|
599
631
|
leave_confirmation: Are you sure you want to cancel your registration for this meeting?
|
632
|
+
leave_waitlist: Leave waitlist
|
633
|
+
leave_waitlist_confirmation: Are you sure you want to leave the waitlist for this meeting?
|
600
634
|
link_available_soon: Link available soon
|
601
635
|
link_closed: The link to join the meeting will be available a few minutes before it starts
|
602
636
|
live_event: This meeting is happening right now
|
@@ -604,8 +638,11 @@ en:
|
|
604
638
|
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
|
605
639
|
no_slots_available: No slots available
|
606
640
|
organizations: Attending organizations
|
641
|
+
pending_address: The location will be announced soon.
|
607
642
|
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>.
|
608
|
-
|
643
|
+
registration_and_qr_code: Registration and QR Code
|
644
|
+
registration_code: 'Registration code: %{code}'
|
645
|
+
registration_code_help_text: Your registration and QR code
|
609
646
|
registration_state:
|
610
647
|
validated: VALIDATED
|
611
648
|
validation_pending: VALIDATION PENDING
|
@@ -613,6 +650,9 @@ en:
|
|
613
650
|
one: "%{count} slot remaining"
|
614
651
|
other: "%{count} slots remaining"
|
615
652
|
visit_finished: View past meeting
|
653
|
+
waitlist:
|
654
|
+
description: If a spot becomes available, we well process your registration automatically and notify you via email.
|
655
|
+
status: You are on the waitlist
|
616
656
|
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.
|
617
657
|
withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
|
618
658
|
withdraw_meeting: Withdraw
|
@@ -640,27 +680,28 @@ en:
|
|
640
680
|
start_time: Start date
|
641
681
|
taxonomies: Taxonomies
|
642
682
|
title: Title
|
683
|
+
registration:
|
684
|
+
actions: Actions
|
685
|
+
fields:
|
686
|
+
email: Email
|
687
|
+
name: Name
|
688
|
+
status: Status
|
689
|
+
status:
|
690
|
+
attended: Attended
|
691
|
+
not_attended: Not attended
|
643
692
|
polls:
|
644
|
-
answers:
|
645
|
-
index:
|
646
|
-
administrate: Administrate
|
647
|
-
title: Poll
|
648
|
-
index_admin:
|
649
|
-
back_to_meeting: Back to meeting
|
650
|
-
title: Administrate poll
|
651
|
-
view_poll: View poll
|
652
693
|
questions:
|
653
694
|
closed_question:
|
654
695
|
announcement: The replies for this question have been closed.
|
655
696
|
question: Question
|
656
697
|
question_results: Results
|
657
698
|
index:
|
658
|
-
empty_questions: Throughout this meeting, some questions will be sent and you will be able to
|
699
|
+
empty_questions: Throughout this meeting, some questions will be sent and you will be able to respond them. They will be displayed here.
|
659
700
|
index_admin:
|
660
701
|
edit: Edit in the admin panel
|
661
702
|
question: Question
|
662
|
-
|
663
|
-
|
703
|
+
received_response: received response
|
704
|
+
received_responses: received responses
|
664
705
|
results: Results
|
665
706
|
send: Send
|
666
707
|
sent: Sent
|
@@ -673,8 +714,15 @@ en:
|
|
673
714
|
question: Question
|
674
715
|
question_replied: Question replied
|
675
716
|
reply_question: Reply question
|
717
|
+
responses:
|
718
|
+
index:
|
719
|
+
administrate: Administrate
|
720
|
+
title: Poll
|
721
|
+
index_admin:
|
722
|
+
back_to_meeting: Back to meeting
|
723
|
+
title: Administrate poll
|
724
|
+
view_poll: View poll
|
676
725
|
public_participants_list:
|
677
|
-
attending_organizations: Organizations
|
678
726
|
attending_participants: Participants
|
679
727
|
hidden_participants_count:
|
680
728
|
one: and %{count} more person
|
@@ -684,7 +732,7 @@ en:
|
|
684
732
|
confirmation:
|
685
733
|
confirmed_html: Your registration for the meeting <a href="%{url}">%{title}</a> has been confirmed.
|
686
734
|
details: You will find the meeting's details in the attachment.
|
687
|
-
registration_code: Your registration code is %{code}.
|
735
|
+
registration_code: Your registration code is %{code}. Please, show the following QR code to an administrator to validate your attendance.
|
688
736
|
registration_type:
|
689
737
|
on_different_platform: On a different platform
|
690
738
|
on_this_platform: On this platform
|
@@ -699,6 +747,9 @@ en:
|
|
699
747
|
destroy:
|
700
748
|
invalid: There was a problem leaving this meeting.
|
701
749
|
success: You have left the meeting successfully.
|
750
|
+
waitlist:
|
751
|
+
invalid: There was a problem joining the waitlist.
|
752
|
+
success: You have joined the meeting waitlist successfully. You will be notified if your registration is successfully secured.
|
702
753
|
type_of_meeting:
|
703
754
|
hybrid: Hybrid
|
704
755
|
in_person: In person
|
@@ -710,11 +761,6 @@ en:
|
|
710
761
|
withdraw:
|
711
762
|
error: There was a problem withdrawing the meeting.
|
712
763
|
success: The meeting has been withdrawn successfully.
|
713
|
-
metrics:
|
714
|
-
meetings:
|
715
|
-
description: Number of meetings created
|
716
|
-
object: meetings
|
717
|
-
title: Meetings
|
718
764
|
open_data:
|
719
765
|
help:
|
720
766
|
meeting_comments:
|
@@ -725,11 +771,10 @@ en:
|
|
725
771
|
commentable_type: The type of the commentable (if it was a result, a proposal, etc.)
|
726
772
|
comments: The comments data of the meeting
|
727
773
|
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
|
774
|
+
depth: The place where this comment is in the three of comments (if it is a response or a response of a response)
|
729
775
|
id: The id for this comment
|
730
776
|
locale: The locale (language) that the participant had when leaving this comment
|
731
777
|
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
778
|
meetings:
|
734
779
|
address: The address of the meeting in case it is in person and has a physical location
|
735
780
|
attachments: The number of attachments in this meeting
|
@@ -747,7 +792,6 @@ en:
|
|
747
792
|
created_at: The date at which the meeting was created
|
748
793
|
customize_registration_email: The ability to allow a custom email at registration
|
749
794
|
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
795
|
description: The description of the meeting
|
752
796
|
end_time: The date and time that this meeting ends
|
753
797
|
follows_count: The number of follows the meeting has
|
@@ -797,6 +841,8 @@ en:
|
|
797
841
|
statistics:
|
798
842
|
attendees_count: Meeting attendees
|
799
843
|
meetings_count: Meetings
|
844
|
+
meetings_count_tooltip: The number of meetings that have taken place, both online and in person.
|
845
|
+
participatory_space_meetings_count: Meetings
|
800
846
|
devise:
|
801
847
|
mailer:
|
802
848
|
join_meeting:
|