decidim-conferences 0.28.6 → 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 -10
- 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 -6
- data/config/locales/bg.yml +27 -6
- data/config/locales/ca.yml +18 -22
- data/config/locales/cs.yml +18 -23
- data/config/locales/de.yml +19 -23
- data/config/locales/el.yml +21 -6
- data/config/locales/en.yml +25 -29
- data/config/locales/es-MX.yml +18 -22
- data/config/locales/es-PY.yml +21 -25
- data/config/locales/es.yml +14 -18
- data/config/locales/eu.yml +182 -186
- data/config/locales/fi-plain.yml +17 -21
- data/config/locales/fi.yml +23 -27
- data/config/locales/fr-CA.yml +19 -23
- data/config/locales/fr.yml +19 -23
- 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 -6
- data/config/locales/ja.yml +17 -21
- 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 -21
- data/config/locales/sk.yml +21 -6
- data/config/locales/sv.yml +42 -98
- 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 -24
- 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/ca-IT.yml +0 -603
data/config/locales/ca.yml
CHANGED
@@ -69,8 +69,6 @@ ca:
|
|
69
69
|
email: Correu electrònic
|
70
70
|
name: Nom
|
71
71
|
role: Rol
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -122,13 +120,19 @@ ca:
|
|
122
120
|
destroy:
|
123
121
|
success: Ponent de la jornada eliminada correctament.
|
124
122
|
edit:
|
125
|
-
title: Actualitzar la
|
123
|
+
title: Actualitzar la ponència de la jornada.
|
126
124
|
update: Actualitzar
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Ponents de les conferències
|
129
127
|
new:
|
130
128
|
create: Crear
|
131
|
-
title: Nova ponent de la jornada
|
129
|
+
title: Nova ponent de la jornada.
|
130
|
+
publish:
|
131
|
+
invalid: S'ha produït un error en publicar aquesta ponent.
|
132
|
+
success: Ponent de la jornada actualitzada correctament.
|
133
|
+
unpublish:
|
134
|
+
invalid: S'ha produït un error en despublicar aquesta ponent.
|
135
|
+
success: Ponent de la jornada despublicada correctament.
|
132
136
|
update:
|
133
137
|
error: S'ha produït un error en actualitzar la ponent d'aquesta jornada.
|
134
138
|
success: Ponent de la jornada actualitzada correctament.
|
@@ -139,13 +143,13 @@ ca:
|
|
139
143
|
destroy:
|
140
144
|
success: Administradora de la jornada eliminada correctament.
|
141
145
|
edit:
|
142
|
-
title: Actualitzar administradora de la jornada
|
146
|
+
title: Actualitzar administradora de la jornada.
|
143
147
|
update: Actualitzar
|
144
148
|
index:
|
145
149
|
conference_admins_title: Administradores de la jornada
|
146
150
|
new:
|
147
151
|
create: Crear
|
148
|
-
title: Nova administradora de jornada
|
152
|
+
title: Nova administradora de jornada.
|
149
153
|
update:
|
150
154
|
error: S'ha produït un error en actualitzar l'administradora per a aquesta jornada.
|
151
155
|
success: Administradora de la jornada actualitzada correctament.
|
@@ -179,13 +183,13 @@ ca:
|
|
179
183
|
destroy:
|
180
184
|
success: S'ha eliminat correctament l'enllaç multimèdia.
|
181
185
|
edit:
|
182
|
-
title: Actualitzar l'enllaç multimèdia
|
186
|
+
title: Actualitzar l'enllaç multimèdia.
|
183
187
|
update: Actualitzar
|
184
188
|
index:
|
185
189
|
media_links_title: Enllaços multimèdia
|
186
190
|
new:
|
187
191
|
create: Crear
|
188
|
-
title:
|
192
|
+
title: Enllaç multimèdia
|
189
193
|
update:
|
190
194
|
error: S'ha produït un error en actualitzar aquest enllaç multimèdia.
|
191
195
|
success: Enllaç multimèdia actualitzat correctament.
|
@@ -201,11 +205,11 @@ ca:
|
|
201
205
|
conference_invites: Convida
|
202
206
|
conference_speakers: Ponents
|
203
207
|
diploma: Certificat d'assistència
|
204
|
-
info:
|
205
|
-
media_links: Enllaços
|
208
|
+
info: Sobre aquesta jornada
|
209
|
+
media_links: Enllaços multimedia
|
206
210
|
moderations: Moderacions
|
207
211
|
partners: Col·laboradores
|
208
|
-
registration_types: Tipus d'
|
212
|
+
registration_types: Tipus d'inscripcions
|
209
213
|
registrations: Inscripcions
|
210
214
|
see_conference: Veure la jornada
|
211
215
|
user_registrations: Inscripcions de participants
|
@@ -237,7 +241,7 @@ ca:
|
|
237
241
|
date: Data
|
238
242
|
link: Enllaç
|
239
243
|
title: Títol
|
240
|
-
name: Enllaç
|
244
|
+
name: Enllaç multimedia
|
241
245
|
partner:
|
242
246
|
fields:
|
243
247
|
link: Enllaç
|
@@ -263,7 +267,7 @@ ca:
|
|
263
267
|
destroy:
|
264
268
|
success: Col·laboradora de la jornada eliminada correctament.
|
265
269
|
edit:
|
266
|
-
title: Actualitzar col·laboradora
|
270
|
+
title: Actualitzar col·laboradora.
|
267
271
|
update: Actualitzar
|
268
272
|
new:
|
269
273
|
create: Crear
|
@@ -285,7 +289,7 @@ ca:
|
|
285
289
|
destroy:
|
286
290
|
success: El tipus d'inscripció s'ha eliminat correctament d'aquesta jornada.
|
287
291
|
edit:
|
288
|
-
title: Actualitzar el tipus
|
292
|
+
title: Actualitzar el tipus de registre.
|
289
293
|
update: Actualitzar
|
290
294
|
new:
|
291
295
|
create: Crear
|
@@ -350,14 +354,8 @@ ca:
|
|
350
354
|
non_user: Participant no existent
|
351
355
|
select_user: Seleccionar participant
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Acceptada
|
355
|
-
all: Totes
|
356
|
-
rejected: Rebutjada
|
357
|
-
sent: Enviat
|
358
357
|
invite_attendee: Convidar participant
|
359
358
|
invites: Convida
|
360
|
-
search: Cercar
|
361
359
|
new:
|
362
360
|
explanation: La participant serà convidada a unir-se a una jornada. Si el seu correu electrònic no està registrat, també se la convidarà a unir-se a l'organització.
|
363
361
|
invite: Convidar
|
@@ -476,8 +474,6 @@ ca:
|
|
476
474
|
name: Jornades destacades
|
477
475
|
index:
|
478
476
|
title: Jornades
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'Nova jornada:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|
data/config/locales/cs.yml
CHANGED
@@ -53,7 +53,7 @@ cs:
|
|
53
53
|
conference_registration_type:
|
54
54
|
description: Popis
|
55
55
|
price: Cena
|
56
|
-
title:
|
56
|
+
title: Oslovení
|
57
57
|
weight: Pozice v řazení
|
58
58
|
conference_speaker:
|
59
59
|
affiliation: Příslušnost
|
@@ -69,8 +69,6 @@ cs:
|
|
69
69
|
email: E-mail
|
70
70
|
name: Název
|
71
71
|
role: Role
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -128,13 +126,18 @@ cs:
|
|
128
126
|
destroy:
|
129
127
|
success: Řečník byl úspěšně smazán pro tuto konferenci.
|
130
128
|
edit:
|
131
|
-
title: Aktualizovat řečníka konference
|
129
|
+
title: Aktualizovat řečníka konference.
|
132
130
|
update: Aktualizace
|
133
131
|
index:
|
134
132
|
conference_speakers_title: Řečníci konference
|
135
133
|
new:
|
136
134
|
create: Vytvořit
|
137
|
-
title: Nový řečník konference
|
135
|
+
title: Nový řečník konference.
|
136
|
+
publish:
|
137
|
+
invalid: Při publikování tohoto řečníka došlo k chybě.
|
138
|
+
success: Řečník konference byl úspěšně zveřejněn.
|
139
|
+
unpublish:
|
140
|
+
invalid: Při rušení publikování tohoto řečníka došlo k chybě.
|
138
141
|
update:
|
139
142
|
error: Při této konferenci došlo k chybě při aktualizaci řečníka.
|
140
143
|
success: Řečník konference byl úspěšně aktualizován.
|
@@ -145,13 +148,13 @@ cs:
|
|
145
148
|
destroy:
|
146
149
|
success: Administrátor konference byl úspěšně odstraněn.
|
147
150
|
edit:
|
148
|
-
title: Aktualizovat
|
151
|
+
title: Aktualizovat uživatele konference.
|
149
152
|
update: Aktualizace
|
150
153
|
index:
|
151
154
|
conference_admins_title: Administrátoři konference
|
152
155
|
new:
|
153
156
|
create: Vytvořit
|
154
|
-
title: Nový
|
157
|
+
title: Nový administrátor konference.
|
155
158
|
update:
|
156
159
|
error: Při aktualizaci tohoto administrátora konference došlo k potížím.
|
157
160
|
success: Uživatel úspěšně aktualizován pro tuto konferenci.
|
@@ -181,17 +184,17 @@ cs:
|
|
181
184
|
media_links:
|
182
185
|
create:
|
183
186
|
error: Při vytváření nového odkazu na média došlo k chybě.
|
184
|
-
success: Odkaz na
|
187
|
+
success: Odkaz na media byl úspěšně vytvořen.
|
185
188
|
destroy:
|
186
|
-
success: Odkaz na
|
189
|
+
success: Odkaz na media byl úspěšně smazán.
|
187
190
|
edit:
|
188
|
-
title: Aktualizovat odkaz na
|
191
|
+
title: Aktualizovat odkaz na media.
|
189
192
|
update: Aktualizace
|
190
193
|
index:
|
191
194
|
media_links_title: Odkazy na média
|
192
195
|
new:
|
193
196
|
create: Vytvořit
|
194
|
-
title:
|
197
|
+
title: Odkaz na média
|
195
198
|
update:
|
196
199
|
error: Při aktualizaci tohoto odkazu na média došlo k chybě.
|
197
200
|
success: Odkaz na média byl úspěšně aktualizován.
|
@@ -206,7 +209,7 @@ cs:
|
|
206
209
|
conference_admins: Administrátoři konference
|
207
210
|
conference_invites: Pozvánky
|
208
211
|
conference_speakers: Řečníci
|
209
|
-
diploma:
|
212
|
+
diploma: Potvrzení o účasti
|
210
213
|
info: O této konferenci
|
211
214
|
media_links: Odkazy na média
|
212
215
|
moderations: Moderování
|
@@ -269,7 +272,7 @@ cs:
|
|
269
272
|
destroy:
|
270
273
|
success: Partner byl úspěšně odstraněn z této konference.
|
271
274
|
edit:
|
272
|
-
title: Aktualizovat partnera
|
275
|
+
title: Aktualizovat partnera.
|
273
276
|
update: Aktualizace
|
274
277
|
new:
|
275
278
|
create: Vytvořit
|
@@ -291,7 +294,7 @@ cs:
|
|
291
294
|
destroy:
|
292
295
|
success: Typ registrace byl z této konference úspěšně odstraněn.
|
293
296
|
edit:
|
294
|
-
title: Aktualizovat typ registrace
|
297
|
+
title: Aktualizovat typ registrace.
|
295
298
|
update: Aktualizace
|
296
299
|
new:
|
297
300
|
create: Vytvořit
|
@@ -356,14 +359,8 @@ cs:
|
|
356
359
|
non_user: Neexistující uživatel
|
357
360
|
select_user: Vyberte uživatele
|
358
361
|
index:
|
359
|
-
filter:
|
360
|
-
accepted: Přijato
|
361
|
-
all: Vše
|
362
|
-
rejected: Odmítnuto
|
363
|
-
sent: Odeslaná
|
364
362
|
invite_attendee: Pozvat účastníka
|
365
363
|
invites: Pozvánky
|
366
|
-
search: Vyhledávání
|
367
364
|
new:
|
368
365
|
explanation: Uživatel bude pozván, aby se připojil k konferenci. Pokud není jeho e-mail registrován, bude také pozván do organizace.
|
369
366
|
invite: Pozvat
|
@@ -414,7 +411,7 @@ cs:
|
|
414
411
|
diploma_html: Naleznete certifikát o účasti na konferenci <a href="%{url}">%{title}</a> v přílohách.
|
415
412
|
diploma_user:
|
416
413
|
attendance_verified_by: Účet ověřil
|
417
|
-
certificate_of_attendance:
|
414
|
+
certificate_of_attendance: Potvrzení o účasti
|
418
415
|
certificate_of_attendance_description: Tímto potvrzujeme, že <strong>%{user}</strong> se zúčastnilo a zúčastnilo se <strong>%{title}</strong> konaných na <strong>%{location}</strong> na <strong>%{start} - %{end}</strong>
|
419
416
|
send_diploma:
|
420
417
|
error: Při odesílání konferenčních certifikátů docházelo k problému.
|
@@ -486,8 +483,6 @@ cs:
|
|
486
483
|
name: Zvýrazněné konference
|
487
484
|
index:
|
488
485
|
title: Konference
|
489
|
-
last_activity:
|
490
|
-
new_conference: 'Nová konference:'
|
491
486
|
mailer:
|
492
487
|
conference_registration_mailer:
|
493
488
|
confirmation:
|
data/config/locales/de.yml
CHANGED
@@ -69,8 +69,6 @@ de:
|
|
69
69
|
email: Email
|
70
70
|
name: Name
|
71
71
|
role: Rolle
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -122,13 +120,19 @@ de:
|
|
122
120
|
destroy:
|
123
121
|
success: Der Redner wurde für diese Konferenz erfolgreich gelöscht.
|
124
122
|
edit:
|
125
|
-
title:
|
123
|
+
title: Konferenzsprecher aktualisieren
|
126
124
|
update: Aktualisieren
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Konferenzsprecher
|
129
127
|
new:
|
130
128
|
create: Erstellen
|
131
|
-
title:
|
129
|
+
title: Neuer Konferenzsprecher.
|
130
|
+
publish:
|
131
|
+
invalid: Beim Veröffentlichen dieser RednerIn ist ein Problem aufgetreten.
|
132
|
+
success: KonferenzrednerIn erfolgreich veröffentlicht.
|
133
|
+
unpublish:
|
134
|
+
invalid: Beim Veröffentlichen dieses Redners ist ein Problem aufgetreten.
|
135
|
+
success: Die Veröffentlichung des Redners wurde für diese Konferenz erfolgreich zurückgezogen.
|
132
136
|
update:
|
133
137
|
error: Beim Aktualisieren des Sprechers für diese Konferenz ist ein Fehler aufgetreten.
|
134
138
|
success: Der Sprecher wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -139,13 +143,13 @@ de:
|
|
139
143
|
destroy:
|
140
144
|
success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
|
141
145
|
edit:
|
142
|
-
title:
|
146
|
+
title: Konferenzadmin aktualisieren.
|
143
147
|
update: Aktualisieren
|
144
148
|
index:
|
145
149
|
conference_admins_title: Konferenzadmins
|
146
150
|
new:
|
147
151
|
create: Erstellen
|
148
|
-
title: Neuer
|
152
|
+
title: Neuer Konferenzbenutzer
|
149
153
|
update:
|
150
154
|
error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
|
151
155
|
success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -175,9 +179,9 @@ de:
|
|
175
179
|
media_links:
|
176
180
|
create:
|
177
181
|
error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
|
178
|
-
success: Medienlink erfolgreich erstellt
|
182
|
+
success: Medienlink erfolgreich erstellt
|
179
183
|
destroy:
|
180
|
-
success: Medienlink erfolgreich gelöscht.
|
184
|
+
success: Medienlink wurde erfolgreich gelöscht.
|
181
185
|
edit:
|
182
186
|
title: Medienlink aktualisieren
|
183
187
|
update: Aktualisieren
|
@@ -185,10 +189,10 @@ de:
|
|
185
189
|
media_links_title: Medienlinks
|
186
190
|
new:
|
187
191
|
create: Erstellen
|
188
|
-
title: Medienlink
|
192
|
+
title: Medienlink
|
189
193
|
update:
|
190
194
|
error: Beim Aktualisieren dieser Medienverbindung ist ein Fehler aufgetreten.
|
191
|
-
success:
|
195
|
+
success: Media Link wurde erfolgreich aktualisiert.
|
192
196
|
menu:
|
193
197
|
conferences: Konferenzen
|
194
198
|
conferences_submenu:
|
@@ -208,7 +212,7 @@ de:
|
|
208
212
|
registration_types: Registrierungsarten
|
209
213
|
registrations: Registrierungen
|
210
214
|
see_conference: Konferenz ansehen
|
211
|
-
user_registrations:
|
215
|
+
user_registrations: Benutzerregistrierungen
|
212
216
|
models:
|
213
217
|
conference:
|
214
218
|
fields:
|
@@ -231,7 +235,7 @@ de:
|
|
231
235
|
admin: Administrator
|
232
236
|
collaborator: Mitarbeiter
|
233
237
|
moderator: Moderator
|
234
|
-
valuator:
|
238
|
+
valuator: Schätzer
|
235
239
|
media_link:
|
236
240
|
fields:
|
237
241
|
date: Datum
|
@@ -250,7 +254,7 @@ de:
|
|
250
254
|
main_promotor: Hauptförderer
|
251
255
|
registration_type:
|
252
256
|
fields:
|
253
|
-
conference_meetings:
|
257
|
+
conference_meetings: Konferenzsitzungen
|
254
258
|
price: Preis
|
255
259
|
registrations_count: Registrierungen zählen
|
256
260
|
title: Titel
|
@@ -350,14 +354,8 @@ de:
|
|
350
354
|
non_user: Nicht existierender Benutzer
|
351
355
|
select_user: Nutzer wählen
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Angenommen
|
355
|
-
all: Alle
|
356
|
-
rejected: Abgelehnt
|
357
|
-
sent: Geschickt
|
358
357
|
invite_attendee: Teilnehmer einladen
|
359
358
|
invites: Lädt ein
|
360
|
-
search: Suche
|
361
359
|
new:
|
362
360
|
explanation: Die Person wird zur Teilnahme an der Konferenz eingeladen. Wenn die E-Mail nicht registriert ist, werden sie ebenfalls zur Organisation eingeladen.
|
363
361
|
invite: Einladen
|
@@ -398,7 +396,7 @@ de:
|
|
398
396
|
title: Partner
|
399
397
|
registration_types:
|
400
398
|
form:
|
401
|
-
select_conference_meetings:
|
399
|
+
select_conference_meetings: Konferenzmeetings auswählen
|
402
400
|
index:
|
403
401
|
title: Registrierungsarten
|
404
402
|
send_conference_diploma_mailer:
|
@@ -417,7 +415,7 @@ de:
|
|
417
415
|
confirm: Bestätigen
|
418
416
|
show:
|
419
417
|
going: Gehen
|
420
|
-
no_slots_available: Keine
|
418
|
+
no_slots_available: Keine Steckplätze verfügbar
|
421
419
|
registration: Anmeldung
|
422
420
|
conference_program:
|
423
421
|
show:
|
@@ -476,8 +474,6 @@ de:
|
|
476
474
|
name: Hervorgehobene Konferenzen
|
477
475
|
index:
|
478
476
|
title: Konferenzen
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'Neue Konferenz:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|
data/config/locales/el.yml
CHANGED
@@ -113,11 +113,13 @@ el:
|
|
113
113
|
destroy:
|
114
114
|
success: Ο ομιλητής διάσκεψης διαγράφηκε με επιτυχία.
|
115
115
|
edit:
|
116
|
+
title: Ενημέρωση ομιλητή διάσκεψης.
|
116
117
|
update: Ενημέρωση
|
117
118
|
index:
|
118
119
|
conference_speakers_title: Ομιλητές διάσκεψης
|
119
120
|
new:
|
120
121
|
create: Δημιουργία
|
122
|
+
title: Νέος ομιλητής διάσκεψης.
|
121
123
|
update:
|
122
124
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του ομιλητή διάσκεψης.
|
123
125
|
success: Ο ομιλητής διάσκεψης ενημερώθηκε με επιτυχία.
|
@@ -128,11 +130,13 @@ el:
|
|
128
130
|
destroy:
|
129
131
|
success: Ο διαχειριστής διάσκεψης καταργήθηκε με επιτυχία.
|
130
132
|
edit:
|
133
|
+
title: Ενημέρωση διαχειριστή διάσκεψης.
|
131
134
|
update: Ενημέρωση
|
132
135
|
index:
|
133
136
|
conference_admins_title: Διαχειριστές διάσκεψης
|
134
137
|
new:
|
135
138
|
create: Δημιουργία
|
139
|
+
title: Νέος διαχειριστής διάσκεψης.
|
136
140
|
update:
|
137
141
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του διαχειριστή διάσκεψης.
|
138
142
|
success: Ο διαχειριστής διάσκεψης ενημερώθηκε με επιτυχία.
|
@@ -161,12 +165,20 @@ el:
|
|
161
165
|
media_links:
|
162
166
|
create:
|
163
167
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία ενός νέου συνδέσμου πολυμέσων.
|
168
|
+
success: Ο σύνδεσμος πολυμέσων δημιουργήθηκε με επιτυχία.
|
169
|
+
destroy:
|
170
|
+
success: Ο σύνδεσμος πολυμέσων διαγράφηκε με επιτυχία.
|
164
171
|
edit:
|
172
|
+
title: Ενημέρωση συνδέσμου πολυμέσων.
|
165
173
|
update: Ενημέρωση
|
174
|
+
index:
|
175
|
+
media_links_title: Σύνδεσμοι πολυμέσων
|
166
176
|
new:
|
167
177
|
create: Δημιουργία
|
178
|
+
title: Σύνδεσμος πολυμέσων
|
168
179
|
update:
|
169
180
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του συνδέσμου πολυμέσων.
|
181
|
+
success: Ο σύνδεσμος πολυμέσων ενημερώθηκε με επιτυχία.
|
170
182
|
menu:
|
171
183
|
conferences: Διασκέψεις
|
172
184
|
conferences_submenu:
|
@@ -178,9 +190,13 @@ el:
|
|
178
190
|
conference_admins: Διαχειριστές διάσκεψης
|
179
191
|
conference_invites: Προσκλήσεις
|
180
192
|
conference_speakers: Ομιλητές
|
193
|
+
diploma: Πιστοποιητικό παρακολούθησης
|
194
|
+
media_links: Σύνδεσμοι πολυμέσων
|
181
195
|
moderations: Εποπτεύσεις
|
182
196
|
partners: Συνεργάτες
|
197
|
+
registration_types: Τύποι εγγραφής
|
183
198
|
registrations: Εγγραφές
|
199
|
+
user_registrations: Εγγραφές χρήστη
|
184
200
|
models:
|
185
201
|
conference:
|
186
202
|
fields:
|
@@ -209,6 +225,7 @@ el:
|
|
209
225
|
date: Ημερομηνία
|
210
226
|
link: Σύνδεσμος
|
211
227
|
title: Τίτλος
|
228
|
+
name: Σύνδεσμος πολυμέσων
|
212
229
|
partner:
|
213
230
|
fields:
|
214
231
|
link: Σύνδεσμος
|
@@ -234,6 +251,7 @@ el:
|
|
234
251
|
destroy:
|
235
252
|
success: Ο συνεργάτης διάσκεψης καταργήθηκε με επιτυχία.
|
236
253
|
edit:
|
254
|
+
title: Ενημέρωση συνεργάτη.
|
237
255
|
update: Ενημέρωση
|
238
256
|
new:
|
239
257
|
create: Δημιουργία
|
@@ -255,6 +273,7 @@ el:
|
|
255
273
|
destroy:
|
256
274
|
success: Ο τύπος εγγραφής διάσκεψης καταργήθηκε με επιτυχία.
|
257
275
|
edit:
|
276
|
+
title: Ενημέρωση τύπου εγγραφής.
|
258
277
|
update: Ενημέρωση
|
259
278
|
new:
|
260
279
|
create: Δημιουργία
|
@@ -316,14 +335,8 @@ el:
|
|
316
335
|
non_user: Ο συμμετέχων δεν υπάρχει
|
317
336
|
select_user: Επιλέξτε συμμετέχοντα
|
318
337
|
index:
|
319
|
-
filter:
|
320
|
-
accepted: Έγινε αποδοχή
|
321
|
-
all: Όλα
|
322
|
-
rejected: Απορρίφθηκε
|
323
|
-
sent: Στάλθηκε
|
324
338
|
invite_attendee: Πρόσκληση συμμετέχοντα
|
325
339
|
invites: Προσκλήσεις
|
326
|
-
search: Αναζήτηση
|
327
340
|
new:
|
328
341
|
explanation: Ο συμμετέχων θα προσκληθεί να συμμετάσχει σε διάσκεψη. Εάν το email του δεν είναι καταχωρημένο, θα προσκληθεί και στον οργανισμό.
|
329
342
|
invite: Πρόσκληση
|
@@ -348,6 +361,7 @@ el:
|
|
348
361
|
diplomas:
|
349
362
|
edit:
|
350
363
|
save: Αποθήκευση
|
364
|
+
title: Πιστοποιητικό παρακολούθησης
|
351
365
|
invite_join_conference_mailer:
|
352
366
|
invite:
|
353
367
|
decline: Απόρριψη πρόσκλησης «%{conference_title}»
|
@@ -367,6 +381,7 @@ el:
|
|
367
381
|
diploma_html: Θα βρείτε το πιστοποιητικό παρακολούθησης για τη διάσκεψη <a href="%{url}">%{title}</a> στα συνημμένα.
|
368
382
|
diploma_user:
|
369
383
|
attendance_verified_by: Η παρακολούθηση επαληθεύτηκε από
|
384
|
+
certificate_of_attendance: Πιστοποιητικό παρακολούθησης
|
370
385
|
certificate_of_attendance_description: Με το παρόν βεβαιώνεται ότι ο χρήστης <strong>%{user}</strong> παρακολούθησε και έλαβε μέρος στη διάσκεψη <strong>%{title}</strong> που πραγματοποιήθηκε στην τοποθεσία <strong>%{location}</strong> στις <strong>%{start} - %{end}</strong>
|
371
386
|
send_diploma:
|
372
387
|
error: Υπήρξε ένα πρόβλημα κατά την αποστολή των πιστοποιητικών παρακολούθησης της διάσκεψης.
|
data/config/locales/en.yml
CHANGED
@@ -69,8 +69,6 @@ en:
|
|
69
69
|
email: Email
|
70
70
|
name: Name
|
71
71
|
role: Role
|
72
|
-
partner:
|
73
|
-
logo: Logo
|
74
72
|
errors:
|
75
73
|
models:
|
76
74
|
conference_registration_invite:
|
@@ -122,13 +120,19 @@ en:
|
|
122
120
|
destroy:
|
123
121
|
success: Conference speaker successfully deleted.
|
124
122
|
edit:
|
125
|
-
title: Update conference speaker
|
123
|
+
title: Update conference speaker.
|
126
124
|
update: Update
|
127
125
|
index:
|
128
126
|
conference_speakers_title: Conference speakers
|
129
127
|
new:
|
130
128
|
create: Create
|
131
|
-
title: New conference speaker
|
129
|
+
title: New conference speaker.
|
130
|
+
publish:
|
131
|
+
invalid: There was a problem publishing this speaker.
|
132
|
+
success: Conference speaker successfully published.
|
133
|
+
unpublish:
|
134
|
+
invalid: There was a problem unpublishing this speaker.
|
135
|
+
success: Conference speaker successfully unpublished.
|
132
136
|
update:
|
133
137
|
error: There was a problem updating this conference speaker.
|
134
138
|
success: Conference speaker successfully updated.
|
@@ -139,13 +143,13 @@ en:
|
|
139
143
|
destroy:
|
140
144
|
success: Conference admin successfully removed.
|
141
145
|
edit:
|
142
|
-
title: Update conference admin
|
146
|
+
title: Update conference admin.
|
143
147
|
update: Update
|
144
148
|
index:
|
145
149
|
conference_admins_title: Conference admins
|
146
150
|
new:
|
147
151
|
create: Create
|
148
|
-
title: New conference admin
|
152
|
+
title: New conference admin.
|
149
153
|
update:
|
150
154
|
error: There was a problem updating this conference admin.
|
151
155
|
success: Conference admin successfully updated.
|
@@ -175,20 +179,20 @@ en:
|
|
175
179
|
media_links:
|
176
180
|
create:
|
177
181
|
error: There was a problem creating a new media link.
|
178
|
-
success: Media
|
182
|
+
success: Media Link successfully created.
|
179
183
|
destroy:
|
180
|
-
success: Media
|
184
|
+
success: Media Link successfully deleted.
|
181
185
|
edit:
|
182
|
-
title: Update media link
|
186
|
+
title: Update media link.
|
183
187
|
update: Update
|
184
188
|
index:
|
185
|
-
media_links_title: Media
|
189
|
+
media_links_title: Media Links
|
186
190
|
new:
|
187
191
|
create: Create
|
188
|
-
title:
|
192
|
+
title: Media Link
|
189
193
|
update:
|
190
194
|
error: There was a problem updating this media link.
|
191
|
-
success: Media
|
195
|
+
success: Media Link successfully updated.
|
192
196
|
menu:
|
193
197
|
conferences: Conferences
|
194
198
|
conferences_submenu:
|
@@ -200,15 +204,15 @@ en:
|
|
200
204
|
conference_admins: Conference admins
|
201
205
|
conference_invites: Invites
|
202
206
|
conference_speakers: Speakers
|
203
|
-
diploma: Certificate of
|
207
|
+
diploma: Certificate of Attendance
|
204
208
|
info: About this conference
|
205
|
-
media_links: Media
|
209
|
+
media_links: Media Links
|
206
210
|
moderations: Moderations
|
207
211
|
partners: Partners
|
208
|
-
registration_types: Registration
|
212
|
+
registration_types: Registration Types
|
209
213
|
registrations: Registrations
|
210
214
|
see_conference: See conference
|
211
|
-
user_registrations: User
|
215
|
+
user_registrations: User Registrations
|
212
216
|
models:
|
213
217
|
conference:
|
214
218
|
fields:
|
@@ -237,7 +241,7 @@ en:
|
|
237
241
|
date: Date
|
238
242
|
link: Link
|
239
243
|
title: Title
|
240
|
-
name: Media
|
244
|
+
name: Media Link
|
241
245
|
partner:
|
242
246
|
fields:
|
243
247
|
link: Link
|
@@ -263,7 +267,7 @@ en:
|
|
263
267
|
destroy:
|
264
268
|
success: Conference partner successfully removed.
|
265
269
|
edit:
|
266
|
-
title: Update partner
|
270
|
+
title: Update partner.
|
267
271
|
update: Update
|
268
272
|
new:
|
269
273
|
create: Create
|
@@ -285,7 +289,7 @@ en:
|
|
285
289
|
destroy:
|
286
290
|
success: Conference registration type successfully removed.
|
287
291
|
edit:
|
288
|
-
title: Update registration type
|
292
|
+
title: Update registration type.
|
289
293
|
update: Update
|
290
294
|
new:
|
291
295
|
create: Create
|
@@ -350,14 +354,8 @@ en:
|
|
350
354
|
non_user: Non existing participant
|
351
355
|
select_user: Select participant
|
352
356
|
index:
|
353
|
-
filter:
|
354
|
-
accepted: Accepted
|
355
|
-
all: All
|
356
|
-
rejected: Rejected
|
357
|
-
sent: Sent
|
358
357
|
invite_attendee: Invite participant
|
359
358
|
invites: Invites
|
360
|
-
search: Search
|
361
359
|
new:
|
362
360
|
explanation: The participant will be invited to join a conference. If their email is not registered, they will be invited to the organization as well.
|
363
361
|
invite: Invite
|
@@ -386,7 +384,7 @@ en:
|
|
386
384
|
diplomas:
|
387
385
|
edit:
|
388
386
|
save: Save
|
389
|
-
title: Certificate of
|
387
|
+
title: Certificate of Attendance
|
390
388
|
invite_join_conference_mailer:
|
391
389
|
invite:
|
392
390
|
decline: Decline invitation '%{conference_title}'
|
@@ -406,7 +404,7 @@ en:
|
|
406
404
|
diploma_html: You will be find the certificate of attendance for the conference <a href="%{url}">%{title}</a> in the attachments.
|
407
405
|
diploma_user:
|
408
406
|
attendance_verified_by: Attendance verified by
|
409
|
-
certificate_of_attendance: Certificate of
|
407
|
+
certificate_of_attendance: Certificate of Attendance
|
410
408
|
certificate_of_attendance_description: This is to certify that <strong>%{user}</strong> has attended and taken part in the <strong>%{title}</strong> held at the <strong>%{location}</strong> on <strong>%{start} - %{end}</strong>
|
411
409
|
send_diploma:
|
412
410
|
error: There was a problem sending the conference certificates of attendance.
|
@@ -476,8 +474,6 @@ en:
|
|
476
474
|
name: Highlighted conferences
|
477
475
|
index:
|
478
476
|
title: Conferences
|
479
|
-
last_activity:
|
480
|
-
new_conference: 'New conference:'
|
481
477
|
mailer:
|
482
478
|
conference_registration_mailer:
|
483
479
|
confirmation:
|