decidim-conferences 0.23.5 → 0.24.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/conferences/conference_speaker/show.erb +1 -1
  3. data/app/cells/decidim/conferences/media_link/show.erb +1 -1
  4. data/app/cells/decidim/conferences/media_link_cell.rb +1 -0
  5. data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +40 -18
  6. data/app/commands/decidim/conferences/admin/create_partner.rb +33 -14
  7. data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
  8. data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +41 -17
  9. data/app/commands/decidim/conferences/admin/update_partner.rb +30 -10
  10. data/app/controllers/decidim/conferences/admin/imports_controller.rb +14 -0
  11. data/app/controllers/decidim/conferences/admin/moderations/reports_controller.rb +14 -0
  12. data/app/forms/decidim/conferences/admin/conference_form.rb +3 -2
  13. data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
  14. data/app/forms/decidim/conferences/admin/media_link_form.rb +1 -1
  15. data/app/forms/decidim/conferences/admin/partner_form.rb +2 -1
  16. data/app/models/decidim/conference_meeting.rb +1 -1
  17. data/app/models/decidim/conference_speaker.rb +1 -1
  18. data/app/models/decidim/conference_speaker_conference_meeting.rb +2 -2
  19. data/app/models/decidim/conferences/conference_meeting_registration_type.rb +2 -2
  20. data/app/models/decidim/conferences/registration_type.rb +1 -1
  21. data/app/permissions/decidim/conferences/permissions.rb +1 -1
  22. data/app/presenters/decidim/conferences/conference_stats_presenter.rb +1 -1
  23. data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +1 -1
  24. data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +1 -1
  25. data/app/views/decidim/conferences/admin/partners/_form.html.erb +1 -1
  26. data/app/views/layouts/decidim/admin/conference.html.erb +2 -1
  27. data/config/locales/ar.yml +6 -4
  28. data/config/locales/ca.yml +50 -3
  29. data/config/locales/cs.yml +51 -4
  30. data/config/locales/de.yml +16 -3
  31. data/config/locales/el.yml +6 -4
  32. data/config/locales/en.yml +50 -3
  33. data/config/locales/es-MX.yml +50 -3
  34. data/config/locales/es-PY.yml +50 -3
  35. data/config/locales/es.yml +50 -3
  36. data/config/locales/eu.yml +6 -4
  37. data/config/locales/fi-plain.yml +50 -3
  38. data/config/locales/fi.yml +50 -3
  39. data/config/locales/fr-CA.yml +16 -3
  40. data/config/locales/fr.yml +16 -3
  41. data/config/locales/gl.yml +35 -4
  42. data/config/locales/hu.yml +6 -4
  43. data/config/locales/id-ID.yml +6 -4
  44. data/config/locales/it.yml +6 -4
  45. data/config/locales/ja.yml +12 -4
  46. data/config/locales/lv.yml +6 -4
  47. data/config/locales/nl.yml +50 -3
  48. data/config/locales/no.yml +6 -4
  49. data/config/locales/pl.yml +16 -3
  50. data/config/locales/pt-BR.yml +6 -4
  51. data/config/locales/pt.yml +6 -4
  52. data/config/locales/ro-RO.yml +16 -3
  53. data/config/locales/sk.yml +6 -4
  54. data/config/locales/sv.yml +50 -3
  55. data/config/locales/tr-TR.yml +13 -4
  56. data/config/locales/zh-CN.yml +6 -4
  57. data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +16 -0
  58. data/lib/decidim/api/conference_media_link_type.rb +18 -0
  59. data/lib/decidim/api/conference_partner_type.rb +19 -0
  60. data/lib/decidim/api/conference_speaker_type.rb +23 -0
  61. data/lib/decidim/api/conference_type.rb +42 -0
  62. data/lib/decidim/conferences.rb +1 -0
  63. data/lib/decidim/conferences/admin_engine.rb +3 -1
  64. data/lib/decidim/conferences/api.rb +10 -0
  65. data/lib/decidim/conferences/engine.rb +7 -1
  66. data/lib/decidim/conferences/participatory_space.rb +25 -25
  67. data/lib/decidim/conferences/query_extensions.rb +43 -0
  68. data/lib/decidim/conferences/test/factories.rb +6 -6
  69. data/lib/decidim/conferences/version.rb +1 -1
  70. metadata +21 -16
  71. data/app/types/decidim/conferences/conference_media_link_type.rb +0 -19
  72. data/app/types/decidim/conferences/conference_partner_type.rb +0 -20
  73. data/app/types/decidim/conferences/conference_speaker_type.rb +0 -24
  74. data/app/types/decidim/conferences/conference_type.rb +0 -45
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Decidim
4
4
  class ConferenceSpeakerConferenceMeeting < ApplicationRecord
