decidim-conferences 0.25.0.rc4 → 0.25.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee1804c9f6703c0cb245a2dae893c5c1bb631d70932cb7d9143822f37a9cc4aa
4
- data.tar.gz: 88107bfa43fd1dc97572d16b4e6dcacdd04c72211ce8aa38880509298b123a05
3
+ metadata.gz: b710609005474007307f77e505c15cf551a4c9041bb25185bcbeae280d37b177
4
+ data.tar.gz: d9ef4049b77f7b2ab494abec50636b3553d63f5a6612350dac398f921f648e6e
5
5
  SHA512:
6
- metadata.gz: 9968aa877a530ae392f63f4c5364fc1d1a121763a4bd9030ad3b27b315f08c9c5a7df3e9926a7b293c1f6254d5a846e921ae3d402bfdbe4956bd01482f76fe7a
7
- data.tar.gz: 50a5346c96ba2d2a1f2516ae46d26750ea1157a3aec498faefbd249b7c38f6c9dccb21c68aa8d62fdbb2cd2e32ebeab5d03065003c62e7a1b7b9578dfce7a40a
6
+ metadata.gz: 5f5859f020eeb1f6477992fa1d7f68038b0b3b1948818505b041bd626fba41402dabcde007e6d7c52ebfe87c0f838b5f53e97dbb032cc8735ec93623bac55917
7
+ data.tar.gz: f60ffc07a8f72ffcc9de81510194d700b60995482314aba947aa7e20e1340914e3c3297230081f0c523185e9d94d57402e2412dd0984ad744e88c24118a0a9ab
@@ -11,14 +11,18 @@
11
11
  <%= position %>
12
12
  </div>
13
13
  <% end %>
14
+ <% if affiliation.presence %>
15
+ <div class="data-extra">
16
+ <%= affiliation %>
17
+ </div>
18
+ <% end %>
14
19
  <div class="data-extra">
15
20
  <% if nickname.present? %>
16
- <%= link_to profile_path, class: "card-link" do %>
17
- <%= nickname %> <span><u><%= t(".more_info") %></u></span>
18
- <% end %>
21
+ <%= link_to nickname, profile_path, class: "card-link" %>
19
22
  <% else %>
20
23
  <div class="author__nickname">&nbsp;</div>
21
24
  <% end %>
25
+ <div><u><%= t(".more_info") %></u></div>
22
26
  </div>
23
27
  </div>
24
28
  <div class="speaker-bio js-bio">
@@ -34,14 +38,18 @@
34
38
  <% if position.presence %>
35
39
  <div class="data-role"><%= position %></div>
36
40
  <% end %>
41
+ <% if affiliation.presence %>
42
+ <div class="data-extra">
43
+ <%= affiliation %>
44
+ </div>
45
+ <% end %>
37
46
  <div class="data-extra">
38
47
  <% if nickname.present? %>
39
- <%= link_to profile_path, class: "card-link" do %>
40
- <%= nickname %> <span><u><%= t(".more_info") %></u></span>
41
- <% end %>
48
+ <%= link_to nickname, profile_path, class: "card-link" %>
42
49
  <% else %>
43
50
  <div class="author__nickname">&nbsp;</div>
44
51
  <% end %>
52
+ <div><u><%= t(".more_info") %></u></div>
45
53
  </div>
46
54
  <% if personal_url.presence %>
47
55
  <div>
@@ -53,11 +61,6 @@
53
61
  <%= twitter_handle %>
54
62
  </div>
55
63
  <% end %>
56
- <% if affiliation.presence %>
57
- <div>
58
- <%= affiliation %>
59
- </div>
60
- <% end %>
61
64
  </div>
62
65
  </div>
63
66
  <% if short_bio.presence %>
@@ -72,9 +72,7 @@ module Decidim
72
72
  def personal_url
73
73
  return unless model.personal_url.presence || (model.user.presence && model.user.personal_url.presence)
74
74
 
75
- link_to model.personal_url || model.user.personal_url, target: "_blank", class: "card-link", rel: "noopener" do
76
- "#{icon "external-link"}" "&nbsp;#{t(".personal_website")}"
77
- end
75
+ link_to t(".personal_website"), model.personal_url || model.user.personal_url, target: "_blank", class: "card-link", rel: "noopener"
78
76
  end
79
77
 
