decidim-conferences 0.29.2 → 0.30.0.rc2
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/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 -4
- 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 +12 -3
- data/config/locales/bg.yml +0 -3
- data/config/locales/ca.yml +63 -3
- data/config/locales/cs.yml +63 -3
- data/config/locales/de.yml +63 -3
- data/config/locales/el.yml +0 -3
- data/config/locales/en.yml +63 -3
- data/config/locales/es-MX.yml +63 -3
- data/config/locales/es-PY.yml +63 -3
- data/config/locales/es.yml +63 -3
- data/config/locales/eu.yml +63 -3
- data/config/locales/fi-plain.yml +63 -3
- data/config/locales/fi.yml +63 -3
- data/config/locales/fr-CA.yml +22 -3
- data/config/locales/fr.yml +22 -3
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +0 -3
- data/config/locales/hu.yml +0 -3
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/it.yml +0 -3
- data/config/locales/ja.yml +65 -3
- data/config/locales/lb.yml +0 -3
- data/config/locales/lt.yml +0 -3
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -3
- data/config/locales/no.yml +0 -3
- data/config/locales/pl.yml +0 -3
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -3
- data/config/locales/ro-RO.yml +0 -3
- data/config/locales/sk.yml +0 -3
- data/config/locales/sv.yml +116 -3
- data/config/locales/tr-TR.yml +0 -3
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +0 -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 -28
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
data/config/locales/de.yml
CHANGED
@@ -22,8 +22,6 @@ de:
|
|
22
22
|
published_at: Veröffentlicht am
|
23
23
|
registration_terms: Registrierungsbedingungen
|
24
24
|
registrations_enabled: Registrierungen aktiviert
|
25
|
-
scope_id: Umfang
|
26
|
-
scopes_enabled: Bereiche aktiviert
|
27
25
|
short_description: Kurze Beschreibung
|
28
26
|
show_statistics: Zeige Statistiken
|
29
27
|
sign_date: Unterzeichnungsdatum
|
@@ -69,6 +67,8 @@ de:
|
|
69
67
|
email: Email
|
70
68
|
name: Name
|
71
69
|
role: Rolle
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ de:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
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.
|
93
94
|
new_conference: Neue Konferenz
|
94
95
|
new_conference_user_role: Neuer Konferenz-Admin
|
95
96
|
new_media_link: Neuer Medienlink
|
@@ -97,6 +98,7 @@ de:
|
|
97
98
|
new_registration_type: Neuer Registrierungstyp
|
98
99
|
new_speaker: Neuer Redner
|
99
100
|
send_diplomas: Senden Sie eine Teilnahmebestätigung
|
101
|
+
view_deleted_conferences: Gelöschte Konferenzen anzeigen
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Kopieren
|
@@ -166,6 +168,8 @@ de:
|
|
166
168
|
index:
|
167
169
|
published: Veröffentlicht
|
168
170
|
unpublished: Nicht veröffentlicht
|
171
|
+
manage_trash:
|
172
|
+
title: Gelöschte Konferenzen
|
169
173
|
new:
|
170
174
|
create: Erstellen
|
171
175
|
title: Konferenz
|
@@ -199,7 +203,6 @@ de:
|
|
199
203
|
attachment_collections: Ordner
|
200
204
|
attachment_files: Dateien
|
201
205
|
attachments: Anhänge
|
202
|
-
categories: Kategorien
|
203
206
|
components: Komponenten
|
204
207
|
conference_admins: Konferenzadministratoren
|
205
208
|
conference_invites: Lädt ein
|
@@ -297,13 +300,21 @@ de:
|
|
297
300
|
update:
|
298
301
|
error: Bei einem Fehler ist ein Registrierungstyp für diese Konferenz aktualisiert worden.
|
299
302
|
success: Die Registrierung wurde für diese Konferenz erfolgreich aktualisiert.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: Alle Konferenzen
|
300
306
|
titles:
|
301
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.
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} hat die Konferenz %{resource_name} erstellt"
|
305
314
|
publish: "%{user_name} hat die Konferenz %{resource_name} veröffentlicht"
|
315
|
+
restore: "%{user_name} hat die Konferenz %{resource_name} wiederhergestellt"
|
306
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"
|
307
318
|
unpublish: "%{user_name} hat die Konferenz %{resource_name} auf \"unveröffentlicht\" gesetzt"
|
308
319
|
update: "%{user_name} hat die Konferenz %{resource_name} aktualisiert"
|
309
320
|
update_diploma: "%{user_name} hat die Konfiguration der Teilnahmebescheinigungen für die Konferenz %{resource_name} aktualisiert"
|
@@ -374,10 +385,13 @@ de:
|
|
374
385
|
conferences:
|
375
386
|
form:
|
376
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.
|
377
390
|
registrations_count:
|
378
391
|
one: Es gab 1 Registrierung.
|
379
392
|
other: Es gab %{count} Registrierungen.
|
380
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
|
381
395
|
content_blocks:
|
382
396
|
highlighted_conferences:
|
383
397
|
max_results: Maximale Anzahl angezeigter Elemente
|
@@ -526,6 +540,25 @@ de:
|
|
526
540
|
objectives: Ziele
|
527
541
|
related_assemblies: Ähnliche Gremien
|
528
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
|
529
562
|
events:
|
530
563
|
conferences:
|
531
564
|
conference_registration_confirmed:
|
@@ -573,6 +606,33 @@ de:
|
|
573
606
|
title: Medien und Links
|
574
607
|
menu:
|
575
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
|
576
636
|
statistics:
|
577
637
|
conferences_count: Konferenzen
|
578
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: Ημερομηνία υπογραφής
|
@@ -173,7 +171,6 @@ el:
|
|
173
171
|
attachment_collections: Φάκελοι
|
174
172
|
attachment_files: Αρχεία
|
175
173
|
attachments: Συνημμένα
|
176
|
-
categories: Κατηγορίες
|
177
174
|
components: Στοιχεία
|
178
175
|
conference_admins: Διαχειριστές διάσκεψης
|
179
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
|
@@ -69,6 +67,8 @@ en:
|
|
69
67
|
email: Email
|
70
68
|
name: Name
|
71
69
|
role: Role
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ en:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
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.
|
93
94
|
new_conference: New conference
|
94
95
|
new_conference_user_role: New conference admin
|
95
96
|
new_media_link: New media link
|
@@ -97,6 +98,7 @@ en:
|
|
97
98
|
new_registration_type: New registration type
|
98
99
|
new_speaker: New speaker
|
99
100
|
send_diplomas: Send certificates of attendance
|
101
|
+
view_deleted_conferences: View deleted conferences
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Copy
|
@@ -166,6 +168,8 @@ en:
|
|
166
168
|
index:
|
167
169
|
published: Published
|
168
170
|
unpublished: Unpublished
|
171
|
+
manage_trash:
|
172
|
+
title: Deleted conferences
|
169
173
|
new:
|
170
174
|
create: Create
|
171
175
|
title: Conference
|
@@ -199,7 +203,6 @@ en:
|
|
199
203
|
attachment_collections: Folders
|
200
204
|
attachment_files: Files
|
201
205
|
attachments: Attachments
|
202
|
-
categories: Categories
|
203
206
|
components: Components
|
204
207
|
conference_admins: Conference admins
|
205
208
|
conference_invites: Invites
|
@@ -297,13 +300,21 @@ en:
|
|
297
300
|
update:
|
298
301
|
error: There was a problem updating a registration type for this conference.
|
299
302
|
success: Conference registration type successfully updated.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: All conferences
|
300
306
|
titles:
|
301
307
|
conferences: Conferences
|
308
|
+
conferences_deleted: Deleted conferences
|
309
|
+
tooltips:
|
310
|
+
deleted_conferences_info: Conferences can only be deleted if status is "Unpublished".
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} created the %{resource_name} conference"
|
305
314
|
publish: "%{user_name} published the %{resource_name} conference"
|
315
|
+
restore: "%{user_name} restored the %{resource_name} conference"
|
306
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"
|
307
318
|
unpublish: "%{user_name} unpublished the %{resource_name} conference"
|
308
319
|
update: "%{user_name} updated the %{resource_name} conference"
|
309
320
|
update_diploma: "%{user_name} updated the certificates of attendance configuration for %{resource_name} conference"
|
@@ -374,10 +385,13 @@ en:
|
|
374
385
|
conferences:
|
375
386
|
form:
|
376
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.
|
377
390
|
registrations_count:
|
378
391
|
one: There has been 1 registration.
|
379
392
|
other: There has been %{count} registrations.
|
380
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
|
381
395
|
content_blocks:
|
382
396
|
highlighted_conferences:
|
383
397
|
max_results: Maximum amount of elements to show
|
@@ -526,6 +540,25 @@ en:
|
|
526
540
|
objectives: Objectives
|
527
541
|
related_assemblies: Related assemblies
|
528
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
|
529
562
|
events:
|
530
563
|
conferences:
|
531
564
|
conference_registration_confirmed:
|
@@ -573,6 +606,33 @@ en:
|
|
573
606
|
title: Media and Links
|
574
607
|
menu:
|
575
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
|
576
636
|
statistics:
|
577
637
|
conferences_count: Conferences
|
578
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
|
@@ -69,6 +67,8 @@ es-MX:
|
|
69
67
|
email: Correo electrónico
|
70
68
|
name: Nombre
|
71
69
|
role: Rol
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ es-MX:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmar
|
93
|
+
confirm_delete_conference: '¿Seguro que quieres eliminar esta jornada? Si cambias de opinión, puedes restaurarla más tarde.'
|
93
94
|
new_conference: Nueva conferencia
|
94
95
|
new_conference_user_role: Añadir administradora
|
95
96
|
new_media_link: Añadir enlace multimedia
|
@@ -97,6 +98,7 @@ es-MX:
|
|
97
98
|
new_registration_type: Añadir tipo de inscripción
|
98
99
|
new_speaker: Añadir ponente
|
99
100
|
send_diplomas: Enviar certificados de asistencia.
|
101
|
+
view_deleted_conferences: Ver las jornadas eliminadas
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Copiar
|
@@ -166,6 +168,8 @@ es-MX:
|
|
166
168
|
index:
|
167
169
|
published: Publicado
|
168
170
|
unpublished: Despublicada
|
171
|
+
manage_trash:
|
172
|
+
title: Jornadas eliminadas
|
169
173
|
new:
|
170
174
|
create: Crear
|
171
175
|
title: Conferencia
|
@@ -199,7 +203,6 @@ es-MX:
|
|
199
203
|
attachment_collections: Carpetas
|
200
204
|
attachment_files: Archivos
|
201
205
|
attachments: Archivos adjuntos
|
202
|
-
categories: Categorías
|
203
206
|
components: Componentes
|
204
207
|
conference_admins: Administradores de conferencia
|
205
208
|
conference_invites: Invita
|
@@ -297,13 +300,21 @@ es-MX:
|
|
297
300
|
update:
|
298
301
|
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
299
302
|
success: Tipo de registro actualizado con éxito para esta conferencia.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: Todas las jornadas
|
300
306
|
titles:
|
301
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'.
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} creó la conferencia %{resource_name}"
|
305
314
|
publish: "%{user_name} ha publicado la conferencia %{resource_name}"
|
315
|
+
restore: "%{user_name} restauró la jornada %{resource_name}"
|
306
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}"
|
307
318
|
unpublish: "%{user_name} ha despublicado la conferencia %{resource_name}"
|
308
319
|
update: "%{user_name} ha actualizado la conferencia %{resource_name}"
|
309
320
|
update_diploma: "%{user_name} actualización de la configuración de certificados de asistencia para %{resource_name} conferencia."
|
@@ -374,10 +385,13 @@ es-MX:
|
|
374
385
|
conferences:
|
375
386
|
form:
|
376
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.
|
377
390
|
registrations_count:
|
378
391
|
one: Ha habido 1 inscripción.
|
379
392
|
other: Ha habido %{count} inscripciones.
|
380
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
|
381
395
|
content_blocks:
|
382
396
|
highlighted_conferences:
|
383
397
|
max_results: Cantidad máxima de elementos a mostrar
|
@@ -526,6 +540,25 @@ es-MX:
|
|
526
540
|
objectives: Objetivos
|
527
541
|
related_assemblies: Asambleas relacionadas
|
528
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
|
529
562
|
events:
|
530
563
|
conferences:
|
531
564
|
conference_registration_confirmed:
|
@@ -573,6 +606,33 @@ es-MX:
|
|
573
606
|
title: Multimedia y enlaces
|
574
607
|
menu:
|
575
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
|
576
636
|
statistics:
|
577
637
|
conferences_count: Jornadas
|
578
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
|
@@ -69,6 +67,8 @@ es-PY:
|
|
69
67
|
email: Correo electrónico
|
70
68
|
name: Nombre
|
71
69
|
role: Papel
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ es-PY:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmar
|
93
|
+
confirm_delete_conference: '¿Seguro que quieres eliminar esta jornada? Si cambias de opinión, puedes restaurarla más tarde.'
|
93
94
|
new_conference: Nueva conferencia
|
94
95
|
new_conference_user_role: Añadir administradora
|
95
96
|
new_media_link: Añadir enlace multimedia
|
@@ -97,6 +98,7 @@ es-PY:
|
|
97
98
|
new_registration_type: Añadir tipo de inscripción
|
98
99
|
new_speaker: Añadir ponente
|
99
100
|
send_diplomas: Enviar certificados de asistencia.
|
101
|
+
view_deleted_conferences: Ver las jornadas eliminadas
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Dupdo
|
@@ -166,6 +168,8 @@ es-PY:
|
|
166
168
|
index:
|
167
169
|
published: Publicado
|
168
170
|
unpublished: Despublicada
|
171
|
+
manage_trash:
|
172
|
+
title: Jornadas eliminadas
|
169
173
|
new:
|
170
174
|
create: Crear
|
171
175
|
title: Conferencia
|
@@ -199,7 +203,6 @@ es-PY:
|
|
199
203
|
attachment_collections: Carpetas
|
200
204
|
attachment_files: Archivos
|
201
205
|
attachments: Archivos adjuntos
|
202
|
-
categories: Categorías
|
203
206
|
components: Componentes
|
204
207
|
conference_admins: Administradores de conferencia
|
205
208
|
conference_invites: Invita
|
@@ -297,13 +300,21 @@ es-PY:
|
|
297
300
|
update:
|
298
301
|
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
299
302
|
success: Tipo de registro actualizado con éxito para esta conferencia.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: Todas las jornadas
|
300
306
|
titles:
|
301
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'.
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} creó la %{resource_name} conferencia"
|
305
314
|
publish: "%{user_name} publicado la %{resource_name} conferencia"
|
315
|
+
restore: "%{user_name} restauró la jornada %{resource_name}"
|
306
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}"
|
307
318
|
unpublish: "%{user_name} inédito la %{resource_name} conferencia."
|
308
319
|
update: "%{user_name} actualizado la %{resource_name} conferencia"
|
309
320
|
update_diploma: "%{user_name} actualización de la configuración de certificados de asistencia para %{resource_name} conferencia."
|
@@ -374,10 +385,13 @@ es-PY:
|
|
374
385
|
conferences:
|
375
386
|
form:
|
376
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.
|
377
390
|
registrations_count:
|
378
391
|
one: Ha habido 1 registro.
|
379
392
|
other: Ha habido %{count} registros.
|
380
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
|
381
395
|
content_blocks:
|
382
396
|
highlighted_conferences:
|
383
397
|
max_results: Cantidad máxima de elementos a mostrar
|
@@ -526,6 +540,25 @@ es-PY:
|
|
526
540
|
objectives: Objetivos
|
527
541
|
related_assemblies: Asambleas relacionadas
|
528
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
|
529
562
|
events:
|
530
563
|
conferences:
|
531
564
|
conference_registration_confirmed:
|
@@ -573,6 +606,33 @@ es-PY:
|
|
573
606
|
title: Medios y enlaces
|
574
607
|
menu:
|
575
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
|
576
636
|
statistics:
|
577
637
|
conferences_count: Jornadas
|
578
638
|
devise:
|