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/ca.yml
CHANGED
@@ -22,8 +22,6 @@ ca:
|
|
22
22
|
published_at: Publicat a
|
23
23
|
registration_terms: Condicions d'inscripció
|
24
24
|
registrations_enabled: Inscripcions habilitades
|
25
|
-
scope_id: Àmbit
|
26
|
-
scopes_enabled: Àmbits habilitats
|
27
25
|
short_description: Breu descripció
|
28
26
|
show_statistics: Mostrar estadístiques
|
29
27
|
sign_date: Data de signatura
|
@@ -69,6 +67,8 @@ ca:
|
|
69
67
|
email: Correu electrònic
|
70
68
|
name: Nom
|
71
69
|
role: Rol
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ ca:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmar
|
93
|
+
confirm_delete_conference: Segur que vols esborrar aquesta jornada? Si canvies d'opinió, la pots restaurar més endavant.
|
93
94
|
new_conference: Afegir jornada
|
94
95
|
new_conference_user_role: Afegir administradora
|
95
96
|
new_media_link: Afegir enllaç multimèdia
|
@@ -97,6 +98,7 @@ ca:
|
|
97
98
|
new_registration_type: Afegir tipus de registre
|
98
99
|
new_speaker: Afegir ponent
|
99
100
|
send_diplomas: Enviar certificats d'assistència
|
101
|
+
view_deleted_conferences: Veure les jornades eliminades
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Copiar
|
@@ -120,13 +122,13 @@ ca:
|
|
120
122
|
destroy:
|
121
123
|
success: Ponent de la jornada eliminada correctament.
|
122
124
|
edit:
|
123
|
-
title: Actualitzar la
|
125
|
+
title: Actualitzar la ponent de la jornada
|
124
126
|
update: Actualitzar
|
125
127
|
index:
|
126
128
|
conference_speakers_title: Ponents de les conferències
|
127
129
|
new:
|
128
130
|
create: Crear
|
129
|
-
title: Nova ponent de la jornada
|
131
|
+
title: Nova ponent de la jornada
|
130
132
|
publish:
|
131
133
|
invalid: S'ha produït un error en publicar aquesta ponent.
|
132
134
|
success: Ponent de la jornada actualitzada correctament.
|
@@ -143,13 +145,13 @@ ca:
|
|
143
145
|
destroy:
|
144
146
|
success: Administradora de la jornada eliminada correctament.
|
145
147
|
edit:
|
146
|
-
title: Actualitzar administradora de la jornada
|
148
|
+
title: Actualitzar administradora de la jornada
|
147
149
|
update: Actualitzar
|
148
150
|
index:
|
149
151
|
conference_admins_title: Administradores de la jornada
|
150
152
|
new:
|
151
153
|
create: Crear
|
152
|
-
title: Nova administradora de jornada
|
154
|
+
title: Nova administradora de jornada
|
153
155
|
update:
|
154
156
|
error: S'ha produït un error en actualitzar l'administradora per a aquesta jornada.
|
155
157
|
success: Administradora de la jornada actualitzada correctament.
|
@@ -166,6 +168,8 @@ ca:
|
|
166
168
|
index:
|
167
169
|
published: Publicat
|
168
170
|
unpublished: Despublicada
|
171
|
+
manage_trash:
|
172
|
+
title: Jornades eliminades
|
169
173
|
new:
|
170
174
|
create: Crear
|
171
175
|
title: Jornada
|
@@ -183,13 +187,13 @@ ca:
|
|
183
187
|
destroy:
|
184
188
|
success: S'ha eliminat correctament l'enllaç multimèdia.
|
185
189
|
edit:
|
186
|
-
title: Actualitzar l'enllaç multimèdia
|
190
|
+
title: Actualitzar l'enllaç multimèdia
|
187
191
|
update: Actualitzar
|
188
192
|
index:
|
189
193
|
media_links_title: Enllaços multimèdia
|
190
194
|
new:
|
191
195
|
create: Crear
|
192
|
-
title:
|
196
|
+
title: Crear enllaç multimèdia
|
193
197
|
update:
|
194
198
|
error: S'ha produït un error en actualitzar aquest enllaç multimèdia.
|
195
199
|
success: Enllaç multimèdia actualitzat correctament.
|
@@ -199,17 +203,16 @@ ca:
|
|
199
203
|
attachment_collections: Carpetes
|
200
204
|
attachment_files: Fitxers
|
201
205
|
attachments: Adjunts
|
202
|
-
categories: Categories
|
203
206
|
components: Components
|
204
207
|
conference_admins: Administradors de conferències
|
205
208
|
conference_invites: Convida
|
206
209
|
conference_speakers: Ponents
|
207
210
|
diploma: Certificat d'assistència
|
208
211
|
info: Quant a aquesta jornada
|
209
|
-
media_links: Enllaços
|
212
|
+
media_links: Enllaços multimèdia
|
210
213
|
moderations: Moderacions
|
211
214
|
partners: Col·laboradores
|
212
|
-
registration_types: Tipus d'
|
215
|
+
registration_types: Tipus d'inscripció
|
213
216
|
registrations: Inscripcions
|
214
217
|
see_conference: Veure la jornada
|
215
218
|
user_registrations: Inscripcions de participants
|
@@ -241,7 +244,7 @@ ca:
|
|
241
244
|
date: Data
|
242
245
|
link: Enllaç
|
243
246
|
title: Títol
|
244
|
-
name: Enllaç
|
247
|
+
name: Enllaç multimèdia
|
245
248
|
partner:
|
246
249
|
fields:
|
247
250
|
link: Enllaç
|
@@ -267,7 +270,7 @@ ca:
|
|
267
270
|
destroy:
|
268
271
|
success: Col·laboradora de la jornada eliminada correctament.
|
269
272
|
edit:
|
270
|
-
title: Actualitzar col·laboradora
|
273
|
+
title: Actualitzar col·laboradora
|
271
274
|
update: Actualitzar
|
272
275
|
new:
|
273
276
|
create: Crear
|
@@ -289,7 +292,7 @@ ca:
|
|
289
292
|
destroy:
|
290
293
|
success: El tipus d'inscripció s'ha eliminat correctament d'aquesta jornada.
|
291
294
|
edit:
|
292
|
-
title: Actualitzar el tipus
|
295
|
+
title: Actualitzar el tipus d'inscripció
|
293
296
|
update: Actualitzar
|
294
297
|
new:
|
295
298
|
create: Crear
|
@@ -297,13 +300,21 @@ ca:
|
|
297
300
|
update:
|
298
301
|
error: S'ha produït un error en actualitzar un tipus d'inscripció per a aquesta jornada.
|
299
302
|
success: El tipus d'inscripció s'ha actualitzat correctament per a aquesta jornada.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: Totes les jornades
|
300
306
|
titles:
|
301
307
|
conferences: Jornades
|
308
|
+
conferences_deleted: Jornades eliminades
|
309
|
+
tooltips:
|
310
|
+
deleted_conferences_info: Les jornades només es poden eliminar si el seu estat és 'Despublicada'.
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} ha creat la jornada %{resource_name}"
|
305
314
|
publish: "%{user_name} ha publicat la jornada %{resource_name}"
|
315
|
+
restore: "%{user_name} ha restaurat la jornada %{resource_name}"
|
306
316
|
send_conference_diplomas: "%{user_name} ha enviat certificats d'assistència a les assistents de la jornada %{resource_name}"
|
317
|
+
soft_delete: "%{user_name} ha mogut a la paperera la jornada %{resource_name}"
|
307
318
|
unpublish: "%{user_name} no publicada la jornada %{resource_name}"
|
308
319
|
update: "%{user_name} ha actualitzat la jornada %{resource_name}"
|
309
320
|
update_diploma: "%{user_name} ha actualitzat la configuració dels certificats d'assistència per a la jornada %{resource_name}"
|
@@ -374,10 +385,13 @@ ca:
|
|
374
385
|
conferences:
|
375
386
|
form:
|
376
387
|
available_slots_help: Deixa-ho a 0 si les places disponibles són il·limitades.
|
388
|
+
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
389
|
+
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
377
390
|
registrations_count:
|
378
391
|
one: Hi ha hagut 1 inscripció.
|
379
392
|
other: Hi ha hagut %{count} inscripcions.
|
380
393
|
slug_help_html: 'Les URL amigables s''utilitzen per generar els URL que apunten a aquesta jornada. Només accepta lletres, números i guions, i ha de començar amb una lletra. Exemple: %{url}'
|
394
|
+
taxonomies: Taxonomies
|
381
395
|
content_blocks:
|
382
396
|
highlighted_conferences:
|
383
397
|
max_results: Quantitat màxima d'elements a mostrar
|
@@ -526,6 +540,25 @@ ca:
|
|
526
540
|
objectives: Objectius
|
527
541
|
related_assemblies: Assemblees relacionades
|
528
542
|
related_participatory_processes: Processos participatius relacionats
|
543
|
+
download_your_data:
|
544
|
+
help:
|
545
|
+
conference_invites:
|
546
|
+
accepted_at: La data en què la invitació a la jornada es va acceptar
|
547
|
+
conference: La jornada a la qual correspon aquesta invitació
|
548
|
+
confirmed_at: La data en què es va confirmar la invitació
|
549
|
+
created_at: La data en què va ser crear la invitació
|
550
|
+
id: L'identificador únic de la invitació a la jornada
|
551
|
+
registration_type: El tipus d'inscripció enviada per a aquesta jornada
|
552
|
+
rejected_at: La data en què la invitació a la jornada va ser rebutjada
|
553
|
+
sent_at: La data en què la invitació a la jornada es va enviar
|
554
|
+
updated_at: La data en què aquesta taxonomia es va actualitzar per darrera vegada
|
555
|
+
conference_registrations:
|
556
|
+
conference: La jornada a la qual pertany aquesta inscripció
|
557
|
+
confirmed_at: La data en què es va confirmar la inscripció
|
558
|
+
created_at: La data en què va ser crear la inscripció
|
559
|
+
id: L'identificador únic de la inscripció a la jornada
|
560
|
+
registration_type: El tipus d'inscripció habilitat para aquesta jornada
|
561
|
+
updated_at: La data en què aquesta inscripció es va actualitzar per darrera vegada
|
529
562
|
events:
|
530
563
|
conferences:
|
531
564
|
conference_registration_confirmed:
|
@@ -573,6 +606,33 @@ ca:
|
|
573
606
|
title: Multimedia i enllaços
|
574
607
|
menu:
|
575
608
|
conferences: Jornades
|
609
|
+
open_data:
|
610
|
+
help:
|
611
|
+
conferences:
|
612
|
+
created_at: La data en què es va crear aquesta jornada
|
613
|
+
decidim_scope_id: L'àmbit territorial de la jornada
|
614
|
+
description: Una descripció llarga de la jornada
|
615
|
+
end_date: La data en la qual va finalitzar aquesta jornada.
|
616
|
+
follows_count: El número d'usuàries que segueixen aquesta jornada
|
617
|
+
hashtag: L'etiqueta que fa servir la jornada a Twitter/X
|
618
|
+
id: L'identificador únic de la jornada
|
619
|
+
location: El lloc de celebració de la jornada. On es va dur a terme aquesta jornada.
|
620
|
+
objectives: Els objectius de la jornada. Quina va ser la meta.
|
621
|
+
promoted: Si la jornada està destacada o no
|
622
|
+
published_at: La data en què es va publicar aquesta jornada
|
623
|
+
reference: La referència única de la jornada
|
624
|
+
remote_banner_image_url: L'URL de la imatge de capçalera de la jornada
|
625
|
+
remote_hero_image_url: L'URL de la imatge principal de la jornada
|
626
|
+
scope: L'àmbit territorial de la jornada
|
627
|
+
scopes_enabled: Si l'àmbit territorial està habilitat o no
|
628
|
+
short_description: Una descripció breu de la jornada
|
629
|
+
slogan: El lema d'aquesta jornada
|
630
|
+
slug: El nom curt de la jornada (utilitzat per a finalitats d'identificació, per a l'URL)
|
631
|
+
start_date: La data en la qual va començar aquesta jornada.
|
632
|
+
taxonomies: Les taxonomies de la jornada
|
633
|
+
title: El títol de la jornada
|
634
|
+
updated_at: La data de la darrera actualització d'aquesta jornada
|
635
|
+
url: L'URL de la jornada
|
576
636
|
statistics:
|
577
637
|
conferences_count: Jornades
|
578
638
|
devise:
|
data/config/locales/cs.yml
CHANGED
@@ -22,8 +22,6 @@ cs:
|
|
22
22
|
published_at: Publikováno v
|
23
23
|
registration_terms: Podmínky registrace
|
24
24
|
registrations_enabled: Registrace povoleny
|
25
|
-
scope_id: Oblast působnosti
|
26
|
-
scopes_enabled: Oblasti působnosti povoleny
|
27
25
|
short_description: Stručný popis
|
28
26
|
show_statistics: Zobrazit statistiky
|
29
27
|
sign_date: Datum podpisu
|
@@ -53,7 +51,7 @@ cs:
|
|
53
51
|
conference_registration_type:
|
54
52
|
description: Popis
|
55
53
|
price: Cena
|
56
|
-
title:
|
54
|
+
title: Název
|
57
55
|
weight: Pozice v řazení
|
58
56
|
conference_speaker:
|
59
57
|
affiliation: Příslušnost
|
@@ -69,6 +67,8 @@ cs:
|
|
69
67
|
email: E-mail
|
70
68
|
name: Název
|
71
69
|
role: Role
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -96,6 +96,7 @@ cs:
|
|
96
96
|
admin:
|
97
97
|
actions:
|
98
98
|
confirm: Potvrdit
|
99
|
+
confirm_delete_conference: Opravdu chcete odstranit tuto konferenci? Pokud změníte názor, můžete ji obnovit později.
|
99
100
|
new_conference: Nová konference
|
100
101
|
new_conference_user_role: Nový administrátor konference
|
101
102
|
new_media_link: Nový odkaz na média
|
@@ -103,6 +104,7 @@ cs:
|
|
103
104
|
new_registration_type: Nový typ registrace
|
104
105
|
new_speaker: Nový mluvčí
|
105
106
|
send_diplomas: Odeslání certifikátů o účasti
|
107
|
+
view_deleted_conferences: Zobrazit smazané konference
|
106
108
|
conference_copies:
|
107
109
|
new:
|
108
110
|
copy: Kopírovat
|
@@ -126,13 +128,13 @@ cs:
|
|
126
128
|
destroy:
|
127
129
|
success: Řečník byl úspěšně smazán pro tuto konferenci.
|
128
130
|
edit:
|
129
|
-
title: Aktualizovat řečníka konference
|
131
|
+
title: Aktualizovat řečníka konference
|
130
132
|
update: Aktualizace
|
131
133
|
index:
|
132
134
|
conference_speakers_title: Řečníci konference
|
133
135
|
new:
|
134
136
|
create: Vytvořit
|
135
|
-
title: Nový řečník konference
|
137
|
+
title: Nový řečník konference
|
136
138
|
publish:
|
137
139
|
invalid: Při publikování tohoto řečníka došlo k chybě.
|
138
140
|
success: Řečník konference byl úspěšně zveřejněn.
|
@@ -149,13 +151,13 @@ cs:
|
|
149
151
|
destroy:
|
150
152
|
success: Administrátor konference byl úspěšně odstraněn.
|
151
153
|
edit:
|
152
|
-
title: Aktualizovat
|
154
|
+
title: Aktualizovat správce konference
|
153
155
|
update: Aktualizace
|
154
156
|
index:
|
155
157
|
conference_admins_title: Administrátoři konference
|
156
158
|
new:
|
157
159
|
create: Vytvořit
|
158
|
-
title: Nový
|
160
|
+
title: Nový správce konference
|
159
161
|
update:
|
160
162
|
error: Při aktualizaci tohoto administrátora konference došlo k potížím.
|
161
163
|
success: Uživatel úspěšně aktualizován pro tuto konferenci.
|
@@ -172,6 +174,8 @@ cs:
|
|
172
174
|
index:
|
173
175
|
published: Publikováno
|
174
176
|
unpublished: Nezveřejněno
|
177
|
+
manage_trash:
|
178
|
+
title: Smazané konference
|
175
179
|
new:
|
176
180
|
create: Vytvořit
|
177
181
|
title: Konference
|
@@ -185,17 +189,17 @@ cs:
|
|
185
189
|
media_links:
|
186
190
|
create:
|
187
191
|
error: Při vytváření nového odkazu na média došlo k chybě.
|
188
|
-
success: Odkaz na
|
192
|
+
success: Odkaz na média byl úspěšně vytvořen.
|
189
193
|
destroy:
|
190
|
-
success: Odkaz na
|
194
|
+
success: Odkaz na média byl úspěšně odstraněn.
|
191
195
|
edit:
|
192
|
-
title: Aktualizovat odkaz na
|
196
|
+
title: Aktualizovat odkaz na média
|
193
197
|
update: Aktualizace
|
194
198
|
index:
|
195
199
|
media_links_title: Odkazy na média
|
196
200
|
new:
|
197
201
|
create: Vytvořit
|
198
|
-
title:
|
202
|
+
title: Vytvořit odkaz na média
|
199
203
|
update:
|
200
204
|
error: Při aktualizaci tohoto odkazu na média došlo k chybě.
|
201
205
|
success: Odkaz na média byl úspěšně aktualizován.
|
@@ -205,12 +209,11 @@ cs:
|
|
205
209
|
attachment_collections: Složky
|
206
210
|
attachment_files: Soubory
|
207
211
|
attachments: Přílohy
|
208
|
-
categories: Kategorie
|
209
212
|
components: Komponenty
|
210
213
|
conference_admins: Administrátoři konference
|
211
214
|
conference_invites: Pozvánky
|
212
215
|
conference_speakers: Řečníci
|
213
|
-
diploma:
|
216
|
+
diploma: Certifikát o účasti
|
214
217
|
info: O této konferenci
|
215
218
|
media_links: Odkazy na média
|
216
219
|
moderations: Moderování
|
@@ -273,7 +276,7 @@ cs:
|
|
273
276
|
destroy:
|
274
277
|
success: Partner byl úspěšně odstraněn z této konference.
|
275
278
|
edit:
|
276
|
-
title: Aktualizovat partnera
|
279
|
+
title: Aktualizovat partnera
|
277
280
|
update: Aktualizace
|
278
281
|
new:
|
279
282
|
create: Vytvořit
|
@@ -295,7 +298,7 @@ cs:
|
|
295
298
|
destroy:
|
296
299
|
success: Typ registrace byl z této konference úspěšně odstraněn.
|
297
300
|
edit:
|
298
|
-
title: Aktualizovat typ registrace
|
301
|
+
title: Aktualizovat typ registrace
|
299
302
|
update: Aktualizace
|
300
303
|
new:
|
301
304
|
create: Vytvořit
|
@@ -303,13 +306,21 @@ cs:
|
|
303
306
|
update:
|
304
307
|
error: Při aktualizaci typu registrace pro tuto konferenci došlo k chybě.
|
305
308
|
success: Typ registrace byl úspěšně aktualizován pro tuto konferenci.
|
309
|
+
taxonomy_filters:
|
310
|
+
space_filter_for:
|
311
|
+
conferences: Všechny konference
|
306
312
|
titles:
|
307
313
|
conferences: Konference
|
314
|
+
conferences_deleted: Smazané konference
|
315
|
+
tooltips:
|
316
|
+
deleted_conferences_info: Konference mohou být smazané pouze v případě, že je stav "Nezveřejněný".
|
308
317
|
admin_log:
|
309
318
|
conference:
|
310
319
|
create: "%{user_name} vytvořil konferenci %{resource_name}"
|
311
320
|
publish: "%{user_name} zveřejnila %{resource_name} konferenci"
|
321
|
+
restore: "%{user_name} obnovil konferenci %{resource_name}"
|
312
322
|
send_conference_diplomas: "%{user_name} zaslal certifikaci o účasti na konferenci %{resource_name}"
|
323
|
+
soft_delete: "%{user_name} přesunul do koše konferenci %{resource_name}"
|
313
324
|
unpublish: "%{user_name} nepublikováno %{resource_name} konferenci"
|
314
325
|
update: "%{user_name} aktualizoval konferenci %{resource_name}"
|
315
326
|
update_diploma: "%{user_name} aktualizovala certifikáty pro účast na %{resource_name} konferenci"
|
@@ -380,12 +391,15 @@ cs:
|
|
380
391
|
conferences:
|
381
392
|
form:
|
382
393
|
available_slots_help: Nechte to na 0, pokud máte k dispozici neomezené sloty.
|
394
|
+
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
395
|
+
no_taxonomy_filters_found: Nebyly nalezeny žádné filtry taxonomie.
|
383
396
|
registrations_count:
|
384
397
|
one: Došlo k 1 registraci.
|
385
398
|
few: Bylo zde %{count} registrací.
|
386
399
|
many: Bylo zde %{count} registrací.
|
387
400
|
other: Bylo zde %{count} registrací.
|
388
401
|
slug_help_html: 'URL slugy se používají ke generování adres URL, které odkazují na tuto konferenci. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
402
|
+
taxonomies: Taxonomie
|
389
403
|
content_blocks:
|
390
404
|
highlighted_conferences:
|
391
405
|
max_results: Maximální počet zobrazených prvků
|
@@ -412,7 +426,7 @@ cs:
|
|
412
426
|
diploma_html: Naleznete certifikát o účasti na konferenci <a href="%{url}">%{title}</a> v přílohách.
|
413
427
|
diploma_user:
|
414
428
|
attendance_verified_by: Účet ověřil
|
415
|
-
certificate_of_attendance:
|
429
|
+
certificate_of_attendance: Certifikát o účasti
|
416
430
|
certificate_of_attendance_description: Tímto potvrzujeme, že <strong>%{user}</strong> se zúčastnilo a zúčastnilo se <strong>%{title}</strong> konaných na <strong>%{location}</strong> na <strong>%{start} - %{end}</strong>
|
417
431
|
send_diploma:
|
418
432
|
error: Při odesílání konferenčních certifikátů docházelo k problému.
|
@@ -536,6 +550,25 @@ cs:
|
|
536
550
|
objectives: Cíle
|
537
551
|
related_assemblies: Související shromáždění
|
538
552
|
related_participatory_processes: Související participativní procesy
|
553
|
+
download_your_data:
|
554
|
+
help:
|
555
|
+
conference_invites:
|
556
|
+
accepted_at: Datum, kdy byla pozvánka na konferenci přijata
|
557
|
+
conference: Konference, na kterou byla tato pozvánka zaslána
|
558
|
+
confirmed_at: Datum, kdy bylo toto pozvání potvrzeno
|
559
|
+
created_at: Datum, kdy byla tato pozvánka vytvořena
|
560
|
+
id: Jedinečný identifikátor pozvánky na konferenci
|
561
|
+
registration_type: Typ registrace na tuto konferenci, která byla zaslána
|
562
|
+
rejected_at: Datum odmítnutí pozvánky na konferenci
|
563
|
+
sent_at: Datum odeslání pozvánky na konferenci
|
564
|
+
updated_at: Datum, kdy byla tato pozvánka naposledy aktualizována
|
565
|
+
conference_registrations:
|
566
|
+
conference: Konference, ke které patří
|
567
|
+
confirmed_at: Datum, kdy byla tato registrace potvrzena
|
568
|
+
created_at: Datum, kdy byla registrace vytvořena
|
569
|
+
id: Jedinečný identifikátor registrací konference
|
570
|
+
registration_type: Typ registrace, do které patří
|
571
|
+
updated_at: Datum, kdy byla registrace naposledy aktualizována
|
539
572
|
events:
|
540
573
|
conferences:
|
541
574
|
conference_registration_confirmed:
|
@@ -583,6 +616,33 @@ cs:
|
|
583
616
|
title: Média a odkazy
|
584
617
|
menu:
|
585
618
|
conferences: Konference
|
619
|
+
open_data:
|
620
|
+
help:
|
621
|
+
conferences:
|
622
|
+
created_at: Datum, kdy byl tento prostor vytvořen
|
623
|
+
decidim_scope_id: Rozsah konference
|
624
|
+
description: Dlouhý popis konference
|
625
|
+
end_date: Datum, kdy tato konference skončí.
|
626
|
+
follows_count: Počet uživatelů sledujících tento prostor
|
627
|
+
hashtag: Hashtag Konference, používaná pro Twitter/X
|
628
|
+
id: Jedinečný identifikátor této konference
|
629
|
+
location: Místo konference, kde se bude konat.
|
630
|
+
objectives: Cíle této konference. Co je cílem.
|
631
|
+
promoted: Zda je konference propagována, nebo ne
|
632
|
+
published_at: Datum, kdy byl tento prostor publikován
|
633
|
+
reference: Jedinečný odkaz na prostor
|
634
|
+
remote_banner_image_url: URL obrázku banneru konference
|
635
|
+
remote_hero_image_url: URL obrázku přední osobnosti konference
|
636
|
+
scope: Rozsah konference
|
637
|
+
scopes_enabled: Zda jsou rozsahy povoleny nebo ne
|
638
|
+
short_description: Stručný popis konference
|
639
|
+
slogan: Slogan pro tuto konferenci
|
640
|
+
slug: Konference slug (používá se pro účely identifikace, pro URL)
|
641
|
+
start_date: Datum, kdy tato konference začne.
|
642
|
+
taxonomies: Taxonomie konference
|
643
|
+
title: Název konference
|
644
|
+
updated_at: Poslední datum, kdy byl tento prostor aktualizován
|
645
|
+
url: URL prostoru
|
586
646
|
statistics:
|
587
647
|
conferences_count: Konference
|
588
648
|
devise:
|