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/hu.yml
CHANGED
@@ -119,11 +119,13 @@ hu:
|
|
119
119
|
destroy:
|
120
120
|
success: A hangszóró sikeresen törölve lett a konferencia számára.
|
121
121
|
edit:
|
122
|
+
title: A konferencia hangszóró frissítése.
|
122
123
|
update: frissítés
|
123
124
|
index:
|
124
125
|
conference_speakers_title: Konferencia hangszórók
|
125
126
|
new:
|
126
127
|
create: Teremt
|
128
|
+
title: Új konferencia hangszóró.
|
127
129
|
update:
|
128
130
|
error: Hiba történt a konferencia hangszórójának frissítéséhez.
|
129
131
|
success: A hangszóró sikeresen frissült a konferencia számára.
|
@@ -134,11 +136,13 @@ hu:
|
|
134
136
|
destroy:
|
135
137
|
success: A felhasználó sikeresen eltávolította ezt a konferenciát.
|
136
138
|
edit:
|
139
|
+
title: A konferencia felhasználó frissítése.
|
137
140
|
update: frissítés
|
138
141
|
index:
|
139
142
|
conference_admins_title: Konferencia adminisztrátorok
|
140
143
|
new:
|
141
144
|
create: Teremt
|
145
|
+
title: Új konferencia felhasználó.
|
142
146
|
update:
|
143
147
|
error: Hiba történt a konferencia felhasználójának frissítéséhez.
|
144
148
|
success: A felhasználó sikeresen frissítette ezt a konferenciát.
|
@@ -168,12 +172,20 @@ hu:
|
|
168
172
|
media_links:
|
169
173
|
create:
|
170
174
|
error: Hiba történt új média link létrehozása közben.
|
175
|
+
success: A Media Link sikeresen létrejött.
|
176
|
+
destroy:
|
177
|
+
success: A Media Link sikeresen törölve.
|
171
178
|
edit:
|
179
|
+
title: A média link frissítése.
|
172
180
|
update: frissítés
|
181
|
+
index:
|
182
|
+
media_links_title: Média linkek
|
173
183
|
new:
|
174
184
|
create: Létrehozás
|
185
|
+
title: Media Link
|
175
186
|
update:
|
176
187
|
error: Hiba történt a média link frissítésekor.
|
188
|
+
success: A Media Link sikeresen frissült.
|
177
189
|
menu:
|
178
190
|
conferences: Konferenciák
|
179
191
|
conferences_submenu:
|
@@ -185,11 +197,15 @@ hu:
|
|
185
197
|
conference_admins: Konferencia adminisztrátorok
|
186
198
|
conference_invites: Meghívottak
|
187
199
|
conference_speakers: Előadók
|
200
|
+
diploma: Tanúsítvány a jelenlétről
|
188
201
|
info: Erről a konferenciáról
|
202
|
+
media_links: Média linkek
|
189
203
|
moderations: moderálások
|
190
204
|
partners: Partnerek
|
205
|
+
registration_types: Regisztráció típusok
|
191
206
|
registrations: Regisztrációk
|
192
207
|
see_conference: Konferencia megtekintése
|
208
|
+
user_registrations: Felhasználói regisztrálások
|
193
209
|
models:
|
194
210
|
conference:
|
195
211
|
fields:
|
@@ -218,6 +234,7 @@ hu:
|
|
218
234
|
date: Dátum
|
219
235
|
link: Link
|
220
236
|
title: Cím
|
237
|
+
name: Media Link
|
221
238
|
partner:
|
222
239
|
fields:
|
223
240
|
link: Link
|
@@ -243,6 +260,7 @@ hu:
|
|
243
260
|
destroy:
|
244
261
|
success: A partner sikeresen eltávolítva a konferenciáról.
|
245
262
|
edit:
|
263
|
+
title: Partner frissítése.
|
246
264
|
update: Frissítés
|
247
265
|
new:
|
248
266
|
create: Létrehozás
|
@@ -264,6 +282,7 @@ hu:
|
|
264
282
|
destroy:
|
265
283
|
success: A regisztrációs típus sikeresen el lett távolítva ebből a konferenciából.
|
266
284
|
edit:
|
285
|
+
title: A regisztrációs típus frissítése.
|
267
286
|
update: Frissítés
|
268
287
|
new:
|
269
288
|
create: Létrehozás
|
@@ -325,14 +344,8 @@ hu:
|
|
325
344
|
non_user: Nem létező felhasználó
|
326
345
|
select_user: Felhasználó kiválasztása
|
327
346
|
index:
|
328
|
-
filter:
|
329
|
-
accepted: Elfogadott
|
330
|
-
all: Minden
|
331
|
-
rejected: Elutasítva
|
332
|
-
sent: Küldött
|
333
347
|
invite_attendee: Hívja meg a résztvevőt
|
334
348
|
invites: Meghívottak
|
335
|
-
search: Keresés
|
336
349
|
new:
|
337
350
|
explanation: A résztvevő meghívást kap egy konferenciára. Ha az e-mail cím nincs regisztrálva, akkor a szervezethez is meghívást kap.
|
338
351
|
invite: Meghívás
|
@@ -357,6 +370,7 @@ hu:
|
|
357
370
|
diplomas:
|
358
371
|
edit:
|
359
372
|
save: Mentés
|
373
|
+
title: Tanúsítvány a jelenlétről
|
360
374
|
invite_join_conference_mailer:
|
361
375
|
invite:
|
362
376
|
decline: A "%{conference_title}" meghívása
|
@@ -376,6 +390,7 @@ hu:
|
|
376
390
|
diploma_html: A mellékletben találja meg a konferencián való részvételi igazolást <a href="%{url}">%{title}</a>.
|
377
391
|
diploma_user:
|
378
392
|
attendance_verified_by: A részvételt ellenőrizte
|
393
|
+
certificate_of_attendance: Tanúsítvány a részvételről
|
379
394
|
certificate_of_attendance_description: Ez azt igazolja, hogy <strong>%{user}</strong> részt vett a <strong>%{title}</strong> című eseményen a <strong>%{location}</strong> címen a követező időpontban, <strong>%{start} - %{end}</strong>
|
380
395
|
send_diploma:
|
381
396
|
error: Probléma merült fel a konferencia részvételi igazolásainak elküldése közben.
|
data/config/locales/id-ID.yml
CHANGED
@@ -64,11 +64,13 @@ id:
|
|
64
64
|
destroy:
|
65
65
|
success: Pembicara berhasil dihapus untuk konferensi ini.
|
66
66
|
edit:
|
67
|
+
title: Perbarui pembicara konferensi.
|
67
68
|
update: Memperbarui
|
68
69
|
index:
|
69
70
|
conference_speakers_title: Pembicara konferensi
|
70
71
|
new:
|
71
72
|
create: Membuat
|
73
|
+
title: Pembicara konferensi baru.
|
72
74
|
update:
|
73
75
|
error: Terjadi kesalahan saat memperbarui pembicara untuk konferensi ini.
|
74
76
|
success: Pembicara berhasil diperbarui untuk konferensi ini.
|
@@ -79,9 +81,11 @@ id:
|
|
79
81
|
destroy:
|
80
82
|
success: Pengguna berhasil dihapus dari konferensi ini.
|
81
83
|
edit:
|
84
|
+
title: Perbarui pengguna konferensi.
|
82
85
|
update: Memperbarui
|
83
86
|
new:
|
84
87
|
create: Membuat
|
88
|
+
title: Pengguna konferensi baru.
|
85
89
|
update:
|
86
90
|
error: Terjadi kesalahan saat memperbarui pengguna untuk konferensi ini.
|
87
91
|
success: Pengguna berhasil diperbarui untuk konferensi ini.
|
@@ -110,12 +114,20 @@ id:
|
|
110
114
|
media_links:
|
111
115
|
create:
|
112
116
|
error: Terjadi kesalahan saat membuat tautan media baru.
|
117
|
+
success: Media Link berhasil dibuat.
|
118
|
+
destroy:
|
119
|
+
success: Tautan Media berhasil dihapus.
|
113
120
|
edit:
|
121
|
+
title: Perbarui tautan media.
|
114
122
|
update: Memperbarui
|
123
|
+
index:
|
124
|
+
media_links_title: Tautan Media
|
115
125
|
new:
|
116
126
|
create: Membuat
|
127
|
+
title: Tautan Media
|
117
128
|
update:
|
118
129
|
error: Terjadi kesalahan saat memperbarui tautan media ini.
|
130
|
+
success: Media Link berhasil diperbarui.
|
119
131
|
menu:
|
120
132
|
conferences: Konferensi
|
121
133
|
conferences_submenu:
|
@@ -127,9 +139,13 @@ id:
|
|
127
139
|
conference_admins: Admin konferensi
|
128
140
|
conference_invites: Undangan
|
129
141
|
conference_speakers: Pembicara
|
142
|
+
diploma: Sertifikat kehadiran
|
143
|
+
media_links: Tautan Media
|
130
144
|
moderations: Moderasi
|
131
145
|
partners: Mitra
|
146
|
+
registration_types: Jenis Pendaftaran
|
132
147
|
registrations: Pendaftaran
|
148
|
+
user_registrations: Registrasi Pengguna
|
133
149
|
models:
|
134
150
|
conference:
|
135
151
|
fields:
|
@@ -157,6 +173,7 @@ id:
|
|
157
173
|
date: Tanggal
|
158
174
|
link: Link
|
159
175
|
title: Judul
|
176
|
+
name: Tautan Media
|
160
177
|
partner:
|
161
178
|
fields:
|
162
179
|
link: Link
|
@@ -181,6 +198,7 @@ id:
|
|
181
198
|
destroy:
|
182
199
|
success: Mitra berhasil dihapus dari konferensi ini.
|
183
200
|
edit:
|
201
|
+
title: Perbarui mitra.
|
184
202
|
update: Memperbarui
|
185
203
|
new:
|
186
204
|
create: Membuat
|
@@ -202,6 +220,7 @@ id:
|
|
202
220
|
destroy:
|
203
221
|
success: Jenis pendaftaran berhasil dihapus dari konferensi ini.
|
204
222
|
edit:
|
223
|
+
title: Perbarui jenis pendaftaran.
|
205
224
|
update: Memperbarui
|
206
225
|
new:
|
207
226
|
create: Membuat
|
@@ -258,12 +277,8 @@ id:
|
|
258
277
|
non_user: Pengguna tidak ada
|
259
278
|
select_user: Pilih pengguna
|
260
279
|
index:
|
261
|
-
filter:
|
262
|
-
all: Semua
|
263
|
-
sent: Terkirim
|
264
280
|
invite_attendee: Undang Peserta
|
265
281
|
invites: Undangan
|
266
|
-
search: Pencarian
|
267
282
|
new:
|
268
283
|
invite: Undang
|
269
284
|
new_invite: Undang pengguna
|
@@ -286,6 +301,7 @@ id:
|
|
286
301
|
diplomas:
|
287
302
|
edit:
|
288
303
|
save: Menyimpan
|
304
|
+
title: Sertifikat kehadiran
|
289
305
|
invite_join_conference_mailer:
|
290
306
|
invite:
|
291
307
|
decline: Tolak undangan '%{conference_title}'
|
@@ -304,6 +320,7 @@ id:
|
|
304
320
|
diploma_html: Anda akan menemukan sertifikat kehadiran untuk konferensi <a href="%{url}">%{title}</a> di lampiran.
|
305
321
|
diploma_user:
|
306
322
|
attendance_verified_by: Kehadiran diverifikasi oleh
|
323
|
+
certificate_of_attendance: Sertifikat kehadiran
|
307
324
|
certificate_of_attendance_description: Ini untuk menyatakan bahwa <strong>%{user}</strong> telah hadir dan mengambil bagian dalam <strong>%{title}</strong> diadakan pada <strong>%{location}</strong> pada <strong>%{start} - %{end}</strong>
|
308
325
|
send_diploma:
|
309
326
|
error: Ada masalah saat mengirim sertifikat kehadiran konferensi.
|
data/config/locales/it.yml
CHANGED
@@ -100,11 +100,13 @@ it:
|
|
100
100
|
destroy:
|
101
101
|
success: Relatore della conferenza cancellato con successo.
|
102
102
|
edit:
|
103
|
+
title: Aggiorna relatore della conferenza.
|
103
104
|
update: Aggiorna
|
104
105
|
index:
|
105
106
|
conference_speakers_title: Relatori della conferenza
|
106
107
|
new:
|
107
108
|
create: Crea
|
109
|
+
title: Nuovo relatore per la conferenza.
|
108
110
|
update:
|
109
111
|
error: Si è verificato un errore durante l'aggiornamento del relatore per questa conferenza.
|
110
112
|
success: Relatore aggiornato con successo per questa conferenza.
|
@@ -115,9 +117,11 @@ it:
|
|
115
117
|
destroy:
|
116
118
|
success: Amministratore della conferenza rimosso con successo.
|
117
119
|
edit:
|
120
|
+
title: Aggiorna l'amministratore della conferenza.
|
118
121
|
update: Aggiornare
|
119
122
|
new:
|
120
123
|
create: Creare
|
124
|
+
title: Nuovo amministratore della conferenza.
|
121
125
|
update:
|
122
126
|
error: Si è verificato un problema durante l'aggiornamento di questo amministratore della conferenza.
|
123
127
|
success: Amministratore della conferenza aggiornato con successo.
|
@@ -147,12 +151,20 @@ it:
|
|
147
151
|
media_links:
|
148
152
|
create:
|
149
153
|
error: Si è verificato un errore durante la creazione di un nuovo collegamento multimediale.
|
154
|
+
success: Link multimediale creato correttamente.
|
155
|
+
destroy:
|
156
|
+
success: Link multimediale cancellato con successo.
|
150
157
|
edit:
|
158
|
+
title: Aggiorna collegamento multimediale.
|
151
159
|
update: Aggiorna
|
160
|
+
index:
|
161
|
+
media_links_title: Link multimediali
|
152
162
|
new:
|
153
163
|
create: Crea
|
164
|
+
title: Link multimediale
|
154
165
|
update:
|
155
166
|
error: Si è verificato un errore aggiornando questo link multimediale.
|
167
|
+
success: Link multimediale aggiornato correttamente.
|
156
168
|
menu:
|
157
169
|
conferences: Conferenze
|
158
170
|
conferences_submenu:
|
@@ -164,9 +176,13 @@ it:
|
|
164
176
|
conference_admins: Amministratori della conferenza
|
165
177
|
conference_invites: Inviti
|
166
178
|
conference_speakers: Relatori
|
179
|
+
diploma: Certificato di partecipazione
|
180
|
+
media_links: Link multimediali
|
167
181
|
moderations: Moderazioni
|
168
182
|
partners: Partners
|
183
|
+
registration_types: Tipi di iscrizione
|
169
184
|
registrations: Iscrizioni
|
185
|
+
user_registrations: Iscrizioni utenti
|
170
186
|
models:
|
171
187
|
conference:
|
172
188
|
fields:
|
@@ -195,6 +211,7 @@ it:
|
|
195
211
|
date: Data
|
196
212
|
link: Collegamento
|
197
213
|
title: Titolo
|
214
|
+
name: Link multimediale
|
198
215
|
partner:
|
199
216
|
fields:
|
200
217
|
link: Collegamento
|
@@ -220,6 +237,7 @@ it:
|
|
220
237
|
destroy:
|
221
238
|
success: Partner rimosso correttamente da questa conferenza.
|
222
239
|
edit:
|
240
|
+
title: Aggiorna partner.
|
223
241
|
update: Aggiornare
|
224
242
|
new:
|
225
243
|
create: Crea
|
@@ -241,6 +259,7 @@ it:
|
|
241
259
|
destroy:
|
242
260
|
success: Tipo di iscrizione rimosso con successo da questa conferenza.
|
243
261
|
edit:
|
262
|
+
title: Aggiorna il tipo di iscrizione.
|
244
263
|
update: Aggiorna
|
245
264
|
new:
|
246
265
|
create: Crea
|
@@ -301,12 +320,8 @@ it:
|
|
301
320
|
non_user: Utente non esistente
|
302
321
|
select_user: Seleziona utente
|
303
322
|
index:
|
304
|
-
filter:
|
305
|
-
all: Tutti
|
306
|
-
sent: Inviato
|
307
323
|
invite_attendee: Invita il partecipante
|
308
324
|
invites: Inviti
|
309
|
-
search: Ricerca
|
310
325
|
new:
|
311
326
|
invite: Invita
|
312
327
|
new_invite: Invita partecipante
|
@@ -330,6 +345,7 @@ it:
|
|
330
345
|
diplomas:
|
331
346
|
edit:
|
332
347
|
save: Salva
|
348
|
+
title: Certificato di partecipazione
|
333
349
|
invite_join_conference_mailer:
|
334
350
|
invite:
|
335
351
|
decline: Rifiuta l'invito '%{conference_title}'
|
@@ -348,6 +364,7 @@ it:
|
|
348
364
|
diploma_html: Troverai il certificato di frequenza per la conferenza <a href="%{url}">%{title}</a> negli allegati.
|
349
365
|
diploma_user:
|
350
366
|
attendance_verified_by: Presenza verificata da
|
367
|
+
certificate_of_attendance: Certificato di partecipazione
|
351
368
|
certificate_of_attendance_description: La presente per certificare che <strong>%{user}</strong> ha partecipato e partecipato al <strong>%{title}</strong> tenuta al <strong>%{location}</strong> in data <strong>%{start} - %{end}</strong>
|
352
369
|
send_diploma:
|
353
370
|
error: C'è stato un problema durante l'invio dei certificati di frequenza alla conferenza.
|
data/config/locales/ja.yml
CHANGED
@@ -117,13 +117,19 @@ ja:
|
|
117
117
|
destroy:
|
118
118
|
success: カンファレンススピーカーを削除しました。
|
119
119
|
edit:
|
120
|
-
title:
|
120
|
+
title: カンファレンススピーカーを更新します。
|
121
121
|
update: 更新
|
122
122
|
index:
|
123
123
|
conference_speakers_title: カンファレンススピーカー
|
124
124
|
new:
|
125
125
|
create: 作成
|
126
|
-
title:
|
126
|
+
title: 新しいカンファレンススピーカー。
|
127
|
+
publish:
|
128
|
+
invalid: このスピーカーを公開中に問題が発生しました。
|
129
|
+
success: カンファレンスのスピーカーを公開しました。
|
130
|
+
unpublish:
|
131
|
+
invalid: このスピーカーを非公開にする際に問題がありました。
|
132
|
+
success: カンファレンスのスピーカーを非公開にしました。
|
127
133
|
update:
|
128
134
|
error: このカンファレンススピーカーの更新中に問題が発生しました。
|
129
135
|
success: カンファレンススピーカーが正常に更新されました。
|
@@ -174,13 +180,13 @@ ja:
|
|
174
180
|
destroy:
|
175
181
|
success: メディアリンクを削除しました。
|
176
182
|
edit:
|
177
|
-
title:
|
183
|
+
title: メディアリンクを更新
|
178
184
|
update: 更新
|
179
185
|
index:
|
180
186
|
media_links_title: メディアリンク
|
181
187
|
new:
|
182
188
|
create: 作成
|
183
|
-
title:
|
189
|
+
title: メディアリンク
|
184
190
|
update:
|
185
191
|
error: このメディア リンクの更新中に問題が発生しました。
|
186
192
|
success: メディアリンクを更新しました。
|
@@ -195,7 +201,7 @@ ja:
|
|
195
201
|
conference_admins: カンファレンス管理者
|
196
202
|
conference_invites: 招待
|
197
203
|
conference_speakers: スピーカー
|
198
|
-
diploma:
|
204
|
+
diploma: 出席証明書
|
199
205
|
info: このカンファレンスについて
|
200
206
|
media_links: メディアリンク
|
201
207
|
moderations: モデレーション
|
@@ -232,7 +238,7 @@ ja:
|
|
232
238
|
date: 日付
|
233
239
|
link: リンク
|
234
240
|
title: タイトル
|
235
|
-
name:
|
241
|
+
name: メディアリンク
|
236
242
|
partner:
|
237
243
|
fields:
|
238
244
|
link: リンク
|
@@ -258,7 +264,7 @@ ja:
|
|
258
264
|
destroy:
|
259
265
|
success: カンファレンスパートナーを削除しました。
|
260
266
|
edit:
|
261
|
-
title:
|
267
|
+
title: パートナーを更新します。
|
262
268
|
update: 更新
|
263
269
|
new:
|
264
270
|
create: 作成
|
@@ -280,7 +286,7 @@ ja:
|
|
280
286
|
destroy:
|
281
287
|
success: カンファレンスの登録種別を削除しました。
|
282
288
|
edit:
|
283
|
-
title:
|
289
|
+
title: 登録種別の更新。
|
284
290
|
update: 更新
|
285
291
|
new:
|
286
292
|
create: 作成
|
@@ -333,7 +339,7 @@ ja:
|
|
333
339
|
admin:
|
334
340
|
conference_copies:
|
335
341
|
form:
|
336
|
-
slug_help_html: 'URL
|
342
|
+
slug_help_html: 'URLスラグは、このカンファレンスへのURLを生成するために使用されます。 英字、数字、ハイフンのみを受け付け、英字で始める必要があります。例: %{url}'
|
337
343
|
conference_invites:
|
338
344
|
create:
|
339
345
|
error: 参加者をカンファレンスに招待する際に問題が発生しました。
|
@@ -345,14 +351,8 @@ ja:
|
|
345
351
|
non_user: 非参加者
|
346
352
|
select_user: 参加者を選択
|
347
353
|
index:
|
348
|
-
filter:
|
349
|
-
accepted: 承認済み
|
350
|
-
all: すべて
|
351
|
-
rejected: 却下済み
|
352
|
-
sent: 送信済み
|
353
354
|
invite_attendee: 参加者の招待
|
354
355
|
invites: 招待
|
355
|
-
search: 検索
|
356
356
|
new:
|
357
357
|
explanation: 参加者はカンファレンスに参加するように招待されます。参加者のメールアドレスが組織に登録されていない場合は、組織にも招待されます。
|
358
358
|
invite: 招待
|
@@ -380,6 +380,7 @@ ja:
|
|
380
380
|
diplomas:
|
381
381
|
edit:
|
382
382
|
save: 保存
|
383
|
+
title: 出席証明書
|
383
384
|
invite_join_conference_mailer:
|
384
385
|
invite:
|
385
386
|
decline: 招待を拒否する '%{conference_title}'
|
@@ -399,6 +400,7 @@ ja:
|
|
399
400
|
diploma_html: 添付ファイルに、カンファレンス <a href="%{url}">%{title}</a> の出席証明書があります。
|
400
401
|
diploma_user:
|
401
402
|
attendance_verified_by: 出席者が確認しました
|
403
|
+
certificate_of_attendance: 出席証明書
|
402
404
|
certificate_of_attendance_description: これは、<strong>%{user}</strong>が、<strong>%{start} から %{end}</strong>に<strong>%{location}</strong>で開催された<strong>%{title}</strong>に出席し、参加したことを証明するものです。
|
403
405
|
send_diploma:
|
404
406
|
error: カンファレンス出席証明書の送信に問題がありました。
|
@@ -467,8 +469,6 @@ ja:
|
|
467
469
|
name: ハイライトされたカンファレンス
|
468
470
|
index:
|
469
471
|
title: カンファレンス
|
470
|
-
last_activity:
|
471
|
-
new_conference: '新しいカンファレンス:'
|
472
472
|
mailer:
|
473
473
|
conference_registration_mailer:
|
474
474
|
confirmation:
|
data/config/locales/lb.yml
CHANGED
@@ -53,9 +53,11 @@ lb:
|
|
53
53
|
destroy:
|
54
54
|
success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
|
55
55
|
edit:
|
56
|
+
title: Aktualisieren Sie den Konferenzbenutzer.
|
56
57
|
update: Aktualisieren
|
57
58
|
new:
|
58
59
|
create: Erstellen
|
60
|
+
title: Neuer Konferenzbenutzer
|
59
61
|
update:
|
60
62
|
error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
|
61
63
|
success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -84,12 +86,20 @@ lb:
|
|
84
86
|
media_links:
|
85
87
|
create:
|
86
88
|
error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
|
89
|
+
success: Medienlink erfolgreich erstellt
|
90
|
+
destroy:
|
91
|
+
success: Medienlink wurde erfolgreich gelöscht.
|
87
92
|
edit:
|
93
|
+
title: Medienlink aktualisieren
|
88
94
|
update: Aktualisieren
|
95
|
+
index:
|
96
|
+
media_links_title: Medienlinks
|
89
97
|
new:
|
90
98
|
create: Erstellen
|
99
|
+
title: Medienlink
|
91
100
|
update:
|
92
101
|
error: Beim Aktualisieren dieser Medienverbindung ist ein Fehler aufgetreten.
|
102
|
+
success: Media Link wurde erfolgreich aktualisiert.
|
93
103
|
menu:
|
94
104
|
conferences: Konferenzen
|
95
105
|
conferences_submenu:
|
@@ -101,9 +111,13 @@ lb:
|
|
101
111
|
conference_admins: Konferenzadministratoren
|
102
112
|
conference_invites: Lädt ein
|
103
113
|
conference_speakers: Lautsprecher
|
114
|
+
diploma: Teilnahmebestätigung
|
115
|
+
media_links: Medienlinks
|
104
116
|
moderations: Moderationen
|
105
117
|
partners: Partner
|
118
|
+
registration_types: Registrierungsarten
|
106
119
|
registrations: Registrierungen
|
120
|
+
user_registrations: Benutzerregistrierungen
|
107
121
|
models:
|
108
122
|
conference:
|
109
123
|
fields:
|
@@ -128,6 +142,7 @@ lb:
|
|
128
142
|
date: Datum
|
129
143
|
link: Verknüpfung
|
130
144
|
title: Titel
|
145
|
+
name: Medienlink
|
131
146
|
partner:
|
132
147
|
fields:
|
133
148
|
link: Verknüpfung
|
@@ -153,6 +168,7 @@ lb:
|
|
153
168
|
destroy:
|
154
169
|
success: Der Partner wurde erfolgreich von dieser Konferenz entfernt.
|
155
170
|
edit:
|
171
|
+
title: Partner aktualisieren
|
156
172
|
update: Aktualisieren
|
157
173
|
new:
|
158
174
|
create: Erstellen
|
@@ -174,6 +190,7 @@ lb:
|
|
174
190
|
destroy:
|
175
191
|
success: Der Registrierungstyp wurde erfolgreich von dieser Konferenz entfernt.
|
176
192
|
edit:
|
193
|
+
title: Registrierungsart aktualisieren
|
177
194
|
update: Aktualisieren
|
178
195
|
new:
|
179
196
|
create: Erstellen
|
@@ -234,14 +251,8 @@ lb:
|
|
234
251
|
non_user: Nicht existierender Benutzer
|
235
252
|
select_user: Nutzer wählen
|
236
253
|
index:
|
237
|
-
filter:
|
238
|
-
accepted: Akzeptiert
|
239
|
-
all: Alle
|
240
|
-
rejected: Abgelehnt
|
241
|
-
sent: Geschickt
|
242
254
|
invite_attendee: Teilnehmer einladen
|
243
255
|
invites: Lädt ein
|
244
|
-
search: Suche
|
245
256
|
new:
|
246
257
|
invite: Einladen
|
247
258
|
new_invite: Nutzer einladen
|
@@ -265,6 +276,7 @@ lb:
|
|
265
276
|
diplomas:
|
266
277
|
edit:
|
267
278
|
save: Speichern
|
279
|
+
title: Teilnahmebestätigung
|
268
280
|
invite_join_conference_mailer:
|
269
281
|
invite:
|
270
282
|
decline: Einladung '%{conference_title}' ablehnen
|
@@ -283,6 +295,7 @@ lb:
|
|
283
295
|
diploma_html: Die Teilnahmebescheinigung für die Konferenz <a href="%{url}">%{title}</a> finden Sie in den Anhängen.
|
284
296
|
diploma_user:
|
285
297
|
attendance_verified_by: Anwesenheit überprüft durch
|
298
|
+
certificate_of_attendance: Teilnahmebestätigung
|
286
299
|
certificate_of_attendance_description: Hiermit wird bestätigt, dass <strong>%{user}</strong> an den <strong>%{title}</strong> teilgenommen hat, die am <strong>%{location}</strong> am <strong>%{start} - %{end}</strong>abgehalten wurden
|
287
300
|
send_diploma:
|
288
301
|
error: Beim Senden der Teilnahmebestätigung der Konferenz ist ein Problem aufgetreten.
|
data/config/locales/lt.yml
CHANGED
@@ -119,11 +119,13 @@ lt:
|
|
119
119
|
destroy:
|
120
120
|
success: Konferencijos pranešėjas pašalintas.
|
121
121
|
edit:
|
122
|
+
title: Atnaujinti konferencijos pranešėją.
|
122
123
|
update: Atnaujinti
|
123
124
|
index:
|
124
125
|
conference_speakers_title: Konferencijos pranešėjai
|
125
126
|
new:
|
126
127
|
create: Sukurti
|
128
|
+
title: Naujas konferencijos pranešėjas.
|
127
129
|
update:
|
128
130
|
error: Atnaujinant šį konferencijos pranešėją iškilo problema.
|
129
131
|
success: Konferencijos pranešėjas atnaujintas.
|
@@ -134,11 +136,13 @@ lt:
|
|
134
136
|
destroy:
|
135
137
|
success: Konferencijos administratorius pašalintas.
|
136
138
|
edit:
|
139
|
+
title: Atnaujinti konferencijos administratorių.
|
137
140
|
update: Atnaujinti
|
138
141
|
index:
|
139
142
|
conference_admins_title: Konferencijos administratoriai
|
140
143
|
new:
|
141
144
|
create: Sukurti
|
145
|
+
title: Naujas konferencijos administratorius.
|
142
146
|
update:
|
143
147
|
error: Atnaujinant šios konferencijos administratorių iškilo problema.
|
144
148
|
success: Konferencijos administratorius atnaujintas.
|
@@ -167,12 +171,20 @@ lt:
|
|
167
171
|
media_links:
|
168
172
|
create:
|
169
173
|
error: Kuriant naują multimedijos nuorodą iškilo problema.
|
174
|
+
success: Multimedijos nuoroda sukurta.
|
175
|
+
destroy:
|
176
|
+
success: Multimedijos nuoroda pašalinta.
|
170
177
|
edit:
|
178
|
+
title: Atnaujinti multimedijos nuorodą.
|
171
179
|
update: Atnaujinti
|
180
|
+
index:
|
181
|
+
media_links_title: Multimedijos Nuorodos
|
172
182
|
new:
|
173
183
|
create: Sukurti
|
184
|
+
title: Multimedijos Nuoroda
|
174
185
|
update:
|
175
186
|
error: Atnaujinant šią multimedijos nuorodą iškilo problema.
|
187
|
+
success: Multimedijos Nuoroda atnaujinta.
|
176
188
|
menu:
|
177
189
|
conferences: Konferencijos
|
178
190
|
conferences_submenu:
|
@@ -184,9 +196,13 @@ lt:
|
|
184
196
|
conference_admins: Konferencijos administratoriai
|
185
197
|
conference_invites: Pakvietimai
|
186
198
|
conference_speakers: Pranešėjai
|
199
|
+
diploma: Dalyvavimo konferencijoje pažymėjimas
|
200
|
+
media_links: Multimedijos Nuorodos
|
187
201
|
moderations: Moderavimai
|
188
202
|
partners: Partneriai
|
203
|
+
registration_types: Registracijos tipai
|
189
204
|
registrations: Registracijos
|
205
|
+
user_registrations: Naudotojų registracijos
|
190
206
|
models:
|
191
207
|
conference:
|
192
208
|
fields:
|
@@ -215,6 +231,7 @@ lt:
|
|
215
231
|
date: Data
|
216
232
|
link: Nuoroda
|
217
233
|
title: Pavadinimas
|
234
|
+
name: Multimedijos Nuoroda
|
218
235
|
partner:
|
219
236
|
fields:
|
220
237
|
link: Nuoroda
|
@@ -240,6 +257,7 @@ lt:
|
|
240
257
|
destroy:
|
241
258
|
success: Konferencijos partneris pašalintas.
|
242
259
|
edit:
|
260
|
+
title: Atnaujinti partnerį.
|
243
261
|
update: Atnaujinti
|
244
262
|
new:
|
245
263
|
create: Sukurti
|
@@ -261,6 +279,7 @@ lt:
|
|
261
279
|
destroy:
|
262
280
|
success: Konferencijos registracijos tipas pašalintas.
|
263
281
|
edit:
|
282
|
+
title: Atnaujinti registracijos tipą.
|
264
283
|
update: Atnaujinti
|
265
284
|
new:
|
266
285
|
create: Sukurti
|
@@ -322,14 +341,8 @@ lt:
|
|
322
341
|
non_user: Nesamas dalyvis
|
323
342
|
select_user: Pasirinkti dalyvį
|
324
343
|
index:
|
325
|
-
filter:
|
326
|
-
accepted: Priimtas
|
327
|
-
all: Visi
|
328
|
-
rejected: Atmestas
|
329
|
-
sent: Išsiųsta
|
330
344
|
invite_attendee: Kviesti dalyvį
|
331
345
|
invites: Pakvietimai
|
332
|
-
search: Ieškoti
|
333
346
|
new:
|
334
347
|
explanation: Dalyvis bus pakviestas dalyvauti konferencijoje. Jei e. laiškas nebus užregistruotas, dalyvis bus taip pat pakviestas būti organizacijos dalimi.
|
335
348
|
invite: Pakviesti
|
@@ -356,6 +369,7 @@ lt:
|
|
356
369
|
diplomas:
|
357
370
|
edit:
|
358
371
|
save: Išsaugoti
|
372
|
+
title: Dalyvavimo pažymėjimas
|
359
373
|
invite_join_conference_mailer:
|
360
374
|
invite:
|
361
375
|
decline: Atmesti kvietimą į „%{conference_title}“
|
@@ -375,6 +389,7 @@ lt:
|
|
375
389
|
diploma_html: Rasite konferencijos <a href="%{url}">%{title}</a> dalyvavimo pažymėjimą laiško prieduose.
|
376
390
|
diploma_user:
|
377
391
|
attendance_verified_by: Dalyvavimas patvirtintas
|
392
|
+
certificate_of_attendance: Dalyvavimo pažymėjimas
|
378
393
|
certificate_of_attendance_description: Patvirtiname, kad <strong>%{user}</strong> dalyvavo <strong>%{title}</strong> konferencijoje vykusioje <strong>%{location}</strong> nuo <strong>%{start} iki %{end}</strong>
|
379
394
|
send_diploma:
|
380
395
|
error: Siunčiant dalyvavimo pažymėjimus iškilo problema.
|