5
- belongs_to :conference_speaker, foreign_key: "conference_speaker_id", class_name: "Decidim::ConferenceSpeaker"
6
- belongs_to :conference_meeting, foreign_key: "conference_meeting_id", class_name: "Decidim::ConferenceMeeting"
5
+ belongs_to :conference_speaker, class_name: "Decidim::ConferenceSpeaker"
6
+ belongs_to :conference_meeting, class_name: "Decidim::ConferenceMeeting"
7
7
  end
8
8
  end
@@ -3,8 +3,8 @@
3
3
  module Decidim
4
4
  module Conferences
5
5
  class ConferenceMeetingRegistrationType < ApplicationRecord
6
- belongs_to :conference_meeting, foreign_key: "conference_meeting_id", class_name: "Decidim::ConferenceMeeting"
7
- belongs_to :registration_type, foreign_key: "registration_type_id", class_name: "Decidim::Conferences::RegistrationType"
6
+ belongs_to :conference_meeting, class_name: "Decidim::ConferenceMeeting"
7
+ belongs_to :registration_type, class_name: "Decidim::Conferences::RegistrationType"
8
8
  end
9
9
  end
10
10
  end
@@ -13,7 +13,7 @@ module Decidim
13
13
 
14
14
  belongs_to :conference, foreign_key: "decidim_conference_id", class_name: "Decidim::Conference"
15
15
  has_many :conference_meeting_registration_types, dependent: :destroy
16
- has_many :conference_meetings, through: :conference_meeting_registration_types, foreign_key: "registration_type_id", class_name: "Decidim::ConferenceMeeting"
16
+ has_many :conference_meetings, through: :conference_meeting_registration_types, class_name: "Decidim::ConferenceMeeting"
17
17
  has_many :conference_registrations, foreign_key: "decidim_conference_registration_type_id", class_name: "Decidim::Conferences::ConferenceRegistration", dependent: :destroy
18
18
 
19
19
  default_scope { order(weight: :asc) }
@@ -80,7 +80,7 @@ module Decidim
80
80
  def can_decline_invitation?
81
81
  return unless conference.presence
82
82
  return unless conference.registrations_enabled? &&
83
- conference.conference_invites.where(user: user).exists? &&
83
+ conference.conference_invites.exists?(user: user) &&
84
84
  permission_action.action == :decline_invitation &&
85
85
  permission_action.subject == :conference
86
86
 
@@ -10,7 +10,7 @@ module Decidim
10
10
  # Public: Render a collection of primary stats.
11
11
  def highlighted
12
12
  highlighted_stats = component_stats(priority: StatsRegistry::HIGH_PRIORITY)
13
- highlighted_stats = highlighted_stats.concat(component_stats(priority: StatsRegistry::MEDIUM_PRIORITY))
13
+ highlighted_stats.concat(component_stats(priority: StatsRegistry::MEDIUM_PRIORITY))
14
14
  highlighted_stats = highlighted_stats.reject(&:empty?)
15
15
  highlighted_stats = highlighted_stats.reject { |_manifest, _name, data| data.zero? }
16
16
  grouped_highlighted_stats = highlighted_stats.group_by { |stats| stats.first.name }
@@ -39,7 +39,7 @@
39
39
  <div class="card" id="conference-invites">
40
40
  <div class="card-divider">
41
41
  <h2 class="card-title">
