decidim-conferences 0.15.1 → 0.16.0
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/assets/config/admin/decidim_conferences_manifest.js +1 -0
- data/app/assets/images/decidim/conferences/conference.svg +2 -5
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +3 -0
- data/app/cells/decidim/conferences/{join_conference_button/show.erb → registration_type/join_conference.erb} +6 -7
- data/app/cells/decidim/conferences/{join_conference_button → registration_type}/registration_confirm.erb +2 -2
- data/app/cells/decidim/conferences/registration_type/show.erb +16 -0
- data/app/cells/decidim/conferences/registration_type_cell.rb +51 -0
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +75 -0
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +77 -0
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +56 -0
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +3 -2
- data/app/commands/decidim/conferences/admin/publish_registration_type.rb +36 -0
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +48 -0
- data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +36 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +2 -2
- data/app/commands/decidim/conferences/admin/update_diploma.rb +47 -0
- data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +74 -0
- data/app/commands/decidim/conferences/join_conference.rb +21 -9
- data/app/commands/decidim/conferences/leave_conference.rb +5 -3
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +21 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +0 -9
- data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +62 -0
- data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +53 -0
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +84 -0
- data/app/controllers/decidim/conferences/application_controller.rb +2 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +6 -2
- data/app/controllers/decidim/conferences/conferences_controller.rb +4 -0
- data/app/controllers/decidim/conferences/registration_types_controller.rb +39 -0
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +21 -0
- data/app/forms/decidim/conferences/admin/conference_form.rb +5 -2
- data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +15 -0
- data/app/forms/decidim/conferences/admin/diploma_form.rb +24 -0
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +44 -0
- data/app/helpers/decidim/conferences/conference_helper.rb +15 -0
- data/app/jobs/decidim/conferences/admin/send_conference_diploma_job.rb +20 -0
- data/app/jobs/decidim/conferences/upcoming_conference_notification_job.rb +1 -1
- data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +2 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +48 -0
- data/app/mailers/decidim/conferences/conference_registration_mailer.rb +16 -1
- data/app/models/decidim/conference.rb +12 -0
- data/app/models/decidim/conference_meeting.rb +2 -0
- data/app/models/decidim/conferences/conference_invite.rb +1 -0
- data/app/models/decidim/conferences/conference_meeting_registration_type.rb +10 -0
- data/app/models/decidim/conferences/conference_registration.rb +11 -0
- data/app/models/decidim/conferences/registration_type.rb +25 -0
- data/app/permissions/decidim/conferences/permissions.rb +19 -12
- data/app/presenters/decidim/conference_speaker_presenter.rb +4 -0
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +43 -0
- data/app/presenters/decidim/conferences/admin_log/conferences_presenter.rb +4 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +45 -0
- data/app/serializers/decidim/conferences/conference_registration_serializer.rb +4 -0
- data/app/serializers/decidim/conferences/data_portability_conference_invite_serializer.rb +4 -0
- data/app/serializers/decidim/conferences/data_portability_conference_registration_serializer.rb +4 -0
- data/app/uploaders/decidim/conferences/diploma_uploader.rb +12 -0
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +4 -0
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +16 -0
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -4
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +31 -0
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +7 -0
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +2 -2
- data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +30 -0
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +7 -0
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +65 -0
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +7 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma.html.erb +1 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +24 -0
- data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +1 -2
- data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +9 -1
- data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +11 -0
- data/app/views/decidim/conferences/conferences/index.html.erb +2 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +10 -24
- data/app/views/decidim/conferences/registration_types/index.html.erb +30 -0
- data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +14 -0
- data/app/views/layouts/decidim/_conference_hero.html.erb +5 -3
- data/app/views/layouts/decidim/_conferences_nav.html.erb +45 -89
- data/app/views/layouts/decidim/admin/conference.html.erb +26 -8
- data/app/views/layouts/decidim/diploma.html.erb +11 -0
- data/config/initializers/wicked_pdf.rb +23 -0
- data/config/locales/ca.yml +125 -19
- data/config/locales/de.yml +127 -21
- data/config/locales/en.yml +126 -23
- data/config/locales/es-PY.yml +125 -19
- data/config/locales/es.yml +125 -19
- data/config/locales/eu.yml +127 -21
- data/config/locales/fi-pl.yml +570 -0
- data/config/locales/fi.yml +145 -39
- data/config/locales/fr.yml +127 -21
- data/config/locales/gl.yml +126 -20
- data/config/locales/hu.yml +127 -21
- data/config/locales/id-ID.yml +563 -0
- data/config/locales/it.yml +127 -21
- data/config/locales/nl.yml +126 -20
- data/config/locales/pl.yml +127 -24
- data/config/locales/pt-BR.yml +125 -19
- data/config/locales/pt.yml +126 -20
- data/config/locales/sv.yml +164 -58
- data/config/locales/tr-TR.yml +567 -0
- data/db/migrate/20181023142325_add_conference_registration_types.rb +21 -0
- data/db/migrate/20181030090202_add_reference_registration_type_to_conference_registration.rb +9 -0
- data/db/migrate/20181030153614_add_registration_type_to_conference_invite.rb +8 -0
- data/db/migrate/20181106092826_add_diploma_fields_to_conference.rb +11 -0
- data/db/migrate/20181123124424_make_price_optional_conference_registration_type.rb +7 -0
- data/lib/decidim/conferences/admin_engine.rb +16 -2
- data/lib/decidim/conferences/engine.rb +8 -4
- data/lib/decidim/conferences/participatory_space.rb +11 -0
- data/lib/decidim/conferences/test/factories.rb +36 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +94 -22
- data/app/cells/decidim/conferences/join_conference_button_cell.rb +0 -42
- data/app/views/decidim/conferences/conferences/_conferences_sidebar.html.erb +0 -11
data/config/locales/es.yml
CHANGED
@@ -43,12 +43,14 @@ es:
|
|
43
43
|
one: Ponente
|
44
44
|
other: Ponentes
|
45
45
|
decidim/conference_user_role:
|
46
|
-
one: Rol de usuario
|
47
|
-
other: Roles de usuario
|
46
|
+
one: Rol de usuario conferencia
|
47
|
+
other: Roles de usuario conferencia
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
51
|
+
confirm: Confirmar
|
51
52
|
new_conference: Nueva conferencia
|
53
|
+
send_diplomas: Enviar certificados de asistencia
|
52
54
|
conference_copies:
|
53
55
|
new:
|
54
56
|
copy: Copiar
|
@@ -61,6 +63,10 @@ es:
|
|
61
63
|
destroy:
|
62
64
|
error: Hubo un error al despublicar de esta conferencia.
|
63
65
|
success: Conferencia despublicada con éxito.
|
66
|
+
conference_registration:
|
67
|
+
confirm:
|
68
|
+
error: Hubo un error al confirmar la inscripción a esta conferencia.
|
69
|
+
success: Inscripción a la conferencia confirmada con éxito.
|
64
70
|
conference_speakers:
|
65
71
|
create:
|
66
72
|
error: Hubo un error al agregar un ponente en esta conferencia.
|
@@ -99,8 +105,6 @@ es:
|
|
99
105
|
create:
|
100
106
|
error: Hubo un error al crear una nueva conferencia.
|
101
107
|
success: Conferencia creada con éxito.
|
102
|
-
destroy:
|
103
|
-
success: Conferencia borrada con éxito.
|
104
108
|
edit:
|
105
109
|
update: Actualizar
|
106
110
|
exports:
|
@@ -145,14 +149,17 @@ es:
|
|
145
149
|
attachments: Archivos adjuntos
|
146
150
|
categories: Categorías
|
147
151
|
components: Componentes
|
148
|
-
conference_admins:
|
149
|
-
conference_invites:
|
150
|
-
conference_registrations: Inscripciones a la conferencia
|
152
|
+
conference_admins: Usuarios de la conferencia
|
153
|
+
conference_invites: Invita
|
151
154
|
conference_speakers: Ponentes
|
155
|
+
diploma: Certificado de asistencia
|
152
156
|
info: Información
|
153
157
|
media_links: Enlaces multimedia
|
154
158
|
moderations: Moderaciones
|
155
159
|
partners: Colaboradores
|
160
|
+
registration_types: Tipos de inscripción
|
161
|
+
registrations: Inscripciones
|
162
|
+
user_registrations: Inscripciones de usuario
|
156
163
|
models:
|
157
164
|
conference:
|
158
165
|
fields:
|
@@ -192,6 +199,14 @@ es:
|
|
192
199
|
types:
|
193
200
|
collaborator: Colaborador
|
194
201
|
main_promotor: Promotor principal
|
202
|
+
registration_type:
|
203
|
+
fields:
|
204
|
+
conference_meetings: Encuentros de la conferencia
|
205
|
+
price: Precio
|
206
|
+
registrations_count: Número de inscripciones
|
207
|
+
title: Título
|
208
|
+
weight: Peso
|
209
|
+
name: Tipo de inscripción
|
195
210
|
partners:
|
196
211
|
create:
|
197
212
|
error: Se ha producido un error al añadir un colaborador a esta jornada.
|
@@ -207,14 +222,38 @@ es:
|
|
207
222
|
update:
|
208
223
|
error: Se ha producido un error al actualizar un colaborador de esta jornada.
|
209
224
|
success: Colaborador actualizado correctamente en esta jornada.
|
225
|
+
registration_type_publications:
|
226
|
+
create:
|
227
|
+
error: Se ha producido un error al publicar este tipo de registro.
|
228
|
+
success: Tipo de registro publicado con éxito.
|
229
|
+
destroy:
|
230
|
+
error: Se ha producido un error al publicar este tipo de registro.
|
231
|
+
success: Tipo de registro despublicado con éxito.
|
232
|
+
registration_types:
|
233
|
+
create:
|
234
|
+
error: Se produjo un error al agregar un tipo de registro para esta conferencia.
|
235
|
+
success: Tipo de registro agregado con éxtio a esta conferencia.
|
236
|
+
destroy:
|
237
|
+
success: Tipo de registro eliminado con éxito de esta conferencia.
|
238
|
+
edit:
|
239
|
+
title: Actualizar el tipo de registro.
|
240
|
+
update: Actualizar
|
241
|
+
new:
|
242
|
+
create: Crear
|
243
|
+
title: Nuevo tipo de registro
|
244
|
+
update:
|
245
|
+
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
246
|
+
success: Tipo de registro actualizado con éxito para esta conferencia.
|
210
247
|
titles:
|
211
248
|
conferences: Conferencias
|
212
249
|
admin_log:
|
213
250
|
conference:
|
214
251
|
create: "%{user_name} creó la conferencia %{resource_name}"
|
215
252
|
publish: "%{user_name} ha publicado la conferencia %{resource_name}"
|
253
|
+
send_conference_diplomas: "%{user_name} envió certificados de asistencia a los asistentes de la conferencia %{resource_name}"
|
216
254
|
unpublish: "%{user_name} ha despublicado la conferencia %{resource_name}"
|
217
255
|
update: "%{user_name} ha actualizado la conferencia %{resource_name}"
|
256
|
+
update_diploma: "%{user_name} actualizó la configuración de certificados de asistencia para la conferencia %{resource_name}"
|
218
257
|
conference_speaker:
|
219
258
|
create: "%{user_name} ha creado el ponente %{resource_name} en la conferencia %{space_name}"
|
220
259
|
delete: "%{user_name} ha eliminado al ponente %{resource_name} de la conferencia %{space_name}"
|
@@ -223,6 +262,22 @@ es:
|
|
223
262
|
create: "%{user_name} ha invitado %{resource_name} a la conferencia %{space_name}"
|
224
263
|
delete: "%{user_name} ha eliminado al usuario %{resource_name} de la conferencia %{space_name}"
|
225
264
|
update: "%{user_name} ha cambiado el rol de %{resource_name} en la conferencia %{space_name}"
|
265
|
+
conferences:
|
266
|
+
conference_registration:
|
267
|
+
confirm: "%{user_name} ha confirmado su inscripción a la conferencia %{resource_name}"
|
268
|
+
partner:
|
269
|
+
create: "%{user_name} ha creado %{resource_name} en la conferencia %{space_name}"
|
270
|
+
delete: "%{user_name} ha eliminado al usuario %{resource_name} de la conferencia %{space_name}"
|
271
|
+
update: "%{user_name} ha actualizado %{resource_name} en la conferencia %{space_name}"
|
272
|
+
registration_type:
|
273
|
+
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
274
|
+
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
275
|
+
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
276
|
+
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
277
|
+
media_link:
|
278
|
+
create: "%{user_name} creó el enlace a medios %{resource_name} en la conferencia %{space_name}"
|
279
|
+
delete: "%{user_name} eliminó el enlace a medios %{resource_name} de la conferencia %{space_name}"
|
280
|
+
update: "%{user_name} actualizó el enlace a medios %{resource_name} de la conferencia %{space_name}"
|
226
281
|
conference_program:
|
227
282
|
index:
|
228
283
|
title: Programa
|
@@ -276,25 +331,42 @@ es:
|
|
276
331
|
one: Ha habido 1 inscripción.
|
277
332
|
other: Ha habido %{count} inscripciones.
|
278
333
|
slug_help: 'Las URL amigables se utilizan para generar las URL que apuntan a esta conferencia. Solo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
334
|
+
diplomas:
|
335
|
+
edit:
|
336
|
+
save: Guardar
|
337
|
+
title: Certificado de asistencia
|
279
338
|
invite_join_conference_mailer:
|
280
339
|
invite:
|
281
340
|
decline: Rechazar invitación a '%{conference_title}'
|
282
341
|
invited_you_to_join_a_conference: "%{invited_by} te ha invitado a unirte a una conferencia en %{application}. Puedes declinarla o aceptarla a través de los siguientes enlaces."
|
283
|
-
|
342
|
+
registration: Inscripción para '%{conference_title}'
|
284
343
|
partners:
|
285
344
|
index:
|
286
345
|
title: Colaboradores
|
346
|
+
registration_types:
|
347
|
+
form:
|
348
|
+
select_conference_meetings: Seleccionar los encuentros de la conferencia
|
349
|
+
index:
|
350
|
+
title: Tipos de inscripción
|
351
|
+
send_conference_diploma_mailer:
|
352
|
+
diploma:
|
353
|
+
diploma_html: Encontrarás el certificado de asistencia a la conferencia <a href="%{url}">%{title}</a> en los anexos.
|
354
|
+
diploma_user:
|
355
|
+
attendance_verified_by: Asistencia verificada por
|
356
|
+
certificate_of_attendance: Certificado de asistencia
|
357
|
+
certificate_of_attendance_description: Este documento certifica que <strong>%{user}</strong> ha asistido y participado en los encuentros <strong>%{title}</strong> celebrados en el <strong>%{location}</strong> del <strong>%{start} - %{end}</strong>
|
358
|
+
send_diploma:
|
359
|
+
error: Ha habido un problema al enviar los certificados de la conferencia.
|
360
|
+
success: Certificados de asistencia enviados correctamente
|
287
361
|
conference:
|
288
362
|
registration_confirm:
|
289
363
|
cancel: Cancelar
|
290
364
|
confirm: Confirmar
|
291
365
|
show:
|
366
|
+
free: Entrada libre
|
292
367
|
going: Asistiré
|
293
|
-
join: Únete a la conferencia
|
294
368
|
no_slots_available: No hay plazas disponibles
|
295
|
-
|
296
|
-
one: 1 inscripción disponible
|
297
|
-
other: "%{count} inscripciones disponibles"
|
369
|
+
registration: Inscripción
|
298
370
|
conference_program:
|
299
371
|
program_meeting:
|
300
372
|
content: Contenido
|
@@ -307,7 +379,12 @@ es:
|
|
307
379
|
conference_registration_mailer:
|
308
380
|
confirmation:
|
309
381
|
confirmed_html: Tu inscripción a la conferencia <a href="%{url}">%{title}</a> ha sido confirmada.
|
310
|
-
|
382
|
+
details_1: 'Tu inscripción a la conferencia es de tipo %{registration_type}. Tiene un costo de %{price} y puedes asistir a los siguientes eventos:'
|
383
|
+
details_2: Encontrará los detalles de la conferencia en el archivo adjunto.
|
384
|
+
pending_validation:
|
385
|
+
confirmation_pending: Recibirás la confirmación en breve
|
386
|
+
details: 'Tu inscripción a la conferencia es de tipo %{registration_type} con un coste de %{price} y puede asistir a los siguientes eventos:'
|
387
|
+
pending_html: Tu inscripción a la conferencia <a href="%{url}">%{title}</a> está pendiente de confirmación.
|
311
388
|
conference_registrations:
|
312
389
|
create:
|
313
390
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
@@ -335,15 +412,11 @@ es:
|
|
335
412
|
conferences:
|
336
413
|
partners:
|
337
414
|
collaborators: Colaboradores
|
338
|
-
main_promotors:
|
415
|
+
main_promotors: Organizadores
|
339
416
|
show:
|
340
|
-
already_account: '¿Ya tienes una cuenta en decidim?'
|
341
417
|
login_as: Has iniciado sesión como %{name} <%{email}>
|
342
418
|
make_conference_registration: 'Inscribirte a la conferencia:'
|
343
|
-
new_user: '¿Eres nuevo?'
|
344
419
|
register: Inscripciones
|
345
|
-
sign_in: Inicie sesión para inscribirte en esta conferencia
|
346
|
-
sign_up: Regístrate gratis para inscribirte
|
347
420
|
content_blocks:
|
348
421
|
highlighted_conferences:
|
349
422
|
name: Conferencias destacadas
|
@@ -353,14 +426,20 @@ es:
|
|
353
426
|
conference_registration_mailer:
|
354
427
|
confirmation:
|
355
428
|
subject: Tu inscripción a la conferencia ha sido confirmada
|
429
|
+
pending_validation:
|
430
|
+
subject: Tu inscripción a la conferencia está pendiente de confirmación
|
356
431
|
invite_join_conference_mailer:
|
357
432
|
invite:
|
358
433
|
subject: Invitación para unirse a una conferencia
|
434
|
+
send_conference_diploma_mailer:
|
435
|
+
diploma:
|
436
|
+
subject: El certificado de asistencia ha sido enviado
|
359
437
|
models:
|
360
438
|
conference_invite:
|
361
439
|
fields:
|
362
440
|
email: Correo electrónico
|
363
441
|
name: Nombre
|
442
|
+
registration_type: Tipo de inscripción
|
364
443
|
sent_at: Enviado a
|
365
444
|
status: Estado
|
366
445
|
status:
|
@@ -371,6 +450,11 @@ es:
|
|
371
450
|
fields:
|
372
451
|
email: Correo electrónico
|
373
452
|
name: Nombre
|
453
|
+
registration_type: Tipo de inscripción
|
454
|
+
state: Estado
|
455
|
+
states:
|
456
|
+
confirmed: Confirmada
|
457
|
+
pending: Pendiente
|
374
458
|
pages:
|
375
459
|
home:
|
376
460
|
highlighted_conferences:
|
@@ -383,6 +467,18 @@ es:
|
|
383
467
|
photos_list:
|
384
468
|
show:
|
385
469
|
related_photos: Fotos
|
470
|
+
registration_types:
|
471
|
+
index:
|
472
|
+
choose_an_option: 'Elige tu tipo de inscripción:'
|
473
|
+
login_as: Has iniciado sesión como %{name} <%{email}>
|
474
|
+
register: Inscribirse
|
475
|
+
title: Tipos de inscripción
|
476
|
+
shared:
|
477
|
+
conference_user_login:
|
478
|
+
already_account: '¿Ya tienes una cuenta en decidim?'
|
479
|
+
new_user: '¿Eres nuevo?'
|
480
|
+
sign_in: Inicia sesión para inscribirte en la conferencia
|
481
|
+
sign_up: Crea una cuenta de usuario para inscribirte en la conferencia
|
386
482
|
show:
|
387
483
|
details: Detalles
|
388
484
|
introduction: Introducción
|
@@ -409,6 +505,10 @@ es:
|
|
409
505
|
votes_count: Votos
|
410
506
|
events:
|
411
507
|
conferences:
|
508
|
+
conference_registration_validation_pending:
|
509
|
+
notification_title: Su inscripción para la conferencia <a href="%{resource_url}">%{resource_title}</a> está pendiente de confirmación.
|
510
|
+
conference_registration_confirmed:
|
511
|
+
notification_title: Su registro para la conferencia <a href="%{resource_url}">%{resource_title}</a> ha sido confirmado.
|
412
512
|
conference_registrations_over_percentage:
|
413
513
|
email_intro: Las plazas ocupadas para la conferencia "%{resource_title}" superan el %{percentage}%.
|
414
514
|
email_outro: Recibes esta notificación porque eres administrador del espacio participativo de la conferencia.
|
@@ -424,6 +524,11 @@ es:
|
|
424
524
|
email_outro: Recibes esta notificación porque sigues la conferencia "%{resource_title}". Puedes dejar de seguirla desde el enlace anterior.
|
425
525
|
email_subject: Se han habilitado las inscripciones a la conferencia "%{resource_title}".
|
426
526
|
notification_title: Se han habilitado las inscripciones a la conferencia <a href="%{resource_path}">%{resource_title}</a>.
|
527
|
+
upcoming_conference:
|
528
|
+
email_intro: 'La conferencia "%{resource_title}" se lleva a cabo en 2 días. Puedes leer la descripción de su página:'
|
529
|
+
email_outro: Ha recibido esta notificación porque está siguiendo la conferencia "%{resource_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
530
|
+
email_subject: '¡Se acerca la conferencia "%{resource_title}"!'
|
531
|
+
notification_title: La conferencia <a href="%{resource_path}">%{resource_title}</a> llegará en 2 días.
|
427
532
|
log:
|
428
533
|
value_types:
|
429
534
|
conference_presenter:
|
@@ -440,6 +545,8 @@ es:
|
|
440
545
|
subject: Invitación para unirse a una conferencia
|
441
546
|
layouts:
|
442
547
|
decidim:
|
548
|
+
conference_hero:
|
549
|
+
register: Inscripción
|
443
550
|
conference_widgets:
|
444
551
|
show:
|
445
552
|
take_part: Participar
|
@@ -460,5 +567,4 @@ es:
|
|
460
567
|
conference_partners_menu_item: Colaboradores
|
461
568
|
conference_speaker_menu_item: Ponentes
|
462
569
|
media: Multimedia
|
463
|
-
unfold: Desplegar
|
464
570
|
venues: Sedes
|
data/config/locales/eu.yml
CHANGED
@@ -44,11 +44,13 @@ eu:
|
|
44
44
|
other: Hitzaldi hiztunak
|
45
45
|
decidim/conference_user_role:
|
46
46
|
one: Konferentzia erabiltzailearen rola
|
47
|
-
other: Konferentzia erabiltzailearen
|
47
|
+
other: Konferentzia erabiltzailearen rola
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
51
|
+
confirm: Berretsi
|
51
52
|
new_conference: Konferentzia berria
|
53
|
+
send_diplomas: Bidali diplomak
|
52
54
|
conference_copies:
|
53
55
|
new:
|
54
56
|
copy: Copy
|
@@ -61,6 +63,10 @@ eu:
|
|
61
63
|
destroy:
|
62
64
|
error: Errore bat gertatu da hitzaldi hau argitaratzea.
|
63
65
|
success: Kongresua argitaratu egin da.
|
66
|
+
conference_registration:
|
67
|
+
confirm:
|
68
|
+
error: Errore bat gertatu da konferentzia erregistroan baieztatzeko.
|
69
|
+
success: Biltzarraren erregistroa ongi onartu da.
|
64
70
|
conference_speakers:
|
65
71
|
create:
|
66
72
|
error: Errore bat gertatu da konferentzia honetarako bozgorailua gehitzean.
|
@@ -99,8 +105,6 @@ eu:
|
|
99
105
|
create:
|
100
106
|
error: Errore bat gertatu da konferentzia berri bat sortzean.
|
101
107
|
success: Konferentzia ondo sortu da.
|
102
|
-
destroy:
|
103
|
-
success: Konferentzia zuzen ezabatu da.
|
104
108
|
edit:
|
105
109
|
update: eguneratzearen
|
106
110
|
exports:
|
@@ -145,14 +149,17 @@ eu:
|
|
145
149
|
attachments: eranskinak
|
146
150
|
categories: Kategoriak
|
147
151
|
components: Osagaiak
|
148
|
-
conference_admins: Konferentzia
|
149
|
-
conference_invites:
|
150
|
-
|
151
|
-
|
152
|
+
conference_admins: Konferentzia erabiltzaileak
|
153
|
+
conference_invites: Gonbidapenak
|
154
|
+
conference_speakers: Hizlariak
|
155
|
+
diploma: Diploma
|
152
156
|
info: info
|
153
157
|
media_links: Media Links
|
154
158
|
moderations: moderazioa
|
155
159
|
partners: Bazkideak
|
160
|
+
registration_types: Izen-emate motak
|
161
|
+
registrations: Izen-emateak
|
162
|
+
user_registrations: Erabiltzaileen erregistroak
|
156
163
|
models:
|
157
164
|
conference:
|
158
165
|
fields:
|
@@ -192,6 +199,14 @@ eu:
|
|
192
199
|
types:
|
193
200
|
collaborator: Kolaboratzaile
|
194
201
|
main_promotor: Garapen nagusia
|
202
|
+
registration_type:
|
203
|
+
fields:
|
204
|
+
conference_meetings: Bilera bilerak
|
205
|
+
price: Prezioa
|
206
|
+
registrations_count: Erregistroak zenbatzea
|
207
|
+
title: Izenburua
|
208
|
+
weight: pisu
|
209
|
+
name: Izen-emate mota
|
195
210
|
partners:
|
196
211
|
create:
|
197
212
|
error: Errore bat gertatu da bilera honetan bazkide bat gehitzea.
|
@@ -207,14 +222,38 @@ eu:
|
|
207
222
|
update:
|
208
223
|
error: Errore bat gertatu da biltzarrerako bazkide bat eguneratzea.
|
209
224
|
success: Bazkidea eguneratu da konferentzia honetarako.
|
225
|
+
registration_type_publications:
|
226
|
+
create:
|
227
|
+
error: Errore bat gertatu da izen-emate mota hau argitaratzean.
|
228
|
+
success: Izen-emate mota ondo argitaratu da.
|
229
|
+
destroy:
|
230
|
+
error: Errore bat gertatu da izen-emate mota hau argitaratzea.
|
231
|
+
success: Izen ematea ezin da argitaratu.
|
232
|
+
registration_types:
|
233
|
+
create:
|
234
|
+
error: Errore bat gertatu da hitzaldi honetarako inskripzio mota bat gehitzea.
|
235
|
+
success: Erregistro motak arrakastaz gehitu du konferentzia honetara.
|
236
|
+
destroy:
|
237
|
+
success: Izen-emate mota kongresu honetatik atera da.
|
238
|
+
edit:
|
239
|
+
title: Eguneratu erregistro mota.
|
240
|
+
update: eguneratzearen
|
241
|
+
new:
|
242
|
+
create: Sortu
|
243
|
+
title: Izena emateko mota berria
|
244
|
+
update:
|
245
|
+
error: Errore bat gertatu da hitzaldi honetarako izena emateko mota.
|
246
|
+
success: Izen-emate mota arrakastaz eguneratu da konferentzia honetarako.
|
210
247
|
titles:
|
211
248
|
conferences: Jardunaldiak
|
212
249
|
admin_log:
|
213
250
|
conference:
|
214
251
|
create: "%{user_name} sortutako %{resource_name} konferentzia"
|
215
252
|
publish: "%{user_name} argitaratu %{resource_name} konferentzia"
|
253
|
+
send_conference_diplomas: "%{user_name} diploma bidali %{resource_name} konferentzia erabiltzaileari"
|
216
254
|
unpublish: "%{user_name} argitaratutako %{resource_name} konferentzia"
|
217
255
|
update: "%{user_name} eguneratu %{resource_name} konferentzia"
|
256
|
+
update_diploma: "%{user_name} eguneratu diploma konfigurazio %{resource_name} konferentzia"
|
218
257
|
conference_speaker:
|
219
258
|
create: "%{user_name} hizlari %{resource_name} sortu zen %{space_name} hitzaldian"
|
220
259
|
delete: "%{user_name} kendu %{resource_name} hizlari batetik %{space_name} konferentzia"
|
@@ -223,6 +262,22 @@ eu:
|
|
223
262
|
create: "%{user_name} gonbidatu %{resource_name} %{space_name} konferentzia"
|
224
263
|
delete: "%{user_name} kendu erabiltzaileak %{resource_name} tik %{space_name} konferentzia"
|
225
264
|
update: "%{user_name} %{resource_name} rola aldatu zen %{space_name} hitzaldian"
|
265
|
+
conferences:
|
266
|
+
conference_registration:
|
267
|
+
confirm: "%{user_name} Kongresuko matrikula bat baieztatu da %{resource_name} Kongresuan"
|
268
|
+
partner:
|
269
|
+
create: "%{user_name} sortu %{resource_name} %{space_name} konferentzia"
|
270
|
+
delete: "%{user_name} kendu erabiltzaileak %{resource_name} tik %{space_name} konferentzia"
|
271
|
+
update: "%{user_name} eguneratzen %{resource_name} parte %{space_name} konferentzia"
|
272
|
+
registration_type:
|
273
|
+
create: "%{user_name} sortutako %{resource_name} matrikula mota %{space_name} konferentzia"
|
274
|
+
publish: "%{user_name} argitaratutako %{resource_name} izen-emate mota %{space_name} biltzarrean"
|
275
|
+
unpublish: "%{user_name} argitaratutako %{resource_name} izen-emate mota %{space_name} hitzaldian argitaratu gabe"
|
276
|
+
update: "%{user_name} eguneratu zen %{resource_name} izen-emate mota %{space_name} hitzaldian"
|
277
|
+
media_link:
|
278
|
+
create: "%{user_name} sortutako %{resource_name} media lotura honetan %{space_name} konferentzia"
|
279
|
+
delete: "%{user_name} kendu du %{resource_name} -tik media link %{space_name} konferentzia"
|
280
|
+
update: "%{user_name} eguneratu %{resource_name} komunikabideen arteko %{space_name} esteka"
|
226
281
|
conference_program:
|
227
282
|
index:
|
228
283
|
title: Programa
|
@@ -276,25 +331,42 @@ eu:
|
|
276
331
|
one: Izena eman da.
|
277
332
|
other: Dena den, %{count} matrikulazioak.
|
278
333
|
slug_help: 'URL slugs erabiltzen dira konferentzia honetara bidaltzen dituzten URLak sortzeko. Letrak, zenbakiak eta marratxoak soilik onartzen ditu eta letra batekin hasi behar duzu. Adibidea: %{url}'
|
334
|
+
diplomas:
|
335
|
+
edit:
|
336
|
+
save: Save
|
337
|
+
title: Diploma
|
279
338
|
invite_join_conference_mailer:
|
280
339
|
invite:
|
281
340
|
decline: Baztertu gonbidapena '%{conference_title}'
|
282
341
|
invited_you_to_join_a_conference: "%{invited_by} gonbidatu zaitu hitzaldi batean %{application}. Beheko esteken bidez baztertu edo onartu dezakezu."
|
283
|
-
|
342
|
+
registration: '''%{conference_title}'' izen-ematea'
|
284
343
|
partners:
|
285
344
|
index:
|
286
345
|
title: Bazkideak
|
346
|
+
registration_types:
|
347
|
+
form:
|
348
|
+
select_conference_meetings: Aukeratu konferentzia bilerak
|
349
|
+
index:
|
350
|
+
title: Izen-emate motak
|
351
|
+
send_conference_diploma_mailer:
|
352
|
+
diploma:
|
353
|
+
diploma_html: Biltzarraren diploma aurkituko duzu <a href="%{url}">%{title}</a> eranskinetan.
|
354
|
+
diploma_user:
|
355
|
+
attendance_verified_by: Egiaztatua egiaztatuta
|
356
|
+
certificate_of_attendance: Asistentzia ziurtagiria
|
357
|
+
certificate_of_attendance_description: Hau dela ziurtatzeko <strong>%{user}</strong> parte hartu du eta parte hartu ere <strong>%{title}</strong> etan ospatuko <strong>%{location}</strong> an <strong>%{start} - %{end}</strong>
|
358
|
+
send_diploma:
|
359
|
+
error: Arazo bat izan da konferentzia diploma bidaltzean.
|
360
|
+
success: Kongresuko Diplomak behar bezala bidali dira
|
287
361
|
conference:
|
288
362
|
registration_confirm:
|
289
363
|
cancel: Utzi
|
290
364
|
confirm: Berretsi
|
291
365
|
show:
|
366
|
+
free: Free
|
292
367
|
going: joatean
|
293
|
-
join: Parte hartu Kongresua
|
294
368
|
no_slots_available: Ez dago slotarik erabilgarri
|
295
|
-
|
296
|
-
one: 1 zutoina geratzen da
|
297
|
-
other: "%{count} slot geratzen dira"
|
369
|
+
registration: Izen-ematea
|
298
370
|
conference_program:
|
299
371
|
program_meeting:
|
300
372
|
content: Edukia
|
@@ -307,7 +379,12 @@ eu:
|
|
307
379
|
conference_registration_mailer:
|
308
380
|
confirmation:
|
309
381
|
confirmed_html: Zure hitzaldirako izena emateko <a href="%{url}">%{title}</a> baieztatu da.
|
310
|
-
|
382
|
+
details_1: '%{registration_type} motako hitzaldian erregistratuta zaude. %{price} kostua dauka eta ondorengo ekitaldietara jo dezakezu:'
|
383
|
+
details_2: Biltzarraren xehetasunak eranskinean aurkituko dituzu.
|
384
|
+
pending_validation:
|
385
|
+
confirmation_pending: Berrespena jasoko duzu laster
|
386
|
+
details: 'To You erregistratu %{registration_type} motako kostua batekin %{price} eta ondorengo gertaerak joateko daiteke:'
|
387
|
+
pending_html: Zure hitzaldirako izena emateko <a href="%{url}">%{title}</a> zain dago berresteko.
|
311
388
|
conference_registrations:
|
312
389
|
create:
|
313
390
|
invalid: Arazo bat izan da konferentzia honetan.
|
@@ -334,16 +411,12 @@ eu:
|
|
334
411
|
speakers: Hizlariak
|
335
412
|
conferences:
|
336
413
|
partners:
|
337
|
-
collaborators:
|
338
|
-
main_promotors:
|
414
|
+
collaborators: Bazkideak
|
415
|
+
main_promotors: Antolatzaileak
|
339
416
|
show:
|
340
|
-
|
341
|
-
login_as: '%{name} <%{email}> saioan zaude'
|
417
|
+
login_as: '%{name} <%{email}> gisa erregistratuta zaude'
|
342
418
|
make_conference_registration: 'Egin zure izen ematea hitzaldian:'
|
343
|
-
new_user: Erabiltzaile berria?
|
344
419
|
register: Eman izena
|
345
|
-
sign_in: Saio honetan izena emateko saioa
|
346
|
-
sign_up: Erregistratu dohainik erregistroan erabakitzeko
|
347
420
|
content_blocks:
|
348
421
|
highlighted_conferences:
|
349
422
|
name: Nabarmendutako konferentziak
|
@@ -353,14 +426,20 @@ eu:
|
|
353
426
|
conference_registration_mailer:
|
354
427
|
confirmation:
|
355
428
|
subject: Zure hitzaldiko erregistroa baieztatu da
|
429
|
+
pending_validation:
|
430
|
+
subject: Zure hitzaldiko erregistroa baieztatu behar da
|
356
431
|
invite_join_conference_mailer:
|
357
432
|
invite:
|
358
433
|
subject: Hitzaldi baterako gonbidapena
|
434
|
+
send_conference_diploma_mailer:
|
435
|
+
diploma:
|
436
|
+
subject: Zure hitzaldiko diploma bidali da
|
359
437
|
models:
|
360
438
|
conference_invite:
|
361
439
|
fields:
|
362
440
|
email: Emaila
|
363
441
|
name: izena
|
442
|
+
registration_type: Izen-emate mota
|
364
443
|
sent_at: Bidalitakoan
|
365
444
|
status: Egoera
|
366
445
|
status:
|
@@ -371,6 +450,11 @@ eu:
|
|
371
450
|
fields:
|
372
451
|
email: Emaila
|
373
452
|
name: izena
|
453
|
+
registration_type: Izen-emate mota
|
454
|
+
state: Estatu
|
455
|
+
states:
|
456
|
+
confirmed: baieztatu
|
457
|
+
pending: Zain
|
374
458
|
pages:
|
375
459
|
home:
|
376
460
|
highlighted_conferences:
|
@@ -383,6 +467,18 @@ eu:
|
|
383
467
|
photos_list:
|
384
468
|
show:
|
385
469
|
related_photos: Argazkiak
|
470
|
+
registration_types:
|
471
|
+
index:
|
472
|
+
choose_an_option: 'Aukeratu zure erregistro-aukera:'
|
473
|
+
login_as: '%{name} <%{email}> gisa erregistratuta zaude'
|
474
|
+
register: Eman izena
|
475
|
+
title: Izen-emate motak
|
476
|
+
shared:
|
477
|
+
conference_user_login:
|
478
|
+
already_account: Dagoeneko kontu bat duzu erabakitzeko?
|
479
|
+
new_user: Erabiltzaile berria?
|
480
|
+
sign_in: Saioa hasteko erregistratzeko saioa
|
481
|
+
sign_up: Sortu kontua erabakitzeko biltzea erregistratzeko
|
386
482
|
show:
|
387
483
|
details: Xehetasunak
|
388
484
|
introduction: Sarrera
|
@@ -409,6 +505,10 @@ eu:
|
|
409
505
|
votes_count: Botoak
|
410
506
|
events:
|
411
507
|
conferences:
|
508
|
+
conference_registration_validation_pending:
|
509
|
+
notification_title: Zure hitzaldirako izena emateko <a href="%{resource_url}">%{resource_title}</a> zain dago berresteko.
|
510
|
+
conference_registration_confirmed:
|
511
|
+
notification_title: Zure hitzaldirako izena emateko <a href="%{resource_url}">%{resource_title}</a> baieztatu da.
|
412
512
|
conference_registrations_over_percentage:
|
413
513
|
email_intro: Biltzarra "%{resource_title}" okupatutako slotak% %{percentage}baino gehiago dira.
|
414
514
|
email_outro: Jakinarazpen hau jaso duzu, hitzaldiko parte hartzaileen gunea delako.
|
@@ -424,6 +524,11 @@ eu:
|
|
424
524
|
email_outro: Jakinarazpen hau jaso duzu delako "%{resource_title}" konferentzia jarraituz. Aurreko esteka estekan jarrai dezakezu.
|
425
525
|
email_subject: Kongresuaren "%{resource_title}" erregistroak gaitu ditu.
|
426
526
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> bilkurak erregistroak gaitu ditu.
|
527
|
+
upcoming_conference:
|
528
|
+
email_intro: '"%{resource_title}" konferentzia egiten ari da 2 egunetan. Bere orrialdearen azalpena irakur dezakezu:'
|
529
|
+
email_outro: Jakinarazpen hau jaso duzu delako "%{resource_title}" konferentzia jarraituz. Aurreko esteka estekan jarrai dezakezu.
|
530
|
+
email_subject: Biltzarra "%{resource_title}" dator!
|
531
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferentzia 2 egunetan egongo da.
|
427
532
|
log:
|
428
533
|
value_types:
|
429
534
|
conference_presenter:
|
@@ -440,6 +545,8 @@ eu:
|
|
440
545
|
subject: Hitzaldi baterako gonbidapena
|
441
546
|
layouts:
|
442
547
|
decidim:
|
548
|
+
conference_hero:
|
549
|
+
register: Eman izena
|
443
550
|
conference_widgets:
|
444
551
|
show:
|
445
552
|
take_part: Parte hartu
|
@@ -460,5 +567,4 @@ eu:
|
|
460
567
|
conference_partners_menu_item: Bazkideak
|
461
568
|
conference_speaker_menu_item: Hizlariak
|
462
569
|
media: Media
|
463
|
-
unfold: Zabaldu
|
464
570
|
venues: Egoitzak
|