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/eu.yml
CHANGED
@@ -6,7 +6,6 @@ eu:
|
|
6
6
|
assemblies_ids: Erlazionatutako Batzarrak
|
7
7
|
available_slots: Leku libreak
|
8
8
|
banner_image: Banner irudia
|
9
|
-
consultations_ids: Lotutako kontsultak
|
10
9
|
copy_categories: Kopiatu kategoriak
|
11
10
|
copy_components: Kopiatu osagaiak
|
12
11
|
copy_features: Kopiatu ezaugarriak
|
@@ -34,6 +33,7 @@ eu:
|
|
34
33
|
slug: URL laburra
|
35
34
|
start_date: Hasiera-data
|
36
35
|
title: Izenburua
|
36
|
+
weight: Hurrenkera
|
37
37
|
conference_media_link:
|
38
38
|
date: Data
|
39
39
|
link: Esteka
|
@@ -74,7 +74,7 @@ eu:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited:
|
77
|
+
already_invited: Helbide elektronikoko kontu hau dagoeneko gonbidatuta dago.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -91,6 +91,11 @@ eu:
|
|
91
91
|
actions:
|
92
92
|
confirm: Berretsi
|
93
93
|
new_conference: Beste hitzaldi bat
|
94
|
+
new_conference_user_role: Hitzaldiaren beste administratzaile bat
|
95
|
+
new_media_link: Hedabideen beste lotura bat
|
96
|
+
new_partner: Beste kide bat
|
97
|
+
new_registration_type: Beste erregistro mota bat
|
98
|
+
new_speaker: Beste hizlari bat
|
94
99
|
send_diplomas: Bidali bertaratze-ziurtagiriak
|
95
100
|
conference_copies:
|
96
101
|
new:
|
@@ -153,8 +158,8 @@ eu:
|
|
153
158
|
form:
|
154
159
|
title: Informazio orokorra
|
155
160
|
index:
|
156
|
-
not_published: Ez da argitaratu
|
157
161
|
published: Argitaratua
|
162
|
+
unpublished: Despublikatua
|
158
163
|
new:
|
159
164
|
create: Sortu
|
160
165
|
title: Hitzaldia
|
@@ -194,18 +199,18 @@ eu:
|
|
194
199
|
conference_invites: Gonbidapenak
|
195
200
|
conference_speakers: Hizlariak
|
196
201
|
diploma: Bertaratze-ziurtagiria
|
197
|
-
info:
|
202
|
+
info: Hitzaldi honi buruz
|
198
203
|
media_links: Hedabideen loturak
|
199
204
|
moderations: Moderazioak
|
200
205
|
partners: Kideak
|
201
206
|
registration_types: Izen-emate motak
|
202
207
|
registrations: Izen-emateak
|
208
|
+
see_conference: Ikusi hitzaldia
|
203
209
|
user_registrations: Erabiltzaileen erregistroak
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Noiz sortua
|
208
|
-
promoted: Nabarmendua
|
209
214
|
published: Argitaratua
|
210
215
|
title: Izenburua
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ eu:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
slug_help_html: 'URL slugak erabiltzen dira konferentzia honetako URLak sortzeko. Soilik onartzen ditu gutunak, zenbakiak eta gidoiak, eta letra batez hasi behar du. Adibidea: % {url}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: Arazo bat izan da erabiltzaileak konferentziara sartzeko gonbidatuta.
|
@@ -344,16 +349,15 @@ eu:
|
|
344
349
|
select_user: Aukeratu erabiltzailea
|
345
350
|
index:
|
346
351
|
filter:
|
347
|
-
accepted:
|
352
|
+
accepted: Onartu
|
348
353
|
all: guztiak
|
349
|
-
rejected:
|
354
|
+
rejected: Ukatua
|
350
355
|
sent: bidalia
|
351
|
-
filter_by: Iragazi arabera
|
352
356
|
invite_attendee: Gonbidatu parte-hartzailea
|
353
357
|
invites: Gonbidapenak
|
354
358
|
search: Bilatu
|
355
359
|
new:
|
356
|
-
explanation:
|
360
|
+
explanation: Parte-hartzailea gonbidatuko da hitzaldi batera lotzera. Bere posta elektronikoa erregistratuta ez badago, erakundera ere gonbidatuko dute.
|
357
361
|
invite: gonbidatu
|
358
362
|
new_invite: Gonbidatu erabiltzailea
|
359
363
|
conference_registrations:
|
@@ -373,7 +377,10 @@ eu:
|
|
373
377
|
registrations_count:
|
374
378
|
one: Izen-emate 1 egon da.
|
375
379
|
other: Dena den, %{count} matrikulazioak.
|
376
|
-
|
380
|
+
slug_help_html: 'URL slugak erabiltzen dira hitzaldi honetako URLak sortzeko. Soilik onartzen ditu gutunak, zenbakiak eta gidoiak, eta letra batez hasi behar du. Adibidea: % {url}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Erakusteko gehieneko elementu kopurua
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: Gorde
|
@@ -407,18 +414,11 @@ eu:
|
|
407
414
|
cancel: Utzi
|
408
415
|
confirm: Berretsi
|
409
416
|
show:
|
410
|
-
free: Free
|
411
417
|
going: joatean
|
412
418
|
no_slots_available: Ez dago slotarik erabilgarri
|
413
419
|
registration: Izen-ematea
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Edukia
|
417
|
-
location: Kokapena
|
418
|
-
speakers: Hizlariak
|
419
|
-
streaming: Streaming
|
420
421
|
show:
|
421
|
-
day: eguna
|
422
422
|
program: Programa
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -433,11 +433,11 @@ eu:
|
|
433
433
|
create:
|
434
434
|
invalid: Arazo bat egon da hitzaldi honetara lotzean.
|
435
435
|
success: Konferentzia ondo sartu zara.
|
436
|
-
unauthorized:
|
436
|
+
unauthorized: Hitzaldian izena eman aurretik sartu behar duzu.
|
437
437
|
decline_invitation:
|
438
438
|
invalid: Arazo bat egon da gonbidapena ez onartzean.
|
439
439
|
success: Gonbidapena ongi egin du.
|
440
|
-
unauthorized:
|
440
|
+
unauthorized: Gonbidapenari uko egin aurretik hasi behar duzu saioa.
|
441
441
|
destroy:
|
442
442
|
invalid: Arazo bat egon da hitzaldi hau uztean.
|
443
443
|
success: Kongresua behar bezala utzi duzu.
|
@@ -451,19 +451,19 @@ eu:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Webgune pertsonala
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Joan Twitterrera
|
456
|
-
conference_speakers:
|
457
|
-
index:
|
458
|
-
speakers: Hizlariak
|
459
454
|
conferences:
|
460
455
|
partners:
|
461
456
|
collaborators: Kideak
|
462
457
|
main_promotors: Antolatzaileak
|
463
458
|
show:
|
459
|
+
already_have_an_account?: Ba al duzu kontu bat?
|
460
|
+
are_you_new?: Beste parte-hartzaile bat?
|
464
461
|
login_as: '%{name} <%{email}> gisa erregistratuta zaude'
|
465
|
-
make_conference_registration:
|
462
|
+
make_conference_registration: Eman izena hitzaldian
|
463
|
+
manage_registration: Kudeatu erregistroa
|
466
464
|
register: Eman izena
|
465
|
+
sign_in_description: Hasi saioa hitzaldian erregistratzeko
|
466
|
+
sign_up_description: Sortu kontu bat hitzaldian erregistratzeko
|
467
467
|
content_blocks:
|
468
468
|
highlighted_conferences:
|
469
469
|
name: Nabarmendutako konferentziak
|
@@ -472,9 +472,9 @@ eu:
|
|
472
472
|
mailer:
|
473
473
|
conference_registration_mailer:
|
474
474
|
confirmation:
|
475
|
-
subject: Zure
|
475
|
+
subject: Zure erregistroa hitzaldian baieztatu da.
|
476
476
|
pending_validation:
|
477
|
-
subject: Zure
|
477
|
+
subject: Zure erregistroa hitzaldian baieztatzearen zain dago.
|
478
478
|
invite_join_conference_mailer:
|
479
479
|
invite:
|
480
480
|
subject: Hitzaldi baterako gonbidapena
|
@@ -505,39 +505,20 @@ eu:
|
|
505
505
|
pages:
|
506
506
|
home:
|
507
507
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: Ikusi hitzaldi guztiak
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Multimedia-irudia
|
515
|
-
show:
|
516
|
-
close_modal: Itxi leihoa
|
517
|
-
photo: Irudia
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Argazkiak
|
508
|
+
active_spaces: Jardunaldi aktiboak
|
509
|
+
see_all_spaces: Ikusi hitzaldi guztiak
|
521
510
|
registration_types:
|
522
511
|
index:
|
523
512
|
choose_an_option: 'Aukeratu zure erregistro-aukera:'
|
524
|
-
login_as: '%{name} <%{email}> gisa erregistratuta zaude'
|
525
513
|
no_registrations: Ez dago izen-ematerik
|
526
514
|
register: Eman izena
|
527
515
|
title: Izen-emate motak
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: Dagoeneko kontu bat duzu Decidimen?
|
531
|
-
new_user: Erabiltzaile berria?
|
532
|
-
sign_in: Hasi saioa hitzaldian erregistratzeko
|
533
|
-
sign_up: Sortu kontua Decidimen hitzaldian erregistratzeko
|
534
516
|
show:
|
535
517
|
details: Xehetasunak
|
536
518
|
introduction: Sarrera
|
537
519
|
objectives: Helburuak
|
538
520
|
related_assemblies: Lotutako Batzarrak
|
539
|
-
|
540
|
-
related_participatory_processes: Lotutako parte-hartze prozesuak
|
521
|
+
related_participatory_processes: Parte hartze prozesu erlazionatuak
|
541
522
|
events:
|
542
523
|
conferences:
|
543
524
|
conference_registration_confirmed:
|
@@ -578,7 +559,7 @@ eu:
|
|
578
559
|
log:
|
579
560
|
value_types:
|
580
561
|
conference_presenter:
|
581
|
-
not_found: '
|
562
|
+
not_found: 'Hitzaldia ez da aurkitu (ID: %{id}) datu-basean.'
|
582
563
|
media:
|
583
564
|
index:
|
584
565
|
description: Estekak hitzaldi honi buruz
|
@@ -594,10 +575,8 @@ eu:
|
|
594
575
|
layouts:
|
595
576
|
decidim:
|
596
577
|
conference_hero:
|
578
|
+
manage_registration: Kudeatu erregistroak
|
597
579
|
register: Eman izena
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Parte hartu
|
601
580
|
conferences:
|
602
581
|
conference:
|
603
582
|
more_info: Informazio gehiago
|
@@ -608,11 +587,7 @@ eu:
|
|
608
587
|
conferences:
|
609
588
|
one: "%{count} hitzaldi"
|
610
589
|
other: "%{count} hitzaldiak"
|
611
|
-
promoted_conference:
|
612
|
-
more_info: Informazio gehiago
|
613
|
-
take_part: Parte hartu
|
614
590
|
conferences_nav:
|
615
|
-
conference_menu_item: informazioa
|
616
591
|
conference_partners_menu_item: Kideak
|
617
592
|
conference_speaker_menu_item: Hizlariak
|
618
593
|
media: Media
|
data/config/locales/fi-plain.yml
CHANGED
@@ -6,7 +6,6 @@ fi-pl:
|
|
6
6
|
assemblies_ids: Liittyvät ryhmät
|
7
7
|
available_slots: Vapaat paikat
|
8
8
|
banner_image: Bannerikuva
|
9
|
-
consultations_ids: Liittyvät kuulemiset
|
10
9
|
copy_categories: Kopioi aihepiirit
|
11
10
|
copy_components: Kopioi komponentit
|
12
11
|
copy_features: Kopioi ominaisuudet
|
@@ -34,6 +33,7 @@ fi-pl:
|
|
34
33
|
slug: URL-tunniste
|
35
34
|
start_date: Alkamispäivä
|
36
35
|
title: Otsikko
|
36
|
+
weight: Järjestysnumero
|
37
37
|
conference_media_link:
|
38
38
|
date: Päivämäärä
|
39
39
|
link: Linkki
|
@@ -74,7 +74,7 @@ fi-pl:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited: Tämä sähköpostiosoite on jo kutsuttu
|
77
|
+
already_invited: Tämä sähköpostiosoite on jo kutsuttu.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -91,6 +91,11 @@ fi-pl:
|
|
91
91
|
actions:
|
92
92
|
confirm: Vahvista
|
93
93
|
new_conference: Uusi konferenssi
|
94
|
+
new_conference_user_role: Uusi konferenssin hallintakäyttäjä
|
95
|
+
new_media_link: Uusi medialinkki
|
96
|
+
new_partner: Uusi yhteistyökumppani
|
97
|
+
new_registration_type: Uusi ilmoittautumistyyppi
|
98
|
+
new_speaker: Uusi puhuja
|
94
99
|
send_diplomas: Lähetä läsnäolotodistukset
|
95
100
|
conference_copies:
|
96
101
|
new:
|
@@ -153,8 +158,8 @@ fi-pl:
|
|
153
158
|
form:
|
154
159
|
title: Yleistä tietoa
|
155
160
|
index:
|
156
|
-
not_published: Ei julkaistu
|
157
161
|
published: Julkaistu
|
162
|
+
unpublished: Julkaisematon
|
158
163
|
new:
|
159
164
|
create: Luo
|
160
165
|
title: Konferenssi
|
@@ -194,18 +199,18 @@ fi-pl:
|
|
194
199
|
conference_invites: Kutsut
|
195
200
|
conference_speakers: Puhujat
|
196
201
|
diploma: Läsnäolotodistus
|
197
|
-
info:
|
202
|
+
info: Tietoja tästä konferenssista
|
198
203
|
media_links: Medialinkit
|
199
204
|
moderations: Moderoinnit
|
200
205
|
partners: Yhteistyökumppanit
|
201
206
|
registration_types: Ilmoittautumistyypit
|
202
207
|
registrations: Ilmoittautumiset
|
208
|
+
see_conference: Näytä konferenssi
|
203
209
|
user_registrations: Käyttäjien ilmoittautumiset
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Luonnin ajankohta
|
208
|
-
promoted: Korostettu
|
209
214
|
published: Julkaistu
|
210
215
|
title: Otsikko
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ fi-pl:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
slug_help_html: 'URL-tunnisteita käytetään luomaan URL-osoitteet, jotka osoittavat tähän konferenssiin. Hyväksyy vain kirjaimet, numerot ja viivat. Kirjaimen on oltava ensimmäinen merkki tunnisteessa. Esimerkki: %{url}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: Käyttäjän kutsumisessa konferenssiin esiintyi ongelma.
|
@@ -347,13 +352,12 @@ fi-pl:
|
|
347
352
|
accepted: Hyväksytyt
|
348
353
|
all: Kaikki
|
349
354
|
rejected: Hylätyt
|
350
|
-
sent:
|
351
|
-
filter_by: Suodata
|
355
|
+
sent: Lähetetyt
|
352
356
|
invite_attendee: Kutsu osallistuja
|
353
357
|
invites: Kutsut
|
354
358
|
search: Hae
|
355
359
|
new:
|
356
|
-
explanation: Käyttäjä kutsutaan mukaan konferenssiin. Jos
|
360
|
+
explanation: Käyttäjä kutsutaan mukaan konferenssiin. Jos sähköpostiosoitteella ei ole käyttäjätiliä, käyttäjä kutsutaan myös organisaatioon.
|
357
361
|
invite: Kutsu
|
358
362
|
new_invite: Kutsu käyttäjä
|
359
363
|
conference_registrations:
|
@@ -373,7 +377,10 @@ fi-pl:
|
|
373
377
|
registrations_count:
|
374
378
|
one: Ilmoittautumisia on 1 kpl.
|
375
379
|
other: Ilmoittautumisia on %{count} kpl.
|
376
|
-
|
380
|
+
slug_help_html: 'URL-tunnisteita käytetään luomaan URL-osoitteet, jotka osoittavat tähän konferenssiin. Hyväksyy vain kirjaimet, numerot ja viivat. Kirjaimen on oltava ensimmäinen merkki tunnisteessa. Esimerkki: %{url}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Näytettävien elementtien enimmäismäärä
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: Tallenna
|
@@ -407,18 +414,11 @@ fi-pl:
|
|
407
414
|
cancel: Peruuta
|
408
415
|
confirm: Vahvista
|
409
416
|
show:
|
410
|
-
free: Maksuton
|
411
417
|
going: Osallistumassa
|
412
418
|
no_slots_available: Ei paikkoja vapaana
|
413
419
|
registration: Ilmoittautuminen
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Sisältö
|
417
|
-
location: Sijainti
|
418
|
-
speakers: Puhujat
|
419
|
-
streaming: Suoratoisto
|
420
421
|
show:
|
421
|
-
day: Päivä
|
422
422
|
program: Ohjelma
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -451,19 +451,24 @@ fi-pl:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Henkilökohtainen verkkosivusto
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Siirry Twitteriin
|
456
454
|
conference_speakers:
|
457
455
|
index:
|
458
|
-
speakers:
|
456
|
+
speakers:
|
457
|
+
one: Puhuja
|
458
|
+
other: Puhujat
|
459
459
|
conferences:
|
460
460
|
partners:
|
461
461
|
collaborators: Yhteistyökumppanit
|
462
462
|
main_promotors: Järjestäjät
|
463
463
|
show:
|
464
|
+
already_have_an_account?: Onko sinulla jo käyttäjätili?
|
465
|
+
are_you_new?: Oletko uusi osallistuja?
|
464
466
|
login_as: Olet kirjautunut sisään henkilönä %{name} <%{email}>
|
465
|
-
make_conference_registration:
|
467
|
+
make_conference_registration: Ilmoittaudu konferenssiin
|
468
|
+
manage_registration: Hallinnoi ilmoittautumistasi
|
466
469
|
register: Rekisteröidy
|
470
|
+
sign_in_description: Kirjaudu sisään ilmoittautuaksesi tähän konferenssiin
|
471
|
+
sign_up_description: Luo käyttäjätili palveluun ilmoittautuaksesi konferenssin
|
467
472
|
content_blocks:
|
468
473
|
highlighted_conferences:
|
469
474
|
name: Tärkeimmät konferenssit
|
@@ -472,9 +477,9 @@ fi-pl:
|
|
472
477
|
mailer:
|
473
478
|
conference_registration_mailer:
|
474
479
|
confirmation:
|
475
|
-
subject:
|
480
|
+
subject: Ilmoittautumisesi konferenssiin on vahvistettu.
|
476
481
|
pending_validation:
|
477
|
-
subject:
|
482
|
+
subject: Ilmoittautumisesi konferenssiin odottaa vahvistusta.
|
478
483
|
invite_join_conference_mailer:
|
479
484
|
invite:
|
480
485
|
subject: Kutsu konferenssiin
|
@@ -505,38 +510,19 @@ fi-pl:
|
|
505
510
|
pages:
|
506
511
|
home:
|
507
512
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: Näytä kaikki konferenssit
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Kuvan vaihtoehtoisteksti
|
515
|
-
show:
|
516
|
-
close_modal: Sulje ikkuna
|
517
|
-
photo: Kuva
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Kuvat
|
513
|
+
active_spaces: Aktiiviset konferenssit
|
514
|
+
see_all_spaces: Näytä kaikki konferenssit
|
521
515
|
registration_types:
|
522
516
|
index:
|
523
517
|
choose_an_option: 'Valitse ilmoittautumisvaihtoehto:'
|
524
|
-
login_as: Olet kirjautunut sisään henkilönä %{name} <%{email}>
|
525
518
|
no_registrations: Ei ilmoittautumisia
|
526
519
|
register: Ilmoittaudu
|
527
520
|
title: Ilmoittautumistyypit
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: Onko sinulla jo käyttäjätili?
|
531
|
-
new_user: Uusi käyttäjä?
|
532
|
-
sign_in: Kirjaudu sisään ilmoittautuaksesi konferenssiin
|
533
|
-
sign_up: Luo tili palveluun ilmoittautuaksesi konferenssin
|
534
521
|
show:
|
535
522
|
details: Tarkemmat tiedot
|
536
523
|
introduction: Esittely
|
537
524
|
objectives: Tavoitteet
|
538
525
|
related_assemblies: Liittyvät ryhmät
|
539
|
-
related_consultations: Liittyvät kuulemiset
|
540
526
|
related_participatory_processes: Liittyvät osallisuusprosessit
|
541
527
|
events:
|
542
528
|
conferences:
|
@@ -578,7 +564,7 @@ fi-pl:
|
|
578
564
|
log:
|
579
565
|
value_types:
|
580
566
|
conference_presenter:
|
581
|
-
not_found: 'Konferenssia ei löytynyt tietokannasta (ID: %{id})'
|
567
|
+
not_found: 'Konferenssia ei löytynyt tietokannasta (ID: %{id}).'
|
582
568
|
media:
|
583
569
|
index:
|
584
570
|
description: Tähän konferenssiin liittyvät linkit
|
@@ -594,10 +580,8 @@ fi-pl:
|
|
594
580
|
layouts:
|
595
581
|
decidim:
|
596
582
|
conference_hero:
|
583
|
+
manage_registration: Hallinnoi ilmoittautumistasi
|
597
584
|
register: Ilmoittaudu
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Osallistu
|
601
585
|
conferences:
|
602
586
|
conference:
|
603
587
|
more_info: Lisätietoja
|
@@ -608,11 +592,7 @@ fi-pl:
|
|
608
592
|
conferences:
|
609
593
|
one: "%{count} konferenssi"
|
610
594
|
other: "%{count} konferenssia"
|
611
|
-
promoted_conference:
|
612
|
-
more_info: Lisätietoja
|
613
|
-
take_part: Osallistu
|
614
595
|
conferences_nav:
|
615
|
-
conference_menu_item: Tiedot
|
616
596
|
conference_partners_menu_item: Yhteistyökumppanit
|
617
597
|
conference_speaker_menu_item: Puhujat
|
618
598
|
media: Media
|