decidim-meetings 0.26.0.rc1 → 0.26.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings_cell.rb +7 -1
  3. data/app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb +2 -0
  4. data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +5 -4
  5. data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +13 -1
  6. data/app/cells/decidim/meetings/meeting_list_item_cell.rb +1 -1
  7. data/app/cells/decidim/meetings/meeting_m_cell.rb +1 -1
  8. data/app/models/decidim/meetings/meeting.rb +1 -1
  9. data/app/services/decidim/meetings/meeting_iframe_embedder.rb +1 -1
  10. data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
  11. data/app/views/decidim/meetings/meetings/index.html.erb +2 -2
  12. data/app/views/decidim/meetings/meetings/show.html.erb +1 -1
  13. data/config/locales/ar.yml +13 -0
  14. data/config/locales/ca.yml +44 -4
  15. data/config/locales/de.yml +55 -0
  16. data/config/locales/es-MX.yml +42 -1
  17. data/config/locales/es-PY.yml +42 -1
  18. data/config/locales/es.yml +2 -2
  19. data/config/locales/eu.yml +1 -1
  20. data/config/locales/fi-plain.yml +1 -0
  21. data/config/locales/fr-CA.yml +18 -0
  22. data/config/locales/fr.yml +42 -25
  23. data/config/locales/gl.yml +5 -0
  24. data/config/locales/hu.yml +30 -0
  25. data/config/locales/it.yml +1 -1
  26. data/config/locales/ja.yml +4 -3
  27. data/config/locales/lb.yml +0 -6
  28. data/config/locales/nl.yml +2 -2
  29. data/config/locales/no.yml +152 -0
  30. data/config/locales/pl.yml +9 -1
  31. data/config/locales/pt-BR.yml +10 -0
  32. data/config/locales/ro-RO.yml +4 -2
  33. data/config/locales/sv.yml +20 -0
  34. data/config/locales/tr-TR.yml +11 -1
  35. data/config/locales/zh-CN.yml +6 -0
  36. data/lib/decidim/api/linked_resources_interface.rb +1 -1
  37. data/lib/decidim/api/meeting_type.rb +1 -1
  38. data/lib/decidim/meetings/component.rb +0 -1
  39. data/lib/decidim/meetings/meeting_serializer.rb +2 -1
  40. data/lib/decidim/meetings/test/factories.rb +6 -0
  41. data/lib/decidim/meetings/version.rb +1 -1
  42. metadata +16 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 256dad0f957894de0c248a6cce248f88bc042dd492c66fd11e184d7a87967c39
4
- data.tar.gz: c6a0dfbfe8f98bebebf610efb7343760c54dba467c110cc9f5f13f00b3808f15
3
+ metadata.gz: 9e68d252396f00c0349451ad1fc9d8b060fb66be5f1c6940a778e3dfa5bbf9d1
4
+ data.tar.gz: 9b8cf933f00544fea3fb7cbb8961afcf5ec9fea099bf3efcb329d6f88386c388
5
5
  SHA512:
6
- metadata.gz: 5dd07cca73c821eaf9cc3563a214a1739cac3fa09e1cd6a4f306dc0724a035d04019628b913ba134c4568cf453bc5d177a6c6df3753a835ba590756d7a01b68e
7
- data.tar.gz: f44f047fcd96d9e89dd57a3758c6199285675eb91b813dc9c5fa60d50bdd69cff37f067697469513e129f4a3b8473d0d59d14d46efc436fc3817bda17f22aad5
6
+ metadata.gz: fd546f8b6ce3f8a0d431974d84638102b2196ff7b9f9e91045fedfaad285546eb20f6e8e458c8988bd837d7fb9605ea99dbb83c45b6064b94b8c8ae653de9728
7
+ data.tar.gz: 206ac13a27ed35a22e9ef8e94bbe1b659a71f3dc0555b213d834c05098f63b50d4368dc822ed8af24e8814a80de92a81db5e3c4f8388e17b336df111f37ff714
@@ -5,7 +5,13 @@ module Decidim
5
5
  module ContentBlocks
6
6
  class HighlightedMeetingsCell < Decidim::ContentBlocks::HighlightedElementsCell
7
7
  def base_relation
