decidim-meetings 0.30.3 → 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 +9 -14
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +0 -3
- 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 +8 -37
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +19 -9
- 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 +87 -44
- data/config/locales/ca.yml +87 -44
- data/config/locales/cs.yml +71 -46
- data/config/locales/de.yml +87 -41
- data/config/locales/el.yml +1 -25
- data/config/locales/en.yml +89 -46
- data/config/locales/es-MX.yml +87 -44
- data/config/locales/es-PY.yml +87 -44
- data/config/locales/es.yml +87 -44
- data/config/locales/eu.yml +93 -50
- data/config/locales/fi-plain.yml +86 -43
- data/config/locales/fi.yml +85 -42
- data/config/locales/fr-CA.yml +79 -41
- data/config/locales/fr.yml +79 -41
- 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 -45
- 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 -42
- 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
|
|
@@ -365,9 +384,7 @@ en:
|
|
|
365
384
|
select_an_iframe_access_level: Please select an iframe access level
|
|
366
385
|
index:
|
|
367
386
|
linked_meeting_warning_html: This meeting must be edited from <br><a href="%{href}">%{name}</a>
|
|
368
|
-
published: Published
|
|
369
387
|
title: Meetings
|
|
370
|
-
unpublished: Unpublished
|
|
371
388
|
linked_spaces:
|
|
372
389
|
assign: Assign
|
|
373
390
|
link_a_space: Link a space
|
|
@@ -386,6 +403,13 @@ en:
|
|
|
386
403
|
publish:
|
|
387
404
|
invalid: There was a problem publishing this meeting.
|
|
388
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
|
|
389
413
|
service:
|
|
390
414
|
description: Description
|
|
391
415
|
down: Down
|
|
@@ -411,22 +435,21 @@ en:
|
|
|
411
435
|
poll:
|
|
412
436
|
form:
|
|
413
437
|
announcement_html:
|
|
414
|
-
- When a question receives
|
|
438
|
+
- When a question receives responses or is published/closed, it can no longer be edited.
|
|
415
439
|
- You can add a question at any time.
|
|
416
440
|
- The poll will be closed when the results of all created questions have been published.
|
|
417
441
|
- Visit the <a href='%{admin_link}'>poll administration page</a> to send questions and publish results.
|
|
418
442
|
registrations:
|
|
419
443
|
edit:
|
|
420
444
|
save: Save
|
|
421
|
-
validate: Validate
|
|
422
|
-
validate_registration_code: Validate registration code
|
|
423
445
|
form:
|
|
424
446
|
available_slots_help: Leave it to 0 if you have unlimited slots available.
|
|
425
447
|
invites: Invitations
|
|
426
|
-
manage_questions:
|
|
448
|
+
manage_questions: Questions
|
|
427
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.
|
|
428
450
|
registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
|
|
429
451
|
registration_form: Registration form
|
|
452
|
+
registrations: View registrations
|
|
430
453
|
registrations_count:
|
|
431
454
|
one: There has been %{count} registration.
|
|
432
455
|
other: There has been %{count} registrations.
|
|
@@ -436,6 +459,14 @@ en:
|
|
|
436
459
|
update:
|
|
437
460
|
invalid: There was a problem saving the registration settings.
|
|
438
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.
|
|
439
470
|
validate_registration_code:
|
|
440
471
|
invalid: This registration code is invalid.
|
|
441
472
|
success: Registration code successfully validated.
|
|
@@ -549,7 +580,6 @@ en:
|
|
|
549
580
|
all: All
|
|
550
581
|
official: Official
|
|
551
582
|
participants: Participants
|
|
552
|
-
user_group: Groups
|
|
553
583
|
search: Search
|
|
554
584
|
type: Type
|
|
555
585
|
type_values:
|
|
@@ -560,7 +590,6 @@ en:
|
|
|
560
590
|
form:
|
|
561
591
|
address_help: 'Address: used by Geocoder to find the location'
|
|
562
592
|
available_slots_help: Leave it to 0 if you have unlimited slots available
|
|
563
|
-
create_as: Create meeting as
|
|
564
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.'
|
|
565
594
|
iframe_embed_type_html: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
|
|
566
595
|
location_help: 'Location: message directed to the users implying the spot to meet at'
|
|
@@ -597,8 +626,11 @@ en:
|
|
|
597
626
|
attendees: Attendees count
|
|
598
627
|
contributions: Contributions count
|
|
599
628
|
join: Register
|
|
629
|
+
join_waitlist: Join waitlist
|
|
600
630
|
leave: Cancel your registration
|
|
601
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?
|
|
602
634
|
link_available_soon: Link available soon
|
|
603
635
|
link_closed: The link to join the meeting will be available a few minutes before it starts
|
|
604
636
|
live_event: This meeting is happening right now
|
|
@@ -606,8 +638,11 @@ en:
|
|
|
606
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
|
|
607
639
|
no_slots_available: No slots available
|
|
608
640
|
organizations: Attending organizations
|
|
641
|
+
pending_address: The location will be announced soon.
|
|
609
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>.
|
|
610
|
-
|
|
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
|
|
611
646
|
registration_state:
|
|
612
647
|
validated: VALIDATED
|
|
613
648
|
validation_pending: VALIDATION PENDING
|
|
@@ -615,6 +650,9 @@ en:
|
|
|
615
650
|
one: "%{count} slot remaining"
|
|
616
651
|
other: "%{count} slots remaining"
|
|
617
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
|
|
618
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.
|
|
619
657
|
withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
|
|
620
658
|
withdraw_meeting: Withdraw
|
|
@@ -639,31 +677,31 @@ en:
|
|
|
639
677
|
id: ID
|
|
640
678
|
map: Map
|
|
641
679
|
official_meeting: Official meeting
|
|
642
|
-
published: Published
|
|
643
680
|
start_time: Start date
|
|
644
681
|
taxonomies: Taxonomies
|
|
645
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
|
|
646
692
|
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
693
|
questions:
|
|
656
694
|
closed_question:
|
|
657
695
|
announcement: The replies for this question have been closed.
|
|
658
696
|
question: Question
|
|
659
697
|
question_results: Results
|
|
660
698
|
index:
|
|
661
|
-
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.
|
|
662
700
|
index_admin:
|
|
663
701
|
edit: Edit in the admin panel
|
|
664
702
|
question: Question
|
|
665
|
-
|
|
666
|
-
|
|
703
|
+
received_response: received response
|
|
704
|
+
received_responses: received responses
|
|
667
705
|
results: Results
|
|
668
706
|
send: Send
|
|
669
707
|
sent: Sent
|
|
@@ -676,8 +714,15 @@ en:
|
|
|
676
714
|
question: Question
|
|
677
715
|
question_replied: Question replied
|
|
678
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
|
|
679
725
|
public_participants_list:
|
|
680
|
-
attending_organizations: Organizations
|
|
681
726
|
attending_participants: Participants
|
|
682
727
|
hidden_participants_count:
|
|
683
728
|
one: and %{count} more person
|
|
@@ -687,7 +732,7 @@ en:
|
|
|
687
732
|
confirmation:
|
|
688
733
|
confirmed_html: Your registration for the meeting <a href="%{url}">%{title}</a> has been confirmed.
|
|
689
734
|
details: You will find the meeting's details in the attachment.
|
|
690
|
-
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.
|
|
691
736
|
registration_type:
|
|
692
737
|
on_different_platform: On a different platform
|
|
693
738
|
on_this_platform: On this platform
|
|
@@ -702,6 +747,9 @@ en:
|
|
|
702
747
|
destroy:
|
|
703
748
|
invalid: There was a problem leaving this meeting.
|
|
704
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.
|
|
705
753
|
type_of_meeting:
|
|
706
754
|
hybrid: Hybrid
|
|
707
755
|
in_person: In person
|
|
@@ -713,11 +761,6 @@ en:
|
|
|
713
761
|
withdraw:
|
|
714
762
|
error: There was a problem withdrawing the meeting.
|
|
715
763
|
success: The meeting has been withdrawn successfully.
|
|
716
|
-
metrics:
|
|
717
|
-
meetings:
|
|
718
|
-
description: Number of meetings created
|
|
719
|
-
object: meetings
|
|
720
|
-
title: Meetings
|
|
721
764
|
open_data:
|
|
722
765
|
help:
|
|
723
766
|
meeting_comments:
|
|
@@ -728,11 +771,10 @@ en:
|
|
|
728
771
|
commentable_type: The type of the commentable (if it was a result, a proposal, etc.)
|
|
729
772
|
comments: The comments data of the meeting
|
|
730
773
|
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
|
|
774
|
+
depth: The place where this comment is in the three of comments (if it is a response or a response of a response)
|
|
732
775
|
id: The id for this comment
|
|
733
776
|
locale: The locale (language) that the participant had when leaving this comment
|
|
734
777
|
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
778
|
meetings:
|
|
737
779
|
address: The address of the meeting in case it is in person and has a physical location
|
|
738
780
|
attachments: The number of attachments in this meeting
|
|
@@ -750,7 +792,6 @@ en:
|
|
|
750
792
|
created_at: The date at which the meeting was created
|
|
751
793
|
customize_registration_email: The ability to allow a custom email at registration
|
|
752
794
|
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
795
|
description: The description of the meeting
|
|
755
796
|
end_time: The date and time that this meeting ends
|
|
756
797
|
follows_count: The number of follows the meeting has
|
|
@@ -800,6 +841,8 @@ en:
|
|
|
800
841
|
statistics:
|
|
801
842
|
attendees_count: Meeting attendees
|
|
802
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
|
|
803
846
|
devise:
|
|
804
847
|
mailer:
|
|
805
848
|
join_meeting:
|