decidim-conferences 0.28.5 → 0.29.0.rc1
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_g_cell.rb +2 -2
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +1 -1
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +0 -2
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +0 -1
- data/app/cells/decidim/conferences/media_link/show.erb +1 -1
- data/app/cells/decidim/conferences/media_link_cell.rb +0 -3
- data/app/cells/decidim/conferences/partner/image.erb +1 -1
- data/app/cells/decidim/conferences/partner_cell.rb +1 -1
- data/app/cells/decidim/conferences/registration_type_cell.rb +1 -5
- data/app/commands/decidim/conferences/admin/create_conference.rb +20 -65
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +17 -81
- data/app/commands/decidim/conferences/admin/create_media_link.rb +10 -44
- data/app/commands/decidim/conferences/admin/create_partner.rb +9 -62
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +15 -51
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +6 -38
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +6 -38
- data/app/commands/decidim/conferences/admin/publish_conference_speaker.rb +51 -0
- data/app/commands/decidim/conferences/admin/unpublish_conference_speaker.rb +44 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +35 -93
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +17 -74
- data/app/commands/decidim/conferences/admin/update_media_link.rb +8 -44
- data/app/commands/decidim/conferences/admin/update_partner.rb +10 -61
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +12 -47
- data/app/controllers/concerns/decidim/conferences/admin/conferences_invites/filterable.rb +41 -0
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +8 -3
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +33 -1
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +1 -1
- data/app/controllers/decidim/conferences/application_controller.rb +4 -1
- data/app/controllers/decidim/conferences/conference_program_controller.rb +1 -2
- data/app/controllers/decidim/conferences/conference_speakers_controller.rb +1 -4
- data/app/controllers/decidim/conferences/conferences_controller.rb +1 -4
- data/app/controllers/decidim/conferences/media_controller.rb +1 -4
- data/app/controllers/decidim/conferences/registration_types_controller.rb +0 -3
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +0 -5
- data/app/forms/decidim/conferences/admin/conference_form.rb +5 -5
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -1
- data/app/helpers/decidim/conferences/conference_helper.rb +2 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +5 -9
- data/app/models/decidim/conference.rb +2 -2
- data/app/models/decidim/conference_speaker.rb +2 -0
- data/app/permissions/decidim/conferences/permissions.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -1
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +5 -5
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +1 -33
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +2 -4
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +11 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +1 -1
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +1 -1
- data/app/views/decidim/conferences/admin/partners/index.html.erb +3 -3
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +1 -1
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +7 -11
- data/app/views/decidim/conferences/conference_program/_program_item.html.erb +1 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +1 -0
- data/app/views/decidim/conferences/conferences/_conference_hero.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +5 -3
- data/app/views/decidim/conferences/media/index.html.erb +1 -0
- data/app/views/decidim/conferences/registration_types/index.html.erb +2 -1
- data/app/views/devise/mailer/join_conference.html.erb +1 -1
- data/app/views/devise/mailer/join_conference.text.erb +1 -1
- data/app/views/layouts/decidim/diploma.html.erb +1 -1
- data/config/initializers/wicked_pdf.rb +6 -4
- data/config/locales/ar.yml +21 -4
- data/config/locales/bg.yml +27 -6
- data/config/locales/ca.yml +18 -20
- data/config/locales/cs.yml +18 -21
- data/config/locales/de.yml +19 -21
- data/config/locales/el.yml +21 -6
- data/config/locales/en.yml +25 -27
- data/config/locales/es-MX.yml +18 -20
- data/config/locales/es-PY.yml +21 -23
- data/config/locales/es.yml +14 -16
- data/config/locales/eu.yml +169 -171
- data/config/locales/fi-plain.yml +17 -19
- data/config/locales/fi.yml +23 -25
- data/config/locales/fr-CA.yml +19 -21
- data/config/locales/fr.yml +19 -21
- data/config/locales/ga-IE.yml +0 -6
- data/config/locales/gl.yml +21 -4
- data/config/locales/hu.yml +21 -6
- data/config/locales/id-ID.yml +21 -4
- data/config/locales/it.yml +21 -4
- data/config/locales/ja.yml +17 -17
- data/config/locales/lb.yml +19 -6
- data/config/locales/lt.yml +21 -6
- data/config/locales/lv.yml +21 -6
- data/config/locales/nl.yml +21 -4
- data/config/locales/no.yml +21 -6
- data/config/locales/pl.yml +27 -6
- data/config/locales/pt-BR.yml +21 -51
- data/config/locales/pt.yml +21 -6
- data/config/locales/ro-RO.yml +12 -19
- data/config/locales/sk.yml +21 -6
- data/config/locales/sv.yml +52 -37
- data/config/locales/tr-TR.yml +21 -4
- data/config/locales/zh-CN.yml +21 -4
- data/config/locales/zh-TW.yml +21 -6
- data/db/migrate/20240613095855_add_published_at_to_conference_speakers.rb +7 -0
- data/decidim-conferences.gemspec +3 -2
- data/lib/decidim/api/conference_partner_type.rb +1 -1
- data/lib/decidim/api/conference_speaker_type.rb +1 -1
- data/lib/decidim/api/conference_type.rb +6 -2
- data/lib/decidim/conferences/admin_engine.rb +6 -1
- data/lib/decidim/conferences/engine.rb +1 -0
- data/lib/decidim/conferences/menu.rb +11 -0
- data/lib/decidim/conferences/seeds.rb +4 -22
- data/lib/decidim/conferences/test/factories.rb +5 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +33 -23
- data/app/cells/decidim/conference_activity_cell.rb +0 -10
- data/app/helpers/decidim/conferences/media_attachments_helper.rb +0 -19
- data/app/helpers/decidim/conferences/partners_helper.rb +0 -17
- data/app/uploaders/decidim/cw/conferences/diploma_uploader.rb +0 -14
- data/app/uploaders/decidim/cw/conferences/partner_logo_uploader.rb +0 -15
- data/app/views/layouts/decidim/conference.html.erb +0 -17
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -14
data/config/locales/sv.yml
CHANGED
@@ -3,32 +3,32 @@ sv:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
conference:
|
6
|
-
assemblies_ids: Relaterade
|
6
|
+
assemblies_ids: Relaterade grupper
|
7
7
|
available_slots: Tillgängliga platser
|
8
8
|
banner_image: Bannerbild
|
9
9
|
copy_categories: Kopiera kategorier
|
10
10
|
copy_components: Kopiera komponenter
|
11
11
|
copy_features: Kopiera funktioner
|
12
|
-
decidim_scope_id:
|
12
|
+
decidim_scope_id: Omfång
|
13
13
|
description: Beskrivning
|
14
14
|
end_date: Slutdatum
|
15
15
|
hashtag: Hashtag
|
16
16
|
hero_image: Bild till startsida
|
17
17
|
location: Plats
|
18
|
-
main_logo:
|
19
|
-
objectives:
|
20
|
-
participatory_processes_ids: Relaterade
|
21
|
-
promoted:
|
18
|
+
main_logo: Huvudbild
|
19
|
+
objectives: Mål
|
20
|
+
participatory_processes_ids: Relaterade dialoger
|
21
|
+
promoted: Uppmärksammad
|
22
22
|
published_at: Publicerad
|
23
|
-
registration_terms:
|
23
|
+
registration_terms: Registreringsvillkor
|
24
24
|
registrations_enabled: Registrering aktiverad
|
25
|
-
scope_id:
|
26
|
-
scopes_enabled:
|
25
|
+
scope_id: Omfång
|
26
|
+
scopes_enabled: Omfång aktiverat
|
27
27
|
short_description: Kort beskrivning
|
28
28
|
show_statistics: Visa statistik
|
29
|
-
sign_date:
|
29
|
+
sign_date: Underskriftsdatum
|
30
30
|
signature: Underskrift
|
31
|
-
signature_name:
|
31
|
+
signature_name: Signaturnamn
|
32
32
|
slogan: Slogan
|
33
33
|
slug: URL-slug
|
34
34
|
start_date: Startdatum
|
@@ -38,31 +38,31 @@ sv:
|
|
38
38
|
date: Datum
|
39
39
|
link: Länk
|
40
40
|
title: Titel
|
41
|
-
weight:
|
41
|
+
weight: Ordning
|
42
42
|
conference_partner:
|
43
43
|
link: Länk
|
44
|
-
logo:
|
44
|
+
logo: Logga
|
45
45
|
name: Namn
|
46
46
|
partner_type: Typ av partner
|
47
|
-
weight:
|
47
|
+
weight: Ordning
|
48
48
|
conference_registration_invite:
|
49
49
|
email: E-post
|
50
50
|
name: Namn
|
51
|
-
registration_type_id:
|
51
|
+
registration_type_id: Registreringstyp
|
52
52
|
user_id: Användare
|
53
53
|
conference_registration_type:
|
54
54
|
description: Beskrivning
|
55
55
|
price: Pris
|
56
56
|
title: Titel
|
57
|
-
weight:
|
57
|
+
weight: Ordning
|
58
58
|
conference_speaker:
|
59
|
-
affiliation:
|
60
|
-
avatar:
|
59
|
+
affiliation: Anknytning
|
60
|
+
avatar: Avatar
|
61
61
|
conference_meeting_ids: Relaterade möten
|
62
62
|
full_name: Fullständigt namn
|
63
|
-
personal_url: Personlig
|
64
|
-
position:
|
65
|
-
short_bio: Kort
|
63
|
+
personal_url: Personlig URL
|
64
|
+
position: Plats
|
65
|
+
short_bio: Kort biographi
|
66
66
|
user_id: Användare
|
67
67
|
conference_user_role:
|
68
68
|
email: E-post
|
@@ -107,11 +107,13 @@ sv:
|
|
107
107
|
destroy:
|
108
108
|
success: Talaren har tagits bort.
|
109
109
|
edit:
|
110
|
+
title: Uppdatera talare.
|
110
111
|
update: Uppdatera
|
111
112
|
index:
|
112
113
|
conference_speakers_title: Talare
|
113
114
|
new:
|
114
115
|
create: Skapa
|
116
|
+
title: Ny talare.
|
115
117
|
update:
|
116
118
|
error: Det gick inte att uppdatera talaren.
|
117
119
|
success: Talaren har uppdaterats.
|
@@ -122,9 +124,11 @@ sv:
|
|
122
124
|
destroy:
|
123
125
|
success: Konferensadministratören har tagits bort.
|
124
126
|
edit:
|
127
|
+
title: Uppdatera konferensadministratör.
|
125
128
|
update: Uppdatera
|
126
129
|
new:
|
127
130
|
create: Skapa
|
131
|
+
title: Ny konferensadministratör.
|
128
132
|
update:
|
129
133
|
error: Det gick inte att uppdatera konferensadministratören.
|
130
134
|
success: Konferensadministratören har uppdaterats.
|
@@ -153,12 +157,20 @@ sv:
|
|
153
157
|
media_links:
|
154
158
|
create:
|
155
159
|
error: Det gick inte att skapa en ny medialänk.
|
160
|
+
success: Medialänk har skapats.
|
161
|
+
destroy:
|
162
|
+
success: Medialänken har raderats.
|
156
163
|
edit:
|
164
|
+
title: Uppdatera medialänk.
|
157
165
|
update: Uppdatera
|
166
|
+
index:
|
167
|
+
media_links_title: Medialänkar
|
158
168
|
new:
|
159
169
|
create: Skapa
|
170
|
+
title: Medialänk
|
160
171
|
update:
|
161
172
|
error: Det gick inte att uppdatera medialänken.
|
173
|
+
success: Medialänken har uppdaterats.
|
162
174
|
menu:
|
163
175
|
conferences: Konferenser
|
164
176
|
conferences_submenu:
|
@@ -170,9 +182,13 @@ sv:
|
|
170
182
|
conference_admins: Konferensadministratörer
|
171
183
|
conference_invites: Inbjudningar
|
172
184
|
conference_speakers: Talare
|
185
|
+
diploma: Närvarointyg
|
186
|
+
media_links: Medialänkar
|
173
187
|
moderations: Moderering
|
174
188
|
partners: Partners
|
189
|
+
registration_types: Registreringstyper
|
175
190
|
registrations: Registreringar
|
191
|
+
user_registrations: Användarregistreringar
|
176
192
|
models:
|
177
193
|
conference:
|
178
194
|
fields:
|
@@ -195,12 +211,13 @@ sv:
|
|
195
211
|
admin: Administratör
|
196
212
|
collaborator: Medarbetare
|
197
213
|
moderator: Moderator
|
198
|
-
valuator:
|
214
|
+
valuator: Värderare
|
199
215
|
media_link:
|
200
216
|
fields:
|
201
217
|
date: Datum
|
202
218
|
link: Länk
|
203
219
|
title: Titel
|
220
|
+
name: Medialänk
|
204
221
|
partner:
|
205
222
|
fields:
|
206
223
|
link: Länk
|
@@ -217,7 +234,7 @@ sv:
|
|
217
234
|
price: Pris
|
218
235
|
registrations_count: Antal registreringar
|
219
236
|
title: Titel
|
220
|
-
weight:
|
237
|
+
weight: Vikt
|
221
238
|
name: Registreringstyp
|
222
239
|
partners:
|
223
240
|
create:
|
@@ -226,6 +243,7 @@ sv:
|
|
226
243
|
destroy:
|
227
244
|
success: Konferenspartnern har tagits bort.
|
228
245
|
edit:
|
246
|
+
title: Uppdatera partner.
|
229
247
|
update: Uppdatera
|
230
248
|
new:
|
231
249
|
create: Skapa
|
@@ -247,6 +265,7 @@ sv:
|
|
247
265
|
destroy:
|
248
266
|
success: Registreringstypen har tagits från konferensen.
|
249
267
|
edit:
|
268
|
+
title: Uppdatera registreringstyp.
|
250
269
|
update: Uppdatera
|
251
270
|
new:
|
252
271
|
create: Skapa
|
@@ -307,14 +326,8 @@ sv:
|
|
307
326
|
non_user: Icke befintlig deltagare
|
308
327
|
select_user: Välj deltagare
|
309
328
|
index:
|
310
|
-
filter:
|
311
|
-
accepted: Accepterad
|
312
|
-
all: Alla
|
313
|
-
rejected: Avvisad
|
314
|
-
sent: Skickad
|
315
329
|
invite_attendee: Bjud in deltagare
|
316
330
|
invites: Inbjudningar
|
317
|
-
search: Sök
|
318
331
|
new:
|
319
332
|
invite: Inbjudan
|
320
333
|
new_invite: Bjud in deltagare
|
@@ -338,6 +351,7 @@ sv:
|
|
338
351
|
diplomas:
|
339
352
|
edit:
|
340
353
|
save: Spara
|
354
|
+
title: Närvarointyg
|
341
355
|
invite_join_conference_mailer:
|
342
356
|
invite:
|
343
357
|
decline: Avböj inbjudan till '%{conference_title}'
|
@@ -356,6 +370,7 @@ sv:
|
|
356
370
|
diploma_html: Närvarointyget för konferensen <a href="%{url}">%{title}</a> finns i bilagorna.
|
357
371
|
diploma_user:
|
358
372
|
attendance_verified_by: Närvaro bekräftad av
|
373
|
+
certificate_of_attendance: Närvarointyg
|
359
374
|
certificate_of_attendance_description: Detta intygar att <strong>%{user}</strong> har deltagit och medverkat i <strong>%{title}</strong> som hölls på <strong>%{location}</strong> <strong>%{start} - %{end}</strong>
|
360
375
|
send_diploma:
|
361
376
|
error: Det gick inte att skicka närvarointyg för konferensen.
|
@@ -395,7 +410,7 @@ sv:
|
|
395
410
|
personal_website: Personlig hemsida
|
396
411
|
show:
|
397
412
|
more_info: mer information
|
398
|
-
speaking_at:
|
413
|
+
speaking_at: Talar vid
|
399
414
|
conference_speaker_cell:
|
400
415
|
personal_url:
|
401
416
|
personal_website: Personlig hemsida
|
@@ -448,7 +463,7 @@ sv:
|
|
448
463
|
home:
|
449
464
|
highlighted_conferences:
|
450
465
|
active_spaces: Pågående konferenser
|
451
|
-
see_all_spaces:
|
466
|
+
see_all_spaces: Se alla konferenser
|
452
467
|
registration_types:
|
453
468
|
index:
|
454
469
|
choose_an_option: 'Välj registreringsalternativ:'
|
@@ -459,8 +474,8 @@ sv:
|
|
459
474
|
details: Detaljer
|
460
475
|
introduction: Introduktion
|
461
476
|
objectives: Mål
|
462
|
-
related_assemblies: Relaterade
|
463
|
-
related_participatory_processes: Relaterade
|
477
|
+
related_assemblies: Relaterade grupper
|
478
|
+
related_participatory_processes: Relaterade dialoger
|
464
479
|
events:
|
465
480
|
conferences:
|
466
481
|
conference_registration_confirmed:
|
@@ -483,10 +498,10 @@ sv:
|
|
483
498
|
email_subject: Konferensen "%{resource_title}" tar nu emot registreringar.
|
484
499
|
notification_title: Konferensen <a href="%{resource_path}">%{resource_title}</a> tar nu emot registreringar.
|
485
500
|
role_assigned:
|
486
|
-
email_intro: Du har tilldelats
|
487
|
-
email_outro: Du har fått det här meddelandet eftersom du är %{role}
|
488
|
-
email_subject: Du har tilldelats
|
489
|
-
notification_title: Du har tilldelats
|
501
|
+
email_intro: Du har tilldelats som %{role} för konferens "%{resource_title}".
|
502
|
+
email_outro: Du har fått det här meddelandet eftersom du är %{role} av konferensen "%{resource_title}".
|
503
|
+
email_subject: Du har tilldelats som %{role} för "%{resource_title}".
|
504
|
+
notification_title: Du har tilldelats %{role} för konferens <a href="%{resource_url}">%{resource_title}</a>.
|
490
505
|
upcoming_conference:
|
491
506
|
email_intro: 'Konferensen "%{resource_title}" äger rum om två dagar. Läs mer på dess sida:'
|
492
507
|
email_outro: Du har fått det här meddelandet eftersom du följer konferensen "%{resource_title}". Du kan sluta att följa den från föregående länk.
|
data/config/locales/tr-TR.yml
CHANGED
@@ -73,11 +73,13 @@ tr:
|
|
73
73
|
destroy:
|
74
74
|
success: Bu konferans için konuşmacı başarıyla silindi.
|
75
75
|
edit:
|
76
|
+
title: Konferans konuşmacısını güncelle.
|
76
77
|
update: Güncelleştirme
|
77
78
|
index:
|
78
79
|
conference_speakers_title: Konferans konuşmacıları
|
79
80
|
new:
|
80
81
|
create: yaratmak
|
82
|
+
title: Yeni konferans konuşmacı.
|
81
83
|
update:
|
82
84
|
error: Bu konferans için konuşmacı güncellenirken bir hata oluştu.
|
83
85
|
success: Bu konferans için konuşmacı başarıyla güncellendi.
|
@@ -88,9 +90,11 @@ tr:
|
|
88
90
|
destroy:
|
89
91
|
success: Yönetici bu konferanstan başarıyla kaldırıldı.
|
90
92
|
edit:
|
93
|
+
title: Konferans yöneticisi güncelle.
|
91
94
|
update: Güncelle
|
92
95
|
new:
|
93
96
|
create: Oluştur
|
97
|
+
title: Yeni konferans yöneticisi
|
94
98
|
update:
|
95
99
|
error: Bu konferans yöneticisini güncellerken bir sorun oluştu.
|
96
100
|
success: Konferans yöneticisi başarıyla güncellendi.
|
@@ -119,12 +123,20 @@ tr:
|
|
119
123
|
media_links:
|
120
124
|
create:
|
121
125
|
error: Yeni bir medya bağlantısı oluştururken bir hata oluştu.
|
126
|
+
success: Medya Bağlantısı başarıyla oluşturuldu.
|
127
|
+
destroy:
|
128
|
+
success: Medya Bağlantısı başarıyla silindi.
|
122
129
|
edit:
|
130
|
+
title: Medya bağlantısını güncelle.
|
123
131
|
update: Güncelle
|
132
|
+
index:
|
133
|
+
media_links_title: Medya Bağlantıları
|
124
134
|
new:
|
125
135
|
create: Oluştur
|
136
|
+
title: Medya Bağlantısı
|
126
137
|
update:
|
127
138
|
error: Bu medya bağlantısını güncellerken bir hata oluştu.
|
139
|
+
success: Medya Bağlantısı başarıyla güncellendi.
|
128
140
|
menu:
|
129
141
|
conferences: Konferanslar
|
130
142
|
conferences_submenu:
|
@@ -136,9 +148,13 @@ tr:
|
|
136
148
|
conference_admins: Konferans yöneticileri
|
137
149
|
conference_invites: Davetler
|
138
150
|
conference_speakers: Konuşmacılar
|
151
|
+
diploma: Katılım sertifikası
|
152
|
+
media_links: Medya Bağlantıları
|
139
153
|
moderations: Moderasyonlar
|
140
154
|
partners: Ortaklar
|
155
|
+
registration_types: Kayıt Türleri
|
141
156
|
registrations: Kayıtlar
|
157
|
+
user_registrations: Kullanıcı Kayıtları
|
142
158
|
models:
|
143
159
|
conference:
|
144
160
|
fields:
|
@@ -167,6 +183,7 @@ tr:
|
|
167
183
|
date: Tarih
|
168
184
|
link: Bağlantı
|
169
185
|
title: Başlık
|
186
|
+
name: Medya Bağlantısı
|
170
187
|
partner:
|
171
188
|
fields:
|
172
189
|
link: Bağlantı
|
@@ -191,6 +208,7 @@ tr:
|
|
191
208
|
destroy:
|
192
209
|
success: İş ortağı bu konferanstan başarıyla kaldırıldı.
|
193
210
|
edit:
|
211
|
+
title: İş ortağı güncelle.
|
194
212
|
update: Güncelle
|
195
213
|
new:
|
196
214
|
create: Oluştur
|
@@ -212,6 +230,7 @@ tr:
|
|
212
230
|
destroy:
|
213
231
|
success: Kayıt türü bu konferanstan başarıyla kaldırıldı.
|
214
232
|
edit:
|
233
|
+
title: Kayıt türünü güncelle.
|
215
234
|
update: Güncelle
|
216
235
|
new:
|
217
236
|
create: Oluştur
|
@@ -268,12 +287,8 @@ tr:
|
|
268
287
|
non_user: Mevcut olmayan kullanıcı
|
269
288
|
select_user: Kullanıcı seç
|
270
289
|
index:
|
271
|
-
filter:
|
272
|
-
all: Herşey
|
273
|
-
sent: Gönderilen
|
274
290
|
invite_attendee: Katılımcı Davet Et
|
275
291
|
invites: Davetler
|
276
|
-
search: Arama
|
277
292
|
new:
|
278
293
|
invite: Davet et
|
279
294
|
new_invite: Kullanıcı davet et
|
@@ -297,6 +312,7 @@ tr:
|
|
297
312
|
diplomas:
|
298
313
|
edit:
|
299
314
|
save: Kayıt etmek
|
315
|
+
title: Katılım sertifikası
|
300
316
|
invite_join_conference_mailer:
|
301
317
|
invite:
|
302
318
|
decline: '''%{conference_title}'' davetiyesini reddet'
|
@@ -315,6 +331,7 @@ tr:
|
|
315
331
|
diploma_html: <a href="%{url}">%{title}</a> konferansına katılım belgesini ekte bulabilirsiniz.
|
316
332
|
diploma_user:
|
317
333
|
attendance_verified_by: Katılım onaylandı
|
334
|
+
certificate_of_attendance: Katılım sertifikası
|
318
335
|
certificate_of_attendance_description: Bu, <strong>%{user}</strong> <strong>%{start} - %{end}</strong><strong>%{location}</strong> tutulan <strong>%{title}</strong> katılıp katıldığını onaylamaktır.
|
319
336
|
send_diploma:
|
320
337
|
error: Konferansa katılım sertifikalarını gönderirken bir sorun oluştu.
|
data/config/locales/zh-CN.yml
CHANGED
@@ -64,11 +64,13 @@ zh-CN:
|
|
64
64
|
destroy:
|
65
65
|
success: 会议发言者已成功删除。
|
66
66
|
edit:
|
67
|
+
title: 更新会议扬声器。
|
67
68
|
update: 更新
|
68
69
|
index:
|
69
70
|
conference_speakers_title: 会议发言者:
|
70
71
|
new:
|
71
72
|
create: 创建
|
73
|
+
title: 新会议发言者。
|
72
74
|
update:
|
73
75
|
error: 更新这个会议发言者时出现问题。
|
74
76
|
success: 会议发言者已成功更新。
|
@@ -79,9 +81,11 @@ zh-CN:
|
|
79
81
|
destroy:
|
80
82
|
success: 会议管理员已成功删除。
|
81
83
|
edit:
|
84
|
+
title: 更新会议管理员。
|
82
85
|
update: 更新
|
83
86
|
new:
|
84
87
|
create: 创建
|
88
|
+
title: 新的会议管理员。
|
85
89
|
update:
|
86
90
|
error: 更新会议管理员时出错。
|
87
91
|
success: 会议管理员已成功更新。
|
@@ -110,12 +114,20 @@ zh-CN:
|
|
110
114
|
media_links:
|
111
115
|
create:
|
112
116
|
error: 创建新媒体链接时出现问题。
|
117
|
+
success: 媒体链接成功创建。
|
118
|
+
destroy:
|
119
|
+
success: 媒体链接删除成功
|
113
120
|
edit:
|
121
|
+
title: 更新媒体链接。
|
114
122
|
update: 更新
|
123
|
+
index:
|
124
|
+
media_links_title: 媒体链接
|
115
125
|
new:
|
116
126
|
create: 创建
|
127
|
+
title: 媒体链接
|
117
128
|
update:
|
118
129
|
error: 更新此媒体链接时出现问题。
|
130
|
+
success: 媒体链接已成功更新。
|
119
131
|
menu:
|
120
132
|
conferences: 会议
|
121
133
|
conferences_submenu:
|
@@ -127,9 +139,13 @@ zh-CN:
|
|
127
139
|
conference_admins: 会议管理员
|
128
140
|
conference_invites: 邀请
|
129
141
|
conference_speakers: 发言者:
|
142
|
+
diploma: 出席证书
|
143
|
+
media_links: 媒体链接
|
130
144
|
moderations: 版面
|
131
145
|
partners: 合作伙伴
|
146
|
+
registration_types: 注册类型
|
132
147
|
registrations: 注册
|
148
|
+
user_registrations: 用户注册
|
133
149
|
models:
|
134
150
|
conference:
|
135
151
|
fields:
|
@@ -158,6 +174,7 @@ zh-CN:
|
|
158
174
|
date: 日期
|
159
175
|
link: 链接
|
160
176
|
title: 标题
|
177
|
+
name: 媒体链接
|
161
178
|
partner:
|
162
179
|
fields:
|
163
180
|
link: 链接
|
@@ -182,6 +199,7 @@ zh-CN:
|
|
182
199
|
destroy:
|
183
200
|
success: 会议合作伙伴已成功删除。
|
184
201
|
edit:
|
202
|
+
title: 更新伙伴。
|
185
203
|
update: 更新
|
186
204
|
new:
|
187
205
|
create: 创建
|
@@ -203,6 +221,7 @@ zh-CN:
|
|
203
221
|
destroy:
|
204
222
|
success: 会议注册类型已成功删除。
|
205
223
|
edit:
|
224
|
+
title: 更新注册类型。
|
206
225
|
update: 更新
|
207
226
|
new:
|
208
227
|
create: 创建
|
@@ -259,12 +278,8 @@ zh-CN:
|
|
259
278
|
non_user: 非现有参与者
|
260
279
|
select_user: 选择参与者
|
261
280
|
index:
|
262
|
-
filter:
|
263
|
-
all: 所有的
|
264
|
-
sent: 已发送
|
265
281
|
invite_attendee: Invite participant
|
266
282
|
invites: 邀请
|
267
|
-
search: 搜索
|
268
283
|
new:
|
269
284
|
invite: 邀请
|
270
285
|
new_invite: Invite participant
|
@@ -287,6 +302,7 @@ zh-CN:
|
|
287
302
|
diplomas:
|
288
303
|
edit:
|
289
304
|
save: 保存
|
305
|
+
title: 出席证书
|
290
306
|
invite_join_conference_mailer:
|
291
307
|
invite:
|
292
308
|
decline: 拒绝邀请 '%{conference_title}'
|
@@ -305,6 +321,7 @@ zh-CN:
|
|
305
321
|
diploma_html: 您将在附件中找到会议 <a href="%{url}">%{title}</a> 的出席证书。
|
306
322
|
diploma_user:
|
307
323
|
attendance_verified_by: 验证出勤者
|
324
|
+
certificate_of_attendance: 出席证书
|
308
325
|
certificate_of_attendance_description: 这是为了证明 <strong>%{user}</strong> 出席并参加了 <strong>%{title}</strong> 在 <strong>%{location}</strong> 在 <strong>%{start} - %{end}</strong>
|
309
326
|
send_diploma:
|
310
327
|
error: 签发与会证书时遇到问题。
|
data/config/locales/zh-TW.yml
CHANGED
@@ -110,11 +110,13 @@ zh-TW:
|
|
110
110
|
destroy:
|
111
111
|
success: 會議講者已成功刪除。
|
112
112
|
edit:
|
113
|
+
title: 更新會議講者。
|
113
114
|
update: 更新
|
114
115
|
index:
|
115
116
|
conference_speakers_title: 會議講者
|
116
117
|
new:
|
117
118
|
create: 建立
|
119
|
+
title: 新的會議講者。
|
118
120
|
update:
|
119
121
|
error: 更新會議講者時發生問題。
|
120
122
|
success: 會議講者成功更新。
|
@@ -125,11 +127,13 @@ zh-TW:
|
|
125
127
|
destroy:
|
126
128
|
success: 會議管理員已成功刪除。
|
127
129
|
edit:
|
130
|
+
title: 更新會議管理員。
|
128
131
|
update: 更新
|
129
132
|
index:
|
130
133
|
conference_admins_title: 會議管理員
|
131
134
|
new:
|
132
135
|
create: 創建
|
136
|
+
title: 新增會議管理員。
|
133
137
|
update:
|
134
138
|
error: 更新此會議管理員時發生問題。
|
135
139
|
success: 已成功更新會議管理員。
|
@@ -158,12 +162,20 @@ zh-TW:
|
|
158
162
|
media_links:
|
159
163
|
create:
|
160
164
|
error: 創建新的媒體連結時出現問題。
|
165
|
+
success: 媒體連結創建成功。
|
166
|
+
destroy:
|
167
|
+
success: 媒體連結成功刪除。
|
161
168
|
edit:
|
169
|
+
title: 更新媒體連結。
|
162
170
|
update: 更新
|
171
|
+
index:
|
172
|
+
media_links_title: 媒體連結
|
163
173
|
new:
|
164
174
|
create: 創建
|
175
|
+
title: 媒體連結
|
165
176
|
update:
|
166
177
|
error: 更新此媒體連結時出現問題
|
178
|
+
success: 媒體連結已成功更新。
|
167
179
|
menu:
|
168
180
|
conferences: 研討會
|
169
181
|
conferences_submenu:
|
@@ -175,9 +187,13 @@ zh-TW:
|
|
175
187
|
conference_admins: 會議管理員
|
176
188
|
conference_invites: 邀請
|
177
189
|
conference_speakers: 講者
|
190
|
+
diploma: 出席證明書
|
191
|
+
media_links: 媒體連結
|
178
192
|
moderations: 版主
|
179
193
|
partners: 夥伴
|
194
|
+
registration_types: 註冊類型
|
180
195
|
registrations: 註冊
|
196
|
+
user_registrations: 使用者註冊
|
181
197
|
models:
|
182
198
|
conference:
|
183
199
|
fields:
|
@@ -206,6 +222,7 @@ zh-TW:
|
|
206
222
|
date: 日期
|
207
223
|
link: 連結
|
208
224
|
title: 標題
|
225
|
+
name: 媒體連結
|
209
226
|
partner:
|
210
227
|
fields:
|
211
228
|
link: 連結
|
@@ -231,6 +248,7 @@ zh-TW:
|
|
231
248
|
destroy:
|
232
249
|
success: 成功移除會議夥伴。
|
233
250
|
edit:
|
251
|
+
title: 更新合作夥伴。
|
234
252
|
update: 更新
|
235
253
|
new:
|
236
254
|
create: 創建
|
@@ -252,6 +270,7 @@ zh-TW:
|
|
252
270
|
destroy:
|
253
271
|
success: 此會議的註冊類型成功移除。
|
254
272
|
edit:
|
273
|
+
title: 更新註冊類型。
|
255
274
|
update: 更新
|
256
275
|
new:
|
257
276
|
create: 創建
|
@@ -313,14 +332,8 @@ zh-TW:
|
|
313
332
|
non_user: 不存在的參與者。
|
314
333
|
select_user: 選擇參與者
|
315
334
|
index:
|
316
|
-
filter:
|
317
|
-
accepted: 已接受
|
318
|
-
all: 全部
|
319
|
-
rejected: 已拒絕
|
320
|
-
sent: 傳送
|
321
335
|
invite_attendee: 邀請參與者
|
322
336
|
invites: 邀請
|
323
|
-
search: 搜尋
|
324
337
|
new:
|
325
338
|
explanation: 參加者將被邀請加入會議。如果他們的電子郵件尚未註冊,他們也會被邀請加入該組織。
|
326
339
|
invite: 邀請
|
@@ -344,6 +357,7 @@ zh-TW:
|
|
344
357
|
diplomas:
|
345
358
|
edit:
|
346
359
|
save: 儲存
|
360
|
+
title: 出席證明書
|
347
361
|
invite_join_conference_mailer:
|
348
362
|
invite:
|
349
363
|
decline: 拒絕邀請 '%{conference_title}'
|
@@ -363,6 +377,7 @@ zh-TW:
|
|
363
377
|
diploma_html: 您將在附件中找到會議<a href="%{url}">%{title}</a>的出席證明書。
|
364
378
|
diploma_user:
|
365
379
|
attendance_verified_by: 出席驗證
|
380
|
+
certificate_of_attendance: 出席證明書
|
366
381
|
certificate_of_attendance_description: 此證明憑證明 <strong>%{user}</strong> 於<strong>%{location}</strong>於<strong>%{start} - %{end}</strong>參加了<strong>%{title}</strong>活動
|
367
382
|
send_diploma:
|
368
383
|
error: 發送會議出席證明時發生問題。
|
data/decidim-conferences.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.version = Decidim::Conferences.version
|
9
9
|
s.authors = ["Isaac Massot Gil"]
|
10
10
|
s.email = ["isaac.mg@coditramuntana.com"]
|
11
|
-
s.license = "AGPL-3.0
|
11
|
+
s.license = "AGPL-3.0"
|
12
12
|
s.homepage = "https://decidim.org"
|
13
13
|
s.metadata = {
|
14
14
|
"bug_tracker_uri" => "https://github.com/decidim/decidim/issues",
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
"homepage_uri" => "https://decidim.org",
|
18
18
|
"source_code_uri" => "https://github.com/decidim/decidim"
|
19
19
|
}
|
20
|
-
s.required_ruby_version = "~> 3.
|
20
|
+
s.required_ruby_version = "~> 3.2.0"
|
21
21
|
|
22
22
|
s.name = "decidim-conferences"
|
23
23
|
s.summary = "Decidim conferences module"
|
@@ -33,6 +33,7 @@ Gem::Specification.new do |s|
|
|
33
33
|
s.add_dependency "decidim-core", Decidim::Conferences.version
|
34
34
|
s.add_dependency "decidim-meetings", Decidim::Conferences.version
|
35
35
|
s.add_dependency "wicked_pdf", "~> 2.7"
|
36
|
+
s.add_dependency "wkhtmltopdf-binary", "~> 0.12"
|
36
37
|
|
37
38
|
s.add_development_dependency "decidim-admin", Decidim::Conferences.version
|
38
39
|
s.add_development_dependency "decidim-dev", Decidim::Conferences.version
|
@@ -39,11 +39,15 @@ module Decidim
|
|
39
39
|
field :media_links, [Decidim::Conferences::ConferenceMediaLinkType, { null: true }], "List of media links in this conference", null: true
|
40
40
|
|
41
41
|
def hero_image
|
42
|
-
object.attached_uploader(:hero_image).
|
42
|
+
object.attached_uploader(:hero_image).path
|
43
43
|
end
|
44
44
|
|
45
45
|
def banner_image
|
46
|
-
object.attached_uploader(:banner_image).
|
46
|
+
object.attached_uploader(:banner_image).path
|
47
|
+
end
|
48
|
+
|
49
|
+
def speakers
|
50
|
+
object.speakers.published
|
47
51
|
end
|
48
52
|
end
|
49
53
|
end
|
@@ -18,7 +18,12 @@ module Decidim
|
|
18
18
|
resources :conferences, param: :slug, except: [:show, :destroy] do
|
19
19
|
resource :publish, controller: "conference_publications", only: [:create, :destroy]
|
20
20
|
resources :copies, controller: "conference_copies", only: [:new, :create]
|
21
|
-
resources :speakers, controller: "conference_speakers"
|
21
|
+
resources :speakers, controller: "conference_speakers" do
|
22
|
+
member do
|
23
|
+
put :publish
|
24
|
+
put :unpublish
|
25
|
+
end
|
26
|
+
end
|
22
27
|
resources :partners, controller: "partners", except: [:show]
|
23
28
|
resources :media_links, controller: "media_links"
|
24
29
|
resources :registration_types, controller: "registration_types" do
|