decidim-conferences 0.27.10 → 0.28.0.rc4
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/conference_cell.rb +9 -4
- data/app/cells/decidim/conferences/conference_dropdown_metadata_cell.rb +19 -0
- data/app/cells/decidim/conferences/conference_g_cell.rb +23 -0
- data/app/cells/decidim/conferences/conference_metadata_cell.rb +21 -0
- data/app/cells/decidim/conferences/conference_s_cell.rb +13 -0
- data/app/cells/decidim/conferences/conference_speaker/show.erb +44 -58
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +4 -14
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +15 -14
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +3 -0
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form_cell.rb +19 -0
- data/app/cells/decidim/conferences/linked_participatory_spaces/show.erb +6 -8
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +1 -10
- data/app/cells/decidim/conferences/media_link/show.erb +6 -8
- data/app/cells/decidim/conferences/partner/image.erb +3 -0
- data/app/cells/decidim/conferences/partner/show.erb +8 -8
- data/app/cells/decidim/conferences/partner/text.erb +1 -0
- data/app/cells/decidim/conferences/partner_cell.rb +4 -2
- data/app/cells/decidim/conferences/registration_type/join_conference.erb +15 -12
- data/app/cells/decidim/conferences/registration_type/registration_confirm.erb +12 -12
- data/app/cells/decidim/conferences/registration_type/show.erb +11 -14
- data/app/cells/decidim/conferences/registration_type_cell.rb +3 -3
- data/app/commands/decidim/conferences/admin/copy_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference.rb +2 -11
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_media_link.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_partner.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +2 -2
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +2 -2
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +3 -3
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +5 -5
- data/app/commands/decidim/conferences/admin/publish_conference.rb +9 -26
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +2 -11
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/decline_invitation.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +5 -5
- data/app/constraints/decidim/conferences/current_component.rb +2 -2
- data/app/constraints/decidim/conferences/current_conference.rb +2 -2
- data/app/controllers/concerns/decidim/conferences/admin/conference_context.rb +1 -1
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +2 -2
- data/app/controllers/decidim/conferences/admin/conference_attachment_collections_controller.rb +6 -1
- data/app/controllers/decidim/conferences/admin/conference_attachments_controller.rb +5 -0
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conference_publications_controller.rb +10 -28
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_user_roles_controller.rb +8 -90
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +2 -0
- data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/exports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/imports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/moderations/reports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/moderations_controller.rb +1 -1
- data/app/controllers/decidim/conferences/application_controller.rb +6 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +3 -3
- data/app/controllers/decidim/conferences/conferences_controller.rb +9 -2
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +3 -13
- data/app/events/decidim/conferences/conference_registrations_enabled_event.rb +1 -1
- data/app/events/decidim/conferences/conference_registrations_over_percentage_event.rb +1 -1
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +6 -6
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +4 -15
- data/app/forms/decidim/conferences/admin/conference_user_role_form.rb +2 -17
- data/app/helpers/decidim/conferences/admin/conferences_helper.rb +0 -4
- data/app/helpers/decidim/conferences/conference_helper.rb +55 -0
- data/app/helpers/decidim/conferences/conference_program_helper.rb +1 -1
- data/app/helpers/decidim/conferences/media_attachments_helper.rb +0 -10
- data/app/helpers/decidim/conferences/partners_helper.rb +3 -1
- data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +1 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -1
- data/app/mailers/decidim/conferences/conference_registration_mailer.rb +2 -2
- data/app/models/decidim/conference.rb +4 -4
- data/app/models/decidim/conference_user_role.rb +6 -34
- data/app/packs/entrypoints/decidim_conferences.js +5 -0
- data/app/packs/src/decidim/conferences/admin/conferences.js +6 -6
- data/app/packs/stylesheets/decidim/conferences/_conference.scss +102 -0
- data/app/packs/stylesheets/decidim/conferences/_media.scss +13 -0
- data/app/packs/stylesheets/decidim/conferences/_program.scss +43 -0
- data/app/packs/stylesheets/decidim/conferences/_registration.scss +39 -0
- data/app/packs/stylesheets/decidim/conferences/_speaker.scss +83 -0
- data/app/packs/stylesheets/decidim/conferences/conferences.scss +5 -3
- data/app/permissions/decidim/conferences/permissions.rb +2 -13
- data/app/presenters/decidim/conference_speaker_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/conference_invite_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_user_role_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/media_link_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/conference_stats_presenter.rb +3 -28
- data/app/queries/decidim/conferences/admin/admin_users.rb +4 -4
- data/app/queries/decidim/conferences/conferences_with_user_role.rb +2 -2
- data/app/queries/decidim/conferences/organization_conferences.rb +1 -1
- data/app/queries/decidim/conferences/organization_published_conferences.rb +1 -1
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +22 -28
- data/app/views/decidim/conferences/admin/conference_copies/new.html.erb +16 -5
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +17 -19
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +69 -74
- data/app/views/decidim/conferences/admin/conference_invites/new.html.erb +21 -17
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +45 -45
- data/app/views/decidim/conferences/admin/conference_speakers/_form.html.erb +42 -46
- data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +52 -55
- data/app/views/decidim/conferences/admin/conference_speakers/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_user_roles/_form.html.erb +14 -18
- data/app/views/decidim/conferences/admin/conference_user_roles/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +53 -56
- data/app/views/decidim/conferences/admin/conference_user_roles/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +88 -88
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +26 -12
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +55 -64
- data/app/views/decidim/conferences/admin/conferences/new.html.erb +16 -8
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +18 -24
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +19 -5
- data/app/views/decidim/conferences/admin/media_links/_form.html.erb +15 -19
- data/app/views/decidim/conferences/admin/media_links/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +37 -40
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +18 -22
- data/app/views/decidim/conferences/admin/partners/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/partners/index.html.erb +45 -48
- data/app/views/decidim/conferences/admin/partners/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +23 -23
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +52 -56
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +2 -2
- data/app/views/decidim/conferences/conference_program/_program_item.html.erb +21 -24
- data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +29 -63
- data/app/views/decidim/conferences/conference_program/show.html.erb +27 -39
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +12 -6
- data/app/views/decidim/conferences/conferences/_conference_hero.html.erb +33 -0
- data/app/views/decidim/conferences/conferences/_partners.html.erb +10 -13
- data/app/views/decidim/conferences/conferences/index.html.erb +17 -7
- data/app/views/decidim/conferences/conferences/show.html.erb +84 -50
- data/app/views/decidim/conferences/media/index.html.erb +33 -19
- data/app/views/decidim/conferences/registration_types/index.html.erb +25 -17
- data/app/views/layouts/decidim/admin/conference.html.erb +12 -14
- data/app/views/layouts/decidim/admin/conferences.html.erb +13 -8
- data/app/views/layouts/decidim/conference.html.erb +7 -17
- data/app/views/layouts/decidim/conferences/_conference_nav_item.html.erb +6 -0
- data/app/views/layouts/decidim/conferences/application.html.erb +6 -0
- data/config/assets.rb +1 -1
- data/config/initializers/wicked_pdf.rb +1 -1
- data/config/locales/ar.yml +3 -64
- data/config/locales/bg.yml +0 -612
- data/config/locales/ca.yml +35 -55
- data/config/locales/cs.yml +35 -53
- data/config/locales/de.yml +34 -54
- data/config/locales/el.yml +11 -51
- data/config/locales/en.yml +34 -54
- data/config/locales/es-MX.yml +32 -52
- data/config/locales/es-PY.yml +32 -52
- data/config/locales/es.yml +32 -52
- data/config/locales/eu.yml +33 -58
- data/config/locales/fi-plain.yml +32 -52
- data/config/locales/fi.yml +32 -52
- data/config/locales/fr-CA.yml +31 -51
- data/config/locales/fr.yml +31 -51
- data/config/locales/ga-IE.yml +0 -17
- data/config/locales/gl.yml +3 -62
- data/config/locales/hu.yml +15 -53
- data/config/locales/id-ID.yml +3 -57
- data/config/locales/it.yml +4 -62
- data/config/locales/ja.yml +33 -54
- data/config/locales/lb.yml +1 -55
- data/config/locales/lt.yml +14 -52
- data/config/locales/lv.yml +1 -61
- data/config/locales/nl.yml +3 -62
- data/config/locales/no.yml +1 -62
- data/config/locales/pl.yml +1 -81
- data/config/locales/pt-BR.yml +1 -72
- data/config/locales/pt.yml +2 -63
- data/config/locales/ro-RO.yml +13 -50
- data/config/locales/sk.yml +1 -61
- data/config/locales/sl.yml +0 -2
- data/config/locales/sr-CS.yml +0 -9
- data/config/locales/sv.yml +22 -77
- data/config/locales/tr-TR.yml +13 -62
- data/config/locales/zh-CN.yml +3 -60
- data/config/locales/zh-TW.yml +6 -47
- data/db/migrate/20221116084952_add_weight_to_conferences.rb +7 -0
- data/lib/decidim/conferences/admin_engine.rb +14 -138
- data/lib/decidim/conferences/content_blocks/registry_manager.rb +21 -0
- data/lib/decidim/conferences/engine.rb +17 -15
- data/lib/decidim/conferences/menu.rb +182 -0
- data/lib/decidim/conferences/participatory_space.rb +6 -200
- data/lib/decidim/conferences/query_extensions.rb +2 -2
- data/lib/decidim/conferences/seeds.rb +153 -0
- data/lib/decidim/conferences/test/factories.rb +37 -73
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +47 -51
- data/app/cells/decidim/conferences/conference_address/show.erb +0 -11
- data/app/cells/decidim/conferences/conference_address_cell.rb +0 -11
- data/app/cells/decidim/conferences/conference_m/footer.erb +0 -9
- data/app/cells/decidim/conferences/conference_m/tags.erb +0 -1
- data/app/cells/decidim/conferences/conference_m_cell.rb +0 -38
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences/show.erb +0 -30
- data/app/cells/decidim/conferences/photo/show.erb +0 -26
- data/app/cells/decidim/conferences/photo_cell.rb +0 -41
- data/app/cells/decidim/conferences/photos_list/show.erb +0 -8
- data/app/cells/decidim/conferences/photos_list_cell.rb +0 -18
- data/app/commands/decidim/conferences/admin/create_conference_admin.rb +0 -114
- data/app/commands/decidim/conferences/admin/destroy_conference_admin.rb +0 -58
- data/app/commands/decidim/conferences/admin/notify_role_assigned_to_conference.rb +0 -22
- data/app/commands/decidim/conferences/admin/unpublish_conference.rb +0 -39
- data/app/commands/decidim/conferences/admin/update_conference_admin.rb +0 -53
- data/app/controllers/decidim/conferences/conference_widgets_controller.rb +0 -33
- data/app/queries/decidim/conferences/admin/conference_invites.rb +0 -60
- data/app/views/decidim/conferences/_order_by_conferences.html.erb +0 -3
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +0 -27
- data/app/views/decidim/conferences/media/_attachments.html.erb +0 -6
- data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +0 -14
- data/app/views/layouts/decidim/_conference_hero.html.erb +0 -42
- data/app/views/layouts/decidim/_conferences_nav.html.erb +0 -46
- data/config/locales/he-IL.yml +0 -1
- data/db/seeds/Exampledocument.pdf +0 -0
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/db/seeds/homepage_image.jpg +0 -0
- data/db/seeds/logo.png +0 -0
- data/decidim-conferences.gemspec +0 -33
data/config/locales/ca.yml
CHANGED
@@ -6,7 +6,6 @@ ca:
|
|
6
6
|
assemblies_ids: Assemblees relacionades
|
7
7
|
available_slots: Places disponibles
|
8
8
|
banner_image: Imatge de banner
|
9
|
-
consultations_ids: Consultes relacionades
|
10
9
|
copy_categories: Copiar categories
|
11
10
|
copy_components: Copiar components
|
12
11
|
copy_features: Copiar funcionalitats
|
@@ -34,6 +33,7 @@ ca:
|
|
34
33
|
slug: URL amigable
|
35
34
|
start_date: Data d'inici
|
36
35
|
title: Títol
|
36
|
+
weight: Ordre de posició
|
37
37
|
conference_media_link:
|
38
38
|
date: Data
|
39
39
|
link: Enllaç
|
@@ -74,7 +74,7 @@ ca:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited:
|
77
|
+
already_invited: Ja s'havia convidat a aquest correu electrònic.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -90,7 +90,12 @@ ca:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmar
|
93
|
-
new_conference:
|
93
|
+
new_conference: Afegir jornada
|
94
|
+
new_conference_user_role: Afegir administradora
|
95
|
+
new_media_link: Afegir enllaç multimèdia
|
96
|
+
new_partner: Afegir col·laboradora
|
97
|
+
new_registration_type: Afegir tipus de registre
|
98
|
+
new_speaker: Afegir ponent
|
94
99
|
send_diplomas: Enviar certificats d'assistència
|
95
100
|
conference_copies:
|
96
101
|
new:
|
@@ -153,8 +158,8 @@ ca:
|
|
153
158
|
form:
|
154
159
|
title: Informació general
|
155
160
|
index:
|
156
|
-
not_published: No publicat
|
157
161
|
published: Publicat
|
162
|
+
unpublished: Despublicada
|
158
163
|
new:
|
159
164
|
create: Crear
|
160
165
|
title: Jornada
|
@@ -194,18 +199,18 @@ ca:
|
|
194
199
|
conference_invites: Convida
|
195
200
|
conference_speakers: Ponents
|
196
201
|
diploma: Certificat d'assistència
|
197
|
-
info:
|
202
|
+
info: Sobre aquesta jornada
|
198
203
|
media_links: Enllaços multimedia
|
199
204
|
moderations: Moderacions
|
200
205
|
partners: Col·laboradores
|
201
206
|
registration_types: Tipus d'inscripcions
|
202
207
|
registrations: Inscripcions
|
208
|
+
see_conference: Veure la jornada
|
203
209
|
user_registrations: Inscripcions de participants
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Creat a
|
208
|
-
promoted: Destacada
|
209
214
|
published: Publicada
|
210
215
|
title: Títol
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ ca:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
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}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: S'ha produït un error en convidar la participant a unir-se a la jornada.
|
@@ -347,13 +352,12 @@ ca:
|
|
347
352
|
accepted: Acceptada
|
348
353
|
all: Totes
|
349
354
|
rejected: Rebutjada
|
350
|
-
sent:
|
351
|
-
filter_by: Filtrar per
|
355
|
+
sent: Enviada
|
352
356
|
invite_attendee: Convidar participant
|
353
357
|
invites: Convida
|
354
358
|
search: Cercar
|
355
359
|
new:
|
356
|
-
explanation: La participant serà convidada a unir-se a una jornada. Si el correu electrònic no està registrat, també se la convidarà a unir-se a l'organització.
|
360
|
+
explanation: La participant serà convidada a unir-se a una jornada. Si el seu correu electrònic no està registrat, també se la convidarà a unir-se a l'organització.
|
357
361
|
invite: Convidar
|
358
362
|
new_invite: Convidar participant
|
359
363
|
conference_registrations:
|
@@ -373,7 +377,10 @@ ca:
|
|
373
377
|
registrations_count:
|
374
378
|
one: Hi ha hagut 1 inscripció.
|
375
379
|
other: Hi ha hagut %{count} inscripcions.
|
376
|
-
|
380
|
+
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}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Quantitat màxima d'elements a mostrar
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: Desa
|
@@ -407,18 +414,11 @@ ca:
|
|
407
414
|
cancel: Cancel·lar
|
408
415
|
confirm: Confirmar
|
409
416
|
show:
|
410
|
-
free: Entrada lliure
|
411
417
|
going: Assistiré
|
412
418
|
no_slots_available: No hi ha places disponibles
|
413
419
|
registration: Inscripció
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Contingut
|
417
|
-
location: Ubicació
|
418
|
-
speakers: Ponents
|
419
|
-
streaming: Streaming
|
420
421
|
show:
|
421
|
-
day: Dia
|
422
422
|
program: Programa
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -451,19 +451,24 @@ ca:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Lloc web personal
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Anar a Twitter
|
456
454
|
conference_speakers:
|
457
455
|
index:
|
458
|
-
speakers:
|
456
|
+
speakers:
|
457
|
+
one: Ponent
|
458
|
+
other: Ponents
|
459
459
|
conferences:
|
460
460
|
partners:
|
461
461
|
collaborators: Col·laboradores
|
462
462
|
main_promotors: Organitzadores
|
463
463
|
show:
|
464
|
+
already_have_an_account?: Ja tens un compte?
|
465
|
+
are_you_new?: Encara no ets participant?
|
464
466
|
login_as: Has iniciat la sessió com a %{name} <%{email}>
|
465
|
-
make_conference_registration:
|
467
|
+
make_conference_registration: Inscriu-te a la jornada
|
468
|
+
manage_registration: Gestionar inscripcions
|
466
469
|
register: Inscripcions
|
470
|
+
sign_in_description: Inicia sessió per inscriure't a la jornada
|
471
|
+
sign_up_description: Crea un compte de participant per inscriure't a la jornada
|
467
472
|
content_blocks:
|
468
473
|
highlighted_conferences:
|
469
474
|
name: Jornades destacades
|
@@ -472,9 +477,9 @@ ca:
|
|
472
477
|
mailer:
|
473
478
|
conference_registration_mailer:
|
474
479
|
confirmation:
|
475
|
-
subject: S'ha confirmat la teva inscripció a la jornada
|
480
|
+
subject: S'ha confirmat la teva inscripció a la jornada.
|
476
481
|
pending_validation:
|
477
|
-
subject: La teva inscripció a la jornada està pendent de
|
482
|
+
subject: La teva inscripció a la jornada està pendent de confirmació.
|
478
483
|
invite_join_conference_mailer:
|
479
484
|
invite:
|
480
485
|
subject: Invitació per a unir-se a una jornada
|
@@ -505,38 +510,19 @@ ca:
|
|
505
510
|
pages:
|
506
511
|
home:
|
507
512
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: Veure totes les jornades
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Imatge
|
515
|
-
show:
|
516
|
-
close_modal: Tanca el modal
|
517
|
-
photo: Imatge
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Imatges
|
513
|
+
active_spaces: Jornades actives
|
514
|
+
see_all_spaces: Veure totes les jornades
|
521
515
|
registration_types:
|
522
516
|
index:
|
523
517
|
choose_an_option: 'Tria el teu tipus d''inscripció:'
|
524
|
-
login_as: Has iniciat la sessió com a %{name} <%{email}>
|
525
518
|
no_registrations: Sense insripcions
|
526
519
|
register: Inscriu-te
|
527
520
|
title: Tipus d'inscripció
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: Ja tens un compte a Decidim?
|
531
|
-
new_user: Nou usuari?
|
532
|
-
sign_in: Inicia sessió per inscriure't a la jornada
|
533
|
-
sign_up: Crea un compte de participant per inscriure't a la jornada
|
534
521
|
show:
|
535
522
|
details: Detalls
|
536
523
|
introduction: Introducció
|
537
524
|
objectives: Objectius
|
538
525
|
related_assemblies: Assemblees relacionades
|
539
|
-
related_consultations: Consultes relacionades
|
540
526
|
related_participatory_processes: Processos participatius relacionats
|
541
527
|
events:
|
542
528
|
conferences:
|
@@ -546,7 +532,7 @@ ca:
|
|
546
532
|
notification_title: La teva inscripció a jornada <a href="%{resource_url}">%{resource_title}</a> està pendent de confirmació.
|
547
533
|
conference_registrations_over_percentage:
|
548
534
|
email_intro: Les places ocupades per a la jornada "%{resource_title}" superen el %{percentage}%.
|
549
|
-
email_outro: Has rebut aquesta notificació perquè
|
535
|
+
email_outro: Has rebut aquesta notificació perquè ets administradora de l'espai participatiu de la jornada.
|
550
536
|
email_subject: Les places ocupades per a la jornada "%{resource_title}" superen el %{percentage}%
|
551
537
|
notification_title: Les places ocupades per a la jornada <a href="%{resource_path}">%{resource_title}</a> superen el %{percentage}%.
|
552
538
|
conference_updated:
|
@@ -578,7 +564,7 @@ ca:
|
|
578
564
|
log:
|
579
565
|
value_types:
|
580
566
|
conference_presenter:
|
581
|
-
not_found: 'La jornada no s''ha trobat a la base de dades (ID: %{id})'
|
567
|
+
not_found: 'La jornada no s''ha trobat a la base de dades (ID: %{id}).'
|
582
568
|
media:
|
583
569
|
index:
|
584
570
|
description: Enllaços sobre aquesta jornada
|
@@ -594,10 +580,8 @@ ca:
|
|
594
580
|
layouts:
|
595
581
|
decidim:
|
596
582
|
conference_hero:
|
583
|
+
manage_registration: Gestionar inscripcions
|
597
584
|
register: Inscripció
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Participar
|
601
585
|
conferences:
|
602
586
|
conference:
|
603
587
|
more_info: Més informació
|
@@ -607,12 +591,8 @@ ca:
|
|
607
591
|
order_by_conferences:
|
608
592
|
conferences:
|
609
593
|
one: "%{count} jornada"
|
610
|
-
other: "%{count}
|
611
|
-
promoted_conference:
|
612
|
-
more_info: Més informació
|
613
|
-
take_part: Participar
|
594
|
+
other: "%{count} jornadas"
|
614
595
|
conferences_nav:
|
615
|
-
conference_menu_item: Informació
|
616
596
|
conference_partners_menu_item: Col·laboradores
|
617
597
|
conference_speaker_menu_item: Ponents
|
618
598
|
media: Mèdia
|
data/config/locales/cs.yml
CHANGED
@@ -6,7 +6,6 @@ cs:
|
|
6
6
|
assemblies_ids: Související shromáždění
|
7
7
|
available_slots: Dostupné sloty
|
8
8
|
banner_image: Obrázek banneru
|
9
|
-
consultations_ids: Související konzultace
|
10
9
|
copy_categories: Kopírovat kategorie
|
11
10
|
copy_components: Kopírování komponent
|
12
11
|
copy_features: Funkce kopírování
|
@@ -34,6 +33,7 @@ cs:
|
|
34
33
|
slug: URL slug
|
35
34
|
start_date: Datum zahájení
|
36
35
|
title: Titul
|
36
|
+
weight: Pozice v řazení
|
37
37
|
conference_media_link:
|
38
38
|
date: Datum
|
39
39
|
link: Odkaz
|
@@ -74,7 +74,7 @@ cs:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited: Tento e-mail již byl pozván
|
77
|
+
already_invited: Tento e-mail již byl pozván.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -97,6 +97,11 @@ cs:
|
|
97
97
|
actions:
|
98
98
|
confirm: Potvrdit
|
99
99
|
new_conference: Nová konference
|
100
|
+
new_conference_user_role: Nový administrátor konference
|
101
|
+
new_media_link: Nový odkaz na média
|
102
|
+
new_partner: Nový partner
|
103
|
+
new_registration_type: Nový typ registrace
|
104
|
+
new_speaker: Nový mluvčí
|
100
105
|
send_diplomas: Odeslání certifikátů o účasti
|
101
106
|
conference_copies:
|
102
107
|
new:
|
@@ -159,8 +164,8 @@ cs:
|
|
159
164
|
form:
|
160
165
|
title: Obecná informace
|
161
166
|
index:
|
162
|
-
not_published: Není zveřejněno
|
163
167
|
published: Publikováno
|
168
|
+
unpublished: Nezveřejněno
|
164
169
|
new:
|
165
170
|
create: Vytvořit
|
166
171
|
title: Konference
|
@@ -200,18 +205,18 @@ cs:
|
|
200
205
|
conference_invites: Pozvánky
|
201
206
|
conference_speakers: Řečníci
|
202
207
|
diploma: Potvrzení o účasti
|
203
|
-
info:
|
208
|
+
info: O této konferenci
|
204
209
|
media_links: Odkazy na média
|
205
210
|
moderations: Moderování
|
206
211
|
partners: Partneři
|
207
212
|
registration_types: Typy registrace
|
208
213
|
registrations: Registrace
|
214
|
+
see_conference: Zobrazit konferenci
|
209
215
|
user_registrations: Registrace uživatelů
|
210
216
|
models:
|
211
217
|
conference:
|
212
218
|
fields:
|
213
219
|
created_at: Vytvořeno v
|
214
|
-
promoted: Propagováno
|
215
220
|
published: Publikováno
|
216
221
|
title: Název
|
217
222
|
conference_speaker:
|
@@ -337,7 +342,7 @@ cs:
|
|
337
342
|
admin:
|
338
343
|
conference_copies:
|
339
344
|
form:
|
340
|
-
|
345
|
+
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}'
|
341
346
|
conference_invites:
|
342
347
|
create:
|
343
348
|
error: Při pozvání uživatele do konference došlo k problému.
|
@@ -353,13 +358,12 @@ cs:
|
|
353
358
|
accepted: Přijato
|
354
359
|
all: Vše
|
355
360
|
rejected: Odmítnuto
|
356
|
-
sent:
|
357
|
-
filter_by: Filtrovat podle
|
361
|
+
sent: Odesláno
|
358
362
|
invite_attendee: Pozvat účastníka
|
359
363
|
invites: Pozvánky
|
360
364
|
search: Vyhledávání
|
361
365
|
new:
|
362
|
-
explanation: Uživatel bude
|
366
|
+
explanation: Uživatel bude pozván, aby se připojil k konferenci. Pokud není jeho e-mail registrován, bude také pozván do organizace.
|
363
367
|
invite: Pozvat
|
364
368
|
new_invite: Pozvat uživatele
|
365
369
|
conference_registrations:
|
@@ -381,7 +385,10 @@ cs:
|
|
381
385
|
few: Bylo zde %{count} registrací.
|
382
386
|
many: Bylo zde %{count} registrací.
|
383
387
|
other: Bylo zde %{count} registrací.
|
384
|
-
|
388
|
+
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}'
|
389
|
+
content_blocks:
|
390
|
+
highlighted_conferences:
|
391
|
+
max_results: Maximální počet zobrazených prvků
|
385
392
|
diplomas:
|
386
393
|
edit:
|
387
394
|
save: Uložit
|
@@ -415,18 +422,11 @@ cs:
|
|
415
422
|
cancel: Zrušit
|
416
423
|
confirm: Potvrdit
|
417
424
|
show:
|
418
|
-
free: Volný
|
419
425
|
going: Chystáte se
|
420
426
|
no_slots_available: Žádné sloty nejsou k dispozici
|
421
427
|
registration: Registrace
|
422
428
|
conference_program:
|
423
|
-
program_meeting:
|
424
|
-
content: Obsah
|
425
|
-
location: Lokalita
|
426
|
-
speakers: Řečníci
|
427
|
-
streaming: Streamování
|
428
429
|
show:
|
429
|
-
day: Den
|
430
430
|
program: Program
|
431
431
|
conference_registration_mailer:
|
432
432
|
confirmation:
|
@@ -445,7 +445,7 @@ cs:
|
|
445
445
|
decline_invitation:
|
446
446
|
invalid: Došlo k potížím s odmítnutím pozvánky.
|
447
447
|
success: Odmítli jste pozvánku úspěšně.
|
448
|
-
unauthorized: Před odmítnutím
|
448
|
+
unauthorized: Před odmítnutím pozvánky se musíte přihlásit.
|
449
449
|
destroy:
|
450
450
|
invalid: Při této konferenci došlo k problému.
|
451
451
|
success: Konference jste úspěšně opustili.
|
@@ -459,19 +459,26 @@ cs:
|
|
459
459
|
conference_speaker_cell:
|
460
460
|
personal_url:
|
461
461
|
personal_website: Osobní web
|
462
|
-
twitter_handle:
|
463
|
-
go_to_twitter: Přejděte na Twitter
|
464
462
|
conference_speakers:
|
465
463
|
index:
|
466
|
-
speakers:
|
464
|
+
speakers:
|
465
|
+
one: Řečník
|
466
|
+
few: Řečníci
|
467
|
+
many: Řečníků
|
468
|
+
other: Řečníků
|
467
469
|
conferences:
|
468
470
|
partners:
|
469
471
|
collaborators: Partneři
|
470
472
|
main_promotors: Organizátoři
|
471
473
|
show:
|
474
|
+
already_have_an_account?: Již máte účet?
|
475
|
+
are_you_new?: Nový účastník?
|
472
476
|
login_as: Jste přihlášeni jako %{name} <%{email}>
|
473
|
-
make_conference_registration:
|
477
|
+
make_conference_registration: Registrovat na konferenci
|
478
|
+
manage_registration: Správa registrace
|
474
479
|
register: Registrovat
|
480
|
+
sign_in_description: Přihlaste se pro registraci do konference
|
481
|
+
sign_up_description: Vytvořte si účet pro registraci do konference
|
475
482
|
content_blocks:
|
476
483
|
highlighted_conferences:
|
477
484
|
name: Zvýrazněné konference
|
@@ -480,9 +487,9 @@ cs:
|
|
480
487
|
mailer:
|
481
488
|
conference_registration_mailer:
|
482
489
|
confirmation:
|
483
|
-
subject: Registrace
|
490
|
+
subject: Registrace na konferenci byla potvrzena
|
484
491
|
pending_validation:
|
485
|
-
subject: Registrace
|
492
|
+
subject: Registrace na konferenci čeká na potvrzení.
|
486
493
|
invite_join_conference_mailer:
|
487
494
|
invite:
|
488
495
|
subject: Pozvánka na konferenci
|
@@ -513,38 +520,19 @@ cs:
|
|
513
520
|
pages:
|
514
521
|
home:
|
515
522
|
highlighted_conferences:
|
516
|
-
|
517
|
-
|
518
|
-
see_all_conferences: Zobrazit všechny konference
|
519
|
-
photo:
|
520
|
-
image:
|
521
|
-
attributes:
|
522
|
-
alt: Obrázek médií
|
523
|
-
show:
|
524
|
-
close_modal: Zavřít modální
|
525
|
-
photo: Fotografie
|
526
|
-
photos_list:
|
527
|
-
show:
|
528
|
-
related_photos: Fotky
|
523
|
+
active_spaces: Aktivní konference
|
524
|
+
see_all_spaces: Zobrazit všechny konference
|
529
525
|
registration_types:
|
530
526
|
index:
|
531
527
|
choose_an_option: 'Vyberte možnost registrace:'
|
532
|
-
login_as: Jste přihlášeni jako %{name} <%{email}>
|
533
528
|
no_registrations: Žádné registrace
|
534
529
|
register: Registrovat
|
535
530
|
title: Typy registrace
|
536
|
-
shared:
|
537
|
-
conference_user_login:
|
538
|
-
already_account: Máte již účet v decidimu?
|
539
|
-
new_user: Nový uživatel?
|
540
|
-
sign_in: Přihlaste se pro registraci do konference
|
541
|
-
sign_up: Vytvořte účet v decidim a zaregistrujte se pro tuto konferenci
|
542
531
|
show:
|
543
532
|
details: Podrobnosti
|
544
533
|
introduction: Úvod
|
545
534
|
objectives: Cíle
|
546
535
|
related_assemblies: Související shromáždění
|
547
|
-
related_consultations: Související konzultace
|
548
536
|
related_participatory_processes: Související participativní procesy
|
549
537
|
events:
|
550
538
|
conferences:
|
@@ -586,7 +574,7 @@ cs:
|
|
586
574
|
log:
|
587
575
|
value_types:
|
588
576
|
conference_presenter:
|
589
|
-
not_found: 'Konference nebyla
|
577
|
+
not_found: 'Konference nebyla v databázi nalezena (ID: %{id}).'
|
590
578
|
media:
|
591
579
|
index:
|
592
580
|
description: Odkazy na tuto konferenci
|
@@ -602,10 +590,8 @@ cs:
|
|
602
590
|
layouts:
|
603
591
|
decidim:
|
604
592
|
conference_hero:
|
593
|
+
manage_registration: Správa registrace
|
605
594
|
register: Registrovat
|
606
|
-
conference_widgets:
|
607
|
-
show:
|
608
|
-
take_part: Zúčastnit se
|
609
595
|
conferences:
|
610
596
|
conference:
|
611
597
|
more_info: Více informací
|
@@ -618,11 +604,7 @@ cs:
|
|
618
604
|
few: "%{count} konferencí"
|
619
605
|
many: "%{count} konferencí"
|
620
606
|
other: "%{count} konferencí"
|
621
|
-
promoted_conference:
|
622
|
-
more_info: Více informací
|
623
|
-
take_part: Zúčastnit se
|
624
607
|
conferences_nav:
|
625
|
-
conference_menu_item: Informace
|
626
608
|
conference_partners_menu_item: Partneři
|
627
609
|
conference_speaker_menu_item: Řečníci
|
628
610
|
media: Média
|