42
- <%= title %> - <%= t(".invites") %>
42
+ <%= t(".invites") %>
43
43
  <%= link_to t(".invite_attendee"), conference.registrations_enabled ? new_conference_conference_invite_path(conference) : "#", class: "button tiny button--title #{'disabled' unless conference.registrations_enabled && allowed_to?(:invite_attendee, :conference, conference: conference) }" %>
44
44
  </h2>
45
45
  </div>
@@ -1,7 +1,7 @@
1
1
  <div class="card" id="conference-registrations">
2
2
  <div class="card-divider">
3
3
  <h2 class="card-title">
4
- <%= title %> - <%= t(".registrations") %>
4
+ <%= t(".registrations") %>
5
5
  <% if allowed_to? :export_conference_registrations, :conference, conference: conference %>
6
6
  <span class="exports dropdown tiny button button--simple button--title" data-toggle="export-dropdown"><%= t "actions.export", scope: "decidim.admin" %></span>
7
7
  <div class="dropdown-pane" id="export-dropdown" data-dropdown data-auto-focus="true" data-close-on-click="true">
@@ -24,7 +24,7 @@
24
24
  </div>
25
25
 
26
26
  <div class="row column">
27
- <%= form.upload :logo, optional: false %>
27
+ <%= form.upload :logo %>
28
28
  </div>
29
29
  </div>
30
30
  </div>
@@ -13,7 +13,7 @@
13
13
  <ul id="components-list">
14
14
  <% current_participatory_space.components.each do |component| %>
15
15
  <% if component.manifest.admin_engine && user_role_config.component_is_accessible?(component.manifest_name) %>
16
- <li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_conferences.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_conferences.edit_component_permissions_path(current_participatory_space, component)) %> class="is-active" <% end %>>
16
+ <li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_conferences.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_conferences.edit_component_permissions_path(current_participatory_space, component)) || participatory_space_active_link?(component) %> class="is-active" <% end %>>
17
17
  <%= link_to manage_component_path(component) do %>
18
18
  <%= translated_attribute component.name %>
19
19
  <% if component.primary_stat.present? %>
