decidim-conferences 0.29.1 → 0.30.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- 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 +7 -12
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -1
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -7
- 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/media_links/new.html.erb +1 -1
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +13 -7
- 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/app/views/layouts/decidim/diploma.html.erb +1 -1
- data/config/locales/ar.yml +12 -24
- data/config/locales/bg.yml +0 -24
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +14 -0
- data/config/locales/ca.yml +74 -14
- data/config/locales/cs.yml +76 -16
- data/config/locales/de.yml +75 -15
- data/config/locales/el.yml +0 -24
- data/config/locales/en.yml +82 -22
- data/config/locales/es-MX.yml +75 -15
- data/config/locales/es-PY.yml +78 -18
- data/config/locales/es.yml +71 -11
- data/config/locales/eu.yml +229 -169
- data/config/locales/fi-plain.yml +76 -16
- data/config/locales/fi.yml +82 -22
- data/config/locales/fr-CA.yml +35 -16
- data/config/locales/fr.yml +35 -16
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +0 -24
- data/config/locales/hu.yml +0 -24
- data/config/locales/id-ID.yml +0 -24
- data/config/locales/it.yml +0 -24
- data/config/locales/ja.yml +73 -13
- data/config/locales/lb.yml +0 -22
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -24
- data/config/locales/nl.yml +0 -24
- data/config/locales/no.yml +0 -24
- data/config/locales/pl.yml +0 -24
- data/config/locales/pt-BR.yml +0 -24
- data/config/locales/pt.yml +0 -24
- data/config/locales/ro-RO.yml +13 -15
- data/config/locales/sk.yml +0 -24
- data/config/locales/sv.yml +66 -25
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/zh-CN.yml +0 -24
- data/config/locales/zh-TW.yml +0 -24
- 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 +2 -7
- 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 +26 -43
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -23
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
|
@@ -120,13 +122,13 @@ de:
|
|
120
122
|
destroy:
|
121
123
|
success: Der Redner wurde für diese Konferenz erfolgreich gelöscht.
|
122
124
|
edit:
|
123
|
-
title:
|
125
|
+
title: Referierende Person aktualisieren
|
124
126
|
update: Aktualisieren
|
125
127
|
index:
|
126
128
|
conference_speakers_title: Konferenzsprecher
|
127
129
|
new:
|
128
130
|
create: Erstellen
|
129
|
-
title:
|
131
|
+
title: Neue referierende Person
|
130
132
|
publish:
|
131
133
|
invalid: Beim Veröffentlichen dieser RednerIn ist ein Problem aufgetreten.
|
132
134
|
success: KonferenzrednerIn erfolgreich veröffentlicht.
|
@@ -143,13 +145,13 @@ de:
|
|
143
145
|
destroy:
|
144
146
|
success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
|
145
147
|
edit:
|
146
|
-
title:
|
148
|
+
title: Referierende Person aktualisieren
|
147
149
|
update: Aktualisieren
|
148
150
|
index:
|
149
151
|
conference_admins_title: Konferenzadmins
|
150
152
|
new:
|
151
153
|
create: Erstellen
|
152
|
-
title: Neuer
|
154
|
+
title: Neuer Konferenzadmin
|
153
155
|
update:
|
154
156
|
error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
|
155
157
|
success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -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
|
@@ -179,9 +183,9 @@ de:
|
|
179
183
|
media_links:
|
180
184
|
create:
|
181
185
|
error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
|
182
|
-
success: Medienlink erfolgreich erstellt
|
186
|
+
success: Medienlink erfolgreich erstellt.
|
183
187
|
destroy:
|
184
|
-
success: Medienlink
|
188
|
+
success: Medienlink erfolgreich gelöscht.
|
185
189
|
edit:
|
186
190
|
title: Medienlink aktualisieren
|
187
191
|
update: Aktualisieren
|
@@ -189,17 +193,16 @@ de:
|
|
189
193
|
media_links_title: Medienlinks
|
190
194
|
new:
|
191
195
|
create: Erstellen
|
192
|
-
title: Medienlink
|
196
|
+
title: Medienlink erstellen
|
193
197
|
update:
|
194
198
|
error: Beim Aktualisieren dieser Medienverbindung ist ein Fehler aufgetreten.
|
195
|
-
success:
|
199
|
+
success: Medienlink erfolgreich aktualisiert.
|
196
200
|
menu:
|
197
201
|
conferences: Konferenzen
|
198
202
|
conferences_submenu:
|
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
|
@@ -212,7 +215,7 @@ de:
|
|
212
215
|
registration_types: Registrierungsarten
|
213
216
|
registrations: Registrierungen
|
214
217
|
see_conference: Konferenz ansehen
|
215
|
-
user_registrations:
|
218
|
+
user_registrations: Teilnehmende Benutzende
|
216
219
|
models:
|
217
220
|
conference:
|
218
221
|
fields:
|
@@ -254,7 +257,7 @@ de:
|
|
254
257
|
main_promotor: Hauptförderer
|
255
258
|
registration_type:
|
256
259
|
fields:
|
257
|
-
conference_meetings:
|
260
|
+
conference_meetings: Veranstaltungen der Konferenz
|
258
261
|
price: Preis
|
259
262
|
registrations_count: Registrierungen zählen
|
260
263
|
title: Titel
|
@@ -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
|
@@ -396,7 +410,7 @@ de:
|
|
396
410
|
title: Partner
|
397
411
|
registration_types:
|
398
412
|
form:
|
399
|
-
select_conference_meetings:
|
413
|
+
select_conference_meetings: Konferenzveranstaltungen auswählen
|
400
414
|
index:
|
401
415
|
title: Registrierungsarten
|
402
416
|
send_conference_diploma_mailer:
|
@@ -415,7 +429,7 @@ de:
|
|
415
429
|
confirm: Bestätigen
|
416
430
|
show:
|
417
431
|
going: Gehen
|
418
|
-
no_slots_available: Keine
|
432
|
+
no_slots_available: Keine Plätze verfügbar
|
419
433
|
registration: Anmeldung
|
420
434
|
conference_program:
|
421
435
|
show:
|
@@ -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: Ημερομηνία υπογραφής
|
@@ -113,13 +111,11 @@ el:
|
|
113
111
|
destroy:
|
114
112
|
success: Ο ομιλητής διάσκεψης διαγράφηκε με επιτυχία.
|
115
113
|
edit:
|
116
|
-
title: Ενημέρωση ομιλητή διάσκεψης.
|
117
114
|
update: Ενημέρωση
|
118
115
|
index:
|
119
116
|
conference_speakers_title: Ομιλητές διάσκεψης
|
120
117
|
new:
|
121
118
|
create: Δημιουργία
|
122
|
-
title: Νέος ομιλητής διάσκεψης.
|
123
119
|
update:
|
124
120
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του ομιλητή διάσκεψης.
|
125
121
|
success: Ο ομιλητής διάσκεψης ενημερώθηκε με επιτυχία.
|
@@ -130,13 +126,11 @@ el:
|
|
130
126
|
destroy:
|
131
127
|
success: Ο διαχειριστής διάσκεψης καταργήθηκε με επιτυχία.
|
132
128
|
edit:
|
133
|
-
title: Ενημέρωση διαχειριστή διάσκεψης.
|
134
129
|
update: Ενημέρωση
|
135
130
|
index:
|
136
131
|
conference_admins_title: Διαχειριστές διάσκεψης
|
137
132
|
new:
|
138
133
|
create: Δημιουργία
|
139
|
-
title: Νέος διαχειριστής διάσκεψης.
|
140
134
|
update:
|
141
135
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του διαχειριστή διάσκεψης.
|
142
136
|
success: Ο διαχειριστής διάσκεψης ενημερώθηκε με επιτυχία.
|
@@ -165,38 +159,25 @@ el:
|
|
165
159
|
media_links:
|
166
160
|
create:
|
167
161
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία ενός νέου συνδέσμου πολυμέσων.
|
168
|
-
success: Ο σύνδεσμος πολυμέσων δημιουργήθηκε με επιτυχία.
|
169
|
-
destroy:
|
170
|
-
success: Ο σύνδεσμος πολυμέσων διαγράφηκε με επιτυχία.
|
171
162
|
edit:
|
172
|
-
title: Ενημέρωση συνδέσμου πολυμέσων.
|
173
163
|
update: Ενημέρωση
|
174
|
-
index:
|
175
|
-
media_links_title: Σύνδεσμοι πολυμέσων
|
176
164
|
new:
|
177
165
|
create: Δημιουργία
|
178
|
-
title: Σύνδεσμος πολυμέσων
|
179
166
|
update:
|
180
167
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του συνδέσμου πολυμέσων.
|
181
|
-
success: Ο σύνδεσμος πολυμέσων ενημερώθηκε με επιτυχία.
|
182
168
|
menu:
|
183
169
|
conferences: Διασκέψεις
|
184
170
|
conferences_submenu:
|
185
171
|
attachment_collections: Φάκελοι
|
186
172
|
attachment_files: Αρχεία
|
187
173
|
attachments: Συνημμένα
|
188
|
-
categories: Κατηγορίες
|
189
174
|
components: Στοιχεία
|
190
175
|
conference_admins: Διαχειριστές διάσκεψης
|
191
176
|
conference_invites: Προσκλήσεις
|
192
177
|
conference_speakers: Ομιλητές
|
193
|
-
diploma: Πιστοποιητικό παρακολούθησης
|
194
|
-
media_links: Σύνδεσμοι πολυμέσων
|
195
178
|
moderations: Εποπτεύσεις
|
196
179
|
partners: Συνεργάτες
|
197
|
-
registration_types: Τύποι εγγραφής
|
198
180
|
registrations: Εγγραφές
|
199
|
-
user_registrations: Εγγραφές χρήστη
|
200
181
|
models:
|
201
182
|
conference:
|
202
183
|
fields:
|
@@ -225,7 +206,6 @@ el:
|
|
225
206
|
date: Ημερομηνία
|
226
207
|
link: Σύνδεσμος
|
227
208
|
title: Τίτλος
|
228
|
-
name: Σύνδεσμος πολυμέσων
|
229
209
|
partner:
|
230
210
|
fields:
|
231
211
|
link: Σύνδεσμος
|
@@ -251,7 +231,6 @@ el:
|
|
251
231
|
destroy:
|
252
232
|
success: Ο συνεργάτης διάσκεψης καταργήθηκε με επιτυχία.
|
253
233
|
edit:
|
254
|
-
title: Ενημέρωση συνεργάτη.
|
255
234
|
update: Ενημέρωση
|
256
235
|
new:
|
257
236
|
create: Δημιουργία
|
@@ -273,7 +252,6 @@ el:
|
|
273
252
|
destroy:
|
274
253
|
success: Ο τύπος εγγραφής διάσκεψης καταργήθηκε με επιτυχία.
|
275
254
|
edit:
|
276
|
-
title: Ενημέρωση τύπου εγγραφής.
|
277
255
|
update: Ενημέρωση
|
278
256
|
new:
|
279
257
|
create: Δημιουργία
|
@@ -361,7 +339,6 @@ el:
|
|
361
339
|
diplomas:
|
362
340
|
edit:
|
363
341
|
save: Αποθήκευση
|
364
|
-
title: Πιστοποιητικό παρακολούθησης
|
365
342
|
invite_join_conference_mailer:
|
366
343
|
invite:
|
367
344
|
decline: Απόρριψη πρόσκλησης «%{conference_title}»
|
@@ -381,7 +358,6 @@ el:
|
|
381
358
|
diploma_html: Θα βρείτε το πιστοποιητικό παρακολούθησης για τη διάσκεψη <a href="%{url}">%{title}</a> στα συνημμένα.
|
382
359
|
diploma_user:
|
383
360
|
attendance_verified_by: Η παρακολούθηση επαληθεύτηκε από
|
384
|
-
certificate_of_attendance: Πιστοποιητικό παρακολούθησης
|
385
361
|
certificate_of_attendance_description: Με το παρόν βεβαιώνεται ότι ο χρήστης <strong>%{user}</strong> παρακολούθησε και έλαβε μέρος στη διάσκεψη <strong>%{title}</strong> που πραγματοποιήθηκε στην τοποθεσία <strong>%{location}</strong> στις <strong>%{start} - %{end}</strong>
|
386
362
|
send_diploma:
|
387
363
|
error: Υπήρξε ένα πρόβλημα κατά την αποστολή των πιστοποιητικών παρακολούθησης της διάσκεψης.
|
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
|
@@ -120,13 +122,13 @@ en:
|
|
120
122
|
destroy:
|
121
123
|
success: Conference speaker successfully deleted.
|
122
124
|
edit:
|
123
|
-
title: Update conference speaker
|
125
|
+
title: Update conference speaker
|
124
126
|
update: Update
|
125
127
|
index:
|
126
128
|
conference_speakers_title: Conference speakers
|
127
129
|
new:
|
128
130
|
create: Create
|
129
|
-
title: New conference speaker
|
131
|
+
title: New conference speaker
|
130
132
|
publish:
|
131
133
|
invalid: There was a problem publishing this speaker.
|
132
134
|
success: Conference speaker successfully published.
|
@@ -143,13 +145,13 @@ en:
|
|
143
145
|
destroy:
|
144
146
|
success: Conference admin successfully removed.
|
145
147
|
edit:
|
146
|
-
title: Update conference admin
|
148
|
+
title: Update conference admin
|
147
149
|
update: Update
|
148
150
|
index:
|
149
151
|
conference_admins_title: Conference admins
|
150
152
|
new:
|
151
153
|
create: Create
|
152
|
-
title: New conference admin
|
154
|
+
title: New conference admin
|
153
155
|
update:
|
154
156
|
error: There was a problem updating this conference admin.
|
155
157
|
success: Conference admin successfully updated.
|
@@ -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
|
@@ -179,40 +183,39 @@ en:
|
|
179
183
|
media_links:
|
180
184
|
create:
|
181
185
|
error: There was a problem creating a new media link.
|
182
|
-
success: Media
|
186
|
+
success: Media link successfully created.
|
183
187
|
destroy:
|
184
|
-
success: Media
|
188
|
+
success: Media link successfully deleted.
|
185
189
|
edit:
|
186
|
-
title: Update media link
|
190
|
+
title: Update media link
|
187
191
|
update: Update
|
188
192
|
index:
|
189
|
-
media_links_title: Media
|
193
|
+
media_links_title: Media links
|
190
194
|
new:
|
191
195
|
create: Create
|
192
|
-
title:
|
196
|
+
title: Create media link
|
193
197
|
update:
|
194
198
|
error: There was a problem updating this media link.
|
195
|
-
success: Media
|
199
|
+
success: Media link successfully updated.
|
196
200
|
menu:
|
197
201
|
conferences: Conferences
|
198
202
|
conferences_submenu:
|
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
|
206
209
|
conference_speakers: Speakers
|
207
|
-
diploma: Certificate of
|
210
|
+
diploma: Certificate of attendance
|
208
211
|
info: About this conference
|
209
|
-
media_links: Media
|
212
|
+
media_links: Media links
|
210
213
|
moderations: Moderations
|
211
214
|
partners: Partners
|
212
|
-
registration_types: Registration
|
215
|
+
registration_types: Registration types
|
213
216
|
registrations: Registrations
|
214
217
|
see_conference: See conference
|
215
|
-
user_registrations: User
|
218
|
+
user_registrations: User registrations
|
216
219
|
models:
|
217
220
|
conference:
|
218
221
|
fields:
|
@@ -241,7 +244,7 @@ en:
|
|
241
244
|
date: Date
|
242
245
|
link: Link
|
243
246
|
title: Title
|
244
|
-
name: Media
|
247
|
+
name: Media link
|
245
248
|
partner:
|
246
249
|
fields:
|
247
250
|
link: Link
|
@@ -267,7 +270,7 @@ en:
|
|
267
270
|
destroy:
|
268
271
|
success: Conference partner successfully removed.
|
269
272
|
edit:
|
270
|
-
title: Update partner
|
273
|
+
title: Update partner
|
271
274
|
update: Update
|
272
275
|
new:
|
273
276
|
create: Create
|
@@ -289,7 +292,7 @@ en:
|
|
289
292
|
destroy:
|
290
293
|
success: Conference registration type successfully removed.
|
291
294
|
edit:
|
292
|
-
title: Update registration type
|
295
|
+
title: Update registration type
|
293
296
|
update: Update
|
294
297
|
new:
|
295
298
|
create: Create
|
@@ -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,17 +385,20 @@ 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
|
384
398
|
diplomas:
|
385
399
|
edit:
|
386
400
|
save: Save
|
387
|
-
title: Certificate of
|
401
|
+
title: Certificate of attendance
|
388
402
|
invite_join_conference_mailer:
|
389
403
|
invite:
|
390
404
|
decline: Decline invitation '%{conference_title}'
|
@@ -404,7 +418,7 @@ en:
|
|
404
418
|
diploma_html: You will be find the certificate of attendance for the conference <a href="%{url}">%{title}</a> in the attachments.
|
405
419
|
diploma_user:
|
406
420
|
attendance_verified_by: Attendance verified by
|
407
|
-
certificate_of_attendance: Certificate of
|
421
|
+
certificate_of_attendance: Certificate of attendance
|
408
422
|
certificate_of_attendance_description: This is to certify that <strong>%{user}</strong> has attended and taken part in the <strong>%{title}</strong> held at the <strong>%{location}</strong> on <strong>%{start} - %{end}</strong>
|
409
423
|
send_diploma:
|
410
424
|
error: There was a problem sending the conference certificates of attendance.
|
@@ -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:
|