80
78
  def meetings
@@ -68,7 +68,7 @@ module Decidim
68
68
  organization: conference.organization
69
69
  )
70
70
 
71
- InviteUserAgain.call(@existing_user, invitation_instructions) if @existing_user && !@existing_user.invitation_accepted?
71
+ InviteUserAgain.call(@existing_user, invitation_instructions) if @existing_user&.invitation_pending?
72
72
 
73
73
  @existing_user
74
74
  end
@@ -3,9 +3,11 @@
3
3
  module Decidim
4
4
  # It represents a meeting of the conference
5
5
  class ConferenceMeeting < Decidim::Meetings::Meeting
6
+ translatable_fields(*Decidim::Meetings::Meeting.translatable_fields_list)
7
+
6
8
  has_many :conference_speaker_conference_meetings, dependent: :destroy
7
9
  has_many :conference_speakers, through: :conference_speaker_conference_meetings, class_name: "Decidim::ConferenceSpeaker"
8
- has_many :conference_meeting_registration_types, dependent: :destroy
10
+ has_many :conference_meeting_registration_types, dependent: :destroy, class_name: "Decidim::Conferences::ConferenceMeetingRegistrationType"
9
11
  has_many :registration_types, through: :conference_meeting_registration_types, foreign_key: "registration_type_id", class_name: "Decidim::Conferences::RegistrationType"
10
12
  end
11
13
  end
@@ -33,6 +33,16 @@ module Decidim
33
33
  false
34
34
  end
35
35
 
36
+ def avatar
37
+ attached_uploader(:avatar)
38
+ end
39
+
40
+ def avatar_url(variant = nil)
41
+ return avatar.default_url unless avatar.attached?
42
+
43
+ avatar.path(variant: variant)
44
+ end
45
+
36
46
  private
37
47
 
38
48
  def user
@@ -3,6 +3,7 @@ el:
3
3
  attributes:
4
4
  conference:
5
5
  assemblies_ids: Σχετικές συνελεύσεις
6
+ available_slots: Διαθέσιμες χρονοθυρίδες
6
7
  banner_image: Εικόνα διαφημιστικού πλαισίου
7
8
  consultations_ids: Σχετικές διαβουλεύσεις
8
9
  copy_categories: Αντιγραφή κατηγοριών
@@ -10,26 +11,58 @@ el:
10
11
  copy_features: Αντιγραφή χαρακτηριστικών
11
12
  decidim_scope_id: Πεδίο εφαρμογής
12
13
  description: Περιγραφή
14
+ end_date: Ημερομηνία λήξης
13
15
  hashtag: Hashtag
14
16
  hero_image: Εικόνα αρχικής σελίδας
17
+ location: Τοποθεσία
18
+ main_logo: Κύριο λογότυπο
19
+ objectives: Στόχοι
15
20
  participatory_processes_ids: Σχετικές διαδικασίες συμμετοχής
16
21
  promoted: Επισημάνθηκε
17
22
  published_at: Δημοσιεύτηκε στις
23
+ registration_terms: Όροι εγγραφής
24
+ registrations_enabled: Ενεργοποιημένες εγγραφές
18
25
  scope_id: Πεδίο εφαρμογής
19
26
  scopes_enabled: Ενεργοποιημένα πεδία εφαρμογών
20
27
  short_description: Σύντομη περιγραφή
21
28
  show_statistics: Εμφάνιση στατιστικών
29
+ sign_date: Ημερομηνία υπογραφής
30
+ signature: Υπογραφή
31
+ signature_name: όνομα υπογραφής
22
32
  slogan: Σύνθημα
23
33
  slug: Slug διεύθυνσης URL
34
+ start_date: Ημερομηνία έναρξης
24
35
  title: Τίτλος
25
36
  conference_media_link:
37
+ date: Ημερομηνία
38
+ link: Σύνδεσμος
39
+ title: Τίτλος
26
40
  weight: Βάρος
27
41
  conference_partner:
42
+ link: Σύνδεσμος
43
+ logo: Λογότυπο
44
+ name: Όνομα
45
+ partner_type: Τύπος εταίρου
28
46
  weight: Βάρος
47
+ conference_registration_invite:
48
+ name: Όνομα
49
+ registration_type_id: Τύπος εγγραφής
50
+ user_id: Χρήστης
29
51
  conference_registration_type:
52
+ description: Περιγραφή
53
+ price: Τιμή
54
+ title: Τίτλος
30
55
  weight: Βάρος
31
56
  conference_speaker:
57
+ affiliation: Δεσμός
58
+ avatar: Εικόνα Χρήστη
59
+ conference_meeting_ids: Σχετικές συναντήσεις
32
60
  full_name: Ονοματεπώνυμο
61
+ personal_url: Προσωπικό url
62
+ position: Θέση
63
+ short_bio: Σύντομο Βιογραφικό
64
+ twitter_handle: Ψευδώνυμο Twitter
65
+ user_id: Χρήστης
33
66
  conference_user_role:
34
67
  email: Email
35
68
  name: Όνομα
@@ -212,6 +245,7 @@ el:
212
245
  price: Τιμή
213
246
  registrations_count: Αριθμός εγγραφών
214
247
  title: Τίτλος
248
+ weight: Θέση κατάταξης
215
249
  name: Τύπος εγγραφής
216
250
  partners:
217
251
  create:
@@ -271,6 +305,10 @@ el:
271
305
  conferences:
272
306
  conference_registration:
273
307
  confirm: "Ο χρήστης %{user_name} επιβεβαίωση μια εγγραφή διάσκεψης στη διάσκεψη %{resource_name}"
308
+ partner:
309
+ create: "Ο χρήστης %{user_name} δημιούργησε τον εταίρο %{resource_name} στη διάσκεψη %{space_name}"
310
+ delete: "Ο χρήστης %{user_name} απομάκρυνε τον εταίρο %{resource_name} από τη διάσκεψη %{space_name}"
311
+ update: "Ο χρήστης %{user_name} ενημέρωσε τον εταίρο %{resource_name} στη διάσκεψη %{space_name}"
274
312
  registration_type:
275
313
  create: "Ο χρήστης %{user_name} δημιούργησε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
276
314
  publish: "Ο χρήστης %{user_name} δημοσίευσε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
@@ -403,6 +441,7 @@ el:
403
441
  personal_website: Προσωπικός ιστότοπος
404
442
  show:
405
443
  more_info: περισσότερες πληροφορίες
444
+ speaking_at: Μιλώντας στο
406
445
  conference_speaker_cell:
407
446
  personal_url:
408
447
  personal_website: Προσωπικός ιστότοπος
@@ -461,6 +500,7 @@ el:
461
500
  home:
462
501
  highlighted_conferences:
463
502
  active_conferences: Ενεργές διασκέψεις
503
+ conferences_button_title: Σύνδεσμος προς τη σελίδα Διασκέψεων που εμφανίζει όλες τις διασκέψεις
464
504
  see_all_conferences: Δείτε όλες τις διασκέψεις
465
505
  photo:
466
506
  image:
@@ -476,6 +516,7 @@ el:
476
516
  index:
477
517
  choose_an_option: 'Ορίστε την επιλογή εγγραφής σας:'
478
518
  login_as: Έχετε συνδεθεί ως %{name} <%{email}>
519
+ no_registrations: Δεν υπάρχουν εγγραφές
479
520
  register: Εγγραφή
480
521
  title: Τύποι εγγραφής
481
522
  shared:
@@ -522,6 +563,12 @@ el:
522
563
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τη διάσκεψη «%{resource_title}». Μπορείτε να σταματήσετε να την ακολουθείτε από τον προηγούμενο σύνδεσμο.
523
564
  email_subject: Η διάσκεψη «%{resource_title}» έρχεται σύντομα κοντά σας!
524
565
  notification_title: Η διάσκεψη <a href="%{resource_path}">%{resource_title}</a> θα πραγματοποιηθεί σε 2 ημέρες.