@@ -101,6 +101,7 @@
101
101
  <%= aria_selected_link_to t("moderations", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.moderations_path(current_participatory_space) %>
102
102
  </li>
103
103
  <% end %>
104
+ <%= Decidim::Admin.view_hooks.render(:admin_secondary_nav, deep_dup) %>
104
105
  </ul>
105
106
  </div>
106
107
  <% end %>
@@ -22,6 +22,12 @@ ar:
22
22
  slogan: شعار
23
23
  slug: سبيكة العنوان الشبكي
24
24
  title: عنوان
25
+ conference_media_link:
26
+ weight: وزن
27
+ conference_partner:
28
+ weight: وزن
29
+ conference_registration_type:
30
+ weight: وزن
25
31
  conference_speaker:
26
32
  full_name: الاسم الكامل
27
33
  conference_user_role:
@@ -277,10 +283,6 @@ ar:
277
283
  conferences:
278
284
  conference_registration:
279
285
  confirm: "%{user_name} أكد تسجيل مؤتمر في مؤتمر %{resource_name}"
280
- partner:
281
- create: "%{user_name} أنشأ %{resource_name} إلى %{space_name} المؤتمر"
282
- delete: "%{user_name} أزال المشرف %{resource_name} من المؤتمر %{space_name}"
283
- update: "%{user_name} محدث %{resource_name} في المؤتمر %{space_name}"
284
286
  registration_type:
285
287
  create: "%{user_name} أنشأ نوع التسجيل %{resource_name} في المؤتمر %{space_name}"
286
288
  publish: "%{user_name} نشر نوع التسجيل %{resource_name} في المؤتمر %{space_name}"
@@ -3,6 +3,7 @@ ca:
3
3
  attributes:
4
4
  conference:
5
5
  assemblies_ids: Assemblees relacionades
6
+ available_slots: Llocs lliures
6
7
  banner_image: Imatge de banner
7
8
  consultations_ids: Consultes relacionades
8
9
  copy_categories: Copiar categories
@@ -10,20 +11,59 @@ ca:
10
11
  copy_features: Copiar funcionalitats
11
12
  decidim_scope_id: Àmbit
12
13
  description: Descripció
14
+ end_date: Data de fi
13
15
  hashtag: Hashtag
14
16
  hero_image: Imatge de la pàgina d'inici
17
+ location: Situació
18
+ main_logo: Logo principal
19
+ objectives: Objectius
15
20
  participatory_processes_ids: Processos participatius relacionats
16
21
  promoted: Destacada
17
22
  published_at: Publicat a
23
+ registration_terms: Condicions d'inscripció
24
+ registrations_enabled: Inscripcions habilitades
18
25
  scope_id: Àmbit
19
26
  scopes_enabled: Àmbits habilitats
20
27
  short_description: Breu descripció
21
28
  show_statistics: Mostrar estadístiques
29
+ sign_date: Data de signatura
30
+ signature: Signatura
31
+ signature_name: nom de la signatura
22
32
  slogan: Eslògan
23
33
  slug: URL amigable
34
+ start_date: Data d'inici
35
+ title: Títol
36
+ conference_media_link:
37
+ date: Data
38
+ link: Enllaç
39
+ title: Títol
40
+ weight: Pes
41
+ conference_partner:
42
+ link: Enllaç
43
+ logo: Logo
44
+ name: Nom
45
+ partner_type: Tipus de col·laboració
46
+ weight: Pes
47
+ conference_registration_invite:
48
+ email: Correu electrònic
49
+ name: Nom
50
+ registration_type_id: Tipus d'inscripció
51
+ user_id: Usuària
52
+ conference_registration_type:
53
+ description: Descripció
54
+ price: Cost
24
55
  title: Títol
56
+ weight: Pes
25
57
  conference_speaker:
58
+ affiliation: Membre
59
+ avatar: Imatge de perfil
60
+ conference_meeting_ids: Trobades relacionades
26
61
  full_name: Nom complet
62
+ personal_url: URL personal
63
+ position: Càrrec
64
+ short_bio: Resum biogràfic
65
+ twitter_handle: Compte de Twitter
66
+ user_id: Usuària
27
67
  conference_user_role:
28
68
  email: Correu electrònic
29
69
  name: Nom
@@ -267,9 +307,9 @@ ca:
267
307
  conference_registration:
268
308
  confirm: "%{user_name} ha confirmat la seva inscripció a la jornada %{resource_name}"
269
309
  partner:
270
- create: "%{user_name} ha creat %{resource_name} a la jornada %{space_name}"
271
- delete: "%{user_name} ha eliminat l'administradora %{resource_name} de la jornada %{space_name}"
272
- update: "%{user_name} ha actualitzat %{resource_name} a la jornada %{space_name}"
310
+ create: "%{user_name} ha creat la col·laboradora %{resource_name} a la jornada %{space_name}"
311
+ delete: "%{user_name} ha eliminat la col·laboradora %{resource_name} a la jornada %{space_name}"
312
+ update: "%{user_name} ha actualitzat la col·laboradora %{resource_name} a la jornada %{space_name}"
273
313
  registration_type:
274
314
  create: "%{user_name} ha creat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
275
315
  publish: "%{user_name} ha publicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
@@ -402,6 +442,7 @@ ca:
402
442
  personal_website: Lloc web personal
403
443
  show:
404
444
  more_info: més informació
445
+ speaking_at: Intervé a
405
446
  conference_speaker_cell:
406
447
  personal_url:
407
448
  personal_website: Lloc web personal
@@ -539,6 +580,12 @@ ca:
539
580
  email_outro: Has rebut aquesta notificació perquè estàs seguint la jornada "%{resource_title}". Podeu deixar-la de seguir-a des de l'enllaç anterior.
540
581
  email_subject: La jornada "%{resource_title}" s'apropa!
541
582
  notification_title: La jornada <a href="%{resource_path}">%{resource_title}</a> començarà en 2 dies.
583
+ help:
584
+ participatory_spaces:
585
+ conferences:
586
+ contextual: "<p>Una <strong>conferència</strong> és un conjunt de trobades organitzades en un programa, amb un grup de persones convidades com a ponents, i altres camps d'informació típics dels grans congressos o esdeveniments socials (inscripció, llista d'organitzacions que secunden o patrocinen l'esdeveniment, etc.).</p> <p>Exemples: Una conferència pot ser un esdeveniment rellevant per a una organització i els seus membres, o pot tenir lloc com a part d'un procés participatiu o després d'una consulta.</p>"
587
+ page: "<p>Una <strong>conferència</strong> és un conjunt de trobades organitzades en un programa, amb un grup de persones convidades com a ponents, i altres camps d'informació típics dels grans congressos o esdeveniments socials (inscripció, llista d'organitzacions que secunden o patrocinen l'esdeveniment, etc.).</p> <p>Exemples: Una conferència pot ser un esdeveniment rellevant per a una organització i els seus membres, o pot tenir lloc com a part d'un procés participatiu o després d'una consulta.</p>"
588
+ title: Què són les conferències?
542
589
  log:
543
590
  value_types:
544
591
  conference_presenter:
@@ -3,6 +3,7 @@ cs:
3
3
  attributes:
4
4
  conference:
5
5
  assemblies_ids: Související shromáždění
6
+ available_slots: Dostupné sloty
6
7
  banner_image: Obrázek banneru
7
8
  consultations_ids: Související konzultace
8
9
  copy_categories: Kopírovat kategorie
@@ -10,20 +11,59 @@ cs:
10
11
  copy_features: Funkce kopírování
11
12
  decidim_scope_id: Oblast působnosti
12
13
  description: Popis
14
+ end_date: Datum ukončení
13
15
  hashtag: Hashtag
14
16
  hero_image: Obrázek na hlavní stránce
17
+ location: Lokalita
18
+ main_logo: Hlavní logo
19
+ objectives: Cíle
15
20
  participatory_processes_ids: Související procesy účasti
16
21
  promoted: Propagováno
17
22
  published_at: Publikováno v
23
+ registration_terms: Podmínky registrace
24
+ registrations_enabled: Registrace povoleny
18
25
  scope_id: Oblast působnosti
19
26
  scopes_enabled: Oblasti působnosti povoleny
20
27
  short_description: Stručný popis
21
28
  show_statistics: Zobrazit statistiky
29
+ sign_date: Datum podpisu
30
+ signature: Podpis
31
+ signature_name: podpisové jméno
22
32
  slogan: Motto
23
33
  slug: URL slug
34
+ start_date: Datum zahájení
24
35
  title: Titul
36
+ conference_media_link:
37
+ date: Datum
38
+ link: Odkaz
39
+ title: Název
40
+ weight: Váha
41
+ conference_partner:
42
+ link: Odkaz
43
+ logo: Logo
44
+ name: Název
45
+ partner_type: Typ partnera
46
+ weight: Váha
47
+ conference_registration_invite:
48
+ email: E-mail
49
+ name: Jméno
50
+ registration_type_id: Typ registrace
51
+ user_id: Uživatel
52
+ conference_registration_type:
53
+ description: Popis
54
+ price: Cena
55
+ title: Oslovení
56
+ weight: Váha
25
57
  conference_speaker:
58
+ affiliation: Příslušnost
59
+ avatar: Avatar
60
+ conference_meeting_ids: Související schůzky
26
61
  full_name: Celé jméno
62
+ personal_url: Osobní adresa Url
63
+ position: Pozice
64
+ short_bio: Krátký životopis
65
+ twitter_handle: Twitter účet
66
+ user_id: Uživatel
27
67
  conference_user_role:
28
68
  email: E-mail
29
69
  name: název
@@ -210,7 +250,7 @@ cs:
210
250
  fields:
211
251
  conference_meetings: Setkání konference
212
252
  price: Cena
213
- registrations_count: Registrace se počítají
253
+ registrations_count: Počet registrací
214
254
  title: Název
215
255
  weight: Váha
216
256
  name: Typ registrace
@@ -273,9 +313,9 @@ cs:
273
313
  conference_registration:
274
314
  confirm: "%{user_name} potvrdil registraci konference na konferenci %{resource_name}"
275
315
  partner:
276
- create: "%{user_name} vytvořil %{resource_name} na konferenci %{space_name}"
277
- delete: "%{user_name} odstranil uživatele %{resource_name} z konference %{space_name}"
278
- update: "%{user_name} aktualizoval %{resource_name} v konferenci %{space_name}"
316
+ create: "%{user_name} vytvořil partnera %{resource_name} na konferenci %{space_name}"
317
+ delete: "%{user_name} odstranil partnera %{resource_name} z konference %{space_name}"
318
+ update: "%{user_name} aktualizoval partnera %{resource_name} na konferenci %{space_name}"
279
319
  registration_type:
280
320
  create: "%{user_name} vytvořil typ registrace %{resource_name} na konferenci %{space_name}"
281
321
  publish: "%{user_name} publikoval %{resource_name} typ registrace na %{space_name} konferencích"
@@ -410,6 +450,7 @@ cs:
410
450
  personal_website: Osobní web
411
451
  show:
412
452
  more_info: více informací
453
+ speaking_at: Má projev v
413
454
  conference_speaker_cell:
414
455
  personal_url:
415
456
  personal_website: Osobní web
@@ -547,6 +588,12 @@ cs:
547
588
  email_outro: Toto upozornění jste obdrželi, protože jste sledovali konferenci "%{resource_title}". Můžete jej odhlásit od předchozího odkazu.
548
589
  email_subject: Konference "%{resource_title}" přichází!
549
590
  notification_title: Konference <a href="%{resource_path}">%{resource_title}</a> přichází za 2 dny.
591
+ help:
592
+ participatory_spaces:
593
+ conferences:
594
+ contextual: "<p> <strong>Konference</strong> je několik schůzek uspořádaných v rámci programu s řadou lidí pozvaných jako řečníci, a další informační pole typická pro velké kongresy nebo společenské události (registrace, seznam organizací, které podporují nebo sponzorují událost atd.).</p> <p>Příklady: Konference může být relevantní pro organizaci a její členy, nebo se koná v rámci účastnického procesu, nebo následuje konzultace.</p>\n"
595
+ page: "<p> <strong>Konference</strong> je několik schůzek uspořádaných v rámci programu s řadou lidí pozvaných jako řečníci, a další informační pole typická pro velké kongresy nebo společenské události (registrace, seznam organizací, které podporují nebo sponzorují událost atd.).</p> <p>Příklady: Konference může být relevantní pro organizaci a její členy, nebo se koná v rámci účastnického procesu, nebo následuje konzultace.</p>\n"
596
+ title: Co jsou konference?
550
597
  log:
551
598
  value_types:
552
599
  conference_presenter:
@@ -22,6 +22,12 @@ de:
22
22
  slogan: Slogan
23
23
  slug: URL-Block
24
24
  title: Titel
25
+ conference_media_link:
26
+ weight: Gewicht
27
+ conference_partner:
28
+ weight: Gewicht
29
+ conference_registration_type:
30
+ weight: Gewicht
25
31
  conference_speaker:
26
32
  full_name: Vollständiger Name
27
33
  conference_user_role:
@@ -267,9 +273,9 @@ de:
267
273
  conference_registration:
268
274
  confirm: "%{user_name} hat eine Anmeldung zur Konferenz %{resource_name} bestätigt"
269
275
  partner:
270
- create: "%{user_name} hat %{resource_name} zur Konferenz %{space_name} hinzugefügt"
271
- delete: "%{user_name} hat den Admin %{resource_name} aus der Konferenz %{space_name} entfernt"
272
- update: "%{user_name} hat %{resource_name} in der Konferenz %{space_name} aktualisiert"
276
+ create: "%{user_name} hat den Partner %{resource_name} in der Konferenz %{space_name} erstellt"
277
+ delete: "%{user_name} hat den Partner %{resource_name} aus der Konferenz %{space_name} entfernt"
278
+ update: "%{user_name} hat den Partner %{resource_name} in der Konferenz %{space_name} aktualisiert"
273
279
  registration_type:
274
280
  create: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} erstellt"
