decidim-meetings 0.27.0 → 0.27.2
Sign up to get free protection for your applications and to get access to all the features.
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/meeting_list_item_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_s_cell.rb +0 -6
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +23 -4
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +2 -2
- data/app/forms/decidim/meetings/admin/meeting_form.rb +5 -9
- data/app/helpers/decidim/meetings/application_helper.rb +6 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +1 -6
- data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +1 -1
- data/config/locales/ar.yml +0 -6
- data/config/locales/bg.yml +0 -6
- data/config/locales/ca.yml +17 -10
- data/config/locales/cs.yml +15 -8
- data/config/locales/de.yml +12 -10
- data/config/locales/el.yml +0 -6
- data/config/locales/en.yml +17 -10
- data/config/locales/es-MX.yml +17 -10
- data/config/locales/es-PY.yml +17 -10
- data/config/locales/es.yml +17 -10
- data/config/locales/eu.yml +211 -155
- data/config/locales/fi-plain.yml +17 -10
- data/config/locales/fi.yml +17 -10
- data/config/locales/fr-CA.yml +16 -9
- data/config/locales/fr.yml +16 -9
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -9
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/hu.yml +0 -10
- data/config/locales/id-ID.yml +0 -6
- data/config/locales/is-IS.yml +0 -2
- data/config/locales/it.yml +0 -7
- data/config/locales/ja.yml +17 -10
- data/config/locales/ka-GE.yml +1 -0
- data/config/locales/lb.yml +0 -6
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/lt.yml +0 -10
- data/config/locales/lv.yml +0 -6
- data/config/locales/nl.yml +0 -10
- data/config/locales/no.yml +0 -10
- data/config/locales/pl.yml +5 -6
- data/config/locales/pt-BR.yml +0 -6
- data/config/locales/pt.yml +0 -7
- data/config/locales/ro-RO.yml +27 -10
- data/config/locales/ru.yml +0 -6
- data/config/locales/sk.yml +0 -6
- data/config/locales/sl.yml +0 -3
- data/config/locales/sv.yml +11 -9
- data/config/locales/tr-TR.yml +0 -6
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -6
- data/lib/decidim/meetings/engine.rb +1 -1
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +18 -17
- data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +0 -51
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +0 -64
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b88ac00953596a7640770559687f1ba48657b65f11e0d706ebbb16f929f4c28
|
4
|
+
data.tar.gz: 552640be23e75bb9497ff5d9c3b9a0b629de0bc8a035968db1b5b0fb54811890
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b5d5eafa08343e8a4fbbbb8963e08d757b75bf80ab151652922e14e48f774e4809727ed483fe835b4218a0940a389d9f76ba8b3a640444f15bff894fce2894b
|
7
|
+
data.tar.gz: 046ed8504405af4923c73037b3463c63b78f5c920662c1501e3bb34a107a7f00920bb5ce940cd4e40778f94a6d487ade50aa5db2e93532016068883324f5cd23
|
@@ -5,8 +5,6 @@ module Decidim
|
|
5
5
|
# This cell renders the Small (:s) meeting card
|
6
6
|
# for an given instance of a Meeting
|
7
7
|
class MeetingSCell < MeetingMCell
|
8
|
-
delegate :title, to: :presenter
|
9
|
-
|
10
8
|
def meeting_path
|
11
9
|
resource_locator(model).path
|
12
10
|
end
|
@@ -23,10 +21,6 @@ module Decidim
|
|
23
21
|
resource_locator(model.component.participatory_space).path
|
24
22
|
end
|
25
23
|
|
26
|
-
def presenter
|
27
|
-
@presenter ||= Decidim::Meetings::MeetingPresenter.new(model)
|
28
|
-
end
|
29
|
-
|
30
24
|
private
|
31
25
|
|
32
26
|
def cache_hash
|
@@ -44,8 +44,8 @@ module Decidim
|
|
44
44
|
@copied_meeting = Decidim.traceability.create!(
|
45
45
|
Meeting,
|
46
46
|
form.current_user,
|
47
|
-
scope:
|
48
|
-
category:
|
47
|
+
scope: form.scope,
|
48
|
+
category: form.category,
|
49
49
|
title: parsed_title,
|
50
50
|
description: parsed_description,
|
51
51
|
end_time: form.end_time,
|
@@ -60,10 +60,29 @@ module Decidim
|
|
60
60
|
transparent: form.transparent,
|
61
61
|
author: form.current_organization,
|
62
62
|
questionnaire: form.questionnaire,
|
63
|
+
online_meeting_url: form.online_meeting_url,
|
64
|
+
type_of_meeting: form.type_of_meeting,
|
65
|
+
iframe_embed_type: form.iframe_embed_type,
|
66
|
+
iframe_access_level: form.iframe_access_level,
|
67
|
+
comments_enabled: form.comments_enabled,
|
68
|
+
comments_start_time: form.comments_start_time,
|
69
|
+
comments_end_time: form.comments_end_time,
|
70
|
+
registration_type: form.registration_type,
|
71
|
+
registration_url: form.registration_url,
|
72
|
+
**fields_from_meeting
|
73
|
+
)
|
74
|
+
end
|
75
|
+
|
76
|
+
def fields_from_meeting
|
77
|
+
{
|
63
78
|
registrations_enabled: meeting.registrations_enabled,
|
64
79
|
available_slots: meeting.available_slots,
|
65
|
-
registration_terms: meeting.registration_terms
|
66
|
-
|
80
|
+
registration_terms: meeting.registration_terms,
|
81
|
+
reserved_slots: meeting.reserved_slots,
|
82
|
+
customize_registration_email: meeting.customize_registration_email,
|
83
|
+
registration_form_enabled: meeting.registration_form_enabled,
|
84
|
+
registration_email_custom_content: meeting.registration_email_custom_content
|
85
|
+
}
|
67
86
|
end
|
68
87
|
|
69
88
|
def copy_services!
|
@@ -11,13 +11,13 @@ module Decidim
|
|
11
11
|
def new
|
12
12
|
enforce_permission_to :copy, :meeting, meeting: meeting
|
13
13
|
|
14
|
-
@form = form(
|
14
|
+
@form = form(MeetingForm).from_model(meeting)
|
15
15
|
end
|
16
16
|
|
17
17
|
def create
|
18
18
|
enforce_permission_to :copy, :meeting, meeting: meeting
|
19
19
|
|
20
|
-
@form = form(
|
20
|
+
@form = form(MeetingForm).from_params(params, current_component: current_component)
|
21
21
|
|
22
22
|
CopyMeeting.call(@form, meeting) do
|
23
23
|
on(:ok) do
|
@@ -92,15 +92,6 @@ module Decidim
|
|
92
92
|
type_of_meeting.presence
|
93
93
|
end
|
94
94
|
|
95
|
-
def type_of_meeting_select
|
96
|
-
Decidim::Meetings::Meeting::TYPE_OF_MEETING.map do |type|
|
97
|
-
[
|
98
|
-
I18n.t("type_of_meeting.#{type}", scope: "decidim.meetings"),
|
99
|
-
type
|
100
|
-
]
|
101
|
-
end
|
102
|
-
end
|
103
|
-
|
104
95
|
def iframe_access_level_select
|
105
96
|
Decidim::Meetings::Meeting.iframe_access_levels.map do |level, _value|
|
106
97
|
[
|
@@ -119,6 +110,11 @@ module Decidim
|
|
119
110
|
end
|
120
111
|
end
|
121
112
|
|
113
|
+
# Support for copy meeting
|
114
|
+
def questionnaire
|
115
|
+
Decidim::Forms::Questionnaire.new
|
116
|
+
end
|
117
|
+
|
122
118
|
def on_this_platform?
|
123
119
|
registration_type == "on_this_platform"
|
124
120
|
end
|
@@ -65,7 +65,12 @@ module Decidim
|
|
65
65
|
|
66
66
|
# If the content is safe, HTML tags are sanitized, otherwise, they are stripped.
|
67
67
|
def render_meeting_body(meeting)
|
68
|
-
|
68
|
+
sanitized = render_sanitized_content(meeting, :description)
|
69
|
+
if safe_content?
|
70
|
+
Decidim::ContentProcessor.render_without_format(sanitized).html_safe
|
71
|
+
else
|
72
|
+
Decidim::ContentProcessor.render(sanitized, "div")
|
73
|
+
end
|
69
74
|
end
|
70
75
|
|
71
76
|
def prevent_timeout_seconds
|
@@ -31,12 +31,7 @@ module Decidim
|
|
31
31
|
def description(links: false, extras: true, strip_tags: false, all_locales: false)
|
32
32
|
return unless meeting
|
33
33
|
|
34
|
-
|
35
|
-
renderer = Decidim::ContentRenderers::HashtagRenderer.new(sanitized(content))
|
36
|
-
renderer.render(links: links).html_safe
|
37
|
-
end
|
38
|
-
|
39
|
-
content_handle_locale(new_description, all_locales, extras, links, strip_tags)
|
34
|
+
content_handle_locale(meeting.description, all_locales, extras, links, strip_tags)
|
40
35
|
end
|
41
36
|
|
42
37
|
def location(all_locales: false)
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<%= decidim_form_for(@form, url: meeting_copies_path(meeting), method: :post, html: { class: "form copy_meetings " }) do |f| %>
|
2
|
-
<%= render partial: "form", object: f, locals: { title: t("meeting_copies.new.title", scope: "decidim.admin"), select: t("meeting_copies.new.select", scope: "decidim.admin") } %>
|
2
|
+
<%= render partial: "decidim/meetings/admin/meetings/form", object: f, locals: { title: t("meeting_copies.new.title", scope: "decidim.admin"), select: t("meeting_copies.new.select", scope: "decidim.admin") } %>
|
3
3
|
|
4
4
|
<div class="button--double form-general-submit">
|
5
5
|
<%= f.submit t("meeting_copies.new.copy", scope: "decidim.admin") %>
|
@@ -102,6 +102,6 @@
|
|
102
102
|
</div>
|
103
103
|
</div>
|
104
104
|
|
105
|
-
<%= render "services", form: form, id: tabs_id_for_service(blank_service) %>
|
105
|
+
<%= render "decidim/meetings/admin/meetings/services", form: form, id: tabs_id_for_service(blank_service) %>
|
106
106
|
|
107
107
|
<%= javascript_pack_tag "decidim_meetings_admin" %>
|
data/config/locales/ar.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
ar:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: وصف
|
7
|
-
duration: المدة الزمنية
|
8
|
-
title: عنوان
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: عدد الحضور
|
11
7
|
attending_organizations: قائمة المنظمات التي حضرت
|
@@ -19,7 +15,6 @@ ar:
|
|
19
15
|
decidim_category_id: الفئة
|
20
16
|
decidim_scope_id: نطاق
|
21
17
|
description: وصف
|
22
|
-
end_time: وقت النهاية
|
23
18
|
location: موقعك
|
24
19
|
location_hints: تلميحات الموقع
|
25
20
|
organizer_id: منظم
|
@@ -27,7 +22,6 @@ ar:
|
|
27
22
|
registration_form_enabled: تم تمكين نموذج التسجيل
|
28
23
|
registration_terms: شروط التسجيل
|
29
24
|
registrations_enabled: تم تمكين التسجيلات
|
30
|
-
start_time: وقت البدء
|
31
25
|
title: عنوان
|
32
26
|
transparent: شفاف
|
33
27
|
errors:
|
data/config/locales/bg.yml
CHANGED
data/config/locales/ca.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
ca:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Descripció
|
7
|
-
duration: Durada
|
8
|
-
title: Títol
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Nombre d'assistents
|
11
7
|
attending_organizations: Llista d'organitzacions que han participat
|
@@ -23,8 +19,9 @@ ca:
|
|
23
19
|
decidim_scope_id: Àmbit
|
24
20
|
decidim_user_group_id: Grup d'usuàries
|
25
21
|
description: Descripció
|
26
|
-
end_time:
|
22
|
+
end_time: Dia i hora de finalització
|
27
23
|
id: ID
|
24
|
+
iframe_embed_type: Visualització de la sala de videoconferència
|
28
25
|
location: Ubicació
|
29
26
|
location_hints: Detalls d'ubicació
|
30
27
|
online_meeting_url: URL de trobada en línia
|
@@ -34,13 +31,26 @@ ca:
|
|
34
31
|
registration_email_custom_content: Contingut personalitzat del correu d'inscripció
|
35
32
|
registration_form_enabled: Formulari d'inscripcions habilitat
|
36
33
|
registration_terms: Termes i condicions d'inscripció
|
34
|
+
registration_type: Tipus d'inscripció
|
37
35
|
registration_url: URL d'inscripció
|
38
36
|
registrations_enabled: Inscripcions obertes
|
39
|
-
|
40
|
-
start_time:
|
37
|
+
reserved_slots: Places reservades per aquesta trobada
|
38
|
+
start_time: Dia i hora d'inici
|
41
39
|
title: Títol
|
42
40
|
transparent: Transparent
|
43
41
|
type_of_meeting: Tipus
|
42
|
+
meeting_agenda:
|
43
|
+
title: Títol
|
44
|
+
visible: Visible
|
45
|
+
meeting_agenda_items:
|
46
|
+
description: Descripció
|
47
|
+
duration: Durada
|
48
|
+
title: Títol
|
49
|
+
meeting_registration_invite:
|
50
|
+
email: Correu electrònic
|
51
|
+
name: Nom
|
52
|
+
validate_registration_code:
|
53
|
+
code: Codi
|
44
54
|
errors:
|
45
55
|
models:
|
46
56
|
meeting:
|
@@ -283,9 +293,6 @@ ca:
|
|
283
293
|
edit:
|
284
294
|
close: Tancar
|
285
295
|
title: Tancar trobada
|
286
|
-
meeting_copies:
|
287
|
-
form:
|
288
|
-
select_a_meeting_type: Si us plau, selecciona un tipus de trobada
|
289
296
|
meetings:
|
290
297
|
close:
|
291
298
|
invalid: S'ha produït un error en tancar aquesta trobada
|
data/config/locales/cs.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
cs:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Popis
|
7
|
-
duration: Doba trvání
|
8
|
-
title: Název
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Počet účastníků
|
11
7
|
attending_organizations: Seznam organizací, které se zúčastnily
|
@@ -25,6 +21,7 @@ cs:
|
|
25
21
|
description: Popis
|
26
22
|
end_time: Čas ukončení
|
27
23
|
id: ID
|
24
|
+
iframe_embed_type: Typ vloženého rámu
|
28
25
|
location: Umístění
|
29
26
|
location_hints: Nápověda k poloze
|
30
27
|
online_meeting_url: URL online schůzky
|
@@ -34,13 +31,26 @@ cs:
|
|
34
31
|
registration_email_custom_content: Přizpůsobený obsah registračního e-mailu
|
35
32
|
registration_form_enabled: Registrační formulář je povolen
|
36
33
|
registration_terms: Podmínky registrace
|
34
|
+
registration_type: Typ registrace
|
37
35
|
registration_url: URL registrace
|
38
36
|
registrations_enabled: Registrace povoleny
|
39
|
-
|
37
|
+
reserved_slots: Rezervované sloty pro tuto schůzku
|
40
38
|
start_time: Čas zahájení
|
41
39
|
title: Název
|
42
40
|
transparent: Transparentní
|
43
41
|
type_of_meeting: Typ
|
42
|
+
meeting_agenda:
|
43
|
+
title: Název
|
44
|
+
visible: Viditelné
|
45
|
+
meeting_agenda_items:
|
46
|
+
description: Popis
|
47
|
+
duration: Doba trvání
|
48
|
+
title: Název
|
49
|
+
meeting_registration_invite:
|
50
|
+
email: E-mail
|
51
|
+
name: Jméno
|
52
|
+
validate_registration_code:
|
53
|
+
code: Kód
|
44
54
|
errors:
|
45
55
|
models:
|
46
56
|
meeting:
|
@@ -291,9 +301,6 @@ cs:
|
|
291
301
|
edit:
|
292
302
|
close: Zavřít
|
293
303
|
title: Zavřete schůzku
|
294
|
-
meeting_copies:
|
295
|
-
form:
|
296
|
-
select_a_meeting_type: Vyberte prosím typ schůzky
|
297
304
|
meetings:
|
298
305
|
close:
|
299
306
|
invalid: Při setkání došlo k problému
|
data/config/locales/de.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
de:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Beschreibung
|
7
|
-
duration: Dauer
|
8
|
-
title: Titel
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Anzahl der Teilnehmer
|
11
7
|
attending_organizations: Liste der Organisationen, die teilgenommen haben
|
@@ -23,7 +19,6 @@ de:
|
|
23
19
|
decidim_scope_id: Umfang
|
24
20
|
decidim_user_group_id: Benutzergruppe
|
25
21
|
description: Beschreibung
|
26
|
-
end_time: Endzeit
|
27
22
|
id: ID
|
28
23
|
location: Ort
|
29
24
|
location_hints: Standorthinweise
|
@@ -36,11 +31,21 @@ de:
|
|
36
31
|
registration_terms: Registrierungsbedingungen
|
37
32
|
registration_url: Registrierungs-URL
|
38
33
|
registrations_enabled: Registrierungen aktiviert
|
39
|
-
show_embedded_iframe: Eingebetteten Iframe für diese URL anzeigen
|
40
|
-
start_time: Startzeit
|
41
34
|
title: Titel
|
42
35
|
transparent: Transparent
|
43
36
|
type_of_meeting: Art
|
37
|
+
meeting_agenda:
|
38
|
+
title: Titel
|
39
|
+
visible: Sichtbar
|
40
|
+
meeting_agenda_items:
|
41
|
+
description: Beschreibung
|
42
|
+
duration: Dauer
|
43
|
+
title: Titel
|
44
|
+
meeting_registration_invite:
|
45
|
+
email: E-Mail
|
46
|
+
name: Name
|
47
|
+
validate_registration_code:
|
48
|
+
code: Code
|
44
49
|
errors:
|
45
50
|
models:
|
46
51
|
meeting_agenda:
|
@@ -279,9 +284,6 @@ de:
|
|
279
284
|
edit:
|
280
285
|
close: Schließen
|
281
286
|
title: Sitzung beenden
|
282
|
-
meeting_copies:
|
283
|
-
form:
|
284
|
-
select_a_meeting_type: Bitte eine Meeting-Typ auswählen
|
285
287
|
meetings:
|
286
288
|
close:
|
287
289
|
invalid: Beim Schließen dieses Meetings ist ein Problem aufgetreten
|
data/config/locales/el.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
el:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Περιγραφή
|
7
|
-
duration: Διάρκεια
|
8
|
-
title: Τίτλος
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Αριθμός συμμετεχόντων
|
11
7
|
attending_organizations: Λίστα οργανισμών που συμμετείχαν
|
@@ -19,7 +15,6 @@ el:
|
|
19
15
|
decidim_category_id: Κατηγορία
|
20
16
|
decidim_scope_id: Πεδίο εφαρμογής
|
21
17
|
description: Περιγραφή
|
22
|
-
end_time: Ώρα λήξης
|
23
18
|
location: Τοποθεσία
|
24
19
|
location_hints: Υποδείξεις τοποθεσίας
|
25
20
|
organizer_id: Διοργανωτής
|
@@ -27,7 +22,6 @@ el:
|
|
27
22
|
registration_form_enabled: Η φόρμα εγγραφής ενεργοποιήθηκε
|
28
23
|
registration_terms: Όροι εγγραφής
|
29
24
|
registrations_enabled: Οι εγγραφές ενεργοποιήθηκαν
|
30
|
-
start_time: Ώρα έναρξης
|
31
25
|
title: Τίτλος
|
32
26
|
transparent: Διαφανής
|
33
27
|
errors:
|
data/config/locales/en.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
en:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Description
|
7
|
-
duration: Duration
|
8
|
-
title: Title
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Number of attendees
|
11
7
|
attending_organizations: List of organizations that attended
|
@@ -23,8 +19,9 @@ en:
|
|
23
19
|
decidim_scope_id: Scope
|
24
20
|
decidim_user_group_id: User group
|
25
21
|
description: Description
|
26
|
-
end_time: End
|
22
|
+
end_time: End time
|
27
23
|
id: ID
|
24
|
+
iframe_embed_type: Iframe embed type
|
28
25
|
location: Location
|
29
26
|
location_hints: Location hints
|
30
27
|
online_meeting_url: Online meeting URL
|
@@ -34,13 +31,26 @@ en:
|
|
34
31
|
registration_email_custom_content: Registration email custom content
|
35
32
|
registration_form_enabled: Registration form enabled
|
36
33
|
registration_terms: Registration terms
|
34
|
+
registration_type: Registration type
|
37
35
|
registration_url: Registration URL
|
38
36
|
registrations_enabled: Registrations enabled
|
39
|
-
|
40
|
-
start_time: Start
|
37
|
+
reserved_slots: Reserved slots for this meeting
|
38
|
+
start_time: Start time
|
41
39
|
title: Title
|
42
40
|
transparent: Transparent
|
43
41
|
type_of_meeting: Type
|
42
|
+
meeting_agenda:
|
43
|
+
title: Title
|
44
|
+
visible: Visible
|
45
|
+
meeting_agenda_items:
|
46
|
+
description: Description
|
47
|
+
duration: Duration
|
48
|
+
title: Title
|
49
|
+
meeting_registration_invite:
|
50
|
+
email: Email
|
51
|
+
name: Name
|
52
|
+
validate_registration_code:
|
53
|
+
code: Code
|
44
54
|
errors:
|
45
55
|
models:
|
46
56
|
meeting:
|
@@ -283,9 +293,6 @@ en:
|
|
283
293
|
edit:
|
284
294
|
close: Close
|
285
295
|
title: Close meeting
|
286
|
-
meeting_copies:
|
287
|
-
form:
|
288
|
-
select_a_meeting_type: Please select a meeting type
|
289
296
|
meetings:
|
290
297
|
close:
|
291
298
|
invalid: There was a problem closing this meeting
|
data/config/locales/es-MX.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
es-MX:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Descripción
|
7
|
-
duration: Duración
|
8
|
-
title: Título
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Número de asistentes
|
11
7
|
attending_organizations: Lista de organizaciones que han participado
|
@@ -23,8 +19,9 @@ es-MX:
|
|
23
19
|
decidim_scope_id: Ámbito
|
24
20
|
decidim_user_group_id: Grupo de usuarias
|
25
21
|
description: Descripción
|
26
|
-
end_time:
|
22
|
+
end_time: Día y hora de finalización
|
27
23
|
id: ID
|
24
|
+
iframe_embed_type: Visualización de la sala de videoconferencia
|
28
25
|
location: Ubicación
|
29
26
|
location_hints: Pistas de ubicación
|
30
27
|
online_meeting_url: URL del encuentro online
|
@@ -34,13 +31,26 @@ es-MX:
|
|
34
31
|
registration_email_custom_content: Contenido personalizado del email de inscripción
|
35
32
|
registration_form_enabled: Formulario de inscripción habilitado
|
36
33
|
registration_terms: Términos y condiciones de inscripción
|
34
|
+
registration_type: Tipo de inscripción
|
37
35
|
registration_url: URL de inscripción
|
38
36
|
registrations_enabled: Inscripciones abiertas
|
39
|
-
|
40
|
-
start_time:
|
37
|
+
reserved_slots: Plazas reservadas para este encuentro
|
38
|
+
start_time: Día y hora de inicio
|
41
39
|
title: Título
|
42
40
|
transparent: Transparente
|
43
41
|
type_of_meeting: Tipo
|
42
|
+
meeting_agenda:
|
43
|
+
title: Título
|
44
|
+
visible: Visible
|
45
|
+
meeting_agenda_items:
|
46
|
+
description: Descripción
|
47
|
+
duration: Duración
|
48
|
+
title: Título
|
49
|
+
meeting_registration_invite:
|
50
|
+
email: Correo electrónico
|
51
|
+
name: Nombre
|
52
|
+
validate_registration_code:
|
53
|
+
code: Código
|
44
54
|
errors:
|
45
55
|
models:
|
46
56
|
meeting:
|
@@ -283,9 +293,6 @@ es-MX:
|
|
283
293
|
edit:
|
284
294
|
close: Cerrar
|
285
295
|
title: Cerrar encuentro
|
286
|
-
meeting_copies:
|
287
|
-
form:
|
288
|
-
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
289
296
|
meetings:
|
290
297
|
close:
|
291
298
|
invalid: Ha habido un problema al cerrar este encuentro
|
data/config/locales/es-PY.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
es-PY:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Descripción
|
7
|
-
duration: Duración
|
8
|
-
title: Título
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Número de asistentes
|
11
7
|
attending_organizations: Lista de organizaciones que han participado
|
@@ -23,8 +19,9 @@ es-PY:
|
|
23
19
|
decidim_scope_id: Ámbito
|
24
20
|
decidim_user_group_id: Grupo de usuarias
|
25
21
|
description: Descripción
|
26
|
-
end_time:
|
22
|
+
end_time: Día y hora de finalización
|
27
23
|
id: ID
|
24
|
+
iframe_embed_type: Visualización de la sala de videoconferencia
|
28
25
|
location: Ubicación
|
29
26
|
location_hints: Pistas de ubicación
|
30
27
|
online_meeting_url: URL del encuentro online
|
@@ -34,13 +31,26 @@ es-PY:
|
|
34
31
|
registration_email_custom_content: Contenido personalizado del email de inscripción
|
35
32
|
registration_form_enabled: Formulario de inscripción habilitado
|
36
33
|
registration_terms: Términos y condiciones de inscripción
|
34
|
+
registration_type: Tipo de inscripción
|
37
35
|
registration_url: URL de inscripción
|
38
36
|
registrations_enabled: Inscripciones abiertas
|
39
|
-
|
40
|
-
start_time:
|
37
|
+
reserved_slots: Plazas reservadas para este encuentro
|
38
|
+
start_time: Día y hora de inicio
|
41
39
|
title: Título
|
42
40
|
transparent: Transparente
|
43
41
|
type_of_meeting: Tipo
|
42
|
+
meeting_agenda:
|
43
|
+
title: Título
|
44
|
+
visible: Visible
|
45
|
+
meeting_agenda_items:
|
46
|
+
description: Descripción
|
47
|
+
duration: Duración
|
48
|
+
title: Título
|
49
|
+
meeting_registration_invite:
|
50
|
+
email: Correo electrónico
|
51
|
+
name: Nombre
|
52
|
+
validate_registration_code:
|
53
|
+
code: Código
|
44
54
|
errors:
|
45
55
|
models:
|
46
56
|
meeting:
|
@@ -283,9 +293,6 @@ es-PY:
|
|
283
293
|
edit:
|
284
294
|
close: Cerrar
|
285
295
|
title: Cerrar encuentro
|
286
|
-
meeting_copies:
|
287
|
-
form:
|
288
|
-
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
289
296
|
meetings:
|
290
297
|
close:
|
291
298
|
invalid: Ha habido un problema al cerrar este encuentro
|
data/config/locales/es.yml
CHANGED
@@ -2,10 +2,6 @@
|
|
2
2
|
es:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
agenda:
|
6
|
-
description: Descripción
|
7
|
-
duration: Duración
|
8
|
-
title: Título
|
9
5
|
close_meeting:
|
10
6
|
attendees_count: Número de asistentes
|
11
7
|
attending_organizations: Lista de organizaciones que han participado
|
@@ -23,8 +19,9 @@ es:
|
|
23
19
|
decidim_scope_id: Ámbito
|
24
20
|
decidim_user_group_id: Grupo
|
25
21
|
description: Descripción
|
26
|
-
end_time:
|
22
|
+
end_time: Día y hora de finalización
|
27
23
|
id: ID
|
24
|
+
iframe_embed_type: Visualización de la sala de videoconferencia
|
28
25
|
location: Ubicación
|
29
26
|
location_hints: Detalles de ubicación
|
30
27
|
online_meeting_url: URL del encuentro online
|
@@ -34,13 +31,26 @@ es:
|
|
34
31
|
registration_email_custom_content: Contenido personalizado del email de inscripción
|
35
32
|
registration_form_enabled: Formulario de inscripción habilitado
|
36
33
|
registration_terms: Términos y condiciones de inscripción
|
34
|
+
registration_type: Tipo de inscripción
|
37
35
|
registration_url: URL de inscripción
|
38
36
|
registrations_enabled: Inscripciones abiertas
|
39
|
-
|
40
|
-
start_time:
|
37
|
+
reserved_slots: Plazas reservadas para este encuentro
|
38
|
+
start_time: Día y hora de inicio
|
41
39
|
title: Título
|
42
40
|
transparent: Transparente
|
43
41
|
type_of_meeting: Tipo
|
42
|
+
meeting_agenda:
|
43
|
+
title: Título
|
44
|
+
visible: Visible
|
45
|
+
meeting_agenda_items:
|
46
|
+
description: Descripción
|
47
|
+
duration: Duración
|
48
|
+
title: Título
|
49
|
+
meeting_registration_invite:
|
50
|
+
email: Correo electrónico
|
51
|
+
name: Nombre
|
52
|
+
validate_registration_code:
|
53
|
+
code: Código
|
44
54
|
errors:
|
45
55
|
models:
|
46
56
|
meeting:
|
@@ -283,9 +293,6 @@ es:
|
|
283
293
|
edit:
|
284
294
|
close: Cerrar
|
285
295
|
title: Cerrar encuentro
|
286
|
-
meeting_copies:
|
287
|
-
form:
|
288
|
-
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
289
296
|
meetings:
|
290
297
|
close:
|
291
298
|
invalid: Se ha producido un error al cerrar este encuentro
|