8
- Decidim::Meetings::Meeting.except_withdrawn.where(component: published_components)
8
+ Decidim::Meetings::Meeting
9
+ .except_withdrawn
10
+ .published
11
+ .not_hidden
12
+ .upcoming
13
+ .visible_meeting_for(current_user)
14
+ .where(component: published_components)
9
15
  end
10
16
 
11
17
  def elements
@@ -17,8 +17,10 @@ module Decidim
17
17
  .includes(component: :participatory_space)
18
18
  .where(component: meeting_components)
19
19
  .visible_meeting_for(current_user)
20
+ .published
20
21
  .where("end_time >= ?", Time.current)
21
22
  .except_withdrawn
23
+ .not_hidden
22
24
  .order(start_time: :asc)
23
25
  .limit(limit)
24
26
  end
@@ -1,7 +1,8 @@
1
1
  <% if upcoming_meetings.any? %>
2
2
  <div class="section row collapse upcoming_meetings">
3
3
  <h3 class="section-heading">
4
- <%= translated_attribute(model.name) %> - <%= t("decidim.participatory_spaces.highlighted_meetings.upcoming_meetings") %> <a href="<%= main_component_path(model) %>" class="text-small"><%= t("decidim.participatory_spaces.highlighted_meetings.see_all", count: meetings_count) %></a>
4
+ <%= translated_attribute(model.name) %> - <%= t("decidim.participatory_spaces.highlighted_meetings.upcoming_meetings") %>
5
+ <a href="<%= main_component_path(model) %>" class="text-small"><%= t("decidim.participatory_spaces.highlighted_meetings.see_all", count: upcoming_meetings_count) %></a>
5
6
  </h3>
6
7
  <div class="card card--list">
7
8
  <% upcoming_meetings.includes(:component).each do |meeting| %>
@@ -9,7 +10,7 @@
9
10
  <% end %>
10
11
  </div>
11
12
  <%= link_to(
12
- t("decidim.participatory_spaces.highlighted_meetings.see_all", count: meetings_count),
13
+ t("decidim.participatory_spaces.highlighted_meetings.see_all", count: upcoming_meetings_count),
13
14
  main_component_path(model),
14
15
  class: "button button--sc hollow button--right"
15
16
  ) %>
@@ -17,7 +18,7 @@
17
18
  <% elsif past_meetings.any? %>
18
19
  <div class="section row collapse past_meetings">
19
20
  <h3 class="section-heading">
20
- <%= translated_attribute(model.name) %> - <%= t("decidim.participatory_spaces.highlighted_meetings.past_meetings") %> <a href="<%= main_component_path(model) %>" class="text-small"><%= t("decidim.participatory_spaces.highlighted_meetings.see_all", count: meetings_count) %></a>
21
+ <%= translated_attribute(model.name) %> - <%= t("decidim.participatory_spaces.highlighted_meetings.past_meetings") %> <a href="<%= main_component_path(model) %>" class="text-small"><%= t("decidim.participatory_spaces.highlighted_meetings.see_all", count: past_meetings_count) %></a>
21
22
  </h3>
22
23
  <div class="card card--list">
23
24
  <% past_meetings.each do |meeting| %>
@@ -25,7 +26,7 @@
25
26
  <% end %>
26
27
  </div>
27
28
  <%= link_to(
28
- t("decidim.participatory_spaces.highlighted_meetings.see_all", count: meetings_count),
29
+ t("decidim.participatory_spaces.highlighted_meetings.see_all", count: past_meetings_count),
29
30
  main_component_path(model),
30
31
  class: "button button--sc hollow button--right"
31
32
  ) %>
@@ -18,7 +18,11 @@ module Decidim
18
18
  private
19
19
 
20
20
  def meetings
21
- @meetings ||= Decidim::Meetings::Meeting.where(component: model).except_withdrawn.visible_meeting_for(current_user)
21
+ @meetings ||= Decidim::Meetings::Meeting.where(component: model)
22
+ .except_withdrawn
23
+ .published
24
+ .not_hidden
25
+ .visible_meeting_for(current_user)
22
26
  end
23
27
 
24
28
  def past_meetings
@@ -32,6 +36,14 @@ module Decidim
32
36
  def meetings_count
33
37
  @meetings_count ||= meetings.count
34
38
  end
39
+
40
+ def past_meetings_count
41
+ @past_meetings_count ||= meetings.past.count
42
+ end
43
+
44
+ def upcoming_meetings_count
45
+ @upcoming_meetings_count ||= meetings.upcoming.count
46
+ end
35
47
  end
