decidim-meetings 0.29.1 → 0.30.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +3 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -1
- data/app/cells/decidim/meetings/dates_and_map/show.erb +6 -4
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +5 -2
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +3 -3
- data/app/cells/decidim/meetings/meeting_l_cell.rb +17 -0
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +8 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +8 -2
- data/app/commands/decidim/meetings/create_meeting.rb +2 -2
- data/app/commands/decidim/meetings/update_meeting.rb +2 -3
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +9 -5
- data/app/controllers/concerns/decidim/meetings/component_filterable.rb +1 -2
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +14 -22
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +8 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -4
- data/app/controllers/decidim/meetings/meetings_controller.rb +40 -6
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +17 -31
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +2 -2
- data/app/forms/decidim/meetings/base_meeting_form.rb +6 -0
- data/app/forms/decidim/meetings/meeting_form.rb +2 -30
- data/app/helpers/decidim/meetings/admin/application_helper.rb +11 -1
- data/app/helpers/decidim/meetings/application_helper.rb +35 -1
- data/app/helpers/decidim/meetings/directory/application_helper.rb +9 -48
- data/app/helpers/decidim/meetings/meetings_helper.rb +5 -0
- data/app/models/decidim/meetings/invite.rb +10 -0
- data/app/models/decidim/meetings/meeting.rb +23 -1
- data/app/models/decidim/meetings/meeting_link.rb +25 -0
- data/app/packs/entrypoints/decidim_meetings_admin.js +1 -0
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +77 -0
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +8 -0
- data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -17
- data/app/permissions/decidim/meetings/admin/permissions.rb +1 -1
- data/app/permissions/decidim/meetings/permissions.rb +20 -11
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +14 -6
- data/app/queries/decidim/meetings/filtered_meetings.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +6 -6
- data/app/serializers/decidim/meetings/base_download_your_data_serializer.rb +32 -0
- data/app/serializers/decidim/meetings/download_your_data_invite_serializer.rb +6 -26
- data/app/serializers/decidim/meetings/download_your_data_meeting_serializer.rb +15 -0
- data/app/serializers/decidim/meetings/download_your_data_registration_serializer.rb +6 -24
- data/app/views/decidim/meetings/admin/meetings/_component.html.erb +15 -0
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +7 -9
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +53 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +42 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +70 -0
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +26 -0
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +16 -142
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +23 -0
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +44 -0
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +1 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -2
- data/app/views/decidim/meetings/live_events/show.html.erb +5 -5
- data/app/views/decidim/meetings/meetings/_form.html.erb +4 -8
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +51 -26
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +34 -0
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +20 -59
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +2 -5
- data/app/views/decidim/meetings/meetings/_schema_org_event_meeting.html.erb +3 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +10 -2
- data/app/views/decidim/meetings/meetings/show.html.erb +5 -5
- data/app/views/decidim/meetings/polls/answers/index.html.erb +5 -5
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_filters.html.erb +1 -13
- data/app/views/decidim/meetings/shared/_index.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_index.js.erb +5 -5
- data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/config/locales/ar.yml +17 -15
- data/config/locales/bg.yml +5 -26
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +8 -0
- data/config/locales/ca.yml +137 -25
- data/config/locales/cs.yml +139 -28
- data/config/locales/de.yml +172 -92
- data/config/locales/el.yml +1 -20
- data/config/locales/en.yml +133 -21
- data/config/locales/es-MX.yml +137 -25
- data/config/locales/es-PY.yml +137 -25
- data/config/locales/es.yml +137 -25
- data/config/locales/eu.yml +167 -55
- data/config/locales/fi-plain.yml +138 -26
- data/config/locales/fi.yml +150 -38
- data/config/locales/fr-CA.yml +79 -26
- data/config/locales/fr.yml +79 -26
- data/config/locales/ga-IE.yml +0 -10
- data/config/locales/gl.yml +1 -8
- data/config/locales/hu.yml +1 -17
- data/config/locales/id-ID.yml +1 -5
- data/config/locales/is-IS.yml +0 -4
- data/config/locales/it.yml +1 -12
- data/config/locales/ja.yml +96 -26
- data/config/locales/lb.yml +0 -8
- data/config/locales/lt.yml +1 -24
- data/config/locales/lv.yml +1 -5
- data/config/locales/nl.yml +1 -15
- data/config/locales/no.yml +1 -14
- data/config/locales/pl.yml +5 -22
- data/config/locales/pt-BR.yml +1 -22
- data/config/locales/pt.yml +1 -12
- data/config/locales/ro-RO.yml +32 -16
- data/config/locales/ru.yml +1 -5
- data/config/locales/sk.yml +1 -5
- data/config/locales/sv.yml +74 -26
- data/config/locales/tr-TR.yml +1 -8
- data/config/locales/uk.yml +0 -4
- data/config/locales/zh-CN.yml +1 -8
- data/config/locales/zh-TW.yml +1 -19
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +1 -1
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20240712104245_create_decidim_meetings_meeting_link.rb +12 -0
- data/db/migrate/20240828103603_add_deleted_at_to_decidim_meetings_meetings.rb +8 -0
- data/decidim-meetings.gemspec +2 -2
- data/lib/decidim/api/agenda_item_type.rb +6 -7
- data/lib/decidim/api/agenda_type.rb +3 -4
- data/lib/decidim/api/meeting_type.rb +44 -40
- data/lib/decidim/api/meetings_type.rb +5 -8
- data/lib/decidim/api/service_type.rb +1 -1
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +14 -4
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +13 -7
- data/lib/decidim/meetings/engine.rb +2 -0
- data/lib/decidim/meetings/meeting_serializer.rb +86 -38
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +151 -0
- data/lib/decidim/meetings/seeds.rb +2 -4
- data/lib/decidim/meetings/test/factories.rb +14 -0
- data/lib/decidim/meetings/test/translated_event.rb +3 -3
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +1 -0
- metadata +35 -22
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -16
- data/app/cells/decidim/meetings/meetings_map_cell.rb +0 -32
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +0 -21
- data/app/helpers/decidim/meetings/map_helper.rb +0 -21
- data/app/views/decidim/meetings/meetings/_actions.html.erb +0 -6
data/config/locales/el.yml
CHANGED
@@ -89,8 +89,6 @@ el:
|
|
89
89
|
admin:
|
90
90
|
filters:
|
91
91
|
meetings:
|
92
|
-
category_id_eq:
|
93
|
-
label: Κατηγορία
|
94
92
|
closed_at_present:
|
95
93
|
label: Κατάσταση
|
96
94
|
values:
|
@@ -101,8 +99,6 @@ el:
|
|
101
99
|
values:
|
102
100
|
'false': Παρελθόν
|
103
101
|
'true': Προσεχείς
|
104
|
-
scope_id_eq:
|
105
|
-
label: Πεδίο εφαρμογής
|
106
102
|
with_any_origin:
|
107
103
|
label: Προέλευση
|
108
104
|
values:
|
@@ -136,8 +132,6 @@ el:
|
|
136
132
|
maps_enabled: Χάρτες ενεργοποιημένοι
|
137
133
|
registration_code_enabled: Ενεργοποιήθηκε ο κωδικός εγγραφής
|
138
134
|
resources_permissions_enabled: Μπορούν να οριστούν δικαιώματα ενεργειών για κάθε σύσκεψη
|
139
|
-
scope_id: Πεδίο εφαρμογής
|
140
|
-
scopes_enabled: Ενεργοποιημένα πεδία εφαρμογής
|
141
135
|
terms_and_conditions_url_for_meeting_creators: URL Όρων και Προϋποθέσεων για τους δημιουργούς της συνάντησης
|
142
136
|
step:
|
143
137
|
announcement: Ανακοίνωση
|
@@ -197,7 +191,7 @@ el:
|
|
197
191
|
badges:
|
198
192
|
attended_meetings:
|
199
193
|
conditions:
|
200
|
-
|
194
|
+
- Εγγραφείτε στις συσκέψεις που θέλετε να παρακολουθήσετε
|
201
195
|
description: Αυτό το έμβλημα χορηγείται όταν παρακολουθείτε σε διάφορες συσκέψεις πρόσωπο με πρόσωπο.
|
202
196
|
description_another: Αυτός ο συμμετέχων έχει παρακολουθήσει %{score} συσκέψεις.
|
203
197
|
description_own: Έχετε παρακολουθήσει %{score} συσκέψεις.
|
@@ -211,8 +205,6 @@ el:
|
|
211
205
|
attachment_collections: Φάκελοι
|
212
206
|
attachments: Συνημμένα
|
213
207
|
close: Κλείσιμο
|
214
|
-
confirm_destroy: Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη σύσκεψη;
|
215
|
-
destroy: Διαγραφή
|
216
208
|
edit: Επεξεργασία
|
217
209
|
invalid_destroy:
|
218
210
|
proposals_count:
|
@@ -289,12 +281,6 @@ el:
|
|
289
281
|
create:
|
290
282
|
invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της συνάντησης.
|
291
283
|
success: Η συνάντηση δημιουργήθηκε επιτυχώς. Σημειώστε ότι δεν έχει δημοσιευθεί ακόμα, πρέπει να την δημοσιεύσετε χειροκίνητα.
|
292
|
-
destroy:
|
293
|
-
invalid:
|
294
|
-
proposals_count:
|
295
|
-
one: Η συνάντηση δεν μπορεί να καταστραφεί, επειδή έχει συσχετισθεί με %{count} πρόταση.
|
296
|
-
other: Η συνάντηση δεν μπορεί να καταστραφεί, επειδή έχει συσχετισθεί με %{count} προτάσεις.
|
297
|
-
success: Η σύσκεψη διαγράφηκε με επιτυχία
|
298
284
|
edit:
|
299
285
|
title: Επεξεργασία συνάντησης
|
300
286
|
update: Ενημέρωση
|
@@ -378,8 +364,6 @@ el:
|
|
378
364
|
questionnaire:
|
379
365
|
update: "Ο/Η %{user_name} ενημέρωσε το ερωτηματολόγιο για τη συνάντηση %{meeting_name}"
|
380
366
|
application_helper:
|
381
|
-
filter_category_values:
|
382
|
-
all: Όλα
|
383
367
|
filter_meeting_space_values:
|
384
368
|
all: Όλα
|
385
369
|
calendar_modal:
|
@@ -482,7 +466,6 @@ el:
|
|
482
466
|
location_hints_help: 'Υποδείξεις τοποθεσίας: πρόσθετες πληροφορίες. Παράδειγμα: ο όροφος του κτιρίου αν πρόκειται για προσωπική συνάντηση ή τον κωδικό πρόσβασης συνάντησης αν πρόκειται για ηλεκτρονική συνάντηση με περιορισμένη πρόσβαση.'
|
483
467
|
online_meeting_url_help: 'Σύνδεσμος: επιτρέψτε στους συμμετέχοντες να συνδεθούν απευθείας με τη συνάντησή σας'
|
484
468
|
registration_url_help: 'Σύνδεσμος: επιτρέψτε στους συμμετέχοντες να μεταβούν στην εξωτερική υπηρεσία που χρησιμοποιείτε για εγγραφές'
|
485
|
-
select_a_category: Επιλέξτε μια κατηγορία
|
486
469
|
select_a_meeting_type: Παρακαλώ επιλέξτε έναν τύπο συνάντησης
|
487
470
|
select_a_registration_type: Παρακαλώ επιλέξτε έναν τύπο εγγραφής
|
488
471
|
select_an_iframe_access_level: Παρακαλώ επιλέξτε ένα επίπεδο πρόσβασης iframe
|
@@ -525,7 +508,6 @@ el:
|
|
525
508
|
visit_finished: Προβολή προηγούμενης συνάντησης
|
526
509
|
withdraw_btn_hint: Μπορείτε να αποσύρετε τη συνάντησή σας αν αλλάξετε γνώμη. Η συνάντηση δεν έχει διαγραφεί, θα εμφανιστεί στη λίστα των αποσυρθέντων συνεδριάσεων.
|
527
510
|
withdraw_confirmation_html: Είστε βέβαιοι ότι θέλετε να αποσύρετε την συνάντηση;<br><br><strong>Αυτή η ενέργεια δεν μπορεί να ακυρωθεί!</strong>
|
528
|
-
withdraw_meeting: Απόσυρση συνάντησης
|
529
511
|
update:
|
530
512
|
invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση της συνάντησης.
|
531
513
|
success: Έχετε ενημερώσει τη συνάντηση επιτυχώς.
|
@@ -599,7 +581,6 @@ el:
|
|
599
581
|
transparent: Διαφανής
|
600
582
|
withdraw: Αποσύρθηκε
|
601
583
|
withdraw:
|
602
|
-
error: Προέκυψε σφάλμα κατά την απόσυρση της συνάντησης.
|
603
584
|
success: Η συνάντηση αποσύρθηκε με επιτυχία.
|
604
585
|
metrics:
|
605
586
|
meetings:
|
data/config/locales/en.yml
CHANGED
@@ -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
|
-
|
113
|
-
label:
|
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
|
-
|
164
|
-
|
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
|
-
|
239
|
-
|
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
|
578
|
+
close_meeting: Close
|
537
579
|
edit_close_meeting: Edit meeting report
|
538
|
-
edit_meeting: Edit
|
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
|
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:
|
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:
|