decidim-conferences 0.15.2 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- 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 +127 -21
- 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 +128 -22
- data/config/locales/fi.yml +128 -22
- 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 +125 -20
- 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 +126 -20
- data/config/locales/tr-TR.yml +125 -22
- 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 +92 -23
- 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/de.yml
CHANGED
@@ -44,11 +44,13 @@ de:
|
|
44
44
|
other: Konferenzsprecher
|
45
45
|
decidim/conference_user_role:
|
46
46
|
one: Konferenzbenutzerrolle
|
47
|
-
other:
|
47
|
+
other: Konferenzbenutzerrolle
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
51
|
+
confirm: Bestätigen
|
51
52
|
new_conference: Neue Konferenz
|
53
|
+
send_diplomas: Diplome senden
|
52
54
|
conference_copies:
|
53
55
|
new:
|
54
56
|
copy: Kopieren
|
@@ -61,6 +63,10 @@ de:
|
|
61
63
|
destroy:
|
62
64
|
error: Beim Aufheben der Veröffentlichung dieser Konferenz ist ein Fehler aufgetreten.
|
63
65
|
success: Konferenz wurde nicht erfolgreich veröffentlicht.
|
66
|
+
conference_registration:
|
67
|
+
confirm:
|
68
|
+
error: Bei der Bestätigung dieser Konferenzanmeldung ist ein Fehler aufgetreten.
|
69
|
+
success: Konferenzanmeldung erfolgreich bestätigt.
|
64
70
|
conference_speakers:
|
65
71
|
create:
|
66
72
|
error: Beim Hinzufügen eines Sprechers für diese Konferenz ist ein Fehler aufgetreten.
|
@@ -99,8 +105,6 @@ de:
|
|
99
105
|
create:
|
100
106
|
error: Beim Erstellen einer neuen Konferenz ist ein Fehler aufgetreten.
|
101
107
|
success: Konferenz erfolgreich erstellt
|
102
|
-
destroy:
|
103
|
-
success: Konferenz wurde erfolgreich gelöscht.
|
104
108
|
edit:
|
105
109
|
update: Aktualisieren
|
106
110
|
exports:
|
@@ -145,14 +149,17 @@ de:
|
|
145
149
|
attachments: Anlagen
|
146
150
|
categories: Kategorien
|
147
151
|
components: Komponenten
|
148
|
-
conference_admins:
|
149
|
-
conference_invites:
|
150
|
-
|
151
|
-
|
152
|
+
conference_admins: Konferenzbenutzer
|
153
|
+
conference_invites: Lädt ein
|
154
|
+
conference_speakers: Lautsprecher
|
155
|
+
diploma: Diplom
|
152
156
|
info: Info
|
153
157
|
media_links: Medienlinks
|
154
158
|
moderations: Moderationen
|
155
159
|
partners: Partner
|
160
|
+
registration_types: Registrierungsarten
|
161
|
+
registrations: Registrierungen
|
162
|
+
user_registrations: Benutzerregistrierungen
|
156
163
|
models:
|
157
164
|
conference:
|
158
165
|
fields:
|
@@ -192,6 +199,14 @@ de:
|
|
192
199
|
types:
|
193
200
|
collaborator: Mitarbeiter
|
194
201
|
main_promotor: Hauptförderer
|
202
|
+
registration_type:
|
203
|
+
fields:
|
204
|
+
conference_meetings: Konferenzsitzungen
|
205
|
+
price: Preis
|
206
|
+
registrations_count: Registrierungen zählen
|
207
|
+
title: Titel
|
208
|
+
weight: Gewicht
|
209
|
+
name: Registrierungstyp
|
195
210
|
partners:
|
196
211
|
create:
|
197
212
|
error: Beim Hinzufügen eines Partners für diese Konferenz ist ein Fehler aufgetreten.
|
@@ -207,14 +222,38 @@ de:
|
|
207
222
|
update:
|
208
223
|
error: Bei einem Fehler ist ein Partner für diese Konferenz aktualisiert worden.
|
209
224
|
success: Der Partner wurde für diese Konferenz erfolgreich aktualisiert.
|
225
|
+
registration_type_publications:
|
226
|
+
create:
|
227
|
+
error: Beim Veröffentlichen dieses Registrierungstyps ist ein Fehler aufgetreten.
|
228
|
+
success: Die Registrierung wurde erfolgreich veröffentlicht.
|
229
|
+
destroy:
|
230
|
+
error: Beim Aufheben der Veröffentlichung dieses Registrierungstyps ist ein Fehler aufgetreten.
|
231
|
+
success: Registrierungstyp nicht erfolgreich veröffentlicht.
|
232
|
+
registration_types:
|
233
|
+
create:
|
234
|
+
error: Beim Hinzufügen eines Registrierungstyps für diese Konferenz ist ein Fehler aufgetreten.
|
235
|
+
success: Die Registrierung wurde erfolgreich zu dieser Konferenz hinzugefügt.
|
236
|
+
destroy:
|
237
|
+
success: Der Registrierungstyp wurde erfolgreich von dieser Konferenz entfernt.
|
238
|
+
edit:
|
239
|
+
title: Registrierungsart aktualisieren
|
240
|
+
update: Aktualisieren
|
241
|
+
new:
|
242
|
+
create: Erstellen
|
243
|
+
title: Neuer Registrierungstyp
|
244
|
+
update:
|
245
|
+
error: Bei einem Fehler ist ein Registrierungstyp für diese Konferenz aktualisiert worden.
|
246
|
+
success: Die Registrierung wurde für diese Konferenz erfolgreich aktualisiert.
|
210
247
|
titles:
|
211
248
|
conferences: Konferenzen
|
212
249
|
admin_log:
|
213
250
|
conference:
|
214
251
|
create: "%{user_name} erstellt die %{resource_name} Konferenz"
|
215
252
|
publish: "%{user_name} veröffentlichte die %{resource_name} Konferenz"
|
253
|
+
send_conference_diplomas: "%{user_name} Senden Sie Diplome an die %{resource_name} Konferenzbenutzer"
|
216
254
|
unpublish: "%{user_name} unveröffentlichte die %{resource_name} Konferenz"
|
217
255
|
update: "%{user_name} hat die %{resource_name} Konferenz aktualisiert"
|
256
|
+
update_diploma: "%{user_name} hat die Konferenz für Diplomkonfiguration %{resource_name} aktualisiert"
|
218
257
|
conference_speaker:
|
219
258
|
create: "%{user_name} hat den %{resource_name} Sprecher in der %{space_name} Konferenz erstellt"
|
220
259
|
delete: "%{user_name} entfernte den %{resource_name} Sprecher von der %{space_name} Konferenz"
|
@@ -223,6 +262,22 @@ de:
|
|
223
262
|
create: "%{user_name} lud %{resource_name} zu der %{space_name} Konferenz ein"
|
224
263
|
delete: "%{user_name} entfernte den Benutzer %{resource_name} von der %{space_name} Konferenz"
|
225
264
|
update: "%{user_name} hat die Rolle von %{resource_name} in der %{space_name} Konferenz geändert"
|
265
|
+
conferences:
|
266
|
+
conference_registration:
|
267
|
+
confirm: "%{user_name} bestätigte eine Konferenz Anmeldung in %{resource_name} Konferenz"
|
268
|
+
partner:
|
269
|
+
create: "%{user_name} hat %{resource_name} zur %{space_name} Konferenz erstellt"
|
270
|
+
delete: "%{user_name} entfernte den Benutzer %{resource_name} von der %{space_name} Konferenz"
|
271
|
+
update: "%{user_name} aktualisiert %{resource_name} in der %{space_name} Konferenz"
|
272
|
+
registration_type:
|
273
|
+
create: "%{user_name} hat den %{resource_name} Registrierungstyp in der %{space_name} Konferenz erstellt"
|
274
|
+
publish: "%{user_name} hat die %{resource_name} Anmeldeart in der %{space_name} Konferenz veröffentlicht"
|
275
|
+
unpublish: "%{user_name} Anmeldetyp %{resource_name} in der %{space_name} Konferenz nicht veröffentlicht"
|
276
|
+
update: "%{user_name} Eintragstyp %{resource_name} in der %{space_name} Konferenz aktualisiert"
|
277
|
+
media_link:
|
278
|
+
create: "%{user_name} hat den %{resource_name} Medienlink in der %{space_name} Konferenz erstellt"
|
279
|
+
delete: "%{user_name} den Medienlink %{resource_name} von der %{space_name} Konferenz entfernt"
|
280
|
+
update: "%{user_name} hat den %{resource_name} Medienlink in der %{space_name} Konferenz aktualisiert"
|
226
281
|
conference_program:
|
227
282
|
index:
|
228
283
|
title: Programm
|
@@ -276,25 +331,42 @@ de:
|
|
276
331
|
one: Es gab 1 Registrierung.
|
277
332
|
other: Es gab %{count} Registrierungen.
|
278
333
|
slug_help: 'URL-Slugs werden verwendet, um URLs zu generieren, die auf diese Konferenz verweisen. Akzeptiert nur Buchstaben, Zahlen und Bindestriche und muss mit einem Buchstaben beginnen. Beispiel: %{url}'
|
334
|
+
diplomas:
|
335
|
+
edit:
|
336
|
+
save: sparen
|
337
|
+
title: Diplom
|
279
338
|
invite_join_conference_mailer:
|
280
339
|
invite:
|
281
340
|
decline: Einladung '%{conference_title}' ablehnen
|
282
341
|
invited_you_to_join_a_conference: "%{invited_by} hat Sie eingeladen, an einer Konferenz um %{application}teilzunehmen. Sie können dies über die unten stehenden Links ablehnen oder akzeptieren."
|
283
|
-
|
342
|
+
registration: Registrierung für '%{conference_title}'
|
284
343
|
partners:
|
285
344
|
index:
|
286
345
|
title: Partner
|
346
|
+
registration_types:
|
347
|
+
form:
|
348
|
+
select_conference_meetings: Konferenzmeetings auswählen
|
349
|
+
index:
|
350
|
+
title: Registrierungsarten
|
351
|
+
send_conference_diploma_mailer:
|
352
|
+
diploma:
|
353
|
+
diploma_html: Das Diplom für die Konferenz <a href="%{url}">%{title}</a> in den Anlagen.
|
354
|
+
diploma_user:
|
355
|
+
attendance_verified_by: Anwesenheit überprüft durch
|
356
|
+
certificate_of_attendance: Teilnahmebestätigung
|
357
|
+
certificate_of_attendance_description: Hiermit wird bestätigt, dass <strong>%{user}</strong> an den <strong>%{title}</strong> teilgenommen hat, die am <strong>%{location}</strong> am <strong>%{start} - %{end}</strong>abgehalten wurden
|
358
|
+
send_diploma:
|
359
|
+
error: Beim Senden der Konferenzdiplome ist ein Problem aufgetreten.
|
360
|
+
success: Konferenzdiplome korrekt gesendet
|
287
361
|
conference:
|
288
362
|
registration_confirm:
|
289
363
|
cancel: Stornieren
|
290
364
|
confirm: Bestätigen
|
291
365
|
show:
|
366
|
+
free: Kostenlos
|
292
367
|
going: Gehen
|
293
|
-
join: Konferenz beitreten
|
294
368
|
no_slots_available: Keine Steckplätze verfügbar
|
295
|
-
|
296
|
-
one: 1 Steckplatz übrig
|
297
|
-
other: "%{count} freie Plätze"
|
369
|
+
registration: Anmeldung
|
298
370
|
conference_program:
|
299
371
|
program_meeting:
|
300
372
|
content: Inhalt
|
@@ -307,7 +379,12 @@ de:
|
|
307
379
|
conference_registration_mailer:
|
308
380
|
confirmation:
|
309
381
|
confirmed_html: Ihre Anmeldung zur Konferenz <a href="%{url}">%{title}</a> wurde bestätigt.
|
310
|
-
|
382
|
+
details_1: 'Sie sind mit dem Typ %{registration_type} zur Konferenz angemeldet. Es kostet %{price} und Sie können an folgenden Veranstaltungen teilnehmen:'
|
383
|
+
details_2: Sie finden die Details der Konferenz im Anhang.
|
384
|
+
pending_validation:
|
385
|
+
confirmation_pending: Sie erhalten in Kürze eine Bestätigung
|
386
|
+
details: 'Sie haben sich für %{registration_type} Typ mit einem Preis von %{price} angemeldet und können an den folgenden Veranstaltungen teilnehmen:'
|
387
|
+
pending_html: Ihre Anmeldung zur Konferenz <a href="%{url}">%{title}</a> steht noch aus.
|
311
388
|
conference_registrations:
|
312
389
|
create:
|
313
390
|
invalid: Bei dieser Konferenz ist ein Problem aufgetreten.
|
@@ -334,16 +411,12 @@ de:
|
|
334
411
|
speakers: Lautsprecher
|
335
412
|
conferences:
|
336
413
|
partners:
|
337
|
-
collaborators:
|
338
|
-
main_promotors:
|
414
|
+
collaborators: Partner
|
415
|
+
main_promotors: Organisatoren
|
339
416
|
show:
|
340
|
-
|
341
|
-
login_as: Sie melden sich als %{name} <%{email}> an
|
417
|
+
login_as: Sie sind als %{name} <%{email}> angemeldet
|
342
418
|
make_conference_registration: 'Machen Sie Ihre Registrierung in der Konferenz:'
|
343
|
-
new_user: Neuer Benutzer?
|
344
419
|
register: Registrieren
|
345
|
-
sign_in: Melden Sie sich an, um sich bei dieser Konferenz anzumelden
|
346
|
-
sign_up: Registrieren Sie sich kostenlos in Decidim, um sich zu registrieren
|
347
420
|
content_blocks:
|
348
421
|
highlighted_conferences:
|
349
422
|
name: Hervorgehobene Konferenzen
|
@@ -353,14 +426,20 @@ de:
|
|
353
426
|
conference_registration_mailer:
|
354
427
|
confirmation:
|
355
428
|
subject: Die Registrierung Ihrer Konferenz wurde bestätigt
|
429
|
+
pending_validation:
|
430
|
+
subject: Die Anmeldung Ihrer Konferenz steht noch aus
|
356
431
|
invite_join_conference_mailer:
|
357
432
|
invite:
|
358
433
|
subject: Einladung zur Teilnahme an einer Konferenz
|
434
|
+
send_conference_diploma_mailer:
|
435
|
+
diploma:
|
436
|
+
subject: Das Diplom Ihrer Konferenz wurde gesendet
|
359
437
|
models:
|
360
438
|
conference_invite:
|
361
439
|
fields:
|
362
440
|
email: Email
|
363
441
|
name: Name
|
442
|
+
registration_type: Registrierungstyp
|
364
443
|
sent_at: Gesendet um
|
365
444
|
status: Status
|
366
445
|
status:
|
@@ -371,6 +450,11 @@ de:
|
|
371
450
|
fields:
|
372
451
|
email: Email
|
373
452
|
name: Name
|
453
|
+
registration_type: Registrierungstyp
|
454
|
+
state: Zustand
|
455
|
+
states:
|
456
|
+
confirmed: Bestätigt
|
457
|
+
pending: steht aus
|
374
458
|
pages:
|
375
459
|
home:
|
376
460
|
highlighted_conferences:
|
@@ -383,6 +467,18 @@ de:
|
|
383
467
|
photos_list:
|
384
468
|
show:
|
385
469
|
related_photos: Fotos
|
470
|
+
registration_types:
|
471
|
+
index:
|
472
|
+
choose_an_option: 'Wählen Sie Ihre Registrierungsoption:'
|
473
|
+
login_as: Sie sind als %{name} <%{email}> angemeldet
|
474
|
+
register: Registrieren
|
475
|
+
title: Registrierungsarten
|
476
|
+
shared:
|
477
|
+
conference_user_login:
|
478
|
+
already_account: Haben Sie schon einen Account in Decidim?
|
479
|
+
new_user: Neuer Benutzer?
|
480
|
+
sign_in: Melden Sie sich an, um sich für die Konferenz zu registrieren
|
481
|
+
sign_up: Erstellen Sie ein Konto in decidim, um sich für die Konferenz anzumelden
|
386
482
|
show:
|
387
483
|
details: Einzelheiten
|
388
484
|
introduction: Einführung
|
@@ -409,6 +505,10 @@ de:
|
|
409
505
|
votes_count: Stimmen
|
410
506
|
events:
|
411
507
|
conferences:
|
508
|
+
conference_registration_validation_pending:
|
509
|
+
notification_title: Ihre Anmeldung für die Konferenz <a href="%{resource_url}">%{resource_title}</a> steht noch aus.
|
510
|
+
conference_registration_confirmed:
|
511
|
+
notification_title: Ihre Anmeldung für die Konferenz <a href="%{resource_url}">%{resource_title}</a> wurde bestätigt.
|
412
512
|
conference_registrations_over_percentage:
|
413
513
|
email_intro: Die "%{resource_title}" Konferenz belegt Slots sind über %{percentage}%.
|
414
514
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator des Teilnahmebereichs der Konferenz sind.
|
@@ -424,6 +524,11 @@ de:
|
|
424
524
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie die Konferenz "%{resource_title}" verfolgen. Sie können es aus dem vorherigen Link entfernen.
|
425
525
|
email_subject: Die "%{resource_title}" -Konferenz hat Registrierungen ermöglicht.
|
426
526
|
notification_title: Die <a href="%{resource_path}">%{resource_title}</a> Konferenz hat Registrierungen ermöglicht.
|
527
|
+
upcoming_conference:
|
528
|
+
email_intro: 'Die "%{resource_title}" -Konferenz findet in 2 Tagen statt. Sie können die Beschreibung von ihrer Seite lesen:'
|
529
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie die Konferenz "%{resource_title}" verfolgen. Sie können es aus dem vorherigen Link aufheben.
|
530
|
+
email_subject: Die "%{resource_title}" -Konferenz kommt!
|
531
|
+
notification_title: Die <a href="%{resource_path}">%{resource_title}</a> Konferenz kommt in 2 Tagen.
|
427
532
|
log:
|
428
533
|
value_types:
|
429
534
|
conference_presenter:
|
@@ -440,6 +545,8 @@ de:
|
|
440
545
|
subject: Einladung zur Teilnahme an einer Konferenz
|
441
546
|
layouts:
|
442
547
|
decidim:
|
548
|
+
conference_hero:
|
549
|
+
register: Registrieren
|
443
550
|
conference_widgets:
|
444
551
|
show:
|
445
552
|
take_part: Teilnehmen
|
@@ -460,5 +567,4 @@ de:
|
|
460
567
|
conference_partners_menu_item: Partner
|
461
568
|
conference_speaker_menu_item: Lautsprecher
|
462
569
|
media: Medien
|
463
|
-
unfold: Entfalten
|
464
570
|
venues: Veranstaltungsorte
|
data/config/locales/en.yml
CHANGED
@@ -43,12 +43,14 @@ en:
|
|
43
43
|
one: Conference speaker
|
44
44
|
other: Conference speakers
|
45
45
|
decidim/conference_user_role:
|
46
|
-
one:
|
46
|
+
one: Conference user role
|
47
47
|
other: Conference user roles
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
51
|
+
confirm: Confirm
|
51
52
|
new_conference: New Conference
|
53
|
+
send_diplomas: Send Diplomas
|
52
54
|
conference_copies:
|
53
55
|
new:
|
54
56
|
copy: Copy
|
@@ -61,6 +63,10 @@ en:
|
|
61
63
|
destroy:
|
62
64
|
error: There was an error unpublishing this conference.
|
63
65
|
success: Conference unpublished successfully.
|
66
|
+
conference_registration:
|
67
|
+
confirm:
|
68
|
+
error: There was an error when confirm this conference registration.
|
69
|
+
success: Conference registration confirmed successfully.
|
64
70
|
conference_speakers:
|
65
71
|
create:
|
66
72
|
error: There was an error adding a speaker for this conference.
|
@@ -99,8 +105,6 @@ en:
|
|
99
105
|
create:
|
100
106
|
error: There was an error creating a new conference.
|
101
107
|
success: Conference created successfully.
|
102
|
-
destroy:
|
103
|
-
success: Conference deleted successfully.
|
104
108
|
edit:
|
105
109
|
update: Update
|
106
110
|
exports:
|
@@ -145,14 +149,17 @@ en:
|
|
145
149
|
attachments: Attachments
|
146
150
|
categories: Categories
|
147
151
|
components: Components
|
148
|
-
conference_admins: Conference
|
149
|
-
conference_invites:
|
150
|
-
|
151
|
-
|
152
|
+
conference_admins: Conference users
|
153
|
+
conference_invites: Invites
|
154
|
+
conference_speakers: Speakers
|
155
|
+
diploma: Diploma
|
152
156
|
info: Info
|
153
157
|
media_links: Media Links
|
154
158
|
moderations: Moderations
|
155
159
|
partners: Partners
|
160
|
+
registration_types: Registration Types
|
161
|
+
registrations: Registrations
|
162
|
+
user_registrations: User Registrations
|
156
163
|
models:
|
157
164
|
conference:
|
158
165
|
fields:
|
@@ -192,6 +199,14 @@ en:
|
|
192
199
|
types:
|
193
200
|
collaborator: Collaborator
|
194
201
|
main_promotor: Main promotor
|
202
|
+
registration_type:
|
203
|
+
fields:
|
204
|
+
conference_meetings: Conference meetings
|
205
|
+
price: Price
|
206
|
+
registrations_count: Registrations count
|
207
|
+
title: Title
|
208
|
+
weight: Weight
|
209
|
+
name: Registration type
|
195
210
|
partners:
|
196
211
|
create:
|
197
212
|
error: There was an error adding a partner for this conference.
|
@@ -207,14 +222,38 @@ en:
|
|
207
222
|
update:
|
208
223
|
error: There was an error updated a partner for this conference.
|
209
224
|
success: Partner updated successfully for this conference.
|
225
|
+
registration_type_publications:
|
226
|
+
create:
|
227
|
+
error: There was an error publishing this registration type.
|
228
|
+
success: Registration type published successfully.
|
229
|
+
destroy:
|
230
|
+
error: There was an error unpublishing this registration type.
|
231
|
+
success: Registration type unpublished successfully.
|
232
|
+
registration_types:
|
233
|
+
create:
|
234
|
+
error: There was an error adding a registration type for this conference.
|
235
|
+
success: Registration type added successfully to this conference.
|
236
|
+
destroy:
|
237
|
+
success: Registration type removed successfully from this conference.
|
238
|
+
edit:
|
239
|
+
title: Update registration type.
|
240
|
+
update: Update
|
241
|
+
new:
|
242
|
+
create: Create
|
243
|
+
title: New registration type
|
244
|
+
update:
|
245
|
+
error: There was an error updated a registration type for this conference.
|
246
|
+
success: Registration type updated successfully for this conference.
|
210
247
|
titles:
|
211
248
|
conferences: Conferences
|
212
249
|
admin_log:
|
213
250
|
conference:
|
214
251
|
create: "%{user_name} created the %{resource_name} conference"
|
215
252
|
publish: "%{user_name} published the %{resource_name} conference"
|
253
|
+
send_conference_diplomas: "%{user_name} send diplomas to the %{resource_name} conference users"
|
216
254
|
unpublish: "%{user_name} unpublished the %{resource_name} conference"
|
217
255
|
update: "%{user_name} updated the %{resource_name} conference"
|
256
|
+
update_diploma: "%{user_name} updated the diploma configuration %{resource_name} conference"
|
218
257
|
conference_speaker:
|
219
258
|
create: "%{user_name} created the %{resource_name} speaker in the %{space_name} conference"
|
220
259
|
delete: "%{user_name} removed the %{resource_name} speaker from the %{space_name} conference"
|
@@ -223,6 +262,22 @@ en:
|
|
223
262
|
create: "%{user_name} invited %{resource_name} to the %{space_name} conference"
|
224
263
|
delete: "%{user_name} removed the user %{resource_name} from the %{space_name} conference"
|
225
264
|
update: "%{user_name} changed the role of %{resource_name} in the %{space_name} conference"
|
265
|
+
conferences:
|
266
|
+
conference_registration:
|
267
|
+
confirm: "%{user_name} confirmed a conference registration in %{resource_name} conference"
|
268
|
+
partner:
|
269
|
+
create: "%{user_name} created %{resource_name} to the %{space_name} conference"
|
270
|
+
delete: "%{user_name} removed the user %{resource_name} from the %{space_name} conference"
|
271
|
+
update: "%{user_name} updated %{resource_name} in the %{space_name} conference"
|
272
|
+
registration_type:
|
273
|
+
create: "%{user_name} created the %{resource_name} registration type in the %{space_name} conference"
|
274
|
+
publish: "%{user_name} published the %{resource_name} registration type in the %{space_name} conference"
|
275
|
+
unpublish: "%{user_name} unpublished the %{resource_name} registration type in the %{space_name} conference"
|
276
|
+
update: "%{user_name} updated the %{resource_name} registration type in the %{space_name} conference"
|
277
|
+
media_link:
|
278
|
+
create: "%{user_name} created the %{resource_name} media link in the %{space_name} conference"
|
279
|
+
delete: "%{user_name} removed the %{resource_name} media link from the %{space_name} conference"
|
280
|
+
update: "%{user_name} updated the %{resource_name} media link in the %{space_name} conference"
|
226
281
|
conference_program:
|
227
282
|
index:
|
228
283
|
title: Program
|
@@ -276,25 +331,42 @@ en:
|
|
276
331
|
one: There has been 1 registration.
|
277
332
|
other: There has been %{count} registrations.
|
278
333
|
slug_help: 'URL slugs are used to generate the URLs that point to this conference. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
334
|
+
diplomas:
|
335
|
+
edit:
|
336
|
+
save: Save
|
337
|
+
title: Diploma
|
279
338
|
invite_join_conference_mailer:
|
280
339
|
invite:
|
281
340
|
decline: Decline invitation '%{conference_title}'
|
282
341
|
invited_you_to_join_a_conference: "%{invited_by} has invited you to join a conference at %{application}. You can decline or accept it through the links below."
|
283
|
-
|
342
|
+
registration: Registration for '%{conference_title}'
|
284
343
|
partners:
|
285
344
|
index:
|
286
345
|
title: Partners
|
346
|
+
registration_types:
|
347
|
+
form:
|
348
|
+
select_conference_meetings: Select conference meetings
|
349
|
+
index:
|
350
|
+
title: Registration types
|
351
|
+
send_conference_diploma_mailer:
|
352
|
+
diploma:
|
353
|
+
diploma_html: You will be find the diploma for the conference <a href="%{url}">%{title}</a> in the attachments.
|
354
|
+
diploma_user:
|
355
|
+
attendance_verified_by: Attendance verified by
|
356
|
+
certificate_of_attendance: Certificate of Attendance
|
357
|
+
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>
|
358
|
+
send_diploma:
|
359
|
+
error: There's been a problem while sending the conference diplomas.
|
360
|
+
success: Conference Diplomas sent correctly
|
287
361
|
conference:
|
288
362
|
registration_confirm:
|
289
363
|
cancel: Cancel
|
290
364
|
confirm: Confirm
|
291
365
|
show:
|
366
|
+
free: Free
|
292
367
|
going: Going
|
293
|
-
join: Join Conference
|
294
368
|
no_slots_available: No slots available
|
295
|
-
|
296
|
-
one: 1 slot remaining
|
297
|
-
other: "%{count} slots remaining"
|
369
|
+
registration: Registration
|
298
370
|
conference_program:
|
299
371
|
program_meeting:
|
300
372
|
content: Content
|
@@ -307,7 +379,12 @@ en:
|
|
307
379
|
conference_registration_mailer:
|
308
380
|
confirmation:
|
309
381
|
confirmed_html: Your registration for the conference <a href="%{url}">%{title}</a> has been confirmed.
|
310
|
-
|
382
|
+
details_1: 'You are registered to the conference with %{registration_type} type. It has a cost of %{price} and you can attend to the following events:'
|
383
|
+
details_2: You will find the conference's details in the attachment.
|
384
|
+
pending_validation:
|
385
|
+
confirmation_pending: You will receive the confirmation shortly
|
386
|
+
details: 'You have registered to %{registration_type} type with a cost of %{price} and you can attend to the following events:'
|
387
|
+
pending_html: Your registration for the conference <a href="%{url}">%{title}</a> is pending to be confirmed.
|
311
388
|
conference_registrations:
|
312
389
|
create:
|
313
390
|
invalid: There's been a problem joining this conference.
|
@@ -334,16 +411,12 @@ en:
|
|
334
411
|
speakers: Speakers
|
335
412
|
conferences:
|
336
413
|
partners:
|
337
|
-
collaborators:
|
338
|
-
main_promotors:
|
414
|
+
collaborators: Partners
|
415
|
+
main_promotors: Organizers
|
339
416
|
show:
|
340
|
-
|
341
|
-
login_as: You are login as %{name} <%{email}>
|
417
|
+
login_as: You are logged in as %{name} <%{email}>
|
342
418
|
make_conference_registration: 'Make your registration in the conference:'
|
343
|
-
new_user: New user?
|
344
419
|
register: Register
|
345
|
-
sign_in: Login to register at this conference
|
346
|
-
sign_up: Register for free in decidim to register
|
347
420
|
content_blocks:
|
348
421
|
highlighted_conferences:
|
349
422
|
name: Highlighted conferences
|
@@ -353,14 +426,20 @@ en:
|
|
353
426
|
conference_registration_mailer:
|
354
427
|
confirmation:
|
355
428
|
subject: Your conference's registration has been confirmed
|
429
|
+
pending_validation:
|
430
|
+
subject: Your conference's registration is pending to be confirmed
|
356
431
|
invite_join_conference_mailer:
|
357
432
|
invite:
|
358
433
|
subject: Invitation to join a conference
|
434
|
+
send_conference_diploma_mailer:
|
435
|
+
diploma:
|
436
|
+
subject: Your conference's diploma has been sent
|
359
437
|
models:
|
360
438
|
conference_invite:
|
361
439
|
fields:
|
362
440
|
email: Email
|
363
441
|
name: Name
|
442
|
+
registration_type: Registration type
|
364
443
|
sent_at: Sent at
|
365
444
|
status: Status
|
366
445
|
status:
|
@@ -371,6 +450,11 @@ en:
|
|
371
450
|
fields:
|
372
451
|
email: Email
|
373
452
|
name: Name
|
453
|
+
registration_type: Registration type
|
454
|
+
state: State
|
455
|
+
states:
|
456
|
+
confirmed: Confirmed
|
457
|
+
pending: Pending
|
374
458
|
pages:
|
375
459
|
home:
|
376
460
|
highlighted_conferences:
|
@@ -383,6 +467,18 @@ en:
|
|
383
467
|
photos_list:
|
384
468
|
show:
|
385
469
|
related_photos: Photos
|
470
|
+
registration_types:
|
471
|
+
index:
|
472
|
+
choose_an_option: 'Choose your registration option:'
|
473
|
+
login_as: You are logged in as %{name} <%{email}>
|
474
|
+
register: Register
|
475
|
+
title: Registration types
|
476
|
+
shared:
|
477
|
+
conference_user_login:
|
478
|
+
already_account: Do you already have an account in decidim?
|
479
|
+
new_user: New user?
|
480
|
+
sign_in: Login to register for the conference
|
481
|
+
sign_up: Create an account in decidim to register for the conference
|
386
482
|
show:
|
387
483
|
details: Details
|
388
484
|
introduction: Introduction
|
@@ -409,6 +505,10 @@ en:
|
|
409
505
|
votes_count: Votes
|
410
506
|
events:
|
411
507
|
conferences:
|
508
|
+
conference_registration_validation_pending:
|
509
|
+
notification_title: Your registration for the conference <a href="%{resource_url}">%{resource_title}</a> is pending to be confirmed.
|
510
|
+
conference_registration_confirmed:
|
511
|
+
notification_title: Your registration for the conference <a href="%{resource_url}">%{resource_title}</a> has been confirmed.
|
412
512
|
conference_registrations_over_percentage:
|
413
513
|
email_intro: The "%{resource_title}" conference occupied slots are over %{percentage}%.
|
414
514
|
email_outro: You have received this notification because you are an admin of the conference's participatory space.
|
@@ -424,6 +524,11 @@ en:
|
|
424
524
|
email_outro: You have received this notification because you are following the "%{resource_title}" conference. You can unfollow it from the previous link.
|
425
525
|
email_subject: The "%{resource_title}" conference has enabled registrations.
|
426
526
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> conference has enabled registrations.
|
527
|
+
upcoming_conference:
|
528
|
+
email_intro: 'The "%{resource_title}" conference is taking place in 2 days. You can read the description from its page:'
|
529
|
+
email_outro: You have received this notification because you are following the "%{resource_title}" conference. You can unfollow it from the previous link.
|
530
|
+
email_subject: The "%{resource_title}" conference is coming!
|
531
|
+
notification_title: The <a href="%{resource_path}">%{resource_title}</a> conference is coming in 2 days.
|
427
532
|
log:
|
428
533
|
value_types:
|
429
534
|
conference_presenter:
|
@@ -440,6 +545,8 @@ en:
|
|
440
545
|
subject: Invitation to join a conference
|
441
546
|
layouts:
|
442
547
|
decidim:
|
548
|
+
conference_hero:
|
549
|
+
register: Register
|
443
550
|
conference_widgets:
|
444
551
|
show:
|
445
552
|
take_part: Take part
|
@@ -460,5 +567,4 @@ en:
|
|
460
567
|
conference_partners_menu_item: Partners
|
461
568
|
conference_speaker_menu_item: Speakers
|
462
569
|
media: Media
|
463
|
-
unfold: Unfold
|
464
570
|
venues: Venues
|