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/ca.yml
CHANGED
@@ -120,13 +120,19 @@ ca:
|
|
120
120
|
destroy:
|
121
121
|
success: Ponent de la jornada eliminada correctament.
|
122
122
|
edit:
|
123
|
-
title: Actualitzar la
|
123
|
+
title: Actualitzar la ponència de la jornada.
|
124
124
|
update: Actualitzar
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Ponents de les conferències
|
127
127
|
new:
|
128
128
|
create: Crear
|
129
|
-
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.
|
130
136
|
update:
|
131
137
|
error: S'ha produït un error en actualitzar la ponent d'aquesta jornada.
|
132
138
|
success: Ponent de la jornada actualitzada correctament.
|
@@ -137,13 +143,13 @@ ca:
|
|
137
143
|
destroy:
|
138
144
|
success: Administradora de la jornada eliminada correctament.
|
139
145
|
edit:
|
140
|
-
title: Actualitzar administradora de la jornada
|
146
|
+
title: Actualitzar administradora de la jornada.
|
141
147
|
update: Actualitzar
|
142
148
|
index:
|
143
149
|
conference_admins_title: Administradores de la jornada
|
144
150
|
new:
|
145
151
|
create: Crear
|
146
|
-
title: Nova administradora de jornada
|
152
|
+
title: Nova administradora de jornada.
|
147
153
|
update:
|
148
154
|
error: S'ha produït un error en actualitzar l'administradora per a aquesta jornada.
|
149
155
|
success: Administradora de la jornada actualitzada correctament.
|
@@ -177,13 +183,13 @@ ca:
|
|
177
183
|
destroy:
|
178
184
|
success: S'ha eliminat correctament l'enllaç multimèdia.
|
179
185
|
edit:
|
180
|
-
title: Actualitzar l'enllaç multimèdia
|
186
|
+
title: Actualitzar l'enllaç multimèdia.
|
181
187
|
update: Actualitzar
|
182
188
|
index:
|
183
189
|
media_links_title: Enllaços multimèdia
|
184
190
|
new:
|
185
191
|
create: Crear
|
186
|
-
title:
|
192
|
+
title: Enllaç multimèdia
|
187
193
|
update:
|
188
194
|
error: S'ha produït un error en actualitzar aquest enllaç multimèdia.
|
189
195
|
success: Enllaç multimèdia actualitzat correctament.
|
@@ -199,11 +205,11 @@ ca:
|
|
199
205
|
conference_invites: Convida
|
200
206
|
conference_speakers: Ponents
|
201
207
|
diploma: Certificat d'assistència
|
202
|
-
info:
|
203
|
-
media_links: Enllaços
|
208
|
+
info: Sobre aquesta jornada
|
209
|
+
media_links: Enllaços multimedia
|
204
210
|
moderations: Moderacions
|
205
211
|
partners: Col·laboradores
|
206
|
-
registration_types: Tipus d'
|
212
|
+
registration_types: Tipus d'inscripcions
|
207
213
|
registrations: Inscripcions
|
208
214
|
see_conference: Veure la jornada
|
209
215
|
user_registrations: Inscripcions de participants
|
@@ -235,7 +241,7 @@ ca:
|
|
235
241
|
date: Data
|
236
242
|
link: Enllaç
|
237
243
|
title: Títol
|
238
|
-
name: Enllaç
|
244
|
+
name: Enllaç multimedia
|
239
245
|
partner:
|
240
246
|
fields:
|
241
247
|
link: Enllaç
|
@@ -261,7 +267,7 @@ ca:
|
|
261
267
|
destroy:
|
262
268
|
success: Col·laboradora de la jornada eliminada correctament.
|
263
269
|
edit:
|
264
|
-
title: Actualitzar col·laboradora
|
270
|
+
title: Actualitzar col·laboradora.
|
265
271
|
update: Actualitzar
|
266
272
|
new:
|
267
273
|
create: Crear
|
@@ -283,7 +289,7 @@ ca:
|
|
283
289
|
destroy:
|
284
290
|
success: El tipus d'inscripció s'ha eliminat correctament d'aquesta jornada.
|
285
291
|
edit:
|
286
|
-
title: Actualitzar el tipus
|
292
|
+
title: Actualitzar el tipus de registre.
|
287
293
|
update: Actualitzar
|
288
294
|
new:
|
289
295
|
create: Crear
|
@@ -348,14 +354,8 @@ ca:
|
|
348
354
|
non_user: Participant no existent
|
349
355
|
select_user: Seleccionar participant
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Acceptada
|
353
|
-
all: Totes
|
354
|
-
rejected: Rebutjada
|
355
|
-
sent: Enviat
|
356
357
|
invite_attendee: Convidar participant
|
357
358
|
invites: Convida
|
358
|
-
search: Cercar
|
359
359
|
new:
|
360
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ó.
|
361
361
|
invite: Convidar
|
@@ -474,8 +474,6 @@ ca:
|
|
474
474
|
name: Jornades destacades
|
475
475
|
index:
|
476
476
|
title: Jornades
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'Nova jornada:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
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
|
@@ -126,13 +126,18 @@ cs:
|
|
126
126
|
destroy:
|
127
127
|
success: Řečník byl úspěšně smazán pro tuto konferenci.
|
128
128
|
edit:
|
129
|
-
title: Aktualizovat řečníka konference
|
129
|
+
title: Aktualizovat řečníka konference.
|
130
130
|
update: Aktualizace
|
131
131
|
index:
|
132
132
|
conference_speakers_title: Řečníci konference
|
133
133
|
new:
|
134
134
|
create: Vytvořit
|
135
|
-
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ě.
|
136
141
|
update:
|
137
142
|
error: Při této konferenci došlo k chybě při aktualizaci řečníka.
|
138
143
|
success: Řečník konference byl úspěšně aktualizován.
|
@@ -143,13 +148,13 @@ cs:
|
|
143
148
|
destroy:
|
144
149
|
success: Administrátor konference byl úspěšně odstraněn.
|
145
150
|
edit:
|
146
|
-
title: Aktualizovat
|
151
|
+
title: Aktualizovat uživatele konference.
|
147
152
|
update: Aktualizace
|
148
153
|
index:
|
149
154
|
conference_admins_title: Administrátoři konference
|
150
155
|
new:
|
151
156
|
create: Vytvořit
|
152
|
-
title: Nový
|
157
|
+
title: Nový administrátor konference.
|
153
158
|
update:
|
154
159
|
error: Při aktualizaci tohoto administrátora konference došlo k potížím.
|
155
160
|
success: Uživatel úspěšně aktualizován pro tuto konferenci.
|
@@ -179,17 +184,17 @@ cs:
|
|
179
184
|
media_links:
|
180
185
|
create:
|
181
186
|
error: Při vytváření nového odkazu na média došlo k chybě.
|
182
|
-
success: Odkaz na
|
187
|
+
success: Odkaz na media byl úspěšně vytvořen.
|
183
188
|
destroy:
|
184
|
-
success: Odkaz na
|
189
|
+
success: Odkaz na media byl úspěšně smazán.
|
185
190
|
edit:
|
186
|
-
title: Aktualizovat odkaz na
|
191
|
+
title: Aktualizovat odkaz na media.
|
187
192
|
update: Aktualizace
|
188
193
|
index:
|
189
194
|
media_links_title: Odkazy na média
|
190
195
|
new:
|
191
196
|
create: Vytvořit
|
192
|
-
title:
|
197
|
+
title: Odkaz na média
|
193
198
|
update:
|
194
199
|
error: Při aktualizaci tohoto odkazu na média došlo k chybě.
|
195
200
|
success: Odkaz na média byl úspěšně aktualizován.
|
@@ -204,7 +209,7 @@ cs:
|
|
204
209
|
conference_admins: Administrátoři konference
|
205
210
|
conference_invites: Pozvánky
|
206
211
|
conference_speakers: Řečníci
|
207
|
-
diploma:
|
212
|
+
diploma: Potvrzení o účasti
|
208
213
|
info: O této konferenci
|
209
214
|
media_links: Odkazy na média
|
210
215
|
moderations: Moderování
|
@@ -267,7 +272,7 @@ cs:
|
|
267
272
|
destroy:
|
268
273
|
success: Partner byl úspěšně odstraněn z této konference.
|
269
274
|
edit:
|
270
|
-
title: Aktualizovat partnera
|
275
|
+
title: Aktualizovat partnera.
|
271
276
|
update: Aktualizace
|
272
277
|
new:
|
273
278
|
create: Vytvořit
|
@@ -289,7 +294,7 @@ cs:
|
|
289
294
|
destroy:
|
290
295
|
success: Typ registrace byl z této konference úspěšně odstraněn.
|
291
296
|
edit:
|
292
|
-
title: Aktualizovat typ registrace
|
297
|
+
title: Aktualizovat typ registrace.
|
293
298
|
update: Aktualizace
|
294
299
|
new:
|
295
300
|
create: Vytvořit
|
@@ -354,14 +359,8 @@ cs:
|
|
354
359
|
non_user: Neexistující uživatel
|
355
360
|
select_user: Vyberte uživatele
|
356
361
|
index:
|
357
|
-
filter:
|
358
|
-
accepted: Přijato
|
359
|
-
all: Vše
|
360
|
-
rejected: Odmítnuto
|
361
|
-
sent: Odeslaná
|
362
362
|
invite_attendee: Pozvat účastníka
|
363
363
|
invites: Pozvánky
|
364
|
-
search: Vyhledávání
|
365
364
|
new:
|
366
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.
|
367
366
|
invite: Pozvat
|
@@ -412,7 +411,7 @@ cs:
|
|
412
411
|
diploma_html: Naleznete certifikát o účasti na konferenci <a href="%{url}">%{title}</a> v přílohách.
|
413
412
|
diploma_user:
|
414
413
|
attendance_verified_by: Účet ověřil
|
415
|
-
certificate_of_attendance:
|
414
|
+
certificate_of_attendance: Potvrzení o účasti
|
416
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>
|
417
416
|
send_diploma:
|
418
417
|
error: Při odesílání konferenčních certifikátů docházelo k problému.
|
@@ -484,8 +483,6 @@ cs:
|
|
484
483
|
name: Zvýrazněné konference
|
485
484
|
index:
|
486
485
|
title: Konference
|
487
|
-
last_activity:
|
488
|
-
new_conference: 'Nová konference:'
|
489
486
|
mailer:
|
490
487
|
conference_registration_mailer:
|
491
488
|
confirmation:
|
data/config/locales/de.yml
CHANGED
@@ -120,13 +120,19 @@ de:
|
|
120
120
|
destroy:
|
121
121
|
success: Der Redner wurde für diese Konferenz erfolgreich gelöscht.
|
122
122
|
edit:
|
123
|
-
title:
|
123
|
+
title: Konferenzsprecher aktualisieren
|
124
124
|
update: Aktualisieren
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Konferenzsprecher
|
127
127
|
new:
|
128
128
|
create: Erstellen
|
129
|
-
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.
|
130
136
|
update:
|
131
137
|
error: Beim Aktualisieren des Sprechers für diese Konferenz ist ein Fehler aufgetreten.
|
132
138
|
success: Der Sprecher wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -137,13 +143,13 @@ de:
|
|
137
143
|
destroy:
|
138
144
|
success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
|
139
145
|
edit:
|
140
|
-
title:
|
146
|
+
title: Konferenzadmin aktualisieren.
|
141
147
|
update: Aktualisieren
|
142
148
|
index:
|
143
149
|
conference_admins_title: Konferenzadmins
|
144
150
|
new:
|
145
151
|
create: Erstellen
|
146
|
-
title: Neuer
|
152
|
+
title: Neuer Konferenzbenutzer
|
147
153
|
update:
|
148
154
|
error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
|
149
155
|
success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
|
@@ -173,9 +179,9 @@ de:
|
|
173
179
|
media_links:
|
174
180
|
create:
|
175
181
|
error: Beim Erstellen einer neuen Medienverknüpfung ist ein Fehler aufgetreten.
|
176
|
-
success: Medienlink erfolgreich erstellt
|
182
|
+
success: Medienlink erfolgreich erstellt
|
177
183
|
destroy:
|
178
|
-
success: Medienlink erfolgreich gelöscht.
|
184
|
+
success: Medienlink wurde erfolgreich gelöscht.
|
179
185
|
edit:
|
180
186
|
title: Medienlink aktualisieren
|
181
187
|
update: Aktualisieren
|
@@ -183,10 +189,10 @@ de:
|
|
183
189
|
media_links_title: Medienlinks
|
184
190
|
new:
|
185
191
|
create: Erstellen
|
186
|
-
title: Medienlink
|
192
|
+
title: Medienlink
|
187
193
|
update:
|
188
194
|
error: Beim Aktualisieren dieser Medienverbindung ist ein Fehler aufgetreten.
|
189
|
-
success:
|
195
|
+
success: Media Link wurde erfolgreich aktualisiert.
|
190
196
|
menu:
|
191
197
|
conferences: Konferenzen
|
192
198
|
conferences_submenu:
|
@@ -206,7 +212,7 @@ de:
|
|
206
212
|
registration_types: Registrierungsarten
|
207
213
|
registrations: Registrierungen
|
208
214
|
see_conference: Konferenz ansehen
|
209
|
-
user_registrations:
|
215
|
+
user_registrations: Benutzerregistrierungen
|
210
216
|
models:
|
211
217
|
conference:
|
212
218
|
fields:
|
@@ -229,7 +235,7 @@ de:
|
|
229
235
|
admin: Administrator
|
230
236
|
collaborator: Mitarbeiter
|
231
237
|
moderator: Moderator
|
232
|
-
valuator:
|
238
|
+
valuator: Schätzer
|
233
239
|
media_link:
|
234
240
|
fields:
|
235
241
|
date: Datum
|
@@ -248,7 +254,7 @@ de:
|
|
248
254
|
main_promotor: Hauptförderer
|
249
255
|
registration_type:
|
250
256
|
fields:
|
251
|
-
conference_meetings:
|
257
|
+
conference_meetings: Konferenzsitzungen
|
252
258
|
price: Preis
|
253
259
|
registrations_count: Registrierungen zählen
|
254
260
|
title: Titel
|
@@ -348,14 +354,8 @@ de:
|
|
348
354
|
non_user: Nicht existierender Benutzer
|
349
355
|
select_user: Nutzer wählen
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Angenommen
|
353
|
-
all: Alle
|
354
|
-
rejected: Abgelehnt
|
355
|
-
sent: Geschickt
|
356
357
|
invite_attendee: Teilnehmer einladen
|
357
358
|
invites: Lädt ein
|
358
|
-
search: Suche
|
359
359
|
new:
|
360
360
|
explanation: Die Person wird zur Teilnahme an der Konferenz eingeladen. Wenn die E-Mail nicht registriert ist, werden sie ebenfalls zur Organisation eingeladen.
|
361
361
|
invite: Einladen
|
@@ -396,7 +396,7 @@ de:
|
|
396
396
|
title: Partner
|
397
397
|
registration_types:
|
398
398
|
form:
|
399
|
-
select_conference_meetings:
|
399
|
+
select_conference_meetings: Konferenzmeetings auswählen
|
400
400
|
index:
|
401
401
|
title: Registrierungsarten
|
402
402
|
send_conference_diploma_mailer:
|
@@ -415,7 +415,7 @@ de:
|
|
415
415
|
confirm: Bestätigen
|
416
416
|
show:
|
417
417
|
going: Gehen
|
418
|
-
no_slots_available: Keine
|
418
|
+
no_slots_available: Keine Steckplätze verfügbar
|
419
419
|
registration: Anmeldung
|
420
420
|
conference_program:
|
421
421
|
show:
|
@@ -474,8 +474,6 @@ de:
|
|
474
474
|
name: Hervorgehobene Konferenzen
|
475
475
|
index:
|
476
476
|
title: Konferenzen
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'Neue Konferenz:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
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
@@ -120,13 +120,19 @@ en:
|
|
120
120
|
destroy:
|
121
121
|
success: Conference speaker successfully deleted.
|
122
122
|
edit:
|
123
|
-
title: Update conference speaker
|
123
|
+
title: Update conference speaker.
|
124
124
|
update: Update
|
125
125
|
index:
|
126
126
|
conference_speakers_title: Conference speakers
|
127
127
|
new:
|
128
128
|
create: Create
|
129
|
-
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.
|
130
136
|
update:
|
131
137
|
error: There was a problem updating this conference speaker.
|
132
138
|
success: Conference speaker successfully updated.
|
@@ -137,13 +143,13 @@ en:
|
|
137
143
|
destroy:
|
138
144
|
success: Conference admin successfully removed.
|
139
145
|
edit:
|
140
|
-
title: Update conference admin
|
146
|
+
title: Update conference admin.
|
141
147
|
update: Update
|
142
148
|
index:
|
143
149
|
conference_admins_title: Conference admins
|
144
150
|
new:
|
145
151
|
create: Create
|
146
|
-
title: New conference admin
|
152
|
+
title: New conference admin.
|
147
153
|
update:
|
148
154
|
error: There was a problem updating this conference admin.
|
149
155
|
success: Conference admin successfully updated.
|
@@ -173,20 +179,20 @@ en:
|
|
173
179
|
media_links:
|
174
180
|
create:
|
175
181
|
error: There was a problem creating a new media link.
|
176
|
-
success: Media
|
182
|
+
success: Media Link successfully created.
|
177
183
|
destroy:
|
178
|
-
success: Media
|
184
|
+
success: Media Link successfully deleted.
|
179
185
|
edit:
|
180
|
-
title: Update media link
|
186
|
+
title: Update media link.
|
181
187
|
update: Update
|
182
188
|
index:
|
183
|
-
media_links_title: Media
|
189
|
+
media_links_title: Media Links
|
184
190
|
new:
|
185
191
|
create: Create
|
186
|
-
title:
|
192
|
+
title: Media Link
|
187
193
|
update:
|
188
194
|
error: There was a problem updating this media link.
|
189
|
-
success: Media
|
195
|
+
success: Media Link successfully updated.
|
190
196
|
menu:
|
191
197
|
conferences: Conferences
|
192
198
|
conferences_submenu:
|
@@ -198,15 +204,15 @@ en:
|
|
198
204
|
conference_admins: Conference admins
|
199
205
|
conference_invites: Invites
|
200
206
|
conference_speakers: Speakers
|
201
|
-
diploma: Certificate of
|
207
|
+
diploma: Certificate of Attendance
|
202
208
|
info: About this conference
|
203
|
-
media_links: Media
|
209
|
+
media_links: Media Links
|
204
210
|
moderations: Moderations
|
205
211
|
partners: Partners
|
206
|
-
registration_types: Registration
|
212
|
+
registration_types: Registration Types
|
207
213
|
registrations: Registrations
|
208
214
|
see_conference: See conference
|
209
|
-
user_registrations: User
|
215
|
+
user_registrations: User Registrations
|
210
216
|
models:
|
211
217
|
conference:
|
212
218
|
fields:
|
@@ -235,7 +241,7 @@ en:
|
|
235
241
|
date: Date
|
236
242
|
link: Link
|
237
243
|
title: Title
|
238
|
-
name: Media
|
244
|
+
name: Media Link
|
239
245
|
partner:
|
240
246
|
fields:
|
241
247
|
link: Link
|
@@ -261,7 +267,7 @@ en:
|
|
261
267
|
destroy:
|
262
268
|
success: Conference partner successfully removed.
|
263
269
|
edit:
|
264
|
-
title: Update partner
|
270
|
+
title: Update partner.
|
265
271
|
update: Update
|
266
272
|
new:
|
267
273
|
create: Create
|
@@ -283,7 +289,7 @@ en:
|
|
283
289
|
destroy:
|
284
290
|
success: Conference registration type successfully removed.
|
285
291
|
edit:
|
286
|
-
title: Update registration type
|
292
|
+
title: Update registration type.
|
287
293
|
update: Update
|
288
294
|
new:
|
289
295
|
create: Create
|
@@ -348,14 +354,8 @@ en:
|
|
348
354
|
non_user: Non existing participant
|
349
355
|
select_user: Select participant
|
350
356
|
index:
|
351
|
-
filter:
|
352
|
-
accepted: Accepted
|
353
|
-
all: All
|
354
|
-
rejected: Rejected
|
355
|
-
sent: Sent
|
356
357
|
invite_attendee: Invite participant
|
357
358
|
invites: Invites
|
358
|
-
search: Search
|
359
359
|
new:
|
360
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.
|
361
361
|
invite: Invite
|
@@ -384,7 +384,7 @@ en:
|
|
384
384
|
diplomas:
|
385
385
|
edit:
|
386
386
|
save: Save
|
387
|
-
title: Certificate of
|
387
|
+
title: Certificate of Attendance
|
388
388
|
invite_join_conference_mailer:
|
389
389
|
invite:
|
390
390
|
decline: Decline invitation '%{conference_title}'
|
@@ -404,7 +404,7 @@ en:
|
|
404
404
|
diploma_html: You will be find the certificate of attendance for the conference <a href="%{url}">%{title}</a> in the attachments.
|
405
405
|
diploma_user:
|
406
406
|
attendance_verified_by: Attendance verified by
|
407
|
-
certificate_of_attendance: Certificate of
|
407
|
+
certificate_of_attendance: Certificate of Attendance
|
408
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>
|
409
409
|
send_diploma:
|
410
410
|
error: There was a problem sending the conference certificates of attendance.
|
@@ -474,8 +474,6 @@ en:
|
|
474
474
|
name: Highlighted conferences
|
475
475
|
index:
|
476
476
|
title: Conferences
|
477
|
-
last_activity:
|
478
|
-
new_conference: 'New conference:'
|
479
477
|
mailer:
|
480
478
|
conference_registration_mailer:
|
481
479
|
confirmation:
|