decidim-meetings 0.26.3 → 0.26.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/meetings/meeting_list_item_cell.rb +1 -1
  3. data/app/cells/decidim/meetings/meeting_m_cell.rb +1 -1
  4. data/app/cells/decidim/meetings/meeting_s_cell.rb +0 -6
  5. data/app/commands/decidim/meetings/admin/copy_meeting.rb +23 -4
  6. data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +2 -2
  7. data/app/forms/decidim/meetings/admin/meeting_form.rb +5 -9
  8. data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +1 -1
  9. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +1 -1
  10. data/app/views/decidim/meetings/admin/meetings/index.html.erb +1 -1
  11. data/config/locales/ar.yml +0 -6
  12. data/config/locales/bg.yml +0 -6
  13. data/config/locales/ca.yml +17 -10
  14. data/config/locales/cs.yml +15 -8
  15. data/config/locales/de.yml +12 -10
  16. data/config/locales/el.yml +0 -6
  17. data/config/locales/en.yml +17 -10
  18. data/config/locales/es-MX.yml +17 -10
  19. data/config/locales/es-PY.yml +17 -10
  20. data/config/locales/es.yml +17 -10
  21. data/config/locales/eu.yml +195 -156
  22. data/config/locales/fi-plain.yml +17 -10
  23. data/config/locales/fi.yml +17 -10
  24. data/config/locales/fr-CA.yml +16 -9
  25. data/config/locales/fr.yml +16 -9
  26. data/config/locales/ga-IE.yml +0 -4
  27. data/config/locales/gl.yml +0 -9
  28. data/config/locales/gn-PY.yml +1 -0
  29. data/config/locales/hu.yml +0 -10
  30. data/config/locales/id-ID.yml +0 -6
  31. data/config/locales/is-IS.yml +0 -2
  32. data/config/locales/it.yml +0 -7
  33. data/config/locales/ja.yml +17 -10
  34. data/config/locales/ka-GE.yml +1 -0
  35. data/config/locales/lb.yml +0 -6
  36. data/config/locales/lo-LA.yml +1 -0
  37. data/config/locales/lt.yml +0 -10
  38. data/config/locales/lv.yml +0 -6
  39. data/config/locales/nl.yml +0 -10
  40. data/config/locales/no.yml +0 -10
  41. data/config/locales/pl.yml +1 -6
  42. data/config/locales/pt-BR.yml +0 -6
  43. data/config/locales/pt.yml +0 -7
  44. data/config/locales/ro-RO.yml +20 -10
  45. data/config/locales/ru.yml +0 -6
  46. data/config/locales/sk.yml +0 -6
  47. data/config/locales/sl.yml +0 -3
  48. data/config/locales/sv.yml +11 -9
  49. data/config/locales/tr-TR.yml +0 -6
  50. data/config/locales/uk.yml +0 -6
  51. data/config/locales/zh-CN.yml +0 -6
  52. data/lib/decidim/meetings/engine.rb +1 -1
  53. data/lib/decidim/meetings/version.rb +1 -1
  54. metadata +17 -16
  55. data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +0 -51
  56. 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: b48196f783869c2445a9a77fb0165993387afdedc39f68810e2e283b0ac7b6ec
4
- data.tar.gz: 6a1a0aa182b12070721adf374b69cd60bfd5bb26ee6b414f17091f99f079a145
3
+ metadata.gz: 34983e307fe7c41349984c0c3422e84247c750b9df85b95ebeefacc0ac05c338
4
+ data.tar.gz: 4ddf72969076dce44f4dc31ecf47dff6832581a76ec0cf3df095c009ecdb22aa
5
5
  SHA512:
6
- metadata.gz: 7a29b8d8ab0101382536ac4c65b1d9e7c40723c5ba29c18a5817bfe60e394b5fc192ed1ce7e119414c67f04e77f4b5de62424e078282af0aa1c5aba04c5a5970
7
- data.tar.gz: 66e260950f4d2c55964d424c93a97646d534fb12d135afceacefb5523a32718b7f471a145b2f8a2f56f0919ba8b45e5dd23e4333ca632e7fa0fa5dda2b0528d3
6
+ metadata.gz: 2ab072633a6503601c8095f9a1444c81568a0c6eedef736f4cb3681e8668690f21bddafcd2cbba12ef7774c5823ba3efc08c1da3a50a165ed4601a6578332711
7
+ data.tar.gz: 5a80399af3317c7086f9b04b5c1fb43baaaf439778f79174ace0e4504d3883beb0c1c6431fbd9d1b055360c6e27700e84dea29299e5ad6750e9290e66f441365
@@ -28,7 +28,7 @@ module Decidim
28
28
  end