566
+ help:
567
+ participatory_spaces:
568
+ conferences:
569
+ contextual: "<p>Μία <strong>Διάσκεψη</strong> είναι μια συλλογή συναντήσεων που οργανώνονται σε ένα πρόγραμμα, με έναν αριθμό ατόμων που προσκαλούνται ως ομιλητές, και άλλα πεδία πληροφοριών που είναι τυπικά για μεγάλα συνέδρια ή κοινωνικές εκδηλώσεις (εγγραφή, κατάλογος των οργανισμών που υποστηρίζουν ή χρηματοδοτούν την εκδήλωση, κ.λπ.).</p> <p>Παραδείγματα: Μια Διάσκεψη μπορεί να είναι ένα σχετικό γεγονός για έναν οργανισμό και τα μέλη του, ή να πραγματοποιείται στο πλαίσιο μιας συμμετοχικής διαδικασίας ή να ακολουθεί μια διαβούλευση.</p>\n"
570
+ page: "<p>Μία <strong>Διάσκεψη</strong> είναι μια συλλογή συναντήσεων που οργανώνονται σε ένα πρόγραμμα, με έναν αριθμό ατόμων που προσκαλούνται ως ομιλητές, και άλλα πεδία πληροφοριών που είναι τυπικά για μεγάλα συνέδρια ή κοινωνικές εκδηλώσεις (εγγραφή, κατάλογος των οργανισμών που υποστηρίζουν ή χρηματοδοτούν την εκδήλωση, κ.λπ.).</p> <p>Παραδείγματα: Μια Διάσκεψη μπορεί να είναι ένα σχετικό γεγονός για έναν οργανισμό και τα μέλη του, ή να πραγματοποιείται στο πλαίσιο μιας συμμετοχικής διαδικασίας ή να ακολουθεί μια διαβούλευση.</p>\n"
571
+ title: Τι είναι οι διασκέψεις;
525
572
  log:
526
573
  value_types:
527
574
  conference_presenter:
@@ -532,6 +579,8 @@ el:
532
579
  title: Πολυμέσα και σύνδεσμοι
533
580
  menu:
534
581
  conferences: Διασκέψεις
582
+ statistics:
583
+ conferences_count: Διασκέψεις
535
584
  devise:
536
585
  mailer:
537
586
  join_conference:
@@ -3,6 +3,7 @@ eu:
3
3
  attributes:
4
4
  conference:
5
5
  assemblies_ids: Lotutako Batzarrak
6
+ available_slots: Leku libreak
6
7
  banner_image: Banner irudia
7
8
  consultations_ids: Lotutako kontsultak
8
9
  copy_categories: Kopiatu kategoriak
@@ -10,26 +11,59 @@ eu:
10
11
  copy_features: Kopiatu ezaugarriak
11
12
  decidim_scope_id: esparrua
12
13
  description: deskribapena
14
+ end_date: Amaiera-data
13
15
  hashtag: hashtag
14
16
  hero_image: Hasiera irudia
17
+ location: Kokapena
18
+ main_logo: Logo nagusia
19
+ objectives: Helburuak
15
20
  participatory_processes_ids: Parte hartutako prozesu erlazionatuak
16
21
  promoted: sustatuta
17
22
  published_at: Argitaratu at
23
+ registration_terms: Izen-ematearen irizpideak eta baldintzak
24
+ registrations_enabled: Gaitu izen-emateak
18
25
  scope_id: esparrua
19
26
  scopes_enabled: Scopes gaituta
20
27
  short_description: Deskribapen laburra
21
28
  show_statistics: Erakutsi estatistikak
22
- slogan: leloa
23
- slug: URL slug
29
+ sign_date: Sinatze-data
30
+ signature: Sinadura
31
+ signature_name: sinaduraren izena
32
+ slogan: Leloa
33
+ slug: URL laburra
34
+ start_date: Hasiera-data
24
35
  title: Izenburua
25
36
  conference_media_link:
37
+ date: Data
38
+ link: Lotura
39
+ title: Izenburua
26
40
  weight: pisu
27
41
  conference_partner:
42
+ link: Lotura
43
+ logo: Logoa
44
+ name: Izena
45
+ partner_type: Lankidetza mota
28
46
  weight: pisu
47
+ conference_registration_invite:
48
+ email: Helbide elektronikoa
49
+ name: Izena
50
+ registration_type_id: Erregistro mota
51
+ user_id: Erabiltzailea
29
52
  conference_registration_type:
53
+ description: Deskribapena
54
+ price: Prezioa
55
+ title: Izenburua
30
56
  weight: pisu
31
57
  conference_speaker:
58
+ affiliation: Kidetza
59
+ avatar: Avatarra
60
+ conference_meeting_ids: Honekin lotutako topaketak
32
61
  full_name: Izen osoa
62
+ personal_url: URL pertsonala
63
+ position: Kokapena
64
+ short_bio: Biografia laburra
65
+ twitter_handle: Twitter kontua
66
+ user_id: Erabiltzailea
33
67
  conference_user_role:
34
68
  email: Emaila
35
69
  name: izena
@@ -112,7 +146,7 @@ eu:
112
146
  error: Errore bat gertatu da konferentzia berri bat sortzean.
113
147
  success: Konferentzia ondo sortu da.
114
148
  edit:
115
- update: eguneratzearen
149
+ update: Eguneratu
116
150
  exports:
117
151
  registrations: Izen-emateak
118
152
  form:
@@ -189,6 +223,7 @@ eu:
189
223
  admin: Administrator
190
224
  collaborator: Kolaboratzaile
191
225
  moderator: Moderatzaile
226
+ valuator: Ebaluatzailea
192
227
  media_link:
193
228
  fields:
194
229
  date: data
@@ -211,6 +246,7 @@ eu:
211
246
  price: Prezioa
212
247
  registrations_count: Erregistroak zenbatzea
213
248
  title: Izenburua
249
+ weight: Kokapenaren hurrenkera
214
250
  name: Izen-emate mota
215
251
  partners:
216
252
  create:
@@ -270,6 +306,10 @@ eu:
270
306
  conferences:
271
307
  conference_registration:
272
308
  confirm: "%{user_name} Kongresuko matrikula bat baieztatu da %{resource_name} Kongresuan"
309
+ partner:
310
+ create: "%{user_name} k sortu zuen %{resource_name} aurrekontua %{space_name} esparruan"
311
+ delete: "%{user_name} k ezabatu zuen %{resource_name} erabiltzailea %{space_name} batzarrean"
312
+ update: "%{user_name} k eguneratu zuen %{resource_name} erabiltzailea %{space_name} batzarrean"
273
313
  registration_type:
274
314
  create: "%{user_name} sortutako %{resource_name} matrikula mota %{space_name} konferentzia"
275
315
  publish: "%{user_name} argitaratutako %{resource_name} izen-emate mota %{space_name} biltzarrean"
@@ -402,6 +442,7 @@ eu:
402
442
  personal_website: Webgune pertsonala
403
443
  show:
404
444
  more_info: informazio gehiago
445
+ speaking_at: Hartzen du parte hemen
405
446
  conference_speaker_cell:
406
447
  personal_url:
407
448
  personal_website: Webgune pertsonala
@@ -460,11 +501,15 @@ eu:
460
501
  home:
461
502
  highlighted_conferences:
462
503
  active_conferences: Jardunaldi aktiboak
504
+ conferences_button_title: Lotura batzar guztiak erakusten dituen Batzarren orrialdera
463
505
  see_all_conferences: Ikusi hitzaldi guztiak
464
506
  photo:
507
+ image:
508
+ attributes:
509
+ alt: Multimedia-irudia
465
510
  show:
466
- close_modal: Itxi modal
467
- photo: photo
511
+ close_modal: Itxi leihoa
512
+ photo: Irudia
468
513
  photos_list:
469
514
  show:
470
515
  related_photos: Argazkiak
@@ -472,6 +517,7 @@ eu:
472
517
  index:
473
518
  choose_an_option: 'Aukeratu zure erregistro-aukera:'
474
519
  login_as: '%{name} <%{email}> gisa erregistratuta zaude'
520
+ no_registrations: Ez dago izen-ematerik
475
521
  register: Eman izena
476
522
  title: Izen-emate motak
477
523
  shared:
@@ -508,11 +554,22 @@ eu:
508
554
  email_outro: Jakinarazpen hau jaso duzu delako "%{resource_title}" konferentzia jarraituz. Aurreko esteka estekan jarrai dezakezu.
509
555
  email_subject: Kongresuaren "%{resource_title}" erregistroak gaitu ditu.
510
556
  notification_title: <a href="%{resource_path}">%{resource_title}</a> bilkurak erregistroak gaitu ditu.
557
+ role_assigned:
558
+ email_intro: '%{role} rola esleitu zaizu <a href="%{resource_title}"> batzarrean.'
559
+ email_outro: Jakinarazpen hau jaso duzu %{role} rola esleitu dizutelako "%{resource_title}" batzarrean.
560
+ email_subject: '%{role} rola esleitu zaizu <a href="%{resource_title}"> batzarrean.'
561
+ notification_title: '%{role} rola esleitu zaizu <a href="%{resource_url}">%{resource_title}</a> batzarrean.'
511
562
  upcoming_conference:
512
563
  email_intro: '"%{resource_title}" konferentzia egiten ari da 2 egunetan. Bere orrialdearen azalpena irakur dezakezu:'
513
564
  email_outro: Jakinarazpen hau jaso duzu delako "%{resource_title}" konferentzia jarraituz. Aurreko esteka estekan jarrai dezakezu.
514
565
  email_subject: Biltzarra "%{resource_title}" dator!
515
566
  notification_title: <a href="%{resource_path}">%{resource_title}</a> konferentzia 2 egunetan egongo da.
567
+ help:
568
+ participatory_spaces:
569
+ conferences:
570
+ contextual: "</p>Programa batean antolatutako bileren bilduma bat da. Bertan, hizlari gisa gonbidatutako pertsonak daude, baita biltzar handietako edo gizarte-ekitaldietako ohiko informazio-eremuak ere (erregistroa, ekitaldia babesten edo laguntzen duten erakundeen zerrenda, etab.).</p> <p>Adibideak: Hitzaldi bat garrantzitsua izan daiteke erakunde batentzat eta haren kideentzat, edo parte hartzeko prozesu baten zati gisa edo kontsulta baten ondoren egin daiteke.</p>\n"
571
+ page: "</p>Programa batean antolatutako bileren bilduma bat da. Bertan, hizlari gisa gonbidatutako pertsonak daude, baita biltzar handietako edo gizarte-ekitaldietako ohiko informazio-eremuak ere (erregistroa, ekitaldia babesten edo laguntzen duten erakundeen zerrenda, etab.).</p> <p>Adibideak: Hitzaldi bat garrantzitsua izan daiteke erakunde batentzat eta haren kideentzat, edo parte hartzeko prozesu baten zati gisa edo kontsulta baten ondoren egin daiteke.</p>\n"
572
+ title: Zer dira hitzaldiak?
516
573
  log:
517
574
  value_types:
518
575
  conference_presenter:
@@ -523,6 +580,8 @@ eu:
523
580
  title: Media eta estekak
524
581
  menu:
525
582
  conferences: Jardunaldiak
583
+ statistics:
584
+ conferences_count: Hitzaldiak
526
585
  devise:
527
586
  mailer:
528
587
  join_conference:
@@ -3,6 +3,7 @@ fr-CA:
3
3
  attributes:
4
4
  conference:
5
5
  assemblies_ids: Assemblées associées
6
+ available_slots: Emplacements disponibles
6
7
  banner_image: Image d'en-tête
7
8
  consultations_ids: Votations associées
8
9
  copy_categories: Copier les catégories
@@ -10,26 +11,59 @@ fr-CA:
10
11
  copy_features: Copier les fonctionnalités
11
12
  decidim_scope_id: Périmètre
12
13
  description: Description
14
+ end_date: Date de fin
13
15
  hashtag: Hashtag
14
16
  hero_image: Image de la page d'accueil
17
+ location: Lieu
18
+ main_logo: Logo principal
19
+ objectives: Objectifs
15
20
  participatory_processes_ids: Concertations associées
16
21
  promoted: Mise en avant
17
22
  published_at: Publié à
23
+ registration_terms: Conditions d’inscription
24
+ registrations_enabled: Inscriptions ouvertes
18
25
  scope_id: Périmètre
19
26
  scopes_enabled: Périmètres d'application activés
20
27
  short_description: Brève description
21
28
  show_statistics: Montrer les statistiques
29
+ sign_date: Date de signature
30
+ signature: Signature
31
+ signature_name: nom de la signature
22
32
  slogan: Slogan
23
33
  slug: Slug URL
34
+ start_date: Date de début
24
35
  title: Titre
25
36
  conference_media_link:
37
+ date: Date
38
+ link: Lien
39
+ title: Titre
26
40
  weight: Rang d'affichage
27
41
  conference_partner:
42
+ link: Lien
43
+ logo: Logo
44
+ name: Nom
45
+ partner_type: Type de partenaire
28
46
  weight: Rang d'affichage
47
+ conference_registration_invite:
48
+ email: Courriel
49
+ name: Nom
50
+ registration_type_id: Type d'inscription
51
+ user_id: Utilisateur·rice
29
52
  conference_registration_type:
53
+ description: Description
54
+ price: Prix
55
+ title: Titre
30
56
  weight: Rang d'affichage
31
57
  conference_speaker:
58
+ affiliation: Affiliation
59
+ avatar: Image de profil
60
+ conference_meeting_ids: Réunions connexes
32
61
  full_name: Nom complet
62
+ personal_url: URL personnelle
63
+ position: Position
64
+ short_bio: Courte bio
65
+ twitter_handle: Gestionnaire Twitter
66
+ user_id: Utilisateur
33
67
  conference_user_role:
34
68
  email: Email
35
69
  name: Nom
@@ -212,6 +246,7 @@ fr-CA:
212
246
  price: Prix
213
247
  registrations_count: Nombre d'inscriptions
214
248
  title: Titre
249
+ weight: Rang
215
250
  name: Type d'inscription
216
251
  partners:
217
252
  create:
@@ -545,6 +580,8 @@ fr-CA:
545
580
  title: Médias et liens
546
581
  menu:
547
582
  conferences: Conférences
583
+ statistics:
584
+ conferences_count: Conférences
548
585
  devise:
549
586
  mailer:
550
587
  join_conference:
@@ -3,6 +3,7 @@ fr:
3
3
  attributes:
4
4
  conference:
5
5
  assemblies_ids: Assemblées associées
6
+ available_slots: Emplacements disponibles
6
7
  banner_image: Image d'en-tête
7
8
  consultations_ids: Votations associées
8
9
  copy_categories: Copier les catégories
@@ -10,26 +11,59 @@ fr:
10
11
  copy_features: Copier les fonctionnalités
11
12
  decidim_scope_id: Périmètre
12
13
  description: Description
14
+ end_date: Date de fin
13
15
  hashtag: Hashtag
14
16
  hero_image: Image de la page d'accueil
17
+ location: Lieu
18
+ main_logo: Logo principal
19
+ objectives: Objectifs
15
20
  participatory_processes_ids: Concertations associées
16
21
  promoted: Mise en avant
17
22
  published_at: Publié à
23
+ registration_terms: Conditions d’inscription
24
+ registrations_enabled: Inscriptions ouvertes
18
25
  scope_id: Périmètre
19
26
  scopes_enabled: Périmètres d'application activés
20
27
  short_description: Brève description
21
28
  show_statistics: Montrer les statistiques
29
+ sign_date: Date de signature
30
+ signature: Signature
31
+ signature_name: nom de la signature
22
32
  slogan: Slogan
23
33
  slug: Slug URL
34
+ start_date: Date de début
24
35
  title: Titre
25
36
  conference_media_link:
37
+ date: Date
38
+ link: Lien
39
+ title: Titre
26
40
  weight: Rang d'affichage
27
41
  conference_partner:
42
+ link: Lien
43
+ logo: Logo
44
+ name: Nom
45
+ partner_type: Type de partenaire
28
46
  weight: Rang d'affichage
47
+ conference_registration_invite:
48
+ email: Courriel
49
+ name: Nom
50
+ registration_type_id: Type d'inscription
51
+ user_id: Utilisateur·rice
29
52
  conference_registration_type:
53
+ description: Description
54
+ price: Prix
55
+ title: Titre
30
56
  weight: Rang d'affichage
31
57
  conference_speaker:
58
+ affiliation: Affiliation
59
+ avatar: Image de profil
60
+ conference_meeting_ids: Réunions connexes
32
61
  full_name: Nom complet
62
+ personal_url: URL personnelle
63
+ position: Position
64
+ short_bio: Courte bio
65
+ twitter_handle: Gestionnaire Twitter
66
+ user_id: Utilisateur
33
67
  conference_user_role:
34
68
  email: Email
35
69
  name: Nom
@@ -212,6 +246,7 @@ fr:
212
246
  price: Prix
213
247
  registrations_count: Nombre d'inscriptions
214
248
  title: Titre
249
+ weight: Rang
215
250
  name: Type d'inscription
216
251
  partners:
217
252
  create:
@@ -545,6 +580,8 @@ fr:
545
580
  title: Médias et liens
546
581
  menu:
547
582
  conferences: Conférences
583
+ statistics:
584
+ conferences_count: Conférences
548
585
  devise:
549
586
  mailer:
550
587
  join_conference: