decidim-meetings 0.26.1 → 0.26.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/commands/decidim/meetings/admin/create_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +1 -1
- data/app/commands/decidim/meetings/create_meeting.rb +2 -1
- data/app/commands/decidim/meetings/update_meeting.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +0 -4
- data/app/helpers/decidim/meetings/application_helper.rb +19 -1
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +4 -1
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +9 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -0
- data/config/locales/ar.yml +12 -0
- data/config/locales/ca.yml +7 -7
- data/config/locales/cs.yml +6 -6
- data/config/locales/de.yml +3 -3
- data/config/locales/en.yml +6 -6
- data/config/locales/es-MX.yml +7 -7
- data/config/locales/es-PY.yml +5 -5
- data/config/locales/es.yml +7 -7
- data/config/locales/eu.yml +0 -8
- data/config/locales/fi-plain.yml +5 -5
- data/config/locales/fi.yml +5 -5
- data/config/locales/fr-CA.yml +3 -3
- data/config/locales/fr.yml +11 -11
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/it.yml +0 -8
- data/config/locales/ja.yml +1 -1
- data/config/locales/lb.yml +0 -1
- data/config/locales/nl.yml +0 -8
- data/config/locales/no.yml +0 -6
- data/config/locales/pl.yml +0 -3
- data/config/locales/pt-BR.yml +0 -4
- data/config/locales/pt.yml +0 -8
- data/config/locales/ro-RO.yml +0 -8
- data/config/locales/sv.yml +0 -8
- data/config/locales/tr-TR.yml +0 -3
- data/db/migrate/20210512100333_drop_decidim_meetings_minutes_table.rb +1 -0
- data/lib/decidim/content_parsers/meeting_parser.rb +20 -0
- data/lib/decidim/content_renderers/meeting_renderer.rb +17 -0
- data/lib/decidim/meetings/component.rb +2 -2
- data/lib/decidim/meetings/engine.rb +6 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +8 -0
- metadata +16 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26691ea95f69bf432c5fa438182b8ce6a20c897f15821a66dc92670ae76ec0eb
|
4
|
+
data.tar.gz: 6d5fd46688388abc4c87fbd8869c8bcf4fcf725974f4d1cc27ccea86ecf452a0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb185e7bc69a84b2b5582a8ec5cb0f1619c7687a6c7f7b2c2a6db1a52aff31f1448bef465f14d5be0525f8a145278b21014ceeba0052a528815e0054c75ea837
|
7
|
+
data.tar.gz: 503ab4fda399ac1a43233b8d55afdff838b4b44f1e25d0d9416975c0f5e11c37379000e4a4d7e30a5c1118e984aed584154be8b9cfdad1bb2190eff21c54ef7b
|
@@ -31,7 +31,7 @@ module Decidim
|
|
31
31
|
|
32
32
|
def create_meeting!
|
33
33
|
parsed_title = Decidim::ContentProcessor.parse_with_processor(:hashtag, form.title, current_organization: form.current_organization).rewrite
|
34
|
-
parsed_description = Decidim::ContentProcessor.
|
34
|
+
parsed_description = Decidim::ContentProcessor.parse(form.description, current_organization: form.current_organization).rewrite
|
35
35
|
params = {
|
36
36
|
scope: form.scope,
|
37
37
|
category: form.category,
|
@@ -37,7 +37,7 @@ module Decidim
|
|
37
37
|
|
38
38
|
def update_meeting!
|
39
39
|
parsed_title = Decidim::ContentProcessor.parse_with_processor(:hashtag, form.title, current_organization: form.current_organization).rewrite
|
40
|
-
parsed_description = Decidim::ContentProcessor.
|
40
|
+
parsed_description = Decidim::ContentProcessor.parse(form.description, current_organization: form.current_organization).rewrite
|
41
41
|
|
42
42
|
Decidim.traceability.update!(
|
43
43
|
meeting,
|
@@ -31,7 +31,8 @@ module Decidim
|
|
31
31
|
|
32
32
|
def create_meeting!
|
33
33
|
parsed_title = Decidim::ContentProcessor.parse_with_processor(:hashtag, form.title, current_organization: form.current_organization).rewrite
|
34
|
-
parsed_description = Decidim::ContentProcessor.
|
34
|
+
parsed_description = Decidim::ContentProcessor.parse(form.description, current_organization: form.current_organization).rewrite
|
35
|
+
|
35
36
|
params = {
|
36
37
|
scope: form.scope,
|
37
38
|
category: form.category,
|
@@ -37,7 +37,7 @@ module Decidim
|
|
37
37
|
|
38
38
|
def update_meeting!
|
39
39
|
parsed_title = Decidim::ContentProcessor.parse_with_processor(:hashtag, form.title, current_organization: form.current_organization).rewrite
|
40
|
-
parsed_description = Decidim::ContentProcessor.
|
40
|
+
parsed_description = Decidim::ContentProcessor.parse(form.description, current_organization: form.current_organization).rewrite
|
41
41
|
|
42
42
|
Decidim.traceability.update!(
|
43
43
|
meeting,
|
@@ -104,7 +104,7 @@ module Decidim
|
|
104
104
|
private
|
105
105
|
|
106
106
|
def meeting
|
107
|
-
@meeting ||= Meeting.not_hidden.where(component: current_component).
|
107
|
+
@meeting ||= Meeting.not_hidden.where(component: current_component).find_by(id: params[:id])
|
108
108
|
end
|
109
109
|
|
110
110
|
def meetings
|
@@ -58,10 +58,6 @@ module Decidim
|
|
58
58
|
end
|
59
59
|
|
60
60
|
self.decidim_category_id = model.categorization.decidim_category_id if model.categorization
|
61
|
-
presenter = MeetingPresenter.new(model)
|
62
|
-
|
63
|
-
self.title = presenter.title(all_locales: title.is_a?(Hash))
|
64
|
-
self.description = presenter.description(all_locales: description.is_a?(Hash))
|
65
61
|
self.type_of_meeting = model.type_of_meeting
|
66
62
|
end
|
67
63
|
|
@@ -67,7 +67,25 @@ module Decidim
|
|
67
67
|
|
68
68
|
# If the content is safe, HTML tags are sanitized, otherwise, they are stripped.
|
69
69
|
def render_meeting_body(meeting)
|
70
|
-
render_sanitized_content(meeting, :description)
|
70
|
+
Decidim::ContentProcessor.render(render_sanitized_content(meeting, :description), "div")
|
71
|
+
end
|
72
|
+
|
73
|
+
def prevent_timeout_seconds
|
74
|
+
return 0 unless respond_to?(:meeting)
|
75
|
+
return 0 if !current_user || !meeting || !meeting.live?
|
76
|
+
return 0 unless online_or_hybrid_meeting?(meeting)
|
77
|
+
return 0 unless iframe_embed_or_live_event_page?(meeting)
|
78
|
+
return 0 unless meeting.iframe_access_level_allowed_for_user?(current_user)
|
79
|
+
|
80
|
+
(meeting.end_time - Time.current).to_i
|
81
|
+
end
|
82
|
+
|
83
|
+
def online_or_hybrid_meeting?(meeting)
|
84
|
+
meeting.online_meeting? || meeting.hybrid_meeting?
|
85
|
+
end
|
86
|
+
|
87
|
+
def iframe_embed_or_live_event_page?(meeting)
|
88
|
+
%w(embed_in_meeting_page open_in_live_event_page).include? meeting.iframe_embed_type
|
71
89
|
end
|
72
90
|
end
|
73
91
|
end
|
@@ -7,7 +7,10 @@ module Decidim
|
|
7
7
|
|
8
8
|
def perform(meeting_id, checksum)
|
9
9
|
meeting = Decidim::Meetings::Meeting.find(meeting_id)
|
10
|
-
|
10
|
+
return if meeting.hidden? || meeting.withdrawn?
|
11
|
+
return unless verify_checksum(meeting, checksum)
|
12
|
+
|
13
|
+
send_notification(meeting)
|
11
14
|
end
|
12
15
|
|
13
16
|
def self.generate_checksum(meeting)
|
@@ -118,7 +118,7 @@ $(() => {
|
|
118
118
|
toggleDependsOnSelect($target, $meetingRegistrationUrl, "on_different_platform");
|
119
119
|
});
|
120
120
|
|
121
|
-
$meetingRegistrationType
|
121
|
+
toggleDependsOnSelect($meetingRegistrationType, $meetingRegistrationUrl, "on_different_platform");
|
122
122
|
|
123
123
|
const $meetingTypeOfMeeting = $form.find("#meeting_type_of_meeting");
|
124
124
|
const $meetingOnlineFields = $form.find(".field[data-meeting-type='online']");
|
@@ -7,12 +7,21 @@ module Decidim
|
|
7
7
|
#
|
8
8
|
class MeetingPresenter < Decidim::ResourcePresenter
|
9
9
|
include Decidim::ResourceHelper
|
10
|
+
include ActionView::Helpers::UrlHelper
|
10
11
|
include Decidim::SanitizeHelper
|
11
12
|
|
12
13
|
def meeting
|
13
14
|
__getobj__
|
14
15
|
end
|
15
16
|
|
17
|
+
def meeting_path
|
18
|
+
Decidim::ResourceLocatorPresenter.new(meeting).path
|
19
|
+
end
|
20
|
+
|
21
|
+
def display_mention
|
22
|
+
link_to title, meeting_path
|
23
|
+
end
|
24
|
+
|
16
25
|
def title(links: false, html_escape: false, all_locales: false)
|
17
26
|
return unless meeting
|
18
27
|
|
data/config/locales/ar.yml
CHANGED
@@ -76,6 +76,14 @@ ar:
|
|
76
76
|
meetings:
|
77
77
|
category_id_eq:
|
78
78
|
label: الفئة
|
79
|
+
origin_eq:
|
80
|
+
values:
|
81
|
+
citizen: المواطن
|
82
|
+
user_group: مجموعات المستخدمين
|
83
|
+
type_eq:
|
84
|
+
label: نوع الاجتماع
|
85
|
+
values:
|
86
|
+
in_person: وجهًا لوجه
|
79
87
|
meeting_copies:
|
80
88
|
create:
|
81
89
|
error: كانت هناك مشكلة في تكرار هذا الاجتماع.
|
@@ -243,6 +251,8 @@ ar:
|
|
243
251
|
success: تم حذف الاجتماع بنجاح
|
244
252
|
edit:
|
245
253
|
update: تحديث
|
254
|
+
form:
|
255
|
+
registration_email_help: سيظهر هذا النص في منتصف البريد الإلكتروني الخاص بتأكيد التسجيل مباشرة بعد رمز التسجيل.
|
246
256
|
index:
|
247
257
|
title: اجتماعات
|
248
258
|
new:
|
@@ -334,6 +344,8 @@ ar:
|
|
334
344
|
filters:
|
335
345
|
category: الفئة
|
336
346
|
date: تاريخ
|
347
|
+
origin_values:
|
348
|
+
citizens: المواطنون
|
337
349
|
search: بحث
|
338
350
|
filters_small_view:
|
339
351
|
close_modal: إغلاق مشروط
|
data/config/locales/ca.yml
CHANGED
@@ -100,7 +100,7 @@ ca:
|
|
100
100
|
type_eq:
|
101
101
|
label: Tipus de trobada
|
102
102
|
values:
|
103
|
-
hybrid:
|
103
|
+
hybrid: Híbrida
|
104
104
|
in_person: Presencial
|
105
105
|
online: En línia
|
106
106
|
meeting_copies:
|
@@ -184,7 +184,7 @@ ca:
|
|
184
184
|
notification_title: La trobada <a href="%{resource_path}">%{resource_title}</a> començarà en menys de 48 hores.
|
185
185
|
forms:
|
186
186
|
meetings:
|
187
|
-
attendees_count_help_text: No oblidis
|
187
|
+
attendees_count_help_text: No t'oblidis d'afegir el número total d'assistents a la trobada, sigui presencial, en línia o híbrida.
|
188
188
|
gamification:
|
189
189
|
badges:
|
190
190
|
attended_meetings:
|
@@ -476,7 +476,7 @@ ca:
|
|
476
476
|
type: Tipus
|
477
477
|
type_values:
|
478
478
|
all: Totes
|
479
|
-
hybrid:
|
479
|
+
hybrid: Híbrida
|
480
480
|
in_person: Presencial
|
481
481
|
online: En línia
|
482
482
|
filters_small_view:
|
@@ -525,11 +525,11 @@ ca:
|
|
525
525
|
edit_close_meeting: Editeu l'informe de la reunió
|
526
526
|
edit_meeting: Editar la trobada
|
527
527
|
going: T'has inscrit en aquesta trobada
|
528
|
-
join:
|
528
|
+
join: Unir-se a la trobada
|
529
529
|
leave: Cancel·la la teva inscripció
|
530
530
|
leave_confirmation: Segur que vols cancel·lar la teva inscripció a aquesta trobada?
|
531
531
|
link_available_soon: Enllaç disponible pròximament
|
532
|
-
link_closed: L'enllaç a la
|
532
|
+
link_closed: L'enllaç a la sala de videoconferència estarà disponible uns minuts abans que comenci
|
533
533
|
live_event: Aquesta trobada està succeint ara mateix
|
534
534
|
meeting_minutes: Acta de la trobada
|
535
535
|
micro_camera_permissions_warning: Quan facis clic en el botó de sota, se't demanaran permisos per al micròfon i/o la càmera, i t'uniràs a la videoconferència
|
@@ -567,7 +567,7 @@ ca:
|
|
567
567
|
fields:
|
568
568
|
closed: Tancada
|
569
569
|
end_time: Data de finalització
|
570
|
-
id:
|
570
|
+
id: ID
|
571
571
|
map: Mapa
|
572
572
|
official_meeting: Trobada oficial
|
573
573
|
start_time: Data d'inici
|
@@ -618,7 +618,7 @@ ca:
|
|
618
618
|
invalid: S'ha produït un error en abandonar aquesta trobada.
|
619
619
|
success: Has abandonat la trobada amb èxit.
|
620
620
|
type_of_meeting:
|
621
|
-
hybrid:
|
621
|
+
hybrid: Híbrida
|
622
622
|
in_person: Presencial
|
623
623
|
online: Online
|
624
624
|
types:
|
data/config/locales/cs.yml
CHANGED
@@ -106,7 +106,7 @@ cs:
|
|
106
106
|
type_eq:
|
107
107
|
label: Typ schůzky
|
108
108
|
values:
|
109
|
-
hybrid:
|
109
|
+
hybrid: Hybridní
|
110
110
|
in_person: Osobně
|
111
111
|
online: Online
|
112
112
|
meeting_copies:
|
@@ -190,7 +190,7 @@ cs:
|
|
190
190
|
notification_title: Setkání <a href="%{resource_path}">%{resource_title}</a> bude zahájeno za méně než 48 hodin.
|
191
191
|
forms:
|
192
192
|
meetings:
|
193
|
-
attendees_count_help_text: Nezapomeňte uvést celkový počet účastníků vaší
|
193
|
+
attendees_count_help_text: Nezapomeňte uvést celkový počet účastníků na vaší schůzce, ať už osobně, online nebo hybridně.
|
194
194
|
gamification:
|
195
195
|
badges:
|
196
196
|
attended_meetings:
|
@@ -490,7 +490,7 @@ cs:
|
|
490
490
|
type: Typ
|
491
491
|
type_values:
|
492
492
|
all: Vše
|
493
|
-
hybrid:
|
493
|
+
hybrid: Hybridní
|
494
494
|
in_person: Osobně
|
495
495
|
online: Online
|
496
496
|
filters_small_view:
|
@@ -583,7 +583,7 @@ cs:
|
|
583
583
|
fields:
|
584
584
|
closed: Zavřeno
|
585
585
|
end_time: Datum ukončení
|
586
|
-
id:
|
586
|
+
id: ID
|
587
587
|
map: Mapa
|
588
588
|
official_meeting: Oficiální schůzka
|
589
589
|
start_time: Datum zahájení
|
@@ -596,7 +596,7 @@ cs:
|
|
596
596
|
empty_questions: Během této schůzky budou zaslány některé dotazy a vy na ně budete moci odpovědět. Zobrazí se zde.
|
597
597
|
index_admin:
|
598
598
|
admin_dashboard: Řídicí panel administrace
|
599
|
-
edit: Upravit v
|
599
|
+
edit: Upravit v panelu administrace
|
600
600
|
question: Otázka
|
601
601
|
received_answer: přijatá odpověď
|
602
602
|
received_answers: přijaté odpovědi
|
@@ -636,7 +636,7 @@ cs:
|
|
636
636
|
invalid: Při setkání došlo k problému.
|
637
637
|
success: Zasedání jste úspěšně opustili.
|
638
638
|
type_of_meeting:
|
639
|
-
hybrid:
|
639
|
+
hybrid: Hybridní
|
640
640
|
in_person: Osobně
|
641
641
|
online: Online
|
642
642
|
types:
|
data/config/locales/de.yml
CHANGED
@@ -79,6 +79,7 @@ de:
|
|
79
79
|
origin_eq:
|
80
80
|
label: Ursprung
|
81
81
|
values:
|
82
|
+
citizen: Bürger
|
82
83
|
official: Offiziell
|
83
84
|
user_group: Benutzergruppen
|
84
85
|
scope_id_eq:
|
@@ -86,7 +87,6 @@ de:
|
|
86
87
|
type_eq:
|
87
88
|
label: Art des Treffens
|
88
89
|
values:
|
89
|
-
hybrid: Beides
|
90
90
|
in_person: Persönlich
|
91
91
|
online: Online
|
92
92
|
meeting_copies:
|
@@ -287,6 +287,7 @@ de:
|
|
287
287
|
registration_url_help: 'Link: Erlaubt den Teilnehmern den externen Service zu nutzen, den Sie für die Registrierung verwenden'
|
288
288
|
select_a_meeting_type: Bitte eine Meeting-Typ auswählen
|
289
289
|
select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
|
290
|
+
show_embedded_iframe_help: Nur wenige Dienste erlauben das Einbetten einer Veranstaltung oder eines Livestreams (Youtube, Twitch und Jitsi)
|
290
291
|
index:
|
291
292
|
title: Meetings
|
292
293
|
new:
|
@@ -441,7 +442,6 @@ de:
|
|
441
442
|
type: Art
|
442
443
|
type_values:
|
443
444
|
all: Alle
|
444
|
-
hybrid: Beides
|
445
445
|
in_person: Persönlich
|
446
446
|
online: Online
|
447
447
|
filters_small_view:
|
@@ -461,6 +461,7 @@ de:
|
|
461
461
|
select_a_category: Bitte wählen sie eine Kategorie
|
462
462
|
select_a_meeting_type: Bitte eine Meeting-Art auswählen
|
463
463
|
select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
|
464
|
+
show_embedded_iframe_help: Nur wenige Dienste erlauben das Einbetten einer Veranstaltung oder eines Livestreams (Youtube, Twitch und Jitsi)
|
464
465
|
index:
|
465
466
|
new_meeting: Neue Besprechung
|
466
467
|
meeting_minutes:
|
@@ -547,7 +548,6 @@ de:
|
|
547
548
|
invalid: Beim Verlassen dieses Meetings ist ein Problem aufgetreten.
|
548
549
|
success: Sie haben das Meeting erfolgreich verlassen.
|
549
550
|
type_of_meeting:
|
550
|
-
hybrid: Beides
|
551
551
|
in_person: In Person
|
552
552
|
online: Online
|
553
553
|
types:
|
data/config/locales/en.yml
CHANGED
@@ -101,7 +101,7 @@ en:
|
|
101
101
|
type_eq:
|
102
102
|
label: Type of meeting
|
103
103
|
values:
|
104
|
-
hybrid:
|
104
|
+
hybrid: Hybrid
|
105
105
|
in_person: In Person
|
106
106
|
online: Online
|
107
107
|
meeting_copies:
|
@@ -185,7 +185,7 @@ en:
|
|
185
185
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting will start in less than 48h.
|
186
186
|
forms:
|
187
187
|
meetings:
|
188
|
-
attendees_count_help_text: Don
|
188
|
+
attendees_count_help_text: Don't forget to include the total number of attendees at your meeting, whether in person, online or hybrid.
|
189
189
|
gamification:
|
190
190
|
badges:
|
191
191
|
attended_meetings:
|
@@ -477,7 +477,7 @@ en:
|
|
477
477
|
type: Type
|
478
478
|
type_values:
|
479
479
|
all: All
|
480
|
-
hybrid:
|
480
|
+
hybrid: Hybrid
|
481
481
|
in_person: In-person
|
482
482
|
online: Online
|
483
483
|
filters_small_view:
|
@@ -568,7 +568,7 @@ en:
|
|
568
568
|
fields:
|
569
569
|
closed: Closed
|
570
570
|
end_time: End date
|
571
|
-
id:
|
571
|
+
id: ID
|
572
572
|
map: Map
|
573
573
|
official_meeting: Official meeting
|
574
574
|
start_time: Start date
|
@@ -581,7 +581,7 @@ en:
|
|
581
581
|
empty_questions: Throughout this meeting, some questions will be sent and you will be able to answer them. They will be displayed here.
|
582
582
|
index_admin:
|
583
583
|
admin_dashboard: Administrator dashboard
|
584
|
-
edit: Edit in the admin
|
584
|
+
edit: Edit in the admin panel
|
585
585
|
question: Question
|
586
586
|
received_answer: received answer
|
587
587
|
received_answers: received answers
|
@@ -619,7 +619,7 @@ en:
|
|
619
619
|
invalid: There was a problem leaving this meeting.
|
620
620
|
success: You have left the meeting successfully.
|
621
621
|
type_of_meeting:
|
622
|
-
hybrid:
|
622
|
+
hybrid: Hybrid
|
623
623
|
in_person: In person
|
624
624
|
online: Online
|
625
625
|
types:
|
data/config/locales/es-MX.yml
CHANGED
@@ -100,7 +100,7 @@ es-MX:
|
|
100
100
|
type_eq:
|
101
101
|
label: Tipo de encuentro
|
102
102
|
values:
|
103
|
-
hybrid:
|
103
|
+
hybrid: Híbrido
|
104
104
|
in_person: Presencial
|
105
105
|
online: Online
|
106
106
|
meeting_copies:
|
@@ -184,7 +184,7 @@ es-MX:
|
|
184
184
|
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> comenzará en menos de 48 h.
|
185
185
|
forms:
|
186
186
|
meetings:
|
187
|
-
attendees_count_help_text: No olvides
|
187
|
+
attendees_count_help_text: No te olvides de añadir el número total de asistentes a la reunión, ya sea en persona, en línea o híbrido.
|
188
188
|
gamification:
|
189
189
|
badges:
|
190
190
|
attended_meetings:
|
@@ -313,7 +313,7 @@ es-MX:
|
|
313
313
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
314
314
|
select_a_registration_type: Por favor, seleccione un tipo de inscripción
|
315
315
|
select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
|
316
|
-
show_embedded_iframe_help:
|
316
|
+
show_embedded_iframe_help: Sólo unos pocos servicios se pueden incrustar en un encuentro o evento en vivo (YouTube, Twitch y Jitsi)
|
317
317
|
index:
|
318
318
|
title: Encuentros
|
319
319
|
new:
|
@@ -476,7 +476,7 @@ es-MX:
|
|
476
476
|
type: Tipo
|
477
477
|
type_values:
|
478
478
|
all: Todos
|
479
|
-
hybrid:
|
479
|
+
hybrid: Híbrida
|
480
480
|
in_person: Presencial
|
481
481
|
online: Online
|
482
482
|
filters_small_view:
|
@@ -497,7 +497,7 @@ es-MX:
|
|
497
497
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
498
498
|
select_a_registration_type: Por favor, selecciona un tipo de inscripción
|
499
499
|
select_an_iframe_access_level: Por favor, selecciona un nivel de acceso iframe
|
500
|
-
show_embedded_iframe_help:
|
500
|
+
show_embedded_iframe_help: Sólo unos pocos servicios se pueden incrustar en un encuentro o evento en vivo (YouTube, Twitch y Jitsi)
|
501
501
|
index:
|
502
502
|
click_here: Ver todos los encuentros
|
503
503
|
new_meeting: Nuevo encuentro
|
@@ -567,7 +567,7 @@ es-MX:
|
|
567
567
|
fields:
|
568
568
|
closed: Cerrado
|
569
569
|
end_time: Fecha de finalización
|
570
|
-
id:
|
570
|
+
id: ID
|
571
571
|
map: Mapa
|
572
572
|
official_meeting: Encuentro oficial
|
573
573
|
start_time: Fecha de inicio
|
@@ -618,7 +618,7 @@ es-MX:
|
|
618
618
|
invalid: Ha habido un problema al salir de esta encuentro.
|
619
619
|
success: Has salido del encuentro con éxito.
|
620
620
|
type_of_meeting:
|
621
|
-
hybrid:
|
621
|
+
hybrid: Hibrida
|
622
622
|
in_person: Presencial
|
623
623
|
online: En línea
|
624
624
|
types:
|
data/config/locales/es-PY.yml
CHANGED
@@ -100,7 +100,7 @@ es-PY:
|
|
100
100
|
type_eq:
|
101
101
|
label: Tipo de encuentro
|
102
102
|
values:
|
103
|
-
hybrid:
|
103
|
+
hybrid: Híbrido
|
104
104
|
in_person: Presencial
|
105
105
|
online: Online
|
106
106
|
meeting_copies:
|
@@ -184,7 +184,7 @@ es-PY:
|
|
184
184
|
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> comenzará en menos de 48 h.
|
185
185
|
forms:
|
186
186
|
meetings:
|
187
|
-
attendees_count_help_text: No olvides
|
187
|
+
attendees_count_help_text: No te olvides de añadir el número total de asistentes a la reunión, ya sea en persona, en línea o híbrido.
|
188
188
|
gamification:
|
189
189
|
badges:
|
190
190
|
attended_meetings:
|
@@ -476,7 +476,7 @@ es-PY:
|
|
476
476
|
type: Tipo
|
477
477
|
type_values:
|
478
478
|
all: Todos
|
479
|
-
hybrid:
|
479
|
+
hybrid: Híbrida
|
480
480
|
in_person: Presencial
|
481
481
|
online: Online
|
482
482
|
filters_small_view:
|
@@ -567,7 +567,7 @@ es-PY:
|
|
567
567
|
fields:
|
568
568
|
closed: Cerrado
|
569
569
|
end_time: Fecha de finalización
|
570
|
-
id:
|
570
|
+
id: ID
|
571
571
|
map: Mapa
|
572
572
|
official_meeting: Encuentro oficial
|
573
573
|
start_time: Fecha de inicio
|
@@ -618,7 +618,7 @@ es-PY:
|
|
618
618
|
invalid: Ha habido un problema al salir de esta encuentro.
|
619
619
|
success: Has salido del encuentro con éxito.
|
620
620
|
type_of_meeting:
|
621
|
-
hybrid:
|
621
|
+
hybrid: Hibrida
|
622
622
|
in_person: Presencial
|
623
623
|
online: En línea
|
624
624
|
types:
|
data/config/locales/es.yml
CHANGED
@@ -100,7 +100,7 @@ es:
|
|
100
100
|
type_eq:
|
101
101
|
label: Tipo de encuentro
|
102
102
|
values:
|
103
|
-
hybrid:
|
103
|
+
hybrid: Híbrido
|
104
104
|
in_person: Presencial
|
105
105
|
online: Online
|
106
106
|
meeting_copies:
|
@@ -184,7 +184,7 @@ es:
|
|
184
184
|
notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> empezará en menos de 48 h.
|
185
185
|
forms:
|
186
186
|
meetings:
|
187
|
-
attendees_count_help_text: No olvides
|
187
|
+
attendees_count_help_text: No te olvides de añadir el número total de asistentes a la reunión, ya sea en persona, en línea o híbrido.
|
188
188
|
gamification:
|
189
189
|
badges:
|
190
190
|
attended_meetings:
|
@@ -476,7 +476,7 @@ es:
|
|
476
476
|
type: Tipo
|
477
477
|
type_values:
|
478
478
|
all: Todos
|
479
|
-
hybrid:
|
479
|
+
hybrid: Híbrida
|
480
480
|
in_person: Presencial
|
481
481
|
online: Online
|
482
482
|
filters_small_view:
|
@@ -525,11 +525,11 @@ es:
|
|
525
525
|
edit_close_meeting: Editar informe del encuentro
|
526
526
|
edit_meeting: Editar el encuentro
|
527
527
|
going: Te has inscrito en este encuentro
|
528
|
-
join:
|
528
|
+
join: Unirse al encuentro
|
529
529
|
leave: Cancela tu inscripción
|
530
530
|
leave_confirmation: '¿Seguro que quieres cancelar tu inscripción para este encuentro?'
|
531
531
|
link_available_soon: Enlace disponible próximamente
|
532
|
-
link_closed: El enlace
|
532
|
+
link_closed: El enlace a la sala de videoconferencia estará disponible unos minutos antes de que comience
|
533
533
|
live_event: Este encuentro está sucediendo ahora mismo
|
534
534
|
meeting_minutes: Acta del encuentro
|
535
535
|
micro_camera_permissions_warning: Cuando hagas clic en el botón de abajo, se te pedirán permisos de micrófono y/o cámara y te unirás a la videoconferencia
|
@@ -567,7 +567,7 @@ es:
|
|
567
567
|
fields:
|
568
568
|
closed: Cerrado
|
569
569
|
end_time: Fecha de finalización
|
570
|
-
id:
|
570
|
+
id: ID
|
571
571
|
map: Mapa
|
572
572
|
official_meeting: Encuentro oficial
|
573
573
|
start_time: Fecha de inicio
|
@@ -618,7 +618,7 @@ es:
|
|
618
618
|
invalid: Se ha producido un error al salir de este encuentro.
|
619
619
|
success: Has salido del encuentro con éxito.
|
620
620
|
type_of_meeting:
|
621
|
-
hybrid:
|
621
|
+
hybrid: Hibrida
|
622
622
|
in_person: Presencial
|
623
623
|
online: En línea
|
624
624
|
types:
|
data/config/locales/eu.yml
CHANGED
@@ -96,7 +96,6 @@ eu:
|
|
96
96
|
type_eq:
|
97
97
|
label: Topaketa mota
|
98
98
|
values:
|
99
|
-
hybrid: Biok
|
100
99
|
in_person: Aurrez aurre
|
101
100
|
online: Lineakoa
|
102
101
|
meeting_copies:
|
@@ -178,9 +177,6 @@ eu:
|
|
178
177
|
email_outro: Jakinarazpen hori jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko esteka estekan jarrai dezakezu.
|
179
178
|
email_subject: '"%{resource_title}" topaketa 48 ordu baino gutxiagotan hasiko da.'
|
180
179
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketa 48 ordu baino gutxiagoan hasiko da.
|
181
|
-
forms:
|
182
|
-
meetings:
|
183
|
-
attendees_count_help_text: Ez ahaztu zure topaketara joandako guztien kopurua sartzea, bai aurrez aurre, bai linean edo hibridoan.
|
184
180
|
gamification:
|
185
181
|
badges:
|
186
182
|
attended_meetings:
|
@@ -456,7 +452,6 @@ eu:
|
|
456
452
|
type: Mota
|
457
453
|
type_values:
|
458
454
|
all: Denak
|
459
|
-
hybrid: Biok
|
460
455
|
in_person: Aurrez aurre
|
461
456
|
online: Lineakoa
|
462
457
|
filters_small_view:
|
@@ -543,7 +538,6 @@ eu:
|
|
543
538
|
fields:
|
544
539
|
closed: Itxita
|
545
540
|
end_time: Bukaera-data
|
546
|
-
id: Id
|
547
541
|
map: Mapa
|
548
542
|
official_meeting: Topaketa ofiziala
|
549
543
|
start_time: Hasiera-data
|
@@ -556,7 +550,6 @@ eu:
|
|
556
550
|
empty_questions: Topaketa honetan zehar, galdera batzuk bidaliko dira eta erantzun ahal izango dituzu. Hemen erakutsiko dira.
|
557
551
|
index_admin:
|
558
552
|
admin_dashboard: Administrazio-panela
|
559
|
-
edit: Editatu administrazio-panelean
|
560
553
|
question: Galdera
|
561
554
|
received_answer: jasotako erantzuna
|
562
555
|
received_answers: jasotako erantzunak
|
@@ -591,7 +584,6 @@ eu:
|
|
591
584
|
invalid: Arazo bat izan da topaketa honetatik ateratzean.
|
592
585
|
success: Topaketatik ongi atera zara.
|
593
586
|
type_of_meeting:
|
594
|
-
hybrid: Biok
|
595
587
|
in_person: Aurrez aurre
|
596
588
|
online: Lineakoa
|
597
589
|
types:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -100,7 +100,7 @@ fi-pl:
|
|
100
100
|
type_eq:
|
101
101
|
label: Tapaamisen tyyppi
|
102
102
|
values:
|
103
|
-
hybrid:
|
103
|
+
hybrid: Hybridi
|
104
104
|
in_person: Fyysinen
|
105
105
|
online: Verkossa
|
106
106
|
meeting_copies:
|
@@ -184,7 +184,7 @@ fi-pl:
|
|
184
184
|
notification_title: Tapahtuma <a href="%{resource_path}">%{resource_title}</a> alkaa alle 48 tuntin kuluttua.
|
185
185
|
forms:
|
186
186
|
meetings:
|
187
|
-
attendees_count_help_text: Älä unohda
|
187
|
+
attendees_count_help_text: Älä unohda merkitä tapaamisesi osallistujien kokonaismäärää, olipa kyse fyysisestä, verkko- tai hybriditapaamisesta.
|
188
188
|
gamification:
|
189
189
|
badges:
|
190
190
|
attended_meetings:
|
@@ -476,7 +476,7 @@ fi-pl:
|
|
476
476
|
type: Tyyppi
|
477
477
|
type_values:
|
478
478
|
all: Kaikki
|
479
|
-
hybrid:
|
479
|
+
hybrid: Hybridi
|
480
480
|
in_person: Fyysinen
|
481
481
|
online: Verkossa
|
482
482
|
filters_small_view:
|
@@ -567,7 +567,7 @@ fi-pl:
|
|
567
567
|
fields:
|
568
568
|
closed: Suljettu
|
569
569
|
end_time: Päättymispäivä
|
570
|
-
id:
|
570
|
+
id: ID
|
571
571
|
map: Kartta
|
572
572
|
official_meeting: Virallinen tapahtuma
|
573
573
|
start_time: Alkamispäivä
|
@@ -618,7 +618,7 @@ fi-pl:
|
|
618
618
|
invalid: Tapahtumasta poistumisessa on tapahtunut virhe.
|
619
619
|
success: Olet poistunut tapahtumasta onnistuneesti.
|
620
620
|
type_of_meeting:
|
621
|
-
hybrid:
|
621
|
+
hybrid: Hybridi
|
622
622
|
in_person: Fyysinen
|
623
623
|
online: Verkossa
|
624
624
|
types:
|