29
29
 
30
30
  def title
31
- present(model).title
31
+ present(model).title(html_escape: true)
32
32
  end
33
33
 
34
34
  def resource_date_time
@@ -24,7 +24,7 @@ module Decidim
24
24
  end
25
25
 
26
26
  def title
27
- present(model).title
27
+ present(model).title(html_escape: true)
28
28
  end
29
29
 
30
30
  def description
@@ -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: meeting.scope,
48
- category: meeting.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(MeetingCopyForm).from_model(meeting)
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(MeetingCopyForm).from_params(params, current_component: current_component)
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
@@ -95,15 +95,6 @@ module Decidim
95
95
  type_of_meeting.presence
96
96
  end
97
97
 
98
- def type_of_meeting_select
99
- Decidim::Meetings::Meeting::TYPE_OF_MEETING.map do |type|
100
- [
101
- I18n.t("type_of_meeting.#{type}", scope: "decidim.meetings"),
102
- type
103
- ]
104
- end
105
- end
106
-
107
98
  def iframe_access_level_select
108
99
  Decidim::Meetings::Meeting.iframe_access_levels.map do |level, _value|
109
100
  [
@@ -122,6 +113,11 @@ module Decidim
122
113
  end
123
114
  end
124
115
 
116
+ # Support for copy meeting
117
+ def questionnaire
118
+ Decidim::Forms::Questionnaire.new
119
+ end
120
+
125
121
  def on_this_platform?
126
122
  registration_type == "on_this_platform"
127
123
  end
@@ -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") %>
@@ -114,6 +114,6 @@
114
114
  </div>
115
115
  </div>
116
116
 
117
- <%= render "services", form: form, id: tabs_id_for_service(blank_service) %>
117
+ <%= render "decidim/meetings/admin/meetings/services", form: form, id: tabs_id_for_service(blank_service) %>
118
118
 
119
119
  <%= javascript_pack_tag "decidim_meetings_admin" %>
@@ -48,7 +48,7 @@
48
48
  <%= meeting.id %><br>
49
49
  </td>
50
50
  <td>
51
- <%= present(meeting).title %><br>
51
+ <%= present(meeting).title(html_escape: true) %><br>
52
52
  </td>
53
53
  <td>
54
54
  <% if meeting.start_time %>
@@ -1,10 +1,6 @@
1
1
  ar:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: وصف
6
- duration: المدة الزمنية
7
- title: عنوان
8
4
  close_meeting:
9
5
  attendees_count: عدد الحضور
10
6
  attending_organizations: قائمة المنظمات التي حضرت
@@ -18,7 +14,6 @@ ar:
18
14
  decidim_category_id: الفئة
19
15
  decidim_scope_id: نطاق
20
16
  description: وصف
21
- end_time: وقت النهاية
22
17
  location: موقعك
23
18
  location_hints: تلميحات الموقع
24
19
  organizer_id: منظم
@@ -26,7 +21,6 @@ ar:
26
21
  registration_form_enabled: تم تمكين نموذج التسجيل
27
22
  registration_terms: شروط التسجيل
28
23
  registrations_enabled: تم تمكين التسجيلات
29
- start_time: وقت البدء
30
24
  title: عنوان
31
25
  transparent: شفاف
32
26
  errors:
@@ -1,10 +1,4 @@
1
1
  bg:
2
- activemodel:
3
- attributes:
4
- agenda:
5
- description: Описание
6
- duration: Продължителност
7
- title: Заглавие
8
2
  decidim:
9
3
  meetings:
10
4
  actions:
@@ -1,10 +1,6 @@
1
1
  ca:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Descripció
6
- duration: Durada
7
- title: Títol
8
4
  close_meeting:
9
5
  attendees_count: Nombre d'assistents
10
6
  attending_organizations: Llista d'organitzacions que han participat
@@ -22,8 +18,9 @@ ca:
22
18
  decidim_scope_id: Àmbit
23
19
  decidim_user_group_id: Grup d'usuàries
24
20
  description: Descripció
25
- end_time: Hora de finalització
21
+ end_time: Dia i hora de finalització
26
22
  id: ID
23
+ iframe_embed_type: Visualització de la sala de videoconferència
27
24
  location: Ubicació
28
25
  location_hints: Detalls d'ubicació
29
26
  online_meeting_url: URL de trobada en línia
@@ -33,13 +30,26 @@ ca:
33
30
  registration_email_custom_content: Contingut personalitzat del correu d'inscripció
34
31
  registration_form_enabled: Formulari d'inscripcions habilitat
35
32
  registration_terms: Termes i condicions d'inscripció
33
+ registration_type: Tipus d'inscripció
36
34
  registration_url: URL d'inscripció
37
35
  registrations_enabled: Inscripcions obertes
38
- show_embedded_iframe: Mostrar iframe incrustat per aquesta URL
39
- start_time: Hora d'inici
36
+ reserved_slots: Places reservades per aquesta trobada
37
+ start_time: Dia i hora d'inici
40
38
  title: Títol
41
39
  transparent: Transparent
42
40
  type_of_meeting: Tipus
41
+ meeting_agenda:
42
+ title: Títol
43
+ visible: Visible
44
+ meeting_agenda_items:
45
+ description: Descripció
46
+ duration: Durada
47
+ title: Títol
48
+ meeting_registration_invite:
49
+ email: Correu electrònic
50
+ name: Nom
51
+ validate_registration_code:
52
+ code: Codi
43
53
  errors:
44
54
  models:
45
55
  meeting:
@@ -282,9 +292,6 @@ ca:
282
292
  edit:
283
293
  close: Tancar
284
294
  title: Tancar trobada
285
- meeting_copies:
286
- form:
287
- select_a_meeting_type: Si us plau, selecciona un tipus de trobada
288
295
  meetings:
289
296
  close:
290
297
  invalid: S'ha produït un error en tancar aquesta trobada
@@ -1,10 +1,6 @@
1
1
  cs:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Popis
6
- duration: Doba trvání
7
- title: Název
8
4
  close_meeting:
9
5
  attendees_count: Počet účastníků
10
6
  attending_organizations: Seznam organizací, které se zúčastnily
@@ -24,6 +20,7 @@ cs:
24
20
  description: Popis
25
21
  end_time: Čas ukončení
26
22
  id: ID
23
+ iframe_embed_type: Typ vloženého rámu
27
24
  location: Umístění
28
25
  location_hints: Nápověda k poloze
29
26
  online_meeting_url: URL online schůzky
@@ -33,13 +30,26 @@ cs:
33
30
  registration_email_custom_content: Přizpůsobený obsah registračního e-mailu
34
31
  registration_form_enabled: Registrační formulář je povolen
35
32
  registration_terms: Podmínky registrace
33
+ registration_type: Typ registrace
36
34
  registration_url: URL registrace
37
35
  registrations_enabled: Registrace povoleny
38
- show_embedded_iframe: Zobrazit vložený iframe pro tuto URL
36
+ reserved_slots: Rezervované sloty pro tuto schůzku
39
37
  start_time: Čas zahájení
40
38
  title: Název
41
39
  transparent: Transparentní
42
40
  type_of_meeting: Typ
41
+ meeting_agenda:
42
+ title: Název
43
+ visible: Viditelné
44
+ meeting_agenda_items:
45
+ description: Popis
46
+ duration: Doba trvání
47
+ title: Název
48
+ meeting_registration_invite:
49
+ email: E-mail
50
+ name: Jméno
51
+ validate_registration_code:
52
+ code: Kód
43
53
  errors:
44
54
  models:
45
55
  meeting:
@@ -290,9 +300,6 @@ cs:
290
300
  edit:
291
301
  close: Zavřít
292
302
  title: Zavřete schůzku
293
- meeting_copies:
294
- form:
295
- select_a_meeting_type: Vyberte prosím typ schůzky
296
303
  meetings:
297
304
  close:
298
305
  invalid: Při setkání došlo k problému
@@ -1,10 +1,6 @@
1
1
  de:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Beschreibung
6
- duration: Dauer
7
- title: Titel
8
4
  close_meeting:
9
5
  attendees_count: Anzahl der Teilnehmer
10
6
  attending_organizations: Liste der Organisationen, die teilgenommen haben
@@ -22,7 +18,6 @@ de:
22
18
  decidim_scope_id: Umfang
23
19
  decidim_user_group_id: Benutzergruppe
24
20
  description: Beschreibung
25
- end_time: Endzeit
26
21
  id: ID
27
22
  location: Ort
28
23
  location_hints: Standorthinweise
@@ -35,11 +30,21 @@ de:
35
30
  registration_terms: Registrierungsbedingungen
36
31
  registration_url: Registrierungs-URL
37
32
  registrations_enabled: Registrierungen aktiviert
38
- show_embedded_iframe: Eingebetteten Iframe für diese URL anzeigen
39
- start_time: Startzeit
40
33
  title: Titel
41
34
  transparent: Transparent
42
35
  type_of_meeting: Art
36
+ meeting_agenda:
37
+ title: Titel
38
+ visible: Sichtbar
39
+ meeting_agenda_items:
40
+ description: Beschreibung
41
+ duration: Dauer
42
+ title: Titel
43
+ meeting_registration_invite:
44
+ email: E-Mail
45
+ name: Name
46
+ validate_registration_code:
47
+ code: Code
43
48
  errors:
44
49
  models:
45
50
  meeting_agenda:
@@ -278,9 +283,6 @@ de:
278
283
  edit:
279
284
  close: Schließen
280
285
  title: Sitzung beenden
281
- meeting_copies:
282
- form:
283
- select_a_meeting_type: Bitte eine Meeting-Typ auswählen
284
286
  meetings:
285
287
  close:
286
288
  invalid: Beim Schließen dieses Meetings ist ein Problem aufgetreten
@@ -1,10 +1,6 @@
1
1
  el:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Περιγραφή
6
- duration: Διάρκεια
7
- title: Τίτλος
8
4
  close_meeting:
9
5
  attendees_count: Αριθμός συμμετεχόντων
10
6
  attending_organizations: Λίστα οργανισμών που συμμετείχαν
@@ -18,7 +14,6 @@ el:
18
14
  decidim_category_id: Κατηγορία
19
15
  decidim_scope_id: Πεδίο εφαρμογής
20
16
  description: Περιγραφή
21
- end_time: Ώρα λήξης
22
17
  location: Τοποθεσία
23
18
  location_hints: Υποδείξεις τοποθεσίας
24
19
  organizer_id: Διοργανωτής
@@ -26,7 +21,6 @@ el:
26
21
  registration_form_enabled: Η φόρμα εγγραφής ενεργοποιήθηκε
27
22
  registration_terms: Όροι εγγραφής
28
23
  registrations_enabled: Οι εγγραφές ενεργοποιήθηκαν
29
- start_time: Ώρα έναρξης
30
24
  title: Τίτλος
31
25
  transparent: Διαφανής
32
26
  errors:
@@ -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 Time
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
- show_embedded_iframe: Show embedded iframe for this URL
40
- start_time: Start Time
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
@@ -1,10 +1,6 @@
1
1
  es-MX:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Descripción
6
- duration: Duración
7
- title: Título
8
4
  close_meeting:
9
5
  attendees_count: Número de asistentes
10
6
  attending_organizations: Lista de organizaciones que han participado
@@ -22,8 +18,9 @@ es-MX:
22
18
  decidim_scope_id: Ámbito
23
19
  decidim_user_group_id: Grupo de usuarias
24
20
  description: Descripción
25
- end_time: Hora de finalización
21
+ end_time: Día y hora de finalización
26
22
  id: ID
23
+ iframe_embed_type: Visualización de la sala de videoconferencia
27
24
  location: Ubicación
28
25
  location_hints: Pistas de ubicación
29
26
  online_meeting_url: URL del encuentro online
@@ -33,13 +30,26 @@ es-MX:
33
30
  registration_email_custom_content: Contenido personalizado del email de inscripción
34
31
  registration_form_enabled: Formulario de inscripción habilitado
35
32
  registration_terms: Términos y condiciones de inscripción
33
+ registration_type: Tipo de inscripción
36
34
  registration_url: URL de inscripción
37
35
  registrations_enabled: Inscripciones abiertas
38
- show_embedded_iframe: Mostrar iframe incrustado para esta URL
39
- start_time: Hora de inicio
36
+ reserved_slots: Plazas reservadas para este encuentro
37
+ start_time: Día y hora de inicio
40
38
  title: Título
41
39
  transparent: Transparente
42
40
  type_of_meeting: Tipo
41
+ meeting_agenda:
42
+ title: Título
43
+ visible: Visible
44
+ meeting_agenda_items:
45
+ description: Descripción
46
+ duration: Duración
47
+ title: Título
48
+ meeting_registration_invite:
49
+ email: Correo electrónico
50
+ name: Nombre
51
+ validate_registration_code:
52
+ code: Código
43
53
  errors:
44
54
  models:
45
55
  meeting:
@@ -282,9 +292,6 @@ es-MX:
282
292
  edit:
283
293
  close: Cerrar
284
294
  title: Cerrar encuentro
285
- meeting_copies:
286
- form:
287
- select_a_meeting_type: Por favor, selecciona un tipo de encuentro
288
295
  meetings:
289
296
  close:
290
297
  invalid: Ha habido un problema al cerrar este encuentro
@@ -1,10 +1,6 @@
1
1
  es-PY:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Descripción
6
- duration: Duración
7
- title: Título
8
4
  close_meeting:
9
5
  attendees_count: Número de asistentes
10
6
  attending_organizations: Lista de organizaciones que han participado
@@ -22,8 +18,9 @@ es-PY:
22
18
  decidim_scope_id: Ámbito
23
19
  decidim_user_group_id: Grupo de usuarias
24
20
  description: Descripción
25
- end_time: Hora de finalización
21
+ end_time: Día y hora de finalización
26
22
  id: ID
23
+ iframe_embed_type: Visualización de la sala de videoconferencia
27
24
  location: Ubicación
28
25
  location_hints: Pistas de ubicación
29
26
  online_meeting_url: URL del encuentro online
@@ -33,13 +30,26 @@ es-PY:
33
30
  registration_email_custom_content: Contenido personalizado del email de inscripción
34
31
  registration_form_enabled: Formulario de inscripción habilitado
35
32
  registration_terms: Términos y condiciones de inscripción
33
+ registration_type: Tipo de inscripción
36
34
  registration_url: URL de inscripción
37
35
  registrations_enabled: Inscripciones abiertas
38
- show_embedded_iframe: Mostrar iframe incrustado para esta URL
39
- start_time: Hora de inicio
36
+ reserved_slots: Plazas reservadas para este encuentro
37
+ start_time: Día y hora de inicio
40
38
  title: Título
41
39
  transparent: Transparente
42
40
  type_of_meeting: Tipo
41
+ meeting_agenda:
42
+ title: Título
43
+ visible: Visible
44
+ meeting_agenda_items:
45
+ description: Descripción
46
+ duration: Duración
47
+ title: Título
48
+ meeting_registration_invite:
49
+ email: Correo electrónico
50
+ name: Nombre
51
+ validate_registration_code:
52
+ code: Código
43
53
  errors:
44
54
  models:
45
55
  meeting:
@@ -282,9 +292,6 @@ es-PY:
282
292
  edit:
283
293
  close: Cerrar
284
294
  title: Cerrar encuentro
285
- meeting_copies:
286
- form:
287
- select_a_meeting_type: Por favor, selecciona un tipo de encuentro
288
295
  meetings:
289
296
  close:
290
297
  invalid: Ha habido un problema al cerrar este encuentro
@@ -1,10 +1,6 @@
1
1
  es:
2
2
  activemodel:
3
3
  attributes:
4
- agenda:
5
- description: Descripción
6
- duration: Duración
7
- title: Título
8
4
  close_meeting:
9
5
  attendees_count: Número de asistentes
10
6
  attending_organizations: Lista de organizaciones que han participado
@@ -22,8 +18,9 @@ es:
22
18
  decidim_scope_id: Ámbito
23
19
  decidim_user_group_id: Grupo
24
20
  description: Descripción
25
- end_time: Hora de finalización
21
+ end_time: Día y hora de finalización
26
22
  id: ID
23
+ iframe_embed_type: Visualización de la sala de videoconferencia
27
24
  location: Ubicación
28
25
  location_hints: Detalles de ubicación
29
26
  online_meeting_url: URL del encuentro online
@@ -33,13 +30,26 @@ es:
33
30
  registration_email_custom_content: Contenido personalizado del email de inscripción
34
31
  registration_form_enabled: Formulario de inscripción habilitado
35
32
  registration_terms: Términos y condiciones de inscripción
33
+ registration_type: Tipo de inscripción
36
34
  registration_url: URL de inscripción
37
35
  registrations_enabled: Inscripciones abiertas
38
- show_embedded_iframe: Mostrar iframe incrustado para esta URL
39
- start_time: Hora de inicio
36
+ reserved_slots: Plazas reservadas para este encuentro
37
+ start_time: Día y hora de inicio
40
38
  title: Título
41
39
  transparent: Transparente
42
40
  type_of_meeting: Tipo
41
+ meeting_agenda:
42
+ title: Título
43
+ visible: Visible
44
+ meeting_agenda_items:
45
+ description: Descripción
46
+ duration: Duración
47
+ title: Título
48
+ meeting_registration_invite:
49
+ email: Correo electrónico
50
+ name: Nombre
51
+ validate_registration_code:
52
+ code: Código
43
53
  errors:
44
54
  models:
45
55
  meeting:
@@ -282,9 +292,6 @@ es:
282
292
  edit:
283
293
  close: Cerrar
284
294
  title: Cerrar encuentro
285
- meeting_copies:
286
- form:
287
- select_a_meeting_type: Por favor, selecciona un tipo de encuentro
288
295
  meetings:
289
296
  close:
290
297
  invalid: Se ha producido un error al cerrar este encuentro