275
281
  publish: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} veröffentlicht"
@@ -402,6 +408,7 @@ de:
402
408
  personal_website: Persönliche Webseite
403
409
  show:
404
410
  more_info: Mehr Informationen
411
+ speaking_at: Sprecher bei
405
412
  conference_speaker_cell:
406
413
  personal_url:
407
414
  personal_website: Persönliche Webseite
@@ -539,6 +546,12 @@ de:
539
546
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Konferenz "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
540
547
  email_subject: Die Konferenz "%{resource_title}" kommt!
541
548
  notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> beginnt in 2 Tagen.
549
+ help:
550
+ participatory_spaces:
551
+ conferences:
552
+ contextual: "<p>Eine <strong>Konferenz</strong> ist eine Sammlung von Meetings, die in einem Programm organisiert werden, mit einer Anzahl von Personen, die als Referenten eingeladen werden und andere Informationsfelder, die für große Kongresse oder gesellschaftliche Veranstaltungen typisch sind (Registrierung, Liste der Organisationen, die die Veranstaltung unterstützen oder sponsern, usw.)..</p> <p>Beispiele: Eine Konferenz kann ein relevantes Ereignis für eine Organisation und ihre Mitglieder sein oder im Rahmen eines partizipatorischen Prozesses oder einer Beratung folgen.</p>\n"
553
+ page: "<p>Eine <strong>Konferenz</strong> ist eine Sammlung von Meetings, die in einem Programm organisiert werden, mit einer Anzahl von Personen, die als Referenten eingeladen werden und andere Informationsfelder, die für große Kongresse oder gesellschaftliche Veranstaltungen typisch sind (Registrierung, Liste der Organisationen, die die Veranstaltung unterstützen oder sponsern, usw.)..</p> <p>Beispiele: Eine Konferenz kann ein relevantes Ereignis für eine Organisation und ihre Mitglieder sein oder im Rahmen eines partizipatorischen Prozesses oder einer Beratung folgen.</p>\n"
554
+ title: Was sind Konferenzen?
542
555
  log:
