decidim-conferences 0.29.6 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +1 -1
- data/app/commands/decidim/conferences/admin/copy_conference.rb +2 -12
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/controllers/decidim/conferences/admin/component_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +17 -4
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +0 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +3 -8
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -11
- data/app/models/decidim/conference.rb +19 -0
- data/app/models/decidim/conferences/conference_invite.rb +10 -0
- data/app/permissions/decidim/conferences/permissions.rb +11 -10
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/conference_presenter.rb +19 -0
- data/app/serializers/decidim/conferences/conference_serializer.rb +24 -0
- data/app/serializers/decidim/conferences/download_your_data_conference_invite_serializer.rb +3 -4
- data/app/serializers/decidim/conferences/download_your_data_conference_registration_serializer.rb +4 -4
- data/app/serializers/decidim/conferences/open_data_conference_serializer.rb +30 -0
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +0 -3
- data/app/views/decidim/conferences/admin/conferences/_actions.html.erb +35 -0
- data/app/views/decidim/conferences/admin/conferences/_conference_row.html.erb +28 -0
- data/app/views/decidim/conferences/admin/conferences/_conferences_thead.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +27 -8
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +14 -52
- data/app/views/decidim/conferences/admin/conferences/manage_trash.html.erb +20 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +3 -1
- data/app/views/decidim/conferences/conference_program/show.html.erb +3 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +4 -1
- data/app/views/decidim/conferences/conferences/index.html.erb +3 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +6 -6
- data/app/views/decidim/conferences/media/index.html.erb +3 -1
- data/app/views/decidim/conferences/registration_types/index.html.erb +3 -1
- data/app/views/layouts/decidim/admin/conference.html.erb +1 -1
- data/config/locales/ar.yml +16 -3
- data/config/locales/bg.yml +6 -3
- data/config/locales/ca.yml +62 -4
- data/config/locales/cs.yml +61 -3
- data/config/locales/de.yml +70 -12
- data/config/locales/el.yml +6 -3
- data/config/locales/en.yml +62 -4
- data/config/locales/es-MX.yml +64 -6
- data/config/locales/es-PY.yml +65 -7
- data/config/locales/es.yml +63 -5
- data/config/locales/eu.yml +84 -26
- data/config/locales/fi-plain.yml +63 -5
- data/config/locales/fi.yml +63 -5
- data/config/locales/fr-CA.yml +21 -4
- data/config/locales/fr.yml +22 -5
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +6 -3
- data/config/locales/id-ID.yml +6 -3
- data/config/locales/it.yml +6 -3
- data/config/locales/ja.yml +62 -4
- data/config/locales/lb.yml +4 -3
- data/config/locales/lt.yml +6 -3
- data/config/locales/lv.yml +6 -3
- data/config/locales/nl.yml +6 -3
- data/config/locales/no.yml +6 -3
- data/config/locales/pl.yml +6 -3
- data/config/locales/pt-BR.yml +7 -4
- data/config/locales/pt.yml +6 -3
- data/config/locales/ro-RO.yml +6 -5
- data/config/locales/sk.yml +6 -3
- data/config/locales/sv.yml +37 -41
- data/config/locales/tr-TR.yml +6 -3
- data/config/locales/zh-CN.yml +6 -3
- data/config/locales/zh-TW.yml +6 -3
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +1 -1
- data/db/migrate/20240822161330_add_deleted_at_to_decidim_conferences.rb +8 -0
- data/decidim-conferences.gemspec +1 -2
- data/lib/decidim/api/conference_media_link_type.rb +4 -4
- data/lib/decidim/api/conference_partner_type.rb +4 -4
- data/lib/decidim/api/conference_speaker_type.rb +7 -8
- data/lib/decidim/api/conference_type.rb +17 -19
- data/lib/decidim/conferences/admin_engine.rb +87 -58
- data/lib/decidim/conferences/conference_diploma_pdf.rb +242 -0
- data/lib/decidim/conferences/engine.rb +6 -1
- data/lib/decidim/conferences/menu.rb +23 -9
- data/lib/decidim/conferences/participatory_space.rb +13 -0
- data/lib/decidim/conferences/seeds.rb +134 -115
- data/lib/decidim/conferences/test/factories.rb +10 -9
- data/lib/decidim/conferences/version.rb +1 -1
- data/lib/decidim/conferences.rb +1 -0
- metadata +23 -29
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
- data/config/locales/ca-IT.yml +0 -603
data/config/locales/de.yml
CHANGED
|
@@ -21,9 +21,7 @@ de:
|
|
|
21
21
|
promoted: Gefördert
|
|
22
22
|
published_at: Veröffentlicht am
|
|
23
23
|
registration_terms: Registrierungsbedingungen
|
|
24
|
-
registrations_enabled:
|
|
25
|
-
scope_id: Umfang
|
|
26
|
-
scopes_enabled: Bereiche aktiviert
|
|
24
|
+
registrations_enabled: Registrierungen aktiviert
|
|
27
25
|
short_description: Kurze Beschreibung
|
|
28
26
|
show_statistics: Zeige Statistiken
|
|
29
27
|
sign_date: Unterzeichnungsdatum
|
|
@@ -92,6 +90,7 @@ de:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Bestätigen
|
|
93
|
+
confirm_delete_conference: Sind Sie sicher, dass Sie diese Konferenz löschen möchten? Wenn Sie Ihre Meinung ändern, können Sie sie später wiederherstellen.
|
|
95
94
|
new_conference: Neue Konferenz
|
|
96
95
|
new_conference_user_role: Neuer Konferenz-Admin
|
|
97
96
|
new_media_link: Neuer Medienlink
|
|
@@ -99,11 +98,12 @@ de:
|
|
|
99
98
|
new_registration_type: Neuer Registrierungstyp
|
|
100
99
|
new_speaker: Neuer Redner
|
|
101
100
|
send_diplomas: Senden Sie eine Teilnahmebestätigung
|
|
101
|
+
view_deleted_conferences: Gelöschte Konferenzen anzeigen
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Kopieren
|
|
105
|
-
select:
|
|
106
|
-
title: Konferenz
|
|
105
|
+
select: Wählen Sie die Daten aus, die Sie duplizieren möchten
|
|
106
|
+
title: Doppelte Konferenz
|
|
107
107
|
conference_publications:
|
|
108
108
|
create:
|
|
109
109
|
error: Beim Veröffentlichen dieser Konferenz ist ein Fehler aufgetreten.
|
|
@@ -168,6 +168,8 @@ de:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Veröffentlicht
|
|
170
170
|
unpublished: Nicht veröffentlicht
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Gelöschte Konferenzen
|
|
171
173
|
new:
|
|
172
174
|
create: Erstellen
|
|
173
175
|
title: Konferenz
|
|
@@ -201,7 +203,6 @@ de:
|
|
|
201
203
|
attachment_collections: Ordner
|
|
202
204
|
attachment_files: Dateien
|
|
203
205
|
attachments: Anhänge
|
|
204
|
-
categories: Kategorien
|
|
205
206
|
components: Komponenten
|
|
206
207
|
conference_admins: Konferenzadministratoren
|
|
207
208
|
conference_invites: Lädt ein
|
|
@@ -299,13 +300,21 @@ de:
|
|
|
299
300
|
update:
|
|
300
301
|
error: Bei einem Fehler ist ein Registrierungstyp für diese Konferenz aktualisiert worden.
|
|
301
302
|
success: Die Registrierung wurde für diese Konferenz erfolgreich aktualisiert.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: Alle Konferenzen
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Konferenzen
|
|
308
|
+
conferences_deleted: Gelöschte Konferenzen
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Konferenzen können nur gelöscht werden, wenn der Status "Nicht veröffentlicht" ist.
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} hat die Konferenz %{resource_name} erstellt"
|
|
307
314
|
publish: "%{user_name} hat die Konferenz %{resource_name} veröffentlicht"
|
|
315
|
+
restore: "%{user_name} hat die Konferenz %{resource_name} wiederhergestellt"
|
|
308
316
|
send_conference_diplomas: "%{user_name} hat Teilnahmebescheinigungen an die Teilnehmenden der Konferenz %{resource_name} gesendet"
|
|
317
|
+
soft_delete: "%{user_name} hat die Konferenz %{resource_name} in den Papierkorb verschoben"
|
|
309
318
|
unpublish: "%{user_name} hat die Konferenz %{resource_name} auf \"unveröffentlicht\" gesetzt"
|
|
310
319
|
update: "%{user_name} hat die Konferenz %{resource_name} aktualisiert"
|
|
311
320
|
update_diploma: "%{user_name} hat die Konfiguration der Teilnahmebescheinigungen für die Konferenz %{resource_name} aktualisiert"
|
|
@@ -344,7 +353,7 @@ de:
|
|
|
344
353
|
admin:
|
|
345
354
|
conference_copies:
|
|
346
355
|
form:
|
|
347
|
-
slug_help_html: 'URL-Slugs werden
|
|
356
|
+
slug_help_html: 'URL-Slugs werden zum Generieren der URLs verwendet, die auf diese Konferenz verweisen. Akzeptiert werden nur Buchstaben, Zahlen und Bindestriche und es muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
|
348
357
|
conference_invites:
|
|
349
358
|
create:
|
|
350
359
|
error: Beim Einladen des Benutzers zur Teilnahme an der Konferenz ist ein Problem aufgetreten.
|
|
@@ -376,10 +385,13 @@ de:
|
|
|
376
385
|
conferences:
|
|
377
386
|
form:
|
|
378
387
|
available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben.
|
|
388
|
+
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
389
|
+
no_taxonomy_filters_found: Keine Klassifizierungsfilter gefunden.
|
|
379
390
|
registrations_count:
|
|
380
391
|
one: Es gab 1 Registrierung.
|
|
381
392
|
other: Es gab %{count} Registrierungen.
|
|
382
393
|
slug_help_html: 'URL-Slugs werden verwendet, um URLs zu generieren, die auf diese Konferenz verweisen. Akzeptiert nur Buchstaben, Zahlen und Bindestriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
|
394
|
+
taxonomies: Klassifizierungen
|
|
383
395
|
content_blocks:
|
|
384
396
|
highlighted_conferences:
|
|
385
397
|
max_results: Maximale Anzahl angezeigter Elemente
|
|
@@ -403,7 +415,7 @@ de:
|
|
|
403
415
|
title: Registrierungsarten
|
|
404
416
|
send_conference_diploma_mailer:
|
|
405
417
|
diploma:
|
|
406
|
-
diploma_html: Die
|
|
418
|
+
diploma_html: Die Teilnahmebescheinigung für die Konferenz <a href="%{url}">%{title}</a> finden Sie in den Anhängen.
|
|
407
419
|
diploma_user:
|
|
408
420
|
attendance_verified_by: Anwesenheit überprüft durch
|
|
409
421
|
certificate_of_attendance: Teilnahmebestätigung
|
|
@@ -528,6 +540,25 @@ de:
|
|
|
528
540
|
objectives: Ziele
|
|
529
541
|
related_assemblies: Ähnliche Gremien
|
|
530
542
|
related_participatory_processes: Ähnliche Beteiligungsprozesse
|
|
543
|
+
download_your_data:
|
|
544
|
+
help:
|
|
545
|
+
conference_invites:
|
|
546
|
+
accepted_at: Das Datum, an dem die Konferenzeinladung angenommen wurde
|
|
547
|
+
conference: Die Konferenz, zu der diese Einladung versendet wurde
|
|
548
|
+
confirmed_at: Das Datum, an dem diese Einladung bestätigt wurde
|
|
549
|
+
created_at: Das Datum, an dem diese Einladung erstellt wurde
|
|
550
|
+
id: Der eindeutige Bezeichnung der Konferenzeinladung
|
|
551
|
+
registration_type: Die Art der Registrierung für diese Konferenz, zu der eingeladen wurde
|
|
552
|
+
rejected_at: Das Datum, an dem die Konferenzeinladung abgelehnt wurde
|
|
553
|
+
sent_at: Das Datum, an dem diese Konferenzeinladung versendet wurde
|
|
554
|
+
updated_at: Das Datum, an dem diese Einladung zuletzt Mal aktualisiert wurde
|
|
555
|
+
conference_registrations:
|
|
556
|
+
conference: Die Konferenz, zu der dies gehört
|
|
557
|
+
confirmed_at: Das Datum, an dem diese Registrierung bestätigt wurde
|
|
558
|
+
created_at: Das Datum, an dem diese Registrierung erstellt wurde
|
|
559
|
+
id: Die eindeutige Kennung der Konferenzanmeldungen
|
|
560
|
+
registration_type: Die Art der Registrierung, zu der diese gehört
|
|
561
|
+
updated_at: Das Datum, an dem diese Registrierung zuletzt Mal aktualisiert wurde
|
|
531
562
|
events:
|
|
532
563
|
conferences:
|
|
533
564
|
conference_registration_confirmed:
|
|
@@ -545,10 +576,10 @@ de:
|
|
|
545
576
|
email_subject: Die Konferenz "%{resource_title}" wurde aktualisiert
|
|
546
577
|
notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> wurde aktualisiert.
|
|
547
578
|
registrations_enabled:
|
|
548
|
-
email_intro: '
|
|
549
|
-
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
|
|
550
|
-
email_subject: Die Konferenz "%{resource_title}" hat
|
|
551
|
-
notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> hat
|
|
579
|
+
email_intro: 'Die Konferenz "%{resource_title}" hat Registrierungen aktiviert. Sie können sich auf der Konferenz-Seite registrieren:'
|
|
580
|
+
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.
|
|
581
|
+
email_subject: Die Konferenz "%{resource_title}" hat Registrierungen aktiviert.
|
|
582
|
+
notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> hat Registrierungen aktiviert.
|
|
552
583
|
role_assigned:
|
|
553
584
|
email_intro: Sie wurden als %{role} für die Konferenz "%{resource_title}" ausgewählt.
|
|
554
585
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein %{role} der Konferenz "%{resource_title}" sind.
|
|
@@ -575,6 +606,33 @@ de:
|
|
|
575
606
|
title: Medien und Links
|
|
576
607
|
menu:
|
|
577
608
|
conferences: Konferenzen
|
|
609
|
+
open_data:
|
|
610
|
+
help:
|
|
611
|
+
conferences:
|
|
612
|
+
created_at: Erstellungsdatum dieses Bereichs
|
|
613
|
+
decidim_scope_id: Das Thema der Konferenz
|
|
614
|
+
description: Eine lange Beschreibung der Konferenz
|
|
615
|
+
end_date: Das Datum, an dem diese Konferenz endet.
|
|
616
|
+
follows_count: Die Anzahl Nutzende, die diesem Raum folgen
|
|
617
|
+
hashtag: Der Konferenz-Hashtag, verwendet für Twitter/X
|
|
618
|
+
id: Die eindeutige Bezeichnung dieser Konferenz
|
|
619
|
+
location: Der Tagungsort, wo diese Konferenz stattfinden wird.
|
|
620
|
+
objectives: Die Ziele dieser Konferenz.
|
|
621
|
+
promoted: Ob die Konferenz hervorgehoben ist oder nicht
|
|
622
|
+
published_at: Veröffentlichungsdatum des Bereichs
|
|
623
|
+
reference: Die eindeutige Referenz des Bereichs
|
|
624
|
+
remote_banner_image_url: Die URL des Konferenz-Bannerbildes
|
|
625
|
+
remote_hero_image_url: Die URL des Konferenztitelbildes
|
|
626
|
+
scope: Das Thema der Konferenz
|
|
627
|
+
scopes_enabled: Ob Themen aktiviert sind oder nicht
|
|
628
|
+
short_description: Eine kurze Beschreibung der Konferenz
|
|
629
|
+
slogan: Das Motto dieser Konferenz
|
|
630
|
+
slug: Der URL-Slug der Konferenz (verwendet für Identifikationszwecke in der URL)
|
|
631
|
+
start_date: Das Datum, an dem diese Konferenz beginnt.
|
|
632
|
+
taxonomies: Die Klassifizierungen der Konferenz
|
|
633
|
+
title: Der Titel der Konferenz
|
|
634
|
+
updated_at: Letztes Aktualisierungsdatum dieses Bereichs
|
|
635
|
+
url: Die URL des Bereichs
|
|
578
636
|
statistics:
|
|
579
637
|
conferences_count: Konferenzen
|
|
580
638
|
devise:
|
data/config/locales/el.yml
CHANGED
|
@@ -22,8 +22,6 @@ el:
|
|
|
22
22
|
published_at: Δημοσιεύτηκε στις
|
|
23
23
|
registration_terms: Όροι εγγραφής
|
|
24
24
|
registrations_enabled: Ενεργοποιημένες εγγραφές
|
|
25
|
-
scope_id: Πεδίο εφαρμογής
|
|
26
|
-
scopes_enabled: Ενεργοποιημένα πεδία εφαρμογών
|
|
27
25
|
short_description: Σύντομη περιγραφή
|
|
28
26
|
show_statistics: Εμφάνιση στατιστικών
|
|
29
27
|
sign_date: Ημερομηνία υπογραφής
|
|
@@ -93,6 +91,8 @@ el:
|
|
|
93
91
|
conference_copies:
|
|
94
92
|
new:
|
|
95
93
|
copy: Αντιγραφή
|
|
94
|
+
select: Επιλέξτε ποια δεδομένα θέλετε να αντιγράψετε
|
|
95
|
+
title: Αντιγραφή διάσκεψης
|
|
96
96
|
conference_publications:
|
|
97
97
|
create:
|
|
98
98
|
error: Υπήρξε ένα πρόβλημα κατά τη δημοσίευση αυτής της διάσκεψης.
|
|
@@ -152,6 +152,10 @@ el:
|
|
|
152
152
|
update:
|
|
153
153
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της διάσκεψης.
|
|
154
154
|
success: Η διάσκεψη ενημερώθηκε με επιτυχία.
|
|
155
|
+
conferences_copies:
|
|
156
|
+
create:
|
|
157
|
+
error: Υπήρξε ένα πρόβλημα κατά την αντιγραφή αυτής της διάσκεψης.
|
|
158
|
+
success: Η διάσκεψη αντιγράφτηκε με επιτυχία.
|
|
155
159
|
media_links:
|
|
156
160
|
create:
|
|
157
161
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία ενός νέου συνδέσμου πολυμέσων.
|
|
@@ -167,7 +171,6 @@ el:
|
|
|
167
171
|
attachment_collections: Φάκελοι
|
|
168
172
|
attachment_files: Αρχεία
|
|
169
173
|
attachments: Συνημμένα
|
|
170
|
-
categories: Κατηγορίες
|
|
171
174
|
components: Στοιχεία
|
|
172
175
|
conference_admins: Διαχειριστές διάσκεψης
|
|
173
176
|
conference_invites: Προσκλήσεις
|
data/config/locales/en.yml
CHANGED
|
@@ -22,8 +22,6 @@ en:
|
|
|
22
22
|
published_at: Published at
|
|
23
23
|
registration_terms: Registration terms
|
|
24
24
|
registrations_enabled: Registrations enabled
|
|
25
|
-
scope_id: Scope
|
|
26
|
-
scopes_enabled: Scopes enabled
|
|
27
25
|
short_description: Short description
|
|
28
26
|
show_statistics: Show statistics
|
|
29
27
|
sign_date: Sign date
|
|
@@ -92,6 +90,7 @@ en:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Confirm
|
|
93
|
+
confirm_delete_conference: Are you sure you want to delete this conference? If you change your mind, you can restore it later.
|
|
95
94
|
new_conference: New conference
|
|
96
95
|
new_conference_user_role: New conference admin
|
|
97
96
|
new_media_link: New media link
|
|
@@ -99,6 +98,7 @@ en:
|
|
|
99
98
|
new_registration_type: New registration type
|
|
100
99
|
new_speaker: New speaker
|
|
101
100
|
send_diplomas: Send certificates of attendance
|
|
101
|
+
view_deleted_conferences: View deleted conferences
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Copy
|
|
@@ -168,6 +168,8 @@ en:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Published
|
|
170
170
|
unpublished: Unpublished
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Deleted conferences
|
|
171
173
|
new:
|
|
172
174
|
create: Create
|
|
173
175
|
title: Conference
|
|
@@ -201,7 +203,6 @@ en:
|
|
|
201
203
|
attachment_collections: Folders
|
|
202
204
|
attachment_files: Files
|
|
203
205
|
attachments: Attachments
|
|
204
|
-
categories: Categories
|
|
205
206
|
components: Components
|
|
206
207
|
conference_admins: Conference admins
|
|
207
208
|
conference_invites: Invites
|
|
@@ -299,13 +300,21 @@ en:
|
|
|
299
300
|
update:
|
|
300
301
|
error: There was a problem updating a registration type for this conference.
|
|
301
302
|
success: Conference registration type successfully updated.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: All conferences
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Conferences
|
|
308
|
+
conferences_deleted: Deleted conferences
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Conferences can only be deleted if status is "Unpublished".
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} created the %{resource_name} conference"
|
|
307
314
|
publish: "%{user_name} published the %{resource_name} conference"
|
|
315
|
+
restore: "%{user_name} restored the %{resource_name} conference"
|
|
308
316
|
send_conference_diplomas: "%{user_name} sent certificates of attendance to the %{resource_name} conference atendees"
|
|
317
|
+
soft_delete: "%{user_name} moved to trash the %{resource_name} conference"
|
|
309
318
|
unpublish: "%{user_name} unpublished the %{resource_name} conference"
|
|
310
319
|
update: "%{user_name} updated the %{resource_name} conference"
|
|
311
320
|
update_diploma: "%{user_name} updated the certificates of attendance configuration for %{resource_name} conference"
|
|
@@ -376,10 +385,13 @@ en:
|
|
|
376
385
|
conferences:
|
|
377
386
|
form:
|
|
378
387
|
available_slots_help: Leave it to 0 if you have unlimited slots available.
|
|
388
|
+
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
389
|
+
no_taxonomy_filters_found: No taxonomy filters found.
|
|
379
390
|
registrations_count:
|
|
380
391
|
one: There has been 1 registration.
|
|
381
|
-
other: There
|
|
392
|
+
other: There has been %{count} registrations.
|
|
382
393
|
slug_help_html: 'URL slugs are used to generate the URLs that point to this conference. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
|
394
|
+
taxonomies: Taxonomies
|
|
383
395
|
content_blocks:
|
|
384
396
|
highlighted_conferences:
|
|
385
397
|
max_results: Maximum amount of elements to show
|
|
@@ -528,6 +540,25 @@ en:
|
|
|
528
540
|
objectives: Objectives
|
|
529
541
|
related_assemblies: Related assemblies
|
|
530
542
|
related_participatory_processes: Related participatory processes
|
|
543
|
+
download_your_data:
|
|
544
|
+
help:
|
|
545
|
+
conference_invites:
|
|
546
|
+
accepted_at: The date when the conference invitation was accepted
|
|
547
|
+
conference: The conference where this invitation was sent
|
|
548
|
+
confirmed_at: The date when this invitation was confirmed
|
|
549
|
+
created_at: The date when this invitation was created
|
|
550
|
+
id: The unique identifier of the conference invitation
|
|
551
|
+
registration_type: The type of the registration for this conference that was sent
|
|
552
|
+
rejected_at: The date when the conference invitation was rejected
|
|
553
|
+
sent_at: The date when this conference invitation was sent
|
|
554
|
+
updated_at: The date when this invitation was updated for the last time
|
|
555
|
+
conference_registrations:
|
|
556
|
+
conference: The conference that this belongs to
|
|
557
|
+
confirmed_at: The date when this registration was confirmed
|
|
558
|
+
created_at: The date when this registration was created
|
|
559
|
+
id: The unique identifier of the conference regisrations
|
|
560
|
+
registration_type: The type of registration that this belongs to
|
|
561
|
+
updated_at: The date when this registration was updated for the last time
|
|
531
562
|
events:
|
|
532
563
|
conferences:
|
|
533
564
|
conference_registration_confirmed:
|
|
@@ -575,6 +606,33 @@ en:
|
|
|
575
606
|
title: Media and Links
|
|
576
607
|
menu:
|
|
577
608
|
conferences: Conferences
|
|
609
|
+
open_data:
|
|
610
|
+
help:
|
|
611
|
+
conferences:
|
|
612
|
+
created_at: The date this space was created
|
|
613
|
+
decidim_scope_id: The scope of the conference
|
|
614
|
+
description: A long description of the conference
|
|
615
|
+
end_date: The date when this conference ends.
|
|
616
|
+
follows_count: The number of users following this space
|
|
617
|
+
hashtag: The conference hashtag, used for Twitter/X
|
|
618
|
+
id: The unique identifier of this conference
|
|
619
|
+
location: The conference location. Where this conference will take place.
|
|
620
|
+
objectives: The objectives for this conference. What is the goal.
|
|
621
|
+
promoted: Wheter the conference is promoted or not
|
|
622
|
+
published_at: The date this space was published
|
|
623
|
+
reference: The unique reference of the space
|
|
624
|
+
remote_banner_image_url: The URL of the conference banner image
|
|
625
|
+
remote_hero_image_url: The URL of the conference hero image
|
|
626
|
+
scope: The scope of the conference
|
|
627
|
+
scopes_enabled: Weather the scopes are enabled or not
|
|
628
|
+
short_description: A short description of the conference
|
|
629
|
+
slogan: The slogan for this conference
|
|
630
|
+
slug: The conference slug (used for identification purposes, for the URL)
|
|
631
|
+
start_date: The date when this conference starts.
|
|
632
|
+
taxonomies: The taxonomies of the conference
|
|
633
|
+
title: The conference title
|
|
634
|
+
updated_at: The last date this space was updated
|
|
635
|
+
url: The URL of the space
|
|
578
636
|
statistics:
|
|
579
637
|
conferences_count: Conferences
|
|
580
638
|
devise:
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -22,8 +22,6 @@ es-MX:
|
|
|
22
22
|
published_at: Publicada en
|
|
23
23
|
registration_terms: Términos y condiciones de inscripción
|
|
24
24
|
registrations_enabled: Habilitar inscripciones
|
|
25
|
-
scope_id: Ámbito
|
|
26
|
-
scopes_enabled: Ámbitos habilitados
|
|
27
25
|
short_description: Breve descripción
|
|
28
26
|
show_statistics: Mostrar estadísticas
|
|
29
27
|
sign_date: Fecha de firma
|
|
@@ -92,6 +90,7 @@ es-MX:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Confirmar
|
|
93
|
+
confirm_delete_conference: '¿Seguro que quieres eliminar esta jornada? Si cambias de opinión, puedes restaurarla más tarde.'
|
|
95
94
|
new_conference: Nueva conferencia
|
|
96
95
|
new_conference_user_role: Añadir administradora
|
|
97
96
|
new_media_link: Añadir enlace multimedia
|
|
@@ -99,11 +98,12 @@ es-MX:
|
|
|
99
98
|
new_registration_type: Añadir tipo de inscripción
|
|
100
99
|
new_speaker: Añadir ponente
|
|
101
100
|
send_diplomas: Enviar certificados de asistencia.
|
|
101
|
+
view_deleted_conferences: Ver las jornadas eliminadas
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Copiar
|
|
105
105
|
select: Selecciona qué datos quieres duplicar
|
|
106
|
-
title:
|
|
106
|
+
title: Conferencia duplicada
|
|
107
107
|
conference_publications:
|
|
108
108
|
create:
|
|
109
109
|
error: Hubo un error al publicar esta conferencia.
|
|
@@ -168,6 +168,8 @@ es-MX:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Publicado
|
|
170
170
|
unpublished: Despublicada
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Jornadas eliminadas
|
|
171
173
|
new:
|
|
172
174
|
create: Crear
|
|
173
175
|
title: Conferencia
|
|
@@ -176,8 +178,8 @@ es-MX:
|
|
|
176
178
|
success: Conferencia actualizada con éxito.
|
|
177
179
|
conferences_copies:
|
|
178
180
|
create:
|
|
179
|
-
error:
|
|
180
|
-
success:
|
|
181
|
+
error: Hubo un error al duplicar esta conferencia.
|
|
182
|
+
success: Conferencia duplicada con éxito.
|
|
181
183
|
media_links:
|
|
182
184
|
create:
|
|
183
185
|
error: Se ha producido un error al crear un nuevo enlace multimedia.
|
|
@@ -201,7 +203,6 @@ es-MX:
|
|
|
201
203
|
attachment_collections: Carpetas
|
|
202
204
|
attachment_files: Archivos
|
|
203
205
|
attachments: Archivos adjuntos
|
|
204
|
-
categories: Categorías
|
|
205
206
|
components: Componentes
|
|
206
207
|
conference_admins: Administradores de conferencia
|
|
207
208
|
conference_invites: Invita
|
|
@@ -299,13 +300,21 @@ es-MX:
|
|
|
299
300
|
update:
|
|
300
301
|
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
|
301
302
|
success: Tipo de registro actualizado con éxito para esta conferencia.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: Todas las jornadas
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Conferencias
|
|
308
|
+
conferences_deleted: Jornadas eliminadas
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Las jornadas solo se pueden eliminar si su estado es 'Despublicada'.
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} creó la conferencia %{resource_name}"
|
|
307
314
|
publish: "%{user_name} ha publicado la conferencia %{resource_name}"
|
|
315
|
+
restore: "%{user_name} restauró la jornada %{resource_name}"
|
|
308
316
|
send_conference_diplomas: "%{user_name} certificados de asistencia enviados a los asistentes a %{resource_name} conferencia"
|
|
317
|
+
soft_delete: "%{user_name} ha movido a la papelera la jornada %{resource_name}"
|
|
309
318
|
unpublish: "%{user_name} ha despublicado la conferencia %{resource_name}"
|
|
310
319
|
update: "%{user_name} ha actualizado la conferencia %{resource_name}"
|
|
311
320
|
update_diploma: "%{user_name} actualización de la configuración de certificados de asistencia para %{resource_name} conferencia."
|
|
@@ -376,10 +385,13 @@ es-MX:
|
|
|
376
385
|
conferences:
|
|
377
386
|
form:
|
|
378
387
|
available_slots_help: Déjalo en 0 si tienes plazas ilimitadas disponibles.
|
|
388
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
389
|
+
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
|
379
390
|
registrations_count:
|
|
380
391
|
one: Ha habido 1 inscripción.
|
|
381
392
|
other: Ha habido %{count} inscripciones.
|
|
382
393
|
slug_help_html: 'Las URL amigables se utilizan para generar las URL que apuntan a esta conferencia. Solo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
|
394
|
+
taxonomies: Taxonomías
|
|
383
395
|
content_blocks:
|
|
384
396
|
highlighted_conferences:
|
|
385
397
|
max_results: Cantidad máxima de elementos a mostrar
|
|
@@ -528,6 +540,25 @@ es-MX:
|
|
|
528
540
|
objectives: Objetivos
|
|
529
541
|
related_assemblies: Asambleas relacionadas
|
|
530
542
|
related_participatory_processes: Procesos participativos relacionados
|
|
543
|
+
download_your_data:
|
|
544
|
+
help:
|
|
545
|
+
conference_invites:
|
|
546
|
+
accepted_at: La fecha en que la invitación a la jornada fue aceptada
|
|
547
|
+
conference: La jornada a la que corresponde esta invitación
|
|
548
|
+
confirmed_at: La fecha en la que se confirmó la invitación
|
|
549
|
+
created_at: La fecha en la que se creó la invitación
|
|
550
|
+
id: El identificador único de la invitación a la jornada
|
|
551
|
+
registration_type: El tipo de inscripción enviada para esta jornada
|
|
552
|
+
rejected_at: La fecha en que la invitación a la jornada fue rechazada
|
|
553
|
+
sent_at: La fecha en que esta invitación a la conferencia fue enviada
|
|
554
|
+
updated_at: La fecha en que esta invitación se actualizó por última vez
|
|
555
|
+
conference_registrations:
|
|
556
|
+
conference: La jornada a la que pertenece esta inscripción
|
|
557
|
+
confirmed_at: La fecha en la que se confirmó la inscripción
|
|
558
|
+
created_at: La fecha en la que se creó la inscripción
|
|
559
|
+
id: El identificador único de la inscripción a la jornada
|
|
560
|
+
registration_type: El tipo de inscripción habilitado para esta jornada
|
|
561
|
+
updated_at: La fecha en que esta inscripción se actualizó por última vez
|
|
531
562
|
events:
|
|
532
563
|
conferences:
|
|
533
564
|
conference_registration_confirmed:
|
|
@@ -575,6 +606,33 @@ es-MX:
|
|
|
575
606
|
title: Multimedia y enlaces
|
|
576
607
|
menu:
|
|
577
608
|
conferences: Conferencias
|
|
609
|
+
open_data:
|
|
610
|
+
help:
|
|
611
|
+
conferences:
|
|
612
|
+
created_at: La fecha en la que se creó esta jornada
|
|
613
|
+
decidim_scope_id: El ámbito territorial de la jornada
|
|
614
|
+
description: Una descripción larga de la jornada
|
|
615
|
+
end_date: La fecha en la que finalizó esta jornada.
|
|
616
|
+
follows_count: El número de usuarias que siguen esta jornada
|
|
617
|
+
hashtag: La etiqueta que utiliza la jornada en Twitter/X
|
|
618
|
+
id: El identificador único de la jornada
|
|
619
|
+
location: El lugar de celebración de la jornada. Donde se llevó a cabo esta jornada.
|
|
620
|
+
objectives: Los objetivos de esta jornada. Cuál fue la meta.
|
|
621
|
+
promoted: Si la jornada está destacada o no
|
|
622
|
+
published_at: La fecha en la que se publicó esta jornada
|
|
623
|
+
reference: La referencia única de la jornada
|
|
624
|
+
remote_banner_image_url: La URL de la imagen de la cabecera de la jornada
|
|
625
|
+
remote_hero_image_url: La URL de la imagen principal de la jornada
|
|
626
|
+
scope: El ámbito territorial de la jornada
|
|
627
|
+
scopes_enabled: Si el ámbito territorial está habilitado o no
|
|
628
|
+
short_description: Una breve descripción de la jornada
|
|
629
|
+
slogan: El lema de esta jornada
|
|
630
|
+
slug: El nombre corto de la jornada (usado para fines de identificación, para la URL)
|
|
631
|
+
start_date: La fecha en la que comenzó esta jornada.
|
|
632
|
+
taxonomies: Las taxonomías de la jornada
|
|
633
|
+
title: El título de la jornada
|
|
634
|
+
updated_at: La fecha de la última actualización de esta jornada
|
|
635
|
+
url: La URL de la jornada
|
|
578
636
|
statistics:
|
|
579
637
|
conferences_count: Jornadas
|
|
580
638
|
devise:
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -22,8 +22,6 @@ es-PY:
|
|
|
22
22
|
published_at: Publicado en
|
|
23
23
|
registration_terms: Términos y condiciones de inscripción
|
|
24
24
|
registrations_enabled: Habilitar inscripciones
|
|
25
|
-
scope_id: Alcance
|
|
26
|
-
scopes_enabled: Ámbitos habilitados
|
|
27
25
|
short_description: Breve descripción
|
|
28
26
|
show_statistics: Mostrar estadísticas
|
|
29
27
|
sign_date: Fecha de firma
|
|
@@ -92,6 +90,7 @@ es-PY:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Confirmar
|
|
93
|
+
confirm_delete_conference: '¿Seguro que quieres eliminar esta jornada? Si cambias de opinión, puedes restaurarla más tarde.'
|
|
95
94
|
new_conference: Nueva conferencia
|
|
96
95
|
new_conference_user_role: Añadir administradora
|
|
97
96
|
new_media_link: Añadir enlace multimedia
|
|
@@ -99,11 +98,12 @@ es-PY:
|
|
|
99
98
|
new_registration_type: Añadir tipo de inscripción
|
|
100
99
|
new_speaker: Añadir ponente
|
|
101
100
|
send_diplomas: Enviar certificados de asistencia.
|
|
101
|
+
view_deleted_conferences: Ver las jornadas eliminadas
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Dupdo
|
|
105
|
-
select:
|
|
106
|
-
title:
|
|
105
|
+
select: Seleccione qué datos quiere duplicar
|
|
106
|
+
title: Conferencia duplicada
|
|
107
107
|
conference_publications:
|
|
108
108
|
create:
|
|
109
109
|
error: Hubo un error al publicar esta conferencia.
|
|
@@ -168,6 +168,8 @@ es-PY:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Publicado
|
|
170
170
|
unpublished: Despublicada
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Jornadas eliminadas
|
|
171
173
|
new:
|
|
172
174
|
create: Crear
|
|
173
175
|
title: Conferencia
|
|
@@ -176,8 +178,8 @@ es-PY:
|
|
|
176
178
|
success: Conferencia actualizada con éxito
|
|
177
179
|
conferences_copies:
|
|
178
180
|
create:
|
|
179
|
-
error:
|
|
180
|
-
success:
|
|
181
|
+
error: Hubo un error al duplicar esta conferencia.
|
|
182
|
+
success: Conferencia duplicada con éxito.
|
|
181
183
|
media_links:
|
|
182
184
|
create:
|
|
183
185
|
error: Se ha producido un error al crear un nuevo enlace de medios.
|
|
@@ -201,7 +203,6 @@ es-PY:
|
|
|
201
203
|
attachment_collections: Carpetas
|
|
202
204
|
attachment_files: Archivos
|
|
203
205
|
attachments: Archivos adjuntos
|
|
204
|
-
categories: Categorías
|
|
205
206
|
components: Componentes
|
|
206
207
|
conference_admins: Administradores de conferencia
|
|
207
208
|
conference_invites: Invita
|
|
@@ -299,13 +300,21 @@ es-PY:
|
|
|
299
300
|
update:
|
|
300
301
|
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
|
301
302
|
success: Tipo de registro actualizado con éxito para esta conferencia.
|
|
303
|
+
taxonomy_filters:
|
|
304
|
+
space_filter_for:
|
|
305
|
+
conferences: Todas las jornadas
|
|
302
306
|
titles:
|
|
303
307
|
conferences: Conferencias
|
|
308
|
+
conferences_deleted: Jornadas eliminadas
|
|
309
|
+
tooltips:
|
|
310
|
+
deleted_conferences_info: Las jornadas solo se pueden eliminar si su estado es 'Despublicada'.
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} creó la %{resource_name} conferencia"
|
|
307
314
|
publish: "%{user_name} publicado la %{resource_name} conferencia"
|
|
315
|
+
restore: "%{user_name} restauró la jornada %{resource_name}"
|
|
308
316
|
send_conference_diplomas: "%{user_name} certificados de asistencia enviados a los asistentes a %{resource_name} conferencia"
|
|
317
|
+
soft_delete: "%{user_name} ha movido a la papelera la jornada %{resource_name}"
|
|
309
318
|
unpublish: "%{user_name} inédito la %{resource_name} conferencia."
|
|
310
319
|
update: "%{user_name} actualizado la %{resource_name} conferencia"
|
|
311
320
|
update_diploma: "%{user_name} actualización de la configuración de certificados de asistencia para %{resource_name} conferencia."
|
|
@@ -376,10 +385,13 @@ es-PY:
|
|
|
376
385
|
conferences:
|
|
377
386
|
form:
|
|
378
387
|
available_slots_help: Déjalo en 0 si tienes ranuras ilimitadas disponibles.
|
|
388
|
+
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
389
|
+
no_taxonomy_filters_found: No se han encontrado filtros de taxonomía.
|
|
379
390
|
registrations_count:
|
|
380
391
|
one: Ha habido 1 registro.
|
|
381
392
|
other: Ha habido %{count} registros.
|
|
382
393
|
slug_help_html: 'Las URL amigables se utilizan para generar las URL que apuntan a esta conferencia. Solo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
|
394
|
+
taxonomies: Taxonomías
|
|
383
395
|
content_blocks:
|
|
384
396
|
highlighted_conferences:
|
|
385
397
|
max_results: Cantidad máxima de elementos a mostrar
|
|
@@ -528,6 +540,25 @@ es-PY:
|
|
|
528
540
|
objectives: Objetivos
|
|
529
541
|
related_assemblies: Asambleas relacionadas
|
|
530
542
|
related_participatory_processes: Procesos participativos relacionados
|
|
543
|
+
download_your_data:
|
|
544
|
+
help:
|
|
545
|
+
conference_invites:
|
|
546
|
+
accepted_at: La fecha en que la invitación a la jornada fue aceptada
|
|
547
|
+
conference: La jornada a la que corresponde esta invitación
|
|
548
|
+
confirmed_at: La fecha en la que se confirmó la invitación
|
|
549
|
+
created_at: La fecha en la que se creó la invitación
|
|
550
|
+
id: El identificador único de la invitación a la jornada
|
|
551
|
+
registration_type: El tipo de inscripción enviada para esta jornada
|
|
552
|
+
rejected_at: La fecha en que la invitación a la jornada fue rechazada
|
|
553
|
+
sent_at: La fecha en que esta invitación a la conferencia fue enviada
|
|
554
|
+
updated_at: La fecha en que esta invitación se actualizó por última vez
|
|
555
|
+
conference_registrations:
|
|
556
|
+
conference: La jornada a la que pertenece esta inscripción
|
|
557
|
+
confirmed_at: La fecha en la que se confirmó la inscripción
|
|
558
|
+
created_at: La fecha en la que se creó la inscripción
|
|
559
|
+
id: El identificador único de la inscripción a la jornada
|
|
560
|
+
registration_type: El tipo de inscripción habilitado para esta jornada
|
|
561
|
+
updated_at: La fecha en que esta inscripción se actualizó por última vez
|
|
531
562
|
events:
|
|
532
563
|
conferences:
|
|
533
564
|
conference_registration_confirmed:
|
|
@@ -575,6 +606,33 @@ es-PY:
|
|
|
575
606
|
title: Medios y enlaces
|
|
576
607
|
menu:
|
|
577
608
|
conferences: Conferencias
|
|
609
|
+
open_data:
|
|
610
|
+
help:
|
|
611
|
+
conferences:
|
|
612
|
+
created_at: La fecha en la que se creó esta jornada
|
|
613
|
+
decidim_scope_id: El ámbito territorial de la jornada
|
|
614
|
+
description: Una descripción larga de la jornada
|
|
615
|
+
end_date: La fecha en la que finalizó esta jornada.
|
|
616
|
+
follows_count: El número de usuarias que siguen esta jornada
|
|
617
|
+
hashtag: La etiqueta que utiliza la jornada en Twitter/X
|
|
618
|
+
id: El identificador único de la jornada
|
|
619
|
+
location: El lugar de celebración de la jornada. Donde se llevó a cabo esta jornada.
|
|
620
|
+
objectives: Los objetivos de esta jornada. Cuál fue la meta.
|
|
621
|
+
promoted: Si la jornada está destacada o no
|
|
622
|
+
published_at: La fecha en la que se publicó esta jornada
|
|
623
|
+
reference: La referencia única de la jornada
|
|
624
|
+
remote_banner_image_url: La URL de la imagen de la cabecera de la jornada
|
|
625
|
+
remote_hero_image_url: La URL de la imagen principal de la jornada
|
|
626
|
+
scope: El ámbito territorial de la jornada
|
|
627
|
+
scopes_enabled: Si el ámbito territorial está habilitado o no
|
|
628
|
+
short_description: Una breve descripción de la jornada
|
|
629
|
+
slogan: El lema de esta jornada
|
|
630
|
+
slug: El nombre corto de la jornada (usado para fines de identificación, para la URL)
|
|
631
|
+
start_date: La fecha en la que comenzó esta jornada.
|
|
632
|
+
taxonomies: Las taxonomías de la jornada
|
|
633
|
+
title: El título de la jornada
|
|
634
|
+
updated_at: La fecha de la última actualización de esta jornada
|
|
635
|
+
url: La URL de la jornada
|
|
578
636
|
statistics:
|
|
579
637
|
conferences_count: Jornadas
|
|
580
638
|
devise:
|