36
48
  end
37
49
  end
@@ -24,7 +24,7 @@ module Decidim
24
24
  end
25
25
 
26
26
  def resource_path
27
- resource_locator(model).path(filter_link_params)
27
+ resource_locator(model).path
28
28
  end
29
29
 
30
30
  def title
@@ -28,7 +28,7 @@ module Decidim
28
28
  end
29
29
 
30
30
  def description
31
- present(model).description(strip_tags: true)
31
+ present(model).description(strip_tags: true).truncate(120, separator: /\s/)
32
32
  end
33
33
 
34
34
  def badge
@@ -61,7 +61,7 @@ module Decidim
61
61
  scope :except_withdrawn, -> { where.not(state: "withdrawn").or(where(state: nil)) }
62
62
 
63
63
  scope :visible_meeting_for, lambda { |user|
64
- (all.published.distinct if user&.admin?) ||
64
+ (all.distinct if user&.admin?) ||
65
65
  if user.present?
66
66
  spaces = Decidim.participatory_space_registry.manifests.map do |manifest|
67
67
  {
@@ -42,7 +42,7 @@ module Decidim
42
42
  loading="lazy"
43
43
  src="#{embed_transformed_url(request_host)}"
44
44
  style="height: 100%; width: 100%; border: 0px;"
45
- />
45
+ ></iframe>
46
46
  )
47
47
  end
48
48
 
@@ -19,7 +19,7 @@
19
19
  <% end %>
20
20
  </div>
21
21
 
22
- <button class="button add-service"><%= t(".add_service") %></button>
22
+ <button class="button add-service" type="button"><%= t(".add_service") %></button>
23
23
  </div>
24
24
  </div>
25
25
  </div>
@@ -6,9 +6,9 @@
6
6
 
7
7
  <div class="row columns">
8
8
  <div class="title-action">
9
- <h3 id="meetings-count" class="title-action__title section-heading">
9
+ <h2 id="meetings-count" class="title-action__title section-heading">
10
10
  <%= render partial: "count" %>
11
- </h3>
11
+ </h2>
12
12
 
13
13
  <% if allowed_to?(:create, :meeting) %>
14
14
  <%= action_authorized_link_to :create, new_meeting_path, class: "title-action__action button small", data: { "redirect_url" => new_meeting_path } do %>
@@ -17,7 +17,7 @@ edit_link(
17
17
 
18
18
  <div class="row column view-header">
19
19
  <div class="m-bottom">
20
- <%= link_to meetings_path(filter_link_params), class: "small hollow" do %>
20
+ <%= link_to meetings_path, class: "small hollow js-back-to-list" do %>
21
21
  <%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
22
22
  <%= t(".back") %>
23
23
  <% end %>
@@ -72,6 +72,10 @@ ar:
72
72
  other: التسجيلات
73
73
  decidim:
74
74
  admin:
75
+ filters:
76
+ meetings:
77
+ category_id_eq:
78
+ label: الفئة
75
79
  meeting_copies:
76
80
  create:
77
81
  error: كانت هناك مشكلة في تكرار هذا الاجتماع.
@@ -299,6 +303,9 @@ ar:
299
303
  value_types:
300
304
  organizer_presenter:
301
305
  not_found: 'لم يتم العثور على المنظم في قاعدة البيانات (المعرف: %{id})'
306
+ application_helper:
307
+ filter_category_values:
308
+ all: الكل
302
309
  calendar_modal:
303
310
  calendar_url: العنوان الشبكي للتقويم
304
311
  close_window: أغلق النافذة
@@ -333,6 +340,8 @@ ar:
333
340
  filter: منقي
334
341
  filter_by: مصنف بواسطة
335
342
  unfold: كشف
343
+ form:
344
+ select_a_category: يُرجى اختيار فئة
336
345
  meeting_minutes:
337
346
  related_information: معلومات ذات صله
338
347
  meetings:
@@ -380,6 +389,10 @@ ar:
380
389
  map: خريطة
381
390
  start_time: تاريخ البدء
382
391
  title: عنوان
392
+ polls:
393
+ questions:
394
+ index_admin:
395
+ results: النتائج
383
396
  read_more: "(قراءة المزيد)"
384
397
  registration_mailer:
385
398
  confirmation:
@@ -42,6 +42,10 @@ ca:
42
42
  type_of_meeting: Tipus
43
43
  errors:
44
44
  models:
45
+ meeting:
46
+ attributes:
47
+ iframe_embed_type:
48
+ not_embeddable: Aquesta adreça URL no es pot incrustar a la pàgina de la trobada o de l'esdeveniment en directe
45
49
  meeting_agenda:
46
50
  attributes:
47
51
  base:
@@ -96,7 +100,7 @@ ca:
96
100
  type_eq:
97
101
  label: Tipus de trobada
98
102
  values:
99
- hybrid: Ambdós
103
+ hybrid: Ambdues
100
104
  in_person: Presencial
101
105
  online: En línia
102
106
  meeting_copies:
@@ -278,6 +282,9 @@ ca:
278
282
  edit:
279
283
  close: Tancar
280
284
  title: Tancar trobada
285
+ meeting_copies:
286
+ form:
287
+ select_a_meeting_type: Si us plau, selecciona un tipus de trobada
281
288
  meetings:
282
289
  close:
283
290
  invalid: S'ha produït un error en tancar aquesta trobada
@@ -296,7 +303,7 @@ ca:
296
303
  update: Actualitzar
297
304
  form:
298
305
  address_help: 'Adreça: que farà servir per Geocoder per a trobar la localització'
299
- available_slots_help: Deixeu-ho a 0 si les places disponibles són il·limitades
306
+ available_slots_help: Deixa-ho a 0 si les places disponibles són il·limitades
300
307
  disclaimer: 'Descàrrec de responsabilitat: en utilitzar un sistema d''inscripcions extern, ets conscient que els organitzadors de %{organization} no són responsables de les dades proporcionades per les usuàries al servei extern.'
301
308
  location_help: 'Localització: missatge dirigit a les participants indicant el lloc on trobar-se'
302
309
  location_hints_help: 'Detalls d''ubicació: informació addicional. Exemple: la planta de l''edifici si es tracta d''una reunió presencial, o la contrasenya de la reunió si es tracta d''una reunió en línia amb accés restringit.'
@@ -305,6 +312,8 @@ ca:
305
312
  registration_url_help: 'Enllaç: permetre a les participants anar al servei extern que estàs utilitzant per a les inscripcions'
306
313
  select_a_meeting_type: Si us plau selecciona un tipus de trobada
307
314
  select_a_registration_type: Si us plau selecciona un tipus d'inscripció
315
+ select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
316
+ show_embedded_iframe_help: Només uns quants serveis es poden incrustar a una trobada o esdeveniment en directe (YouTube, Twitch i Jitsi)
308
317
  index:
309
318
  title: Trobades
310
319
  new:
@@ -374,6 +383,13 @@ ca:
374
383
  value_types:
375
384
  organizer_presenter:
376
385
  not_found: 'L''organitzador no s''ha trobat a la base de dades (identificació: %{id})'
386
+ application_helper:
387
+ filter_category_values:
388
+ all: Totes
389
+ filter_meeting_space_values:
390
+ all: Totes
391
+ filter_scope_values:
392
+ all: Totes
377
393
  calendar_modal:
378
394
  calendar_url: URL del calendari
379
395
  close_window: Tanca la finestra
@@ -381,12 +397,23 @@ ca:
381
397
  conference_venues: Seus de les jornades
382
398
  content_blocks:
383
399
  upcoming_meetings:
400
+ name: Properes trobades
401
+ upcoming_meetings: Properes trobades
384
402
  view_all_meetings: Veure-ho tot
385
403
  directory:
386
404
  meetings:
387
405
  index:
388
406
  meetings: Trobades
389
407
  space_type: Espai participatiu
408
+ iframe_access_level:
409
+ all: Totes les visites
410
+ registered: Participants inscrites a aquesta trobada
411
+ signed_in: Només participants registrades
412
+ iframe_embed_type:
413
+ embed_in_meeting_page: Incrustar a la pàgina de la trobada
414
+ none: Cap
415
+ open_in_live_event_page: Obrir a la pàgina de l'esdeveniment en directe (amb opció d'enquestes)
416
+ open_in_new_tab: Obrir en una nova pestanya
390
417
  last_activity:
391
418
  meeting_updated_at_html: "<span>Trobada actualitzada el %{link}</span>"
392
419
  new_meeting_at_html: "<span>Nova trobada a %{link}</span>"
@@ -469,8 +496,14 @@ ca:
469
496
  select_a_category: Si us plau, selecciona una categoria
470
497
  select_a_meeting_type: Si us plau selecciona un tipus de trobada
471
498
  select_a_registration_type: Si us plau selecciona un tipus d'inscripció
499
+ select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
500
+ show_embedded_iframe_help: Només uns quants serveis es poden incrustar a una trobada o esdeveniment en directe (YouTube, Twitch i Jitsi)
472
501
  index:
502
+ click_here: Veure totes les trobades
473
503
  new_meeting: Nova trobada
504
+ see_all: Veure totes les trobades
505
+ see_all_withdrawn: Veure totes les trobades cancel·lades
506
+ text_banner: Estàs veient un llistat de trobades cancel·lades per les seves autores. %{go_back_link}.
474
507
  meeting_minutes:
475
508
  related_information: Informació relacionada
476
509
  meetings:
@@ -501,7 +534,7 @@ ca:
501
534
  meeting_minutes: Acta de la trobada
502
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
503
536
  no_slots_available: No hi ha places disponible
504
- organizations: Organitzacions que han assistit
537
+ organizations: Organitzacions assistents
505
538
  registration_code_help_text: El teu codi de registre
506
539
  registration_state:
507
540
  validated: VALIDAT
@@ -511,6 +544,9 @@ ca:
511
544
  other: "%{count} places restants"
512
545
  view: Veure
513
546
  visit_finished: Veure trobada passada
547
+ withdraw_btn_hint: Pots cancel·lar la teva trobada si canvies de parer. La trobada no s'elimina, apareixerà al llistat de trobades cancel·lades.
548
+ withdraw_confirmation_html: Segur que vols cancel·lar aquesta trobada?<br><br><strong>Aquesta acció no es pot desfer!</strong>
549
+ withdraw_meeting: Cancel·lar trobada
514
550
  update:
515
551
  invalid: Hi ha hagut un problema en actualitzar aquesta trobada.
516
552
  success: Has actualitzat la trobada amb èxit.
@@ -557,7 +593,7 @@ ca:
557
593
  question_replied: Pregunta contestada
558
594
  reply_question: Contestar a la pregunta
559
595
  public_participants_list:
560
- attending_participants: Participants que han assistit
596
+ attending_participants: Participants assistents
561
597
  hidden_participants_count:
562
598
  one: i %{count} persona més
563
599
  other: i %{count} persones més
@@ -588,8 +624,12 @@ ca:
588
624
  types:
589
625
  private_meeting: Trobada privada
590
626
  transparent: Transparent
627
+ withdraw: Cancel·lada
591
628
  versions:
592
629
  back_to_resource: Tornar a la trobada
630
+ withdraw:
631
+ error: S'ha produït un error al cancel·lar la trobada
632
+ success: La trobada s'ha cancel·lat correctament
593
633
  metrics:
594
634
  meetings:
595
635
  description: Nombre de trobades creades
@@ -69,6 +69,26 @@ de:
69
69
  other: Anmeldungen
70
70
  decidim:
71
71
  admin:
72
+ filters:
73
+ meetings:
74
+ is_upcoming_true:
75
+ label: Datum
76
+ values:
77
+ 'false': Vergangenheit
78
+ 'true': Anstehend
79
+ origin_eq:
80
+ label: Ursprung
81
+ values:
82
+ official: Offiziell
83
+ user_group: Benutzergruppen
84
+ scope_id_eq:
85
+ label: Umfang
86
+ type_eq:
87
+ label: Art des Treffens
88
+ values:
89
+ hybrid: Beides
90
+ in_person: Persönlich
91
+ online: Online
72
92
  meeting_copies:
73
93
  create:
74
94
  error: Es gab einen Fehler beim Duplizieren dieses Meetings.
@@ -330,6 +350,13 @@ de:
330
350
  value_types:
331
351
  organizer_presenter:
332
352
  not_found: 'Der Organisator wurde nicht in der Datenbank gefunden (ID: %{id})'
353
+ application_helper:
354
+ filter_category_values:
355
+ all: Alle
356
+ filter_meeting_space_values:
357
+ all: Alle
358
+ filter_scope_values:
359
+ all: Alle
333
360
  calendar_modal:
334
361
  calendar_url: Kalender-URL
335
362
  close_window: Fenster schließen
@@ -337,15 +364,31 @@ de:
337
364
  conference_venues: Tagungsstätten
338
365
  content_blocks:
339
366
  upcoming_meetings:
367
+ name: Bevorstehende Treffen
368
+ upcoming_meetings: Bevorstehende Treffen
340
369
  view_all_meetings: Alle ansehen
341
370
  directory:
342
371
  meetings:
343
372
  index:
344
373
  meetings: Meetings
345
374
  space_type: Partizipativer Raum
375
+ iframe_access_level:
376
+ all: Alle Besucher
377
+ registered: Registrierte Teilnehmer zu diesem Meeting
378
+ signed_in: Nur angemeldete Teilnehmer
379
+ iframe_embed_type:
380
+ embed_in_meeting_page: In Meeting-Seite einbetten
381
+ none: Keiner
382
+ open_in_live_event_page: In Live-Event-Seite öffnen (mit optionalen Umfragen)
383
+ open_in_new_tab: Link in neuem Tab öffnen
346
384
  last_activity:
347
385
  meeting_updated_at_html: "<span>Besprechung aktualisiert unter %{link}</span>"
348
386
  new_meeting_at_html: "<span>Neues Treffen um %{link}</span>"
387
+ layouts:
388
+ live_event:
389
+ administrate: Administrativ
390
+ close: Schließen
391
+ questions: Fragen
349
392
  mailer:
350
393
  invite_join_meeting_mailer:
351
394
  invite:
@@ -361,6 +404,11 @@ de:
361
404
  close: Sitzung beenden
362
405
  title: Sitzung beenden
363
406
  meetings:
407
+ calendar_modal:
408
+ add_to_calendar: Zum Kalender hinzufügen
409
+ apple: Zu Apple Kalender hinzufügen
410
+ close_window: Fenster schließen
411
+ full_details_html: Für alle Details gehen Sie zu %{link}
364
412
  count:
365
413
  meetings_count:
366
414
  one: "%{count} Besprechung"
@@ -473,6 +521,11 @@ de:
473
521
  official_meeting: Offizielle Besprechung
474
522
  start_time: Anfangsdatum
475
523
  title: Titel
524
+ polls:
525
+ questions:
526
+ published_question:
527
+ question: Frage
528
+ question_replied: Frage beantwortet
476
529
  read_more: "(Weiterlesen)"
477
530
  registration_mailer:
478
531
  confirmation:
@@ -502,6 +555,8 @@ de:
502
555
  transparent: Transparent
503
556
  versions:
504
557
  back_to_resource: Zurück zur Besprechung
558
+ withdraw:
559
+ success: Das Meeting wurde erfolgreich zurückgezogen
505
560
  metrics:
506
561
  meetings:
507
562
  description: Anzahl der erstellten Meetings
@@ -42,6 +42,10 @@ es-MX:
42
42
  type_of_meeting: Tipo
43
43
  errors:
44
44
  models:
45
+ meeting:
46
+ attributes:
47
+ iframe_embed_type:
48
+ not_embeddable: Esta URL no puede ser incrustada en la página de encuentro o evento en directo
45
49
  meeting_agenda:
46
50
  attributes:
47
51
  base:
@@ -98,7 +102,7 @@ es-MX:
98
102
  values:
99
103
  hybrid: Ambos
100
104
  in_person: Presencial
101
- online: En línea
105
+ online: Online
102
106
  meeting_copies:
103
107
  create:
104
108
  error: Se ha producido un error al duplicar este encuentro.
@@ -278,6 +282,9 @@ es-MX:
278
282
  edit:
279
283
  close: Cerrar
280
284
  title: Cerrar encuentro
285
+ meeting_copies:
286
+ form:
287
+ select_a_meeting_type: Por favor, selecciona un tipo de encuentro
281
288
  meetings:
282
289
  close:
283
290
  invalid: Ha habido un problema al cerrar este encuentro
@@ -305,6 +312,8 @@ es-MX:
305
312
  registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
306
313
  select_a_meeting_type: Por favor, selecciona un tipo de encuentro
307
314
  select_a_registration_type: Por favor, seleccione un tipo de inscripción
315
+ select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
316
+ show_embedded_iframe_help: Solo unos pocos servicios se pueden incrustar en encuentros o eventos en directo (YouTube, Twitch y Jitsi)
308
317
  index:
309
318
  title: Encuentros
310
319
  new:
@@ -374,6 +383,13 @@ es-MX:
374
383
  value_types:
375
384
  organizer_presenter:
376
385
  not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
386
+ application_helper:
387
+ filter_category_values:
388
+ all: Todas
389
+ filter_meeting_space_values:
390
+ all: Todos
391
+ filter_scope_values:
392
+ all: Todos
377
393
  calendar_modal:
378
394
  calendar_url: URL del calendario
379
395
  close_window: Cerrar ventana
@@ -381,12 +397,23 @@ es-MX:
381
397
  conference_venues: Sedes de las jornadas
382
398
  content_blocks:
383
399
  upcoming_meetings:
400
+ name: Próximos encuentros
401
+ upcoming_meetings: Próximos encuentros
384
402
  view_all_meetings: Ver todo
385
403
  directory:
386
404
  meetings:
387
405
  index:
388
406
  meetings: Encuentros
389
407
  space_type: Espacio participativo
408
+ iframe_access_level:
409
+ all: Todos los visitantes
410
+ registered: Participantes inscritas en este encuentro
411
+ signed_in: Sólo participantes registradas
412
+ iframe_embed_type:
413
+ embed_in_meeting_page: Incrustar en la página del encuentro
414
+ none: Ninguno
415
+ open_in_live_event_page: Abrir en la página del evento en directo (con encuestas opcionales)
416
+ open_in_new_tab: Abrir en nueva pestaña
390
417
  last_activity:
391
418
  meeting_updated_at_html: "<span>Encuentro actualizado a las %{link}</span>"
392
419
  new_meeting_at_html: "<span>Nuevo encuentro en %{link}</span>"
@@ -469,8 +496,14 @@ es-MX:
469
496
  select_a_category: Por favor, selecciona una categoría
470
497
  select_a_meeting_type: Por favor, selecciona un tipo de encuentro
471
498
  select_a_registration_type: Por favor, selecciona un tipo de inscripción
499
+ select_an_iframe_access_level: Por favor, selecciona un nivel de acceso iframe
500
+ show_embedded_iframe_help: Solo unos pocos servicios se pueden incrustar en encuentros o eventos en directo (YouTube, Twitch y Jitsi)
472
501
  index:
502
+ click_here: Ver todos los encuentros
473
503
  new_meeting: Nuevo encuentro
504
+ see_all: Ver todos los encuentros
505
+ see_all_withdrawn: Ver todos los encuentros retirados
506
+ text_banner: Estás viendo la lista de encuentros retirados por sus autores. %{go_back_link}.
474
507
  meeting_minutes:
475
508
  related_information: Información relacionada
476
509
  meetings:
@@ -489,6 +522,7 @@ es-MX:
489
522
  close_meeting: Cerrar encuentro
490
523
  contributions: Número de contribuciones
491
524
  date: Fecha
525
+ edit_close_meeting: Editar informe del encuentro
492
526
  edit_meeting: Editar el encuentro
493
527
  going: Te has inscrito en este encuentro
494
528
  join: Inscribirse al encuentro
@@ -510,6 +544,9 @@ es-MX:
510
544
  other: "%{count} plazas restantes"
511
545
  view: Ver
512
546
  visit_finished: Ver encuentro pasado
547
+ withdraw_btn_hint: Puedes retirar tu encuentro si cambias de opinión. El encuentro no será eliminado, aparecerá en la lista de encuentros retirados.
548
+ withdraw_confirmation_html: '¿Seguro que quieres retirar este encuentro?<br><br><strong>¡Esta acción no se puede cancelar!</strong>'
549
+ withdraw_meeting: Retirar encuentro
513
550
  update:
514
551
  invalid: Se ha producido un error al actualizar este encuentro.
515
552
  success: Has actualizado el encuentro con éxito.
@@ -587,8 +624,12 @@ es-MX:
587
624
  types:
588
625
  private_meeting: Encuentro privado
589
626
  transparent: Transparente
627
+ withdraw: Retirado
590
628
  versions:
591
629
  back_to_resource: Volver al encuentro
630
+ withdraw:
631
+ error: Se ha producido un error al retirar el encuentro
632
+ success: El encuentro se ha retirado con éxito
592
633
  metrics:
593
634
  meetings:
594
635
  description: Número de encuentros creados