543
556
  value_types:
544
557
  conference_presenter:
@@ -22,6 +22,12 @@ el:
22
22
  slogan: Σύνθημα
23
23
  slug: Slug διεύθυνσης URL
24
24
  title: Τίτλος
25
+ conference_media_link:
26
+ weight: Βάρος
27
+ conference_partner:
28
+ weight: Βάρος
29
+ conference_registration_type:
30
+ weight: Βάρος
25
31
  conference_speaker:
26
32
  full_name: Ονοματεπώνυμο
27
33
  conference_user_role:
@@ -266,10 +272,6 @@ el:
266
272
  conferences:
267
273
  conference_registration:
268
274
  confirm: "Ο χρήστης %{user_name} επιβεβαίωση μια εγγραφή διάσκεψης στη διάσκεψη %{resource_name}"
269
- partner:
270
- create: "Ο χρήστης %{user_name} δημιούργησε %{resource_name} στη διάσκεψη %{space_name}"
271
- delete: "Ο χρήστης %{user_name} κατάργησε τον διαχειριστή %{resource_name} από τη διάσκεψη %{space_name}"
272
- update: "Ο χρήστης %{user_name} ενημέρωσε το στοιχείο %{resource_name} στη διάσκεψη %{space_name}"
273
275
  registration_type:
274
276
  create: "Ο χρήστης %{user_name} δημιούργησε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
275
277
  publish: "Ο χρήστης %{user_name} δημοσίευσε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
@@ -4,6 +4,7 @@ en:
4
4
  attributes:
5
5
  conference:
6
6
  assemblies_ids: Related Assemblies
7
+ available_slots: Available slots
7
8
  banner_image: Banner image
8
9
  consultations_ids: Related Consultations
9
10
  copy_categories: Copy categories
@@ -11,20 +12,59 @@ en:
11
12
  copy_features: Copy features
12
13
  decidim_scope_id: Scope
13
14
  description: Description
15
+ end_date: End date
14
16
  hashtag: Hashtag
15
17
  hero_image: Home image
18
+ location: Location
19
+ main_logo: Main logo
20
+ objectives: Objectives
16
21
  participatory_processes_ids: Related participatory processes
17
22
  promoted: Highlighted
18
23
  published_at: Published at
24
+ registration_terms: Registration terms
25
+ registrations_enabled: Registrations enabled
19
26
  scope_id: Scope
20
27
  scopes_enabled: Scopes enabled
21
28
  short_description: Short description
22
29
  show_statistics: Show statistics
30
+ sign_date: Sign date
31
+ signature: Signature
32
+ signature_name: signature name
23
33
  slogan: Slogan
24
34
  slug: URL slug
35
+ start_date: Start date
36
+ title: Title
37
+ conference_media_link:
38
+ date: Date
39
+ link: Link
40
+ title: Title
41
+ weight: Weight
42
+ conference_partner:
43
+ link: Link
44
+ logo: Logo
45
+ name: Name
46
+ partner_type: Partner type
47
+ weight: Weight
48
+ conference_registration_invite:
49
+ email: Email
50
+ name: Name
51
+ registration_type_id: Registration type
52
+ user_id: User
53
+ conference_registration_type:
54
+ description: Description
55
+ price: Price
25
56
  title: Title
57
+ weight: Weight
26
58
  conference_speaker:
59
+ affiliation: Affiliation
60
+ avatar: Avatar
61
+ conference_meeting_ids: Related meetings
27
62
  full_name: Full name
63
+ personal_url: Personal url
64
+ position: Position
65
+ short_bio: Short Bio
66
+ twitter_handle: Twitter handle
67
+ user_id: User
28
68
  conference_user_role:
29
69
  email: Email
30
70
  name: Name
@@ -268,9 +308,9 @@ en:
268
308
  conference_registration:
269
309
  confirm: "%{user_name} confirmed a conference registration in %{resource_name} conference"
270
310
  partner:
271
- create: "%{user_name} created %{resource_name} to the %{space_name} conference"
272
- delete: "%{user_name} removed the admin %{resource_name} from the %{space_name} conference"
273
- update: "%{user_name} updated %{resource_name} in the %{space_name} conference"
311
+ create: "%{user_name} created the partner %{resource_name} in the %{space_name} conference"
312
+ delete: "%{user_name} removed the partner %{resource_name} from the %{space_name} conference"
313
+ update: "%{user_name} updated the partner %{resource_name} in the %{space_name} conference"
274
314
  registration_type:
275
315
  create: "%{user_name} created the %{resource_name} registration type in the %{space_name} conference"
276
316
  publish: "%{user_name} published the %{resource_name} registration type in the %{space_name} conference"
@@ -403,6 +443,7 @@ en:
403
443
  personal_website: Personal website
404
444
  show:
405
445
  more_info: more info
446
+ speaking_at: Speaking at
406
447
  conference_speaker_cell:
407
448
  personal_url:
408
449
  personal_website: Personal website
@@ -540,6 +581,12 @@ en:
540
581
  email_outro: You have received this notification because you are following the "%{resource_title}" conference. You can unfollow it from the previous link.
541
582
  email_subject: The "%{resource_title}" conference is coming!
542
583
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> conference is coming in 2 days.
584
+ help:
585
+ participatory_spaces:
586
+ conferences:
587
+ contextual: "<p>A <strong>conference</strong> is a collection of meetings arranged in a programme, with a number of people invited as speakers, and other information fields typical of large congresses or social events (registration, list of organisations that support or sponsor the event, etc.).</p> <p>Examples: A conference can be a relevant event for an organization and its members, or take place as part of a participatory process or follow a consultation.</p>\n"
588
+ page: "<p>A <strong>conference</strong> is a collection of meetings arranged in a programme, with a number of people invited as speakers, and other information fields typical of large congresses or social events (registration, list of organisations that support or sponsor the event, etc.).</p> <p>Examples: A conference can be a relevant event for an organization and its members, or take place as part of a participatory process or follow a consultation.</p>\n"
589
+ title: What are conferences?
543
590
  log:
544
591
  value_types:
545
592
  conference_presenter: