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/id-ID.yml
CHANGED
@@ -5,7 +5,6 @@ id:
|
|
5
5
|
conference:
|
6
6
|
assemblies_ids: Rakitan Terkait
|
7
7
|
banner_image: Gambar spanduk
|
8
|
-
consultations_ids: Konsultasi Terkait
|
9
8
|
copy_categories: Salin kategori
|
10
9
|
copy_components: Salin komponen
|
11
10
|
copy_features: Salin fitur
|
@@ -29,12 +28,6 @@ id:
|
|
29
28
|
email: E-mail
|
30
29
|
name: Nama
|
31
30
|
role: Peran
|
32
|
-
errors:
|
33
|
-
models:
|
34
|
-
conference_registration_invite:
|
35
|
-
attributes:
|
36
|
-
email:
|
37
|
-
already_invited: Email ini sudah diundang
|
38
31
|
activerecord:
|
39
32
|
models:
|
40
33
|
decidim/conference:
|
@@ -47,7 +40,6 @@ id:
|
|
47
40
|
admin:
|
48
41
|
actions:
|
49
42
|
confirm: Memastikan
|
50
|
-
new_conference: Konferensi Baru
|
51
43
|
send_diplomas: Kirim sertifikat kehadiran
|
52
44
|
conference_copies:
|
53
45
|
new:
|
@@ -108,7 +100,6 @@ id:
|
|
108
100
|
form:
|
109
101
|
title: Informasi Umum
|
110
102
|
index:
|
111
|
-
not_published: Tidak diterbitkan
|
112
103
|
published: Diterbitkan
|
113
104
|
new:
|
114
105
|
create: Membuat
|
@@ -149,7 +140,6 @@ id:
|
|
149
140
|
conference_invites: Undangan
|
150
141
|
conference_speakers: Pembicara
|
151
142
|
diploma: Sertifikat kehadiran
|
152
|
-
info: Info
|
153
143
|
media_links: Tautan Media
|
154
144
|
moderations: Moderasi
|
155
145
|
partners: Mitra
|
@@ -160,7 +150,6 @@ id:
|
|
160
150
|
conference:
|
161
151
|
fields:
|
162
152
|
created_at: Dibuat di
|
163
|
-
promoted: Dipromosikan
|
164
153
|
published: Diterbitkan
|
165
154
|
title: Judul
|
166
155
|
conference_speaker:
|
@@ -289,14 +278,14 @@ id:
|
|
289
278
|
select_user: Pilih pengguna
|
290
279
|
index:
|
291
280
|
filter:
|
281
|
+
accepted: Diterima
|
292
282
|
all: Semua
|
283
|
+
rejected: Ditolak
|
293
284
|
sent: Terkirim
|
294
|
-
filter_by: Filter berdasarkan
|
295
285
|
invite_attendee: Undang Peserta
|
296
286
|
invites: Undangan
|
297
287
|
search: Pencarian
|
298
288
|
new:
|
299
|
-
explanation: Pengguna akan diundang untuk bergabung dengan konferensi. Jika email tidak terdaftar mereka akan diundang ke organisasi juga.
|
300
289
|
invite: Undang
|
301
290
|
new_invite: Undang pengguna
|
302
291
|
conference_registrations:
|
@@ -347,17 +336,11 @@ id:
|
|
347
336
|
cancel: Membatalkan
|
348
337
|
confirm: Memastikan
|
349
338
|
show:
|
350
|
-
free: Bebas
|
351
339
|
going: Pergi
|
352
340
|
no_slots_available: Tidak ada slot yang tersedia
|
353
341
|
registration: Pendaftaran
|
354
342
|
conference_program:
|
355
|
-
program_meeting:
|
356
|
-
content: Konten
|
357
|
-
speakers: Pembicara
|
358
|
-
streaming: Streaming
|
359
343
|
show:
|
360
|
-
day: Hari
|
361
344
|
program: Program
|
362
345
|
conference_registration_mailer:
|
363
346
|
confirmation:
|
@@ -386,18 +369,12 @@ id:
|
|
386
369
|
conference_speaker_cell:
|
387
370
|
personal_url:
|
388
371
|
personal_website: Situs web pribadi
|
389
|
-
twitter_handle:
|
390
|
-
go_to_twitter: Pergi ke Twitter
|
391
|
-
conference_speakers:
|
392
|
-
index:
|
393
|
-
speakers: Pembicara
|
394
372
|
conferences:
|
395
373
|
partners:
|
396
374
|
collaborators: Mitra
|
397
375
|
main_promotors: Penyelenggara
|
398
376
|
show:
|
399
377
|
login_as: Anda masuk sebagai %{name} <%{email}>
|
400
|
-
make_conference_registration: 'Buat pendaftaran Anda di konferensi:'
|
401
378
|
register: Daftar
|
402
379
|
content_blocks:
|
403
380
|
highlighted_conferences:
|
@@ -405,11 +382,6 @@ id:
|
|
405
382
|
index:
|
406
383
|
title: Konferensi
|
407
384
|
mailer:
|
408
|
-
conference_registration_mailer:
|
409
|
-
confirmation:
|
410
|
-
subject: Pendaftaran konferensi Anda telah dikonfirmasi
|
411
|
-
pending_validation:
|
412
|
-
subject: Pendaftaran konferensi Anda sedang menunggu untuk dikonfirmasi
|
413
385
|
invite_join_conference_mailer:
|
414
386
|
invite:
|
415
387
|
subject: Undangan untuk bergabung dalam konferensi
|
@@ -440,32 +412,17 @@ id:
|
|
440
412
|
pages:
|
441
413
|
home:
|
442
414
|
highlighted_conferences:
|
443
|
-
|
444
|
-
photo:
|
445
|
-
show:
|
446
|
-
close_modal: Tutup modal
|
447
|
-
photo: Foto
|
448
|
-
photos_list:
|
449
|
-
show:
|
450
|
-
related_photos: Foto
|
415
|
+
active_spaces: Konferensi aktif
|
451
416
|
registration_types:
|
452
417
|
index:
|
453
418
|
choose_an_option: 'Pilih opsi pendaftaran Anda:'
|
454
|
-
login_as: Anda masuk sebagai %{name} <%{email}>
|
455
419
|
register: Daftar
|
456
420
|
title: Jenis pendaftaran
|
457
|
-
shared:
|
458
|
-
conference_user_login:
|
459
|
-
already_account: Apakah Anda sudah memiliki akun di desidim?
|
460
|
-
new_user: Pengguna baru?
|
461
|
-
sign_in: Login untuk mendaftar konferensi
|
462
|
-
sign_up: Buat akun di desidim untuk mendaftar konferensi
|
463
421
|
show:
|
464
422
|
details: Detail
|
465
423
|
introduction: pengantar
|
466
424
|
objectives: Tujuan
|
467
425
|
related_assemblies: Rakitan Terkait
|
468
|
-
related_consultations: Konsultasi Terkait
|
469
426
|
related_participatory_processes: Proses Partisipatif Terkait
|
470
427
|
events:
|
471
428
|
conferences:
|
@@ -493,10 +450,6 @@ id:
|
|
493
450
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti konferensi "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
494
451
|
email_subject: Konferensi "%{resource_title}" akan datang!
|
495
452
|
notification_title: Konferensi <a href="%{resource_path}">%{resource_title}</a> akan datang dalam 2 hari.
|
496
|
-
log:
|
497
|
-
value_types:
|
498
|
-
conference_presenter:
|
499
|
-
not_found: 'Konferensi tidak ditemukan di database (ID: %{id})'
|
500
453
|
media:
|
501
454
|
index:
|
502
455
|
description: Tautan tentang konferensi ini
|
@@ -511,9 +464,6 @@ id:
|
|
511
464
|
decidim:
|
512
465
|
conference_hero:
|
513
466
|
register: Daftar
|
514
|
-
conference_widgets:
|
515
|
-
show:
|
516
|
-
take_part: Ambil bagian
|
517
467
|
conferences:
|
518
468
|
conference:
|
519
469
|
more_info: Info lebih lanjut
|
@@ -523,11 +473,7 @@ id:
|
|
523
473
|
order_by_conferences:
|
524
474
|
conferences:
|
525
475
|
other: "%{count} konferensi"
|
526
|
-
promoted_conference:
|
527
|
-
more_info: Info lebih lanjut
|
528
|
-
take_part: Ambil bagian
|
529
476
|
conferences_nav:
|
530
|
-
conference_menu_item: Informasi
|
531
477
|
conference_partners_menu_item: Mitra
|
532
478
|
conference_speaker_menu_item: Pembicara
|
533
479
|
media: Media
|
data/config/locales/it.yml
CHANGED
@@ -6,7 +6,6 @@ it:
|
|
6
6
|
assemblies_ids: Assemblee collegate
|
7
7
|
available_slots: Slot disponibili
|
8
8
|
banner_image: Immagine banner
|
9
|
-
consultations_ids: Consultazioni correlate
|
10
9
|
copy_categories: Copia le categorie
|
11
10
|
copy_components: Copia componenti
|
12
11
|
copy_features: Copia le caratteristiche
|
@@ -62,12 +61,6 @@ it:
|
|
62
61
|
email: E-mail
|
63
62
|
name: Nome
|
64
63
|
role: Ruolo
|
65
|
-
errors:
|
66
|
-
models:
|
67
|
-
conference_registration_invite:
|
68
|
-
attributes:
|
69
|
-
email:
|
70
|
-
already_invited: Questa email è già stata invitata
|
71
64
|
activerecord:
|
72
65
|
models:
|
73
66
|
decidim/conference:
|
@@ -83,7 +76,6 @@ it:
|
|
83
76
|
admin:
|
84
77
|
actions:
|
85
78
|
confirm: Confermare
|
86
|
-
new_conference: Nuova Conferenza
|
87
79
|
send_diplomas: Invia certificati di frequenza
|
88
80
|
conference_copies:
|
89
81
|
new:
|
@@ -144,8 +136,8 @@ it:
|
|
144
136
|
form:
|
145
137
|
title: Informazioni Generali
|
146
138
|
index:
|
147
|
-
not_published: Non pubblicata
|
148
139
|
published: Pubblicata
|
140
|
+
unpublished: Non pubblicato
|
149
141
|
new:
|
150
142
|
create: Crea
|
151
143
|
title: Conferenza
|
@@ -185,7 +177,6 @@ it:
|
|
185
177
|
conference_invites: Inviti
|
186
178
|
conference_speakers: Relatori
|
187
179
|
diploma: Certificato di partecipazione
|
188
|
-
info: Informazioni
|
189
180
|
media_links: Link multimediali
|
190
181
|
moderations: Moderazioni
|
191
182
|
partners: Partners
|
@@ -196,7 +187,6 @@ it:
|
|
196
187
|
conference:
|
197
188
|
fields:
|
198
189
|
created_at: Creato il
|
199
|
-
promoted: In evidenza
|
200
190
|
published: Pubblicato
|
201
191
|
title: Titolo
|
202
192
|
conference_speaker:
|
@@ -331,14 +321,14 @@ it:
|
|
331
321
|
select_user: Seleziona utente
|
332
322
|
index:
|
333
323
|
filter:
|
324
|
+
accepted: Accettato
|
334
325
|
all: Tutti
|
326
|
+
rejected: Respinto
|
335
327
|
sent: Inviato
|
336
|
-
filter_by: Filtra per
|
337
328
|
invite_attendee: Invita il partecipante
|
338
329
|
invites: Inviti
|
339
330
|
search: Ricerca
|
340
331
|
new:
|
341
|
-
explanation: L'utente sarà invitato a partecipare a una conferenza. Se l'e-mail non è registrata, saranno anche invitati all'organizzazione.
|
342
332
|
invite: Invita
|
343
333
|
new_invite: Invita partecipante
|
344
334
|
conference_registrations:
|
@@ -390,18 +380,11 @@ it:
|
|
390
380
|
cancel: Annulla
|
391
381
|
confirm: Conferma
|
392
382
|
show:
|
393
|
-
free: Gratuito
|
394
383
|
going: Iscritto
|
395
384
|
no_slots_available: Nessuno posto disponibile
|
396
385
|
registration: Registrazione
|
397
386
|
conference_program:
|
398
|
-
program_meeting:
|
399
|
-
content: Soddisfare
|
400
|
-
location: Luogo
|
401
|
-
speakers: Relatori
|
402
|
-
streaming: Streaming
|
403
387
|
show:
|
404
|
-
day: Giorno
|
405
388
|
program: Programma
|
406
389
|
conference_registration_mailer:
|
407
390
|
confirmation:
|
@@ -431,18 +414,12 @@ it:
|
|
431
414
|
conference_speaker_cell:
|
432
415
|
personal_url:
|
433
416
|
personal_website: Sito web personale
|
434
|
-
twitter_handle:
|
435
|
-
go_to_twitter: Vai a Twitter
|
436
|
-
conference_speakers:
|
437
|
-
index:
|
438
|
-
speakers: Relatori
|
439
417
|
conferences:
|
440
418
|
partners:
|
441
419
|
collaborators: Partner
|
442
420
|
main_promotors: Organizzatori
|
443
421
|
show:
|
444
422
|
login_as: Hai effettuato l'accesso come %{name} <%{email}>
|
445
|
-
make_conference_registration: 'Fai la tua registrazione alla conferenza:'
|
446
423
|
register: Registrati
|
447
424
|
content_blocks:
|
448
425
|
highlighted_conferences:
|
@@ -450,11 +427,6 @@ it:
|
|
450
427
|
index:
|
451
428
|
title: Conferenze
|
452
429
|
mailer:
|
453
|
-
conference_registration_mailer:
|
454
|
-
confirmation:
|
455
|
-
subject: La tua registrazione alla conferenza è stata confermata
|
456
|
-
pending_validation:
|
457
|
-
subject: La tua registrazione alla conferenza è in attesa di conferma
|
458
430
|
invite_join_conference_mailer:
|
459
431
|
invite:
|
460
432
|
subject: Invito a partecipare a una conferenza
|
@@ -485,37 +457,18 @@ it:
|
|
485
457
|
pages:
|
486
458
|
home:
|
487
459
|
highlighted_conferences:
|
488
|
-
|
489
|
-
conferences_button_title: Link alla pagina Conferenze in cui sono visualizzate tutte le conferenze
|
490
|
-
photo:
|
491
|
-
image:
|
492
|
-
attributes:
|
493
|
-
alt: Immagine multimediale
|
494
|
-
show:
|
495
|
-
close_modal: Chiudi modalità
|
496
|
-
photo: Foto
|
497
|
-
photos_list:
|
498
|
-
show:
|
499
|
-
related_photos: Fotografie
|
460
|
+
active_spaces: Conferenze attive
|
500
461
|
registration_types:
|
501
462
|
index:
|
502
463
|
choose_an_option: 'Scegli la tua opzione di registrazione:'
|
503
|
-
login_as: Hai effettuato l'accesso come %{name} <%{email}>
|
504
464
|
no_registrations: Nessuna registrazione
|
505
465
|
register: Registrati
|
506
466
|
title: Tipi di registrazione
|
507
|
-
shared:
|
508
|
-
conference_user_login:
|
509
|
-
already_account: Hai già un account in decidim?
|
510
|
-
new_user: Nuovo utente?
|
511
|
-
sign_in: Accedi per registrarti alla conferenza
|
512
|
-
sign_up: Crea un account in decidim per registrarti alla conferenza
|
513
467
|
show:
|
514
468
|
details: Dettagli
|
515
469
|
introduction: Introduzione
|
516
470
|
objectives: Obiettivi
|
517
471
|
related_assemblies: Assemblee collegate
|
518
|
-
related_consultations: Consultazioni correlate
|
519
472
|
related_participatory_processes: Processi di partecipazione correlati
|
520
473
|
events:
|
521
474
|
conferences:
|
@@ -554,10 +507,6 @@ it:
|
|
554
507
|
contextual: "<p>Una <strong>conferenza</strong> è una raccolta di riunioni organizzate in un programma, con un certo numero di persone invitate come relatori, e altri campi di informazione tipici di grandi congressi o eventi sociali (registrazione, elenco delle organizzazioni che sostengono o sponsorizzano l'evento, ecc.).</p> <p>Esempi: Una conferenza può essere un evento rilevante per un'organizzazione e i suoi membri, o può essere parte di un processo partecipativo o il seguito di una consultazione.</p>\n"
|
555
508
|
page: "<p>Una <strong>conferenza</strong> è una raccolta di riunioni organizzate in un programma, con un certo numero di persone invitate come relatori, e altri campi di informazione tipici di grandi congressi o eventi sociali (registrazione, elenco delle organizzazioni che sostengono o sponsorizzano l'evento, ecc.).</p> <p>Esempi: Una conferenza può essere un evento rilevante per un'organizzazione e i suoi membri, o può essere parte di un processo partecipativo o il seguito di una consultazione.</p>\n"
|
556
509
|
title: Cosa sono le conferenze?
|
557
|
-
log:
|
558
|
-
value_types:
|
559
|
-
conference_presenter:
|
560
|
-
not_found: 'La conferenza non è stata trovata nel database (ID: %{id})'
|
561
510
|
media:
|
562
511
|
index:
|
563
512
|
description: Collegamenti su questa conferenza
|
@@ -574,9 +523,6 @@ it:
|
|
574
523
|
decidim:
|
575
524
|
conference_hero:
|
576
525
|
register: Registrati
|
577
|
-
conference_widgets:
|
578
|
-
show:
|
579
|
-
take_part: Partecipa
|
580
526
|
conferences:
|
581
527
|
conference:
|
582
528
|
more_info: Ulteriori informazioni
|
@@ -587,11 +533,7 @@ it:
|
|
587
533
|
conferences:
|
588
534
|
one: "%{count} conferenza"
|
589
535
|
other: "%{count} conferenze"
|
590
|
-
promoted_conference:
|
591
|
-
more_info: Ulteriori informazioni
|
592
|
-
take_part: Partecipa
|
593
536
|
conferences_nav:
|
594
|
-
conference_menu_item: Informazioni
|
595
537
|
conference_partners_menu_item: Partner
|
596
538
|
conference_speaker_menu_item: Relatori
|
597
539
|
media: Media
|
data/config/locales/ja.yml
CHANGED
@@ -6,7 +6,6 @@ ja:
|
|
6
6
|
assemblies_ids: 関連する参加スペース
|
7
7
|
available_slots: 利用可能なスロット
|
8
8
|
banner_image: バナー画像
|
9
|
-
consultations_ids: 関連する議案
|
10
9
|
copy_categories: カテゴリをコピー
|
11
10
|
copy_components: コンポーネントをコピー
|
12
11
|
copy_features: 機能をコピー
|
@@ -34,6 +33,7 @@ ja:
|
|
34
33
|
slug: URL スラグ
|
35
34
|
start_date: 開始日
|
36
35
|
title: タイトル
|
36
|
+
weight: 並び順の位置
|
37
37
|
conference_media_link:
|
38
38
|
date: 日付
|
39
39
|
link: リンク
|
@@ -74,7 +74,7 @@ ja:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited:
|
77
|
+
already_invited: このメールアドレスはすでに招待されています。
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -88,6 +88,11 @@ ja:
|
|
88
88
|
actions:
|
89
89
|
confirm: 確認する
|
90
90
|
new_conference: 新しいカンファレンス
|
91
|
+
new_conference_user_role: 新しいカンファレンス管理者
|
92
|
+
new_media_link: 新しいメディア リンク
|
93
|
+
new_partner: 新しいパートナー
|
94
|
+
new_registration_type: 新規登録種別
|
95
|
+
new_speaker: 新しいスピーカー
|
91
96
|
send_diplomas: 出席証明書を送信
|
92
97
|
conference_copies:
|
93
98
|
new:
|
@@ -150,8 +155,8 @@ ja:
|
|
150
155
|
form:
|
151
156
|
title: 一般情報
|
152
157
|
index:
|
153
|
-
not_published: 未公開
|
154
158
|
published: 公開済み
|
159
|
+
unpublished: 未公開
|
155
160
|
new:
|
156
161
|
create: 作成
|
157
162
|
title: カンファレンス
|
@@ -191,18 +196,18 @@ ja:
|
|
191
196
|
conference_invites: 招待
|
192
197
|
conference_speakers: スピーカー
|
193
198
|
diploma: 出席証明書
|
194
|
-
info:
|
199
|
+
info: このカンファレンスについて
|
195
200
|
media_links: メディアリンク
|
196
201
|
moderations: モデレーション
|
197
202
|
partners: パートナー
|
198
203
|
registration_types: 登録種別
|
199
204
|
registrations: 登録
|
205
|
+
see_conference: カンファレンスを見る
|
200
206
|
user_registrations: ユーザー登録
|
201
207
|
models:
|
202
208
|
conference:
|
203
209
|
fields:
|
204
210
|
created_at: 作成日時
|
205
|
-
promoted: 強調表示
|
206
211
|
published: 公開済み
|
207
212
|
title: タイトル
|
208
213
|
conference_speaker:
|
@@ -328,7 +333,7 @@ ja:
|
|
328
333
|
admin:
|
329
334
|
conference_copies:
|
330
335
|
form:
|
331
|
-
|
336
|
+
slug_help_html: 'URLスラグは、このカンファレンスへのURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
332
337
|
conference_invites:
|
333
338
|
create:
|
334
339
|
error: 参加者をカンファレンスに招待する際に問題が発生しました。
|
@@ -343,14 +348,13 @@ ja:
|
|
343
348
|
filter:
|
344
349
|
accepted: 承認済み
|
345
350
|
all: すべて
|
346
|
-
rejected:
|
351
|
+
rejected: 拒否
|
347
352
|
sent: 送信済み
|
348
|
-
filter_by: フィルター
|
349
353
|
invite_attendee: 参加者の招待
|
350
354
|
invites: 招待
|
351
355
|
search: 検索
|
352
356
|
new:
|
353
|
-
explanation:
|
357
|
+
explanation: 参加者はカンファレンスに参加するように招待されます。参加者のメールアドレスが組織に登録されていない場合は、組織にも招待されます。
|
354
358
|
invite: 招待
|
355
359
|
new_invite: 参加者の招待
|
356
360
|
conference_registrations:
|
@@ -369,7 +373,10 @@ ja:
|
|
369
373
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
370
374
|
registrations_count:
|
371
375
|
other: '%{count} 件の登録がありました。'
|
372
|
-
|
376
|
+
slug_help_html: 'URLスラグは、このカンファレンスを指すURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
377
|
+
content_blocks:
|
378
|
+
highlighted_conferences:
|
379
|
+
max_results: 表示する要素の最大数
|
373
380
|
diplomas:
|
374
381
|
edit:
|
375
382
|
save: 保存
|
@@ -403,18 +410,11 @@ ja:
|
|
403
410
|
cancel: キャンセル
|
404
411
|
confirm: 確認する
|
405
412
|
show:
|
406
|
-
free: 無料
|
407
413
|
going: 参加
|
408
414
|
no_slots_available: 利用可能なスロットがありません
|
409
415
|
registration: 登録
|
410
416
|
conference_program:
|
411
|
-
program_meeting:
|
412
|
-
content: コンテンツ
|
413
|
-
location: 場所
|
414
|
-
speakers: スピーカー
|
415
|
-
streaming: ストリーミング
|
416
417
|
show:
|
417
|
-
day: 日
|
418
418
|
program: プログラム
|
419
419
|
conference_registration_mailer:
|
420
420
|
confirmation:
|
@@ -429,11 +429,11 @@ ja:
|
|
429
429
|
create:
|
430
430
|
invalid: このカンファレンスに参加するのに問題がありました。
|
431
431
|
success: カンファレンスに参加しました。
|
432
|
-
unauthorized:
|
432
|
+
unauthorized: カンファレンスに登録する前にログインする必要があります。
|
433
433
|
decline_invitation:
|
434
434
|
invalid: 招待を辞退するのに問題があった。
|
435
435
|
success: 招待を拒否しました。
|
436
|
-
unauthorized:
|
436
|
+
unauthorized: 招待を拒否する前にログインする必要があります。
|
437
437
|
destroy:
|
438
438
|
invalid: このカンファレンスから退会するのに問題がありました。
|
439
439
|
success: カンファレンスから退会しました。
|
@@ -447,19 +447,23 @@ ja:
|
|
447
447
|
conference_speaker_cell:
|
448
448
|
personal_url:
|
449
449
|
personal_website: 個人のウェブサイト
|
450
|
-
twitter_handle:
|
451
|
-
go_to_twitter: Twitter に移動
|
452
450
|
conference_speakers:
|
453
451
|
index:
|
454
|
-
speakers:
|
452
|
+
speakers:
|
453
|
+
other: スピーカー
|
455
454
|
conferences:
|
456
455
|
partners:
|
457
456
|
collaborators: パートナー
|
458
457
|
main_promotors: オーガナイザー
|
459
458
|
show:
|
459
|
+
already_have_an_account?: すでにアカウントをお持ちですか?
|
460
|
+
are_you_new?: 新しい参加者ですか?
|
460
461
|
login_as: '%{name} <%{email} >としてログインしています'
|
461
|
-
make_conference_registration:
|
462
|
+
make_conference_registration: カンファレンスに登録する
|
463
|
+
manage_registration: 登録の管理
|
462
464
|
register: 登録
|
465
|
+
sign_in_description: ログインしてカンファレンスに登録する
|
466
|
+
sign_up_description: カンファレンスに登録するアカウントを作成する
|
463
467
|
content_blocks:
|
464
468
|
highlighted_conferences:
|
465
469
|
name: ハイライトされたカンファレンス
|
@@ -468,9 +472,9 @@ ja:
|
|
468
472
|
mailer:
|
469
473
|
conference_registration_mailer:
|
470
474
|
confirmation:
|
471
|
-
subject:
|
475
|
+
subject: カンファレンスの登録が確認されました。
|
472
476
|
pending_validation:
|
473
|
-
subject:
|
477
|
+
subject: カンファレンスの登録は保留中です。
|
474
478
|
invite_join_conference_mailer:
|
475
479
|
invite:
|
476
480
|
subject: カンファレンスへの招待
|
@@ -501,38 +505,19 @@ ja:
|
|
501
505
|
pages:
|
502
506
|
home:
|
503
507
|
highlighted_conferences:
|
504
|
-
|
505
|
-
|
506
|
-
see_all_conferences: すべてのカンファレンスを見る
|
507
|
-
photo:
|
508
|
-
image:
|
509
|
-
attributes:
|
510
|
-
alt: メディア画像
|
511
|
-
show:
|
512
|
-
close_modal: モーダルを閉じる
|
513
|
-
photo: 画像
|
514
|
-
photos_list:
|
515
|
-
show:
|
516
|
-
related_photos: 画像
|
508
|
+
active_spaces: アクティブなカンファレンス
|
509
|
+
see_all_spaces: すべてのカンファレンスを見る
|
517
510
|
registration_types:
|
518
511
|
index:
|
519
512
|
choose_an_option: '登録オプションを選択:'
|
520
|
-
login_as: '%{name} <%{email} >としてログインしています'
|
521
513
|
no_registrations: 登録なし
|
522
514
|
register: 登録
|
523
515
|
title: 登録種別
|
524
|
-
shared:
|
525
|
-
conference_user_login:
|
526
|
-
already_account: 既にアカウントをお持ちですか?
|
527
|
-
new_user: 新規ユーザーですか?
|
528
|
-
sign_in: ログインしてカンファレンスに登録する
|
529
|
-
sign_up: カンファレンスに登録するために Decidim にアカウントを作成する
|
530
516
|
show:
|
531
517
|
details: 詳細
|
532
518
|
introduction: はじめに
|
533
519
|
objectives: 目的
|
534
520
|
related_assemblies: 関連する参加スペース
|
535
|
-
related_consultations: 関連する議案
|
536
521
|
related_participatory_processes: 関連する参加型プロセス
|
537
522
|
events:
|
538
523
|
conferences:
|
@@ -574,7 +559,7 @@ ja:
|
|
574
559
|
log:
|
575
560
|
value_types:
|
576
561
|
conference_presenter:
|
577
|
-
not_found: 'データベース上にカンファレンスが見つかりませんでした (ID: %{id})'
|
562
|
+
not_found: 'データベース上にカンファレンスが見つかりませんでした (ID: %{id}).'
|
578
563
|
media:
|
579
564
|
index:
|
580
565
|
description: このカンファレンスに関するリンク
|
@@ -590,10 +575,8 @@ ja:
|
|
590
575
|
layouts:
|
591
576
|
decidim:
|
592
577
|
conference_hero:
|
578
|
+
manage_registration: 登録の管理
|
593
579
|
register: 登録
|
594
|
-
conference_widgets:
|
595
|
-
show:
|
596
|
-
take_part: 参加する
|
597
580
|
conferences:
|
598
581
|
conference:
|
599
582
|
more_info: 詳細情報
|
@@ -603,11 +586,7 @@ ja:
|
|
603
586
|
order_by_conferences:
|
604
587
|
conferences:
|
605
588
|
other: "%{count} 個のカンファレンス"
|
606
|
-
promoted_conference:
|
607
|
-
more_info: 詳細情報
|
608
|
-
take_part: 参加する
|
609
589
|
conferences_nav:
|
610
|
-
conference_menu_item: 情報
|
611
590
|
conference_partners_menu_item: パートナー
|
612
591
|
conference_speaker_menu_item: スピーカー
|
613
592
|
media: メディア
|