decidim-meetings 0.28.6 → 0.29.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.
Potentially problematic release.
This version of decidim-meetings might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -2
- data/app/cells/decidim/meetings/dates_and_map/show.erb +3 -5
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -2
- data/app/cells/decidim/meetings/join_meeting_button/remaining_slots.erb +1 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +0 -3
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +0 -3
- data/app/cells/decidim/meetings/meeting_cell.rb +0 -1
- data/app/cells/decidim/meetings/meeting_l_cell.rb +4 -7
- data/app/cells/decidim/meetings/meeting_url/show.erb +5 -5
- data/app/cells/decidim/meetings/meeting_url_cell.rb +0 -1
- data/app/cells/decidim/meetings/online_meeting_link_cell.rb +0 -2
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -3
- data/app/cells/decidim/meetings/question_responses_cell.rb +0 -2
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +2 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +9 -37
- data/app/commands/decidim/meetings/admin/create_meeting.rb +28 -61
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +4 -33
- data/app/commands/decidim/meetings/admin/update_agenda.rb +7 -35
- data/app/commands/decidim/meetings/admin/update_meeting.rb +30 -68
- data/app/commands/decidim/meetings/admin/update_question_status.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +19 -11
- data/app/commands/decidim/meetings/admin/update_registrations.rb +20 -46
- data/app/commands/decidim/meetings/create_answer.rb +5 -4
- data/app/commands/decidim/meetings/create_meeting.rb +38 -62
- data/app/commands/decidim/meetings/join_meeting.rb +18 -19
- data/app/commands/decidim/meetings/update_meeting.rb +6 -7
- data/app/commands/decidim/meetings/withdraw_meeting.rb +1 -1
- data/app/controllers/concerns/decidim/meetings/admin/invites/filterable.rb +33 -0
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +6 -6
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +12 -0
- data/app/controllers/decidim/meetings/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/live_events_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +3 -33
- data/app/controllers/decidim/meetings/polls/answers_controller.rb +10 -2
- data/app/controllers/decidim/meetings/registrations_controller.rb +3 -3
- 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 +1 -1
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +8 -4
- data/app/forms/decidim/meetings/answer_form.rb +4 -4
- data/app/forms/decidim/meetings/meeting_form.rb +1 -1
- data/app/helpers/decidim/meetings/application_helper.rb +1 -5
- data/app/mailers/decidim/meetings/close_meeting_reminder_mailer.rb +1 -1
- data/app/models/decidim/meetings/meeting.rb +15 -4
- data/app/models/decidim/meetings/poll.rb +8 -0
- data/app/models/decidim/meetings/question.rb +1 -0
- data/app/models/decidim/meetings/questionnaire.rb +0 -6
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +3 -3
- data/app/packs/src/decidim/meetings/meetings_form.js +3 -3
- data/app/packs/src/decidim/meetings/meetings_polls.js +5 -0
- data/app/packs/src/decidim/meetings/poll.component.js +32 -4
- data/app/packs/stylesheets/decidim/meetings/_item.scss +126 -6
- data/app/packs/stylesheets/decidim/meetings/_live_event.scss +0 -94
- data/app/permissions/decidim/meetings/permissions.rb +22 -7
- data/app/presenters/decidim/meetings/meeting_presenter.rb +10 -3
- data/app/services/decidim/meetings/calendar/component_calendar.rb +1 -1
- data/app/services/decidim/meetings/calendar/meeting_to_event.rb +1 -1
- data/app/services/decidim/meetings/close_meeting_reminder_generator.rb +1 -1
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +2 -2
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -1
- data/app/views/decidim/meetings/admin/agenda/_agenda_item.html.erb +3 -3
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_child.html.erb +3 -3
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +3 -3
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +3 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/index.html.erb +4 -34
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +8 -8
- data/app/views/decidim/meetings/admin/meetings/_service.html.erb +3 -3
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +2 -2
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +1 -1
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +26 -25
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +18 -16
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +4 -6
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +2 -4
- data/app/views/decidim/meetings/close_meeting_reminder_mailer/close_meeting_reminder.html.erb +1 -1
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -15
- data/app/views/decidim/meetings/meetings/_datetime.html.erb +4 -4
- data/app/views/decidim/meetings/meetings/_form.html.erb +17 -17
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -1
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +3 -1
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +15 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +0 -9
- data/app/views/decidim/meetings/meetings/new.html.erb +0 -1
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +6 -10
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +4 -10
- data/app/views/decidim/meetings/polls/answers/admin.html.erb +34 -0
- data/app/views/decidim/meetings/polls/answers/index.html.erb +36 -0
- data/app/views/decidim/meetings/polls/questions/_closed_question.html.erb +8 -2
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +27 -24
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +14 -11
- data/app/views/decidim/meetings/polls/questions/_question.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/index.js.erb +3 -3
- data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +3 -3
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_meetings.html.erb +1 -1
- data/app/views/devise/mailer/join_meeting.html.erb +3 -1
- data/app/views/devise/mailer/join_meeting.text.erb +3 -1
- data/config/locales/ar.yml +7 -13
- data/config/locales/bg.yml +51 -11
- data/config/locales/ca.yml +48 -18
- data/config/locales/cs.yml +34 -16
- data/config/locales/de.yml +161 -131
- data/config/locales/el.yml +7 -13
- data/config/locales/en.yml +45 -15
- data/config/locales/es-MX.yml +53 -23
- data/config/locales/es-PY.yml +54 -24
- data/config/locales/es.yml +55 -25
- data/config/locales/eu.yml +102 -72
- data/config/locales/fi-plain.yml +52 -17
- data/config/locales/fi.yml +62 -27
- data/config/locales/fr-CA.yml +50 -19
- data/config/locales/fr.yml +50 -19
- data/config/locales/ga-IE.yml +0 -8
- data/config/locales/gl.yml +8 -11
- data/config/locales/hu.yml +10 -13
- data/config/locales/id-ID.yml +6 -12
- data/config/locales/is-IS.yml +1 -15
- data/config/locales/it.yml +9 -23
- data/config/locales/ja.yml +48 -18
- data/config/locales/lb.yml +7 -10
- data/config/locales/lt.yml +9 -12
- data/config/locales/lv.yml +6 -12
- data/config/locales/nl.yml +8 -14
- data/config/locales/no.yml +6 -12
- data/config/locales/pl.yml +51 -11
- data/config/locales/pt-BR.yml +29 -17
- data/config/locales/pt.yml +7 -14
- data/config/locales/ro-RO.yml +4 -17
- data/config/locales/ru.yml +6 -12
- data/config/locales/sk.yml +7 -13
- data/config/locales/sv.yml +110 -206
- data/config/locales/tr-TR.yml +8 -17
- data/config/locales/uk.yml +6 -15
- data/config/locales/zh-CN.yml +7 -15
- data/config/locales/zh-TW.yml +7 -13
- data/db/migrate/20240130135858_add_withdrawn_fields_on_meetings.rb +23 -0
- data/decidim-meetings.gemspec +2 -2
- data/lib/decidim/api/meeting_type.rb +3 -12
- data/lib/decidim/api/meetings_type.rb +3 -1
- data/lib/decidim/meetings/component.rb +2 -2
- data/lib/decidim/meetings/engine.rb +6 -9
- data/lib/decidim/meetings/meeting_serializer.rb +3 -38
- data/lib/decidim/meetings/seeds.rb +13 -18
- data/lib/decidim/meetings/test/factories.rb +1 -7
- data/lib/decidim/meetings/test/notifications_handling.rb +1 -1
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/tasks/decidim_meetings.rake +1 -1
- metadata +24 -23
- data/app/views/decidim/meetings/admin/agenda/show.html.erb +0 -0
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -8
- data/config/locales/ca-IT.yml +0 -661
data/config/locales/el.yml
CHANGED
@@ -211,6 +211,7 @@ el:
|
|
211
211
|
attachment_collections: Φάκελοι
|
212
212
|
attachments: Συνημμένα
|
213
213
|
close: Κλείσιμο
|
214
|
+
confirm_destroy: Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη σύσκεψη;
|
214
215
|
destroy: Διαγραφή
|
215
216
|
edit: Επεξεργασία
|
216
217
|
invalid_destroy:
|
@@ -274,13 +275,9 @@ el:
|
|
274
275
|
non_user: Ο συμμετέχων δεν υπάρχει
|
275
276
|
select_user: Επιλέξτε συμμετέχοντα
|
276
277
|
index:
|
277
|
-
filter:
|
278
|
-
all: Όλα
|
279
|
-
sent: Στάλθηκε
|
280
278
|
invite_attendee: Πρόσκληση συμμετέχοντα
|
281
279
|
invites: Προσκλήσεις
|
282
280
|
registrations_disabled: Δεν μπορείτε να προσκαλέσετε έναν συμμετέχοντα επειδή οι εγγραφές είναι απενεργοποιημένες.
|
283
|
-
search: Αναζήτηση
|
284
281
|
meeting_closes:
|
285
282
|
edit:
|
286
283
|
close: Κλείσιμο
|
@@ -344,6 +341,8 @@ el:
|
|
344
341
|
registrations:
|
345
342
|
edit:
|
346
343
|
save: Αποθήκευση
|
344
|
+
validate: Επικύρωση
|
345
|
+
validate_registration_code: Επικύρωση κωδικού εγγραφής
|
347
346
|
form:
|
348
347
|
available_slots_help: Αφήστε το σε 0, εάν έχετε απεριόριστες διαθέσιμες θέσεις.
|
349
348
|
invites: Προσκλήσεις
|
@@ -359,6 +358,9 @@ el:
|
|
359
358
|
update:
|
360
359
|
invalid: Υπήρξε ένα πρόβλημα κατά την αποθήκευση των ρυθμίσεων εγγραφής.
|
361
360
|
success: Οι ρυθμίσεις εγγραφής στη σύσκεψη αποθηκεύτηκαν με επιτυχία.
|
361
|
+
validate_registration_code:
|
362
|
+
invalid: Αυτός ο κωδικός εγγραφής δεν είναι έγκυρος.
|
363
|
+
success: Ο κωδικός εγγραφής επικυρώθηκε με επιτυχία.
|
362
364
|
admin_log:
|
363
365
|
invite:
|
364
366
|
create: "Ο χρήστης %{user_name} προσκάλεσε τον συμμετέχοντα %{attendee_name} στη σύσκεψη %{resource_name} στον χώρο %{space_name}"
|
@@ -394,7 +396,6 @@ el:
|
|
394
396
|
body: Η συνάντηση <a href="%{meeting_path}">"%{meeting_title}"</a> εκκρεμεί να λήξει. Παρακαλώ προσθέστε μια αναφορά της συνάντησης χρησιμοποιώντας το κουμπί "Κλείσιμο συνάντησης".
|
395
397
|
greetings: Με φιλικούς χαιρετισμούς,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
396
398
|
hello: Γεια σας %{username},
|
397
|
-
subject: Μπορείτε τώρα να κλείσετε τη συνάντησή σας με μια αναφορά στην πλατφόρμα %{organization_name}
|
398
399
|
conference_venues: Χώροι διασκέψεων
|
399
400
|
content_blocks:
|
400
401
|
upcoming_meetings:
|
@@ -411,7 +412,6 @@ el:
|
|
411
412
|
iframe_embed_type:
|
412
413
|
embed_in_meeting_page: Ενσωμάτωση στη σελίδα συνάντησης
|
413
414
|
none: Κανένας
|
414
|
-
open_in_live_event_page: Άνοιγμα σε σελίδα ζωντανής εκδήλωσης (με προαιρετικές δημοσκοπήσεις)
|
415
415
|
open_in_new_tab: Άνοιγμα URL σε νέα καρτέλα
|
416
416
|
last_activity:
|
417
417
|
meeting_updated: 'Η συνάντηση ενημερώθηκε:'
|
@@ -419,7 +419,6 @@ el:
|
|
419
419
|
layouts:
|
420
420
|
live_event:
|
421
421
|
close: κλείσιμο
|
422
|
-
questions: Ερωτήσεις
|
423
422
|
mailer:
|
424
423
|
invite_join_meeting_mailer:
|
425
424
|
invite:
|
@@ -493,15 +492,13 @@ el:
|
|
493
492
|
see_all: Δείτε όλες τις συναντήσεις
|
494
493
|
see_all_withdrawn: Δείτε όλες τις αποσυρθείσες συναντήσεις
|
495
494
|
text_banner: Βλέπετε τη λίστα των συνεδριάσεων που αποσύρονται από τους συγγραφείς τους. %{go_back_link}.
|
496
|
-
meeting:
|
497
|
-
close_meeting: Κλείσιμο σύσκεψης
|
498
|
-
edit_meeting: Επεξεργασία συνάντησης
|
499
495
|
meetings:
|
500
496
|
no_meetings_warning: Καμία συνάντηση δεν ταιριάζει με τα κριτήρια αναζήτησής σας ή δεν έχει προγραμματιστεί καμία συνάντηση.
|
501
497
|
upcoming_meetings_warning: Προς το παρόν, δεν υπάρχουν προγραμματισμένες συσκέψεις, αλλά εδώ μπορείτε να βρείτε όλες τις προηγούμενες συσκέψεις που παρατίθενται.
|
502
498
|
new:
|
503
499
|
back: Πίσω
|
504
500
|
create: Δημιουργία
|
501
|
+
title: Δημιουργήστε τη Συνάντησή σας
|
505
502
|
registration_confirm:
|
506
503
|
cancel: Ακύρωση
|
507
504
|
confirm: Επιβεβαίωση
|
@@ -554,12 +551,9 @@ el:
|
|
554
551
|
title: Τίτλος
|
555
552
|
polls:
|
556
553
|
questions:
|
557
|
-
closed_question:
|
558
|
-
question_results: Αποτελέσματα ερωτήσεων
|
559
554
|
index:
|
560
555
|
empty_questions: Κατά τη διάρκεια αυτής της συνάντησης, ορισμένες ερωτήσεις θα σταλούν και θα είστε σε θέση να τις απαντήσετε. Θα εμφανιστούν εδώ.
|
561
556
|
index_admin:
|
562
|
-
admin_dashboard: Πίνακας διαχείρισης
|
563
557
|
edit: Επεξεργασία στον πίνακα διαχείρισης
|
564
558
|
question: Ερώτηση
|
565
559
|
received_answer: έλαβε απάντηση
|
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
|
@@ -93,6 +91,11 @@ en:
|
|
93
91
|
decidim:
|
94
92
|
admin:
|
95
93
|
filters:
|
94
|
+
accepted_at_not_null:
|
95
|
+
label: Accepted
|
96
|
+
values:
|
97
|
+
'false': Not accepted
|
98
|
+
'true': Accepted
|
96
99
|
meetings:
|
97
100
|
category_id_eq:
|
98
101
|
label: Category
|
@@ -120,6 +123,18 @@ en:
|
|
120
123
|
hybrid: Hybrid
|
121
124
|
in_person: In Person
|
122
125
|
online: Online
|
126
|
+
rejected_at_not_null:
|
127
|
+
label: Rejected
|
128
|
+
values:
|
129
|
+
'false': Not rejected
|
130
|
+
'true': Rejected
|
131
|
+
search_placeholder:
|
132
|
+
user_name_or_user_email_cont: Search by name or email
|
133
|
+
sent_at_not_null:
|
134
|
+
label: Sent
|
135
|
+
values:
|
136
|
+
'false': Not sent
|
137
|
+
'true': Sent
|
123
138
|
meeting_copies:
|
124
139
|
create:
|
125
140
|
error: There was a problem duplicating this meeting.
|
@@ -132,6 +147,7 @@ en:
|
|
132
147
|
actions:
|
133
148
|
comment: Comment
|
134
149
|
join: Join
|
150
|
+
reply_poll: Reply poll
|
135
151
|
name: Meetings
|
136
152
|
settings:
|
137
153
|
global:
|
@@ -284,15 +300,9 @@ en:
|
|
284
300
|
non_user: Non existing participant
|
285
301
|
select_user: Select participant
|
286
302
|
index:
|
287
|
-
filter:
|
288
|
-
accepted: Accepted
|
289
|
-
all: All
|
290
|
-
rejected: Rejected
|
291
|
-
sent: Sent
|
292
303
|
invite_attendee: Invite attendee
|
293
304
|
invites: Invites
|
294
305
|
registrations_disabled: You cannot invite an attendee because the registrations are disabled.
|
295
|
-
search: Search
|
296
306
|
meeting_closes:
|
297
307
|
edit:
|
298
308
|
close: Close
|
@@ -354,6 +364,13 @@ en:
|
|
354
364
|
update:
|
355
365
|
invalid: There was a problem updating this meeting poll.
|
356
366
|
success: Meeting poll successfully updated.
|
367
|
+
poll:
|
368
|
+
form:
|
369
|
+
announcement_html:
|
370
|
+
- When a question receives answers or is published/closed, it can no longer be edited.
|
371
|
+
- You can add a question at any time.
|
372
|
+
- The poll will be closed when the results of all created questions have been published.
|
373
|
+
- Visit the <a href='%{admin_link}'>poll administration page</a> to send questions and publish results.
|
357
374
|
registrations:
|
358
375
|
edit:
|
359
376
|
save: Save
|
@@ -415,7 +432,7 @@ en:
|
|
415
432
|
body: The meeting <a href="%{meeting_path}">"%{meeting_title}"</a> is pending to be closed. Please add a report of the meeting using the "Close meeting" button.
|
416
433
|
greetings: Greetings,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
417
434
|
hello: Hello %{username},
|
418
|
-
subject: You can now close
|
435
|
+
subject: You can now close the meeting "%{meeting_title}" with a report
|
419
436
|
conference_venues: Conference Venues
|
420
437
|
content_blocks:
|
421
438
|
upcoming_meetings:
|
@@ -432,16 +449,14 @@ en:
|
|
432
449
|
iframe_embed_type:
|
433
450
|
embed_in_meeting_page: Embed in meeting page
|
434
451
|
none: None
|
435
|
-
open_in_live_event_page: Open in live event page
|
452
|
+
open_in_live_event_page: Open in live event page
|
436
453
|
open_in_new_tab: Open URL in a new tab
|
437
454
|
last_activity:
|
438
455
|
meeting_updated: 'Meeting updated:'
|
439
456
|
new_meeting: 'New meeting:'
|
440
457
|
layouts:
|
441
458
|
live_event:
|
442
|
-
administrate: Administrate
|
443
459
|
close: close
|
444
|
-
questions: Questions
|
445
460
|
mailer:
|
446
461
|
invite_join_meeting_mailer:
|
447
462
|
invite:
|
@@ -522,13 +537,15 @@ en:
|
|
522
537
|
edit_close_meeting: Edit meeting report
|
523
538
|
edit_meeting: Edit meeting
|
524
539
|
join_meeting: Join meeting
|
540
|
+
reply_poll: Reply poll
|
541
|
+
view_poll: View poll
|
525
542
|
meetings:
|
526
543
|
no_meetings_warning: No meetings match your search criteria or there is not any meeting scheduled.
|
527
544
|
upcoming_meetings_warning: Currently, there are no scheduled meetings, but here you can find all the past meetings listed.
|
528
545
|
new:
|
529
546
|
back: Back
|
530
547
|
create: Create
|
531
|
-
title: Create
|
548
|
+
title: Create Your Meeting
|
532
549
|
registration_confirm:
|
533
550
|
cancel: Cancel
|
534
551
|
confirm: Confirm
|
@@ -580,13 +597,22 @@ en:
|
|
580
597
|
start_time: Start date
|
581
598
|
title: Title
|
582
599
|
polls:
|
600
|
+
answers:
|
601
|
+
index:
|
602
|
+
administrate: Administrate
|
603
|
+
title: Poll
|
604
|
+
index_admin:
|
605
|
+
back_to_meeting: Back to meeting
|
606
|
+
title: Administrate poll
|
607
|
+
view_poll: View poll
|
583
608
|
questions:
|
584
609
|
closed_question:
|
585
|
-
|
610
|
+
announcement: The replies for this question have been closed.
|
611
|
+
question: Question
|
612
|
+
question_results: Results
|
586
613
|
index:
|
587
614
|
empty_questions: Throughout this meeting, some questions will be sent and you will be able to answer them. They will be displayed here.
|
588
615
|
index_admin:
|
589
|
-
admin_dashboard: Administrator dashboard
|
590
616
|
edit: Edit in the admin panel
|
591
617
|
question: Question
|
592
618
|
received_answer: received answer
|
@@ -594,6 +620,10 @@ en:
|
|
594
620
|
results: Results
|
595
621
|
send: Send
|
596
622
|
sent: Sent
|
623
|
+
statuses:
|
624
|
+
closed: Results sent (closed)
|
625
|
+
published: Sent (open)
|
626
|
+
unpublished: Pending to be sent
|
597
627
|
published_question:
|
598
628
|
max_choices_alert: There are too many choices selected
|
599
629
|
question: Question
|
data/config/locales/es-MX.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
es-MX:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
add_documents: Añadir documentos
|
7
5
|
close_meeting:
|
8
6
|
attendees_count: Número de asistentes
|
9
7
|
attending_organizations: Lista de organizaciones que han participado
|
@@ -25,7 +23,7 @@ es-MX:
|
|
25
23
|
id: ID
|
26
24
|
iframe_access_level: Visualización de la sala videoconferencia
|
27
25
|
iframe_embed_type: Visualización de la sala de videoconferencia
|
28
|
-
iframe_embed_type_html: Sólo unos pocos servicios permiten "Incrustar en la página de reunión" o "Abrir en la página del evento en directo".
|
26
|
+
iframe_embed_type_html: Sólo unos pocos servicios permiten "Incrustar en la página de reunión" o "Abrir en la página del evento en directo". Tenga en cuenta que con la opción "Incrustar en la página de reunión" en teléfonos móviles, ya que la pantalla hereda diferentes dimensiones, en realidad funcionará como una "Abrir en la página del evento en directo".
|
29
27
|
location: Ubicación
|
30
28
|
location_hints: Pistas de ubicación
|
31
29
|
online_meeting_url: URL del encuentro online
|
@@ -93,6 +91,11 @@ es-MX:
|
|
93
91
|
decidim:
|
94
92
|
admin:
|
95
93
|
filters:
|
94
|
+
accepted_at_not_null:
|
95
|
+
label: Aceptada
|
96
|
+
values:
|
97
|
+
'false': No aceptada
|
98
|
+
'true': Aceptada
|
96
99
|
meetings:
|
97
100
|
category_id_eq:
|
98
101
|
label: Categoría
|
@@ -120,6 +123,18 @@ es-MX:
|
|
120
123
|
hybrid: Híbrido
|
121
124
|
in_person: Presencial
|
122
125
|
online: Online
|
126
|
+
rejected_at_not_null:
|
127
|
+
label: Rechazada
|
128
|
+
values:
|
129
|
+
'false': No rechazada
|
130
|
+
'true': Rechazada
|
131
|
+
search_placeholder:
|
132
|
+
user_name_or_user_email_cont: Buscar por nombre o correo electrónico
|
133
|
+
sent_at_not_null:
|
134
|
+
label: Enviada
|
135
|
+
values:
|
136
|
+
'false': No enviada
|
137
|
+
'true': Enviada
|
123
138
|
meeting_copies:
|
124
139
|
create:
|
125
140
|
error: Se ha producido un error al duplicar este encuentro.
|
@@ -132,6 +147,7 @@ es-MX:
|
|
132
147
|
actions:
|
133
148
|
comment: Comentar
|
134
149
|
join: Unirse
|
150
|
+
reply_poll: Responder la consulta
|
135
151
|
name: Encuentros
|
136
152
|
settings:
|
137
153
|
global:
|
@@ -219,7 +235,7 @@ es-MX:
|
|
219
235
|
attachment_collections: Carpetas
|
220
236
|
attachments: Archivos adjuntos
|
221
237
|
close: Cerrar
|
222
|
-
confirm_destroy: '¿
|
238
|
+
confirm_destroy: '¿Está seguro de que quiere eliminar este encuentro?'
|
223
239
|
destroy: Borrar
|
224
240
|
edit: Editar
|
225
241
|
invalid_destroy:
|
@@ -284,15 +300,9 @@ es-MX:
|
|
284
300
|
non_user: Usuario no existente
|
285
301
|
select_user: Seleccionar usuario
|
286
302
|
index:
|
287
|
-
filter:
|
288
|
-
accepted: Aceptada
|
289
|
-
all: Todas
|
290
|
-
rejected: Rechazada
|
291
|
-
sent: Expedida
|
292
303
|
invite_attendee: Invitar a un asistente
|
293
304
|
invites: Invitaciones
|
294
305
|
registrations_disabled: No puedes invitar a nadie porque las inscripciones están deshabilitadas.
|
295
|
-
search: Buscar
|
296
306
|
meeting_closes:
|
297
307
|
edit:
|
298
308
|
close: Cerrar
|
@@ -354,11 +364,18 @@ es-MX:
|
|
354
364
|
update:
|
355
365
|
invalid: Se ha producido un error al actualizar esta encuesta.
|
356
366
|
success: Encuesta actualizada correctamente.
|
367
|
+
poll:
|
368
|
+
form:
|
369
|
+
announcement_html:
|
370
|
+
- Cuando una pregunta recibe respuestas o está publicada/cerrada, ya no se puede editar.
|
371
|
+
- Puedes añadir una pregunta en cualquier momento.
|
372
|
+
- La consulta se cerrará cuando se hayan publicado los resultados de todas las preguntas creadas.
|
373
|
+
- Visita la <a href='%{admin_link}'>página de administración de encuestas</a> para enviar preguntas y publicar resultados.
|
357
374
|
registrations:
|
358
375
|
edit:
|
359
376
|
save: Guardar
|
360
377
|
validate: Validar
|
361
|
-
validate_registration_code: Validar código de
|
378
|
+
validate_registration_code: Validar el código de registro
|
362
379
|
form:
|
363
380
|
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
364
381
|
invites: Invitaciones
|
@@ -375,8 +392,8 @@ es-MX:
|
|
375
392
|
invalid: Se ha producido un problema al guardar la configuración de la inscripción.
|
376
393
|
success: Se han guardado correctamente las configuraciones de inscripciones de encuentros.
|
377
394
|
validate_registration_code:
|
378
|
-
invalid: Este código de
|
379
|
-
success: Código de
|
395
|
+
invalid: Este código de registro no es válido.
|
396
|
+
success: Código de registro validado con éxito.
|
380
397
|
admin_log:
|
381
398
|
invite:
|
382
399
|
create: "%{user_name} ha invitado a %{attendee_name} a unirse al encuentro %{resource_name} en el espacio %{space_name}"
|
@@ -415,7 +432,7 @@ es-MX:
|
|
415
432
|
body: El encuentro <a href="%{meeting_path}">"%{meeting_title}"</a> está pendiente de cerrarse. Por favor, agrega un informe de la reunión usando el botón "Cerrar encuentro".
|
416
433
|
greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
417
434
|
hello: Hola %{username},
|
418
|
-
subject: Ahora
|
435
|
+
subject: Ahora puede cerrar la reunión "%{meeting_title}" con un informe
|
419
436
|
conference_venues: Sedes de las jornadas
|
420
437
|
content_blocks:
|
421
438
|
upcoming_meetings:
|
@@ -432,16 +449,14 @@ es-MX:
|
|
432
449
|
iframe_embed_type:
|
433
450
|
embed_in_meeting_page: Incrustar en la página del encuentro
|
434
451
|
none: Ninguno
|
435
|
-
open_in_live_event_page: Abrir en la página del evento en directo
|
452
|
+
open_in_live_event_page: Abrir en la página del evento en directo
|
436
453
|
open_in_new_tab: Abrir en nueva pestaña
|
437
454
|
last_activity:
|
438
455
|
meeting_updated: 'Encuentro actualizado:'
|
439
456
|
new_meeting: 'Nuevo encuentro:'
|
440
457
|
layouts:
|
441
458
|
live_event:
|
442
|
-
administrate: Administrar
|
443
459
|
close: cerrar
|
444
|
-
questions: Preguntas
|
445
460
|
mailer:
|
446
461
|
invite_join_meeting_mailer:
|
447
462
|
invite:
|
@@ -518,17 +533,19 @@ es-MX:
|
|
518
533
|
see_all_withdrawn: Ver todos los encuentros retirados
|
519
534
|
text_banner: Estás viendo la lista de encuentros retirados por sus autores. %{go_back_link}.
|
520
535
|
meeting:
|
521
|
-
close_meeting: Cerrar encuentro
|
536
|
+
close_meeting: Cerrar el encuentro
|
522
537
|
edit_close_meeting: Editar el informe del encuentro
|
523
|
-
edit_meeting: Editar encuentro
|
524
|
-
join_meeting:
|
538
|
+
edit_meeting: Editar el encuentro
|
539
|
+
join_meeting: Unirse al encuentro
|
540
|
+
reply_poll: Responder consulta
|
541
|
+
view_poll: Ver consulta
|
525
542
|
meetings:
|
526
543
|
no_meetings_warning: No hay encuentros que coincidan con tu búsqueda o no hay ningún encuentro programado.
|
527
544
|
upcoming_meetings_warning: Actualmente no hay encuentros programados, pero puedes ver los encuentros anteriores.
|
528
545
|
new:
|
529
546
|
back: Atrás
|
530
547
|
create: Crear
|
531
|
-
title:
|
548
|
+
title: Crea tu encuentro
|
532
549
|
registration_confirm:
|
533
550
|
cancel: Cancelar
|
534
551
|
confirm: Confirmar
|
@@ -580,13 +597,22 @@ es-MX:
|
|
580
597
|
start_time: Fecha de inicio
|
581
598
|
title: Título
|
582
599
|
polls:
|
600
|
+
answers:
|
601
|
+
index:
|
602
|
+
administrate: Administrar
|
603
|
+
title: Consulta
|
604
|
+
index_admin:
|
605
|
+
back_to_meeting: Volver al encuentro
|
606
|
+
title: Administrar consulta
|
607
|
+
view_poll: Ver consulta
|
583
608
|
questions:
|
584
609
|
closed_question:
|
585
|
-
|
610
|
+
announcement: Se han cerrado las respuestas a esta pregunta.
|
611
|
+
question: Pregunta
|
612
|
+
question_results: Resultados
|
586
613
|
index:
|
587
614
|
empty_questions: A lo largo de este encuentro, se enviarán algunas preguntas y podrás responderlas. Se mostrarán aquí.
|
588
615
|
index_admin:
|
589
|
-
admin_dashboard: Panel de administración
|
590
616
|
edit: Editar en el panel de administración
|
591
617
|
question: Pregunta
|
592
618
|
received_answer: respuesta recibida
|
@@ -594,6 +620,10 @@ es-MX:
|
|
594
620
|
results: Resultados
|
595
621
|
send: Enviar
|
596
622
|
sent: Enviada
|
623
|
+
statuses:
|
624
|
+
closed: Resultados enviados (cerrados)
|
625
|
+
published: Enviada (abierta)
|
626
|
+
unpublished: Pendiente de enviar
|
597
627
|
published_question:
|
598
628
|
max_choices_alert: Hay demasiadas opciones seleccionadas
|
599
629
|
question: Pregunta
|
data/config/locales/es-PY.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
es-PY:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
add_documents: Añadir documentos
|
7
5
|
close_meeting:
|
8
6
|
attendees_count: Número de asistentes
|
9
7
|
attending_organizations: Lista de organizaciones que han participado
|
@@ -25,7 +23,7 @@ es-PY:
|
|
25
23
|
id: ID
|
26
24
|
iframe_access_level: Visualización de la sala videoconferencia
|
27
25
|
iframe_embed_type: Visualización de la sala de videoconferencia
|
28
|
-
iframe_embed_type_html: Sólo unos pocos servicios permiten "Incrustar en la página de reunión" o "Abrir en la página del evento en directo".
|
26
|
+
iframe_embed_type_html: Sólo unos pocos servicios permiten "Incrustar en la página de reunión" o "Abrir en la página del evento en directo". Tenga en cuenta que con la opción "Incrustar en la página de reunión" en teléfonos móviles, ya que la pantalla hereda diferentes dimensiones, en realidad funcionará como una "Abrir en la página del evento en directo".
|
29
27
|
location: Ubicación
|
30
28
|
location_hints: Pistas de ubicación
|
31
29
|
online_meeting_url: URL del encuentro online
|
@@ -93,6 +91,11 @@ es-PY:
|
|
93
91
|
decidim:
|
94
92
|
admin:
|
95
93
|
filters:
|
94
|
+
accepted_at_not_null:
|
95
|
+
label: Aceptada
|
96
|
+
values:
|
97
|
+
'false': No aceptada
|
98
|
+
'true': Aceptada
|
96
99
|
meetings:
|
97
100
|
category_id_eq:
|
98
101
|
label: Categoría
|
@@ -120,6 +123,18 @@ es-PY:
|
|
120
123
|
hybrid: Híbrido
|
121
124
|
in_person: Presencial
|
122
125
|
online: Online
|
126
|
+
rejected_at_not_null:
|
127
|
+
label: Rechazada
|
128
|
+
values:
|
129
|
+
'false': No rechazada
|
130
|
+
'true': Rechazada
|
131
|
+
search_placeholder:
|
132
|
+
user_name_or_user_email_cont: Buscar por nombre o correo electrónico
|
133
|
+
sent_at_not_null:
|
134
|
+
label: Enviada
|
135
|
+
values:
|
136
|
+
'false': No enviada
|
137
|
+
'true': Enviada
|
123
138
|
meeting_copies:
|
124
139
|
create:
|
125
140
|
error: Se ha producido un error al duplicar este encuentro.
|
@@ -132,6 +147,7 @@ es-PY:
|
|
132
147
|
actions:
|
133
148
|
comment: Comentar
|
134
149
|
join: Unirse
|
150
|
+
reply_poll: Responder la consulta
|
135
151
|
name: Encuentros
|
136
152
|
settings:
|
137
153
|
global:
|
@@ -219,7 +235,7 @@ es-PY:
|
|
219
235
|
attachment_collections: Carpetas
|
220
236
|
attachments: Archivos adjuntos
|
221
237
|
close: Cerrar
|
222
|
-
confirm_destroy: '¿
|
238
|
+
confirm_destroy: '¿Está seguro de que quiere eliminar este encuentro?'
|
223
239
|
destroy: Borrar
|
224
240
|
edit: Editar
|
225
241
|
invalid_destroy:
|
@@ -284,15 +300,9 @@ es-PY:
|
|
284
300
|
non_user: Usuario no existente
|
285
301
|
select_user: Selecciona un usuario
|
286
302
|
index:
|
287
|
-
filter:
|
288
|
-
accepted: Aceptada
|
289
|
-
all: Todas
|
290
|
-
rejected: Rechazada
|
291
|
-
sent: Enviadas
|
292
303
|
invite_attendee: Invitar asistente
|
293
304
|
invites: Invitaciones
|
294
305
|
registrations_disabled: No puedes invitar a nadie porque las inscripciones están deshabilitadas.
|
295
|
-
search: Buscar
|
296
306
|
meeting_closes:
|
297
307
|
edit:
|
298
308
|
close: Cerrar
|
@@ -354,11 +364,18 @@ es-PY:
|
|
354
364
|
update:
|
355
365
|
invalid: Se ha producido un error al actualizar esta encuesta.
|
356
366
|
success: Encuesta actualizada correctamente.
|
367
|
+
poll:
|
368
|
+
form:
|
369
|
+
announcement_html:
|
370
|
+
- Cuando una pregunta recibe respuestas o está publicada/cerrada, ya no se puede editar.
|
371
|
+
- Puedes añadir una pregunta en cualquier momento.
|
372
|
+
- La consulta se cerrará cuando se hayan publicado los resultados de todas las preguntas creadas.
|
373
|
+
- Visita la <a href='%{admin_link}'>página de administración de encuestas</a> para enviar preguntas y publicar resultados.
|
357
374
|
registrations:
|
358
375
|
edit:
|
359
376
|
save: Guardar
|
360
377
|
validate: Validar
|
361
|
-
validate_registration_code: Validar código de
|
378
|
+
validate_registration_code: Validar el código de registro
|
362
379
|
form:
|
363
380
|
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
364
381
|
invites: Invitaciones
|
@@ -375,8 +392,8 @@ es-PY:
|
|
375
392
|
invalid: Se ha producido un problema al guardar la configuración de la inscripción.
|
376
393
|
success: Se han guardado correctamente las configuraciones de inscripciones de encuentros.
|
377
394
|
validate_registration_code:
|
378
|
-
invalid: Este código de
|
379
|
-
success: Código de
|
395
|
+
invalid: Este código de registro no es válido.
|
396
|
+
success: Código de registro validado con éxito.
|
380
397
|
admin_log:
|
381
398
|
invite:
|
382
399
|
create: "%{user_name} ha invitado a %{attendee_name} a unirse a la reunión %{resource_name} en el espacio %{space_name}"
|
@@ -415,7 +432,7 @@ es-PY:
|
|
415
432
|
body: El encuentro <a href="%{meeting_path}">"%{meeting_title}"</a> está pendiente de cerrarse. Por favor, agrega un informe de la reunión usando el botón "Cerrar encuentro".
|
416
433
|
greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
417
434
|
hello: Hola %{username},
|
418
|
-
subject: Ahora
|
435
|
+
subject: Ahora puede cerrar la reunión "%{meeting_title}" con un informe
|
419
436
|
conference_venues: Lugares de conferencia
|
420
437
|
content_blocks:
|
421
438
|
upcoming_meetings:
|
@@ -432,16 +449,14 @@ es-PY:
|
|
432
449
|
iframe_embed_type:
|
433
450
|
embed_in_meeting_page: Incrustar en la página del encuentro
|
434
451
|
none: Ninguno
|
435
|
-
open_in_live_event_page: Abrir en la página del evento en directo
|
452
|
+
open_in_live_event_page: Abrir en la página del evento en directo
|
436
453
|
open_in_new_tab: Abrir en nueva pestaña
|
437
454
|
last_activity:
|
438
455
|
meeting_updated: 'Encuentro actualizado:'
|
439
456
|
new_meeting: 'Nuevo encuentro:'
|
440
457
|
layouts:
|
441
458
|
live_event:
|
442
|
-
administrate: Administrar
|
443
459
|
close: cerrar
|
444
|
-
questions: Preguntas
|
445
460
|
mailer:
|
446
461
|
invite_join_meeting_mailer:
|
447
462
|
invite:
|
@@ -518,17 +533,19 @@ es-PY:
|
|
518
533
|
see_all_withdrawn: Ver todos los encuentros retirados
|
519
534
|
text_banner: Estás viendo la lista de encuentros retirados por sus autores. %{go_back_link}.
|
520
535
|
meeting:
|
521
|
-
close_meeting: Cerrar encuentro
|
536
|
+
close_meeting: Cerrar el encuentro
|
522
537
|
edit_close_meeting: Editar el informe del encuentro
|
523
|
-
edit_meeting: Editar encuentro
|
524
|
-
join_meeting:
|
538
|
+
edit_meeting: Editar el encuentro
|
539
|
+
join_meeting: Unirse al encuentro
|
540
|
+
reply_poll: Responder consulta
|
541
|
+
view_poll: Ver consulta
|
525
542
|
meetings:
|
526
543
|
no_meetings_warning: No hay encuentros que coincidan con tu búsqueda o no hay ningún encuentro programado.
|
527
544
|
upcoming_meetings_warning: Actualmente no hay encuentros programados, pero puedes ver los encuentros anteriores.
|
528
545
|
new:
|
529
546
|
back: Atrás
|
530
547
|
create: Crear
|
531
|
-
title:
|
548
|
+
title: Crea tu encuentro
|
532
549
|
registration_confirm:
|
533
550
|
cancel: Cancelar
|
534
551
|
confirm: Confirmar
|
@@ -580,13 +597,22 @@ es-PY:
|
|
580
597
|
start_time: Fecha de inicio
|
581
598
|
title: Título
|
582
599
|
polls:
|
600
|
+
answers:
|
601
|
+
index:
|
602
|
+
administrate: Administrar
|
603
|
+
title: Consulta
|
604
|
+
index_admin:
|
605
|
+
back_to_meeting: Volver al encuentro
|
606
|
+
title: Administrar consulta
|
607
|
+
view_poll: Ver consulta
|
583
608
|
questions:
|
584
609
|
closed_question:
|
585
|
-
|
610
|
+
announcement: Se han cerrado las respuestas a esta pregunta.
|
611
|
+
question: Pregunta
|
612
|
+
question_results: Resultados
|
586
613
|
index:
|
587
614
|
empty_questions: A lo largo de este encuentro, se enviarán algunas preguntas y podrás responderlas. Se mostrarán aquí.
|
588
615
|
index_admin:
|
589
|
-
admin_dashboard: Panel de administración
|
590
616
|
edit: Editar en el panel de administración
|
591
617
|
question: Pregunta
|
592
618
|
received_answer: respuesta recibida
|
@@ -594,6 +620,10 @@ es-PY:
|
|
594
620
|
results: Resultados
|
595
621
|
send: Enviar
|
596
622
|
sent: Enviada
|
623
|
+
statuses:
|
624
|
+
closed: Resultados enviados (cerrados)
|
625
|
+
published: Enviada (abierta)
|
626
|
+
unpublished: Pendiente de enviar
|
597
627
|
published_question:
|
598
628
|
max_choices_alert: Hay demasiadas opciones seleccionadas
|
599
629
|
question: Pregunta
|
@@ -640,7 +670,7 @@ es-PY:
|
|
640
670
|
meetings:
|
641
671
|
description: Número de reuniones creadas
|
642
672
|
object: reuniones
|
643
|
-
title:
|
673
|
+
title: Reuniones
|
644
674
|
participatory_spaces:
|
645
675
|
highlighted_meetings:
|
646
676
|
past_meetings: Encuentros pasados
|