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
@@ -63,14 +63,32 @@
|
|
63
63
|
<%= aria_selected_link_to t("conference_speakers", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.conference_speakers_path(current_participatory_space) %>
|
64
64
|
</li>
|
65
65
|
<% end %>
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
66
|
+
|
67
|
+
<% if allowed_to?(:read, :conference_invite, conference: current_participatory_space) || allowed_to?(:read, :registration_type, conference: current_participatory_space) || allowed_to?(:read, :conference_registration, conference: current_participatory_space) %>
|
68
|
+
<li>
|
69
|
+
<span class="secondary-nav__subtitle"><%= t("registrations", scope: "decidim.admin.menu.conferences_submenu") %></span>
|
70
|
+
<ul>
|
71
|
+
<% if allowed_to? :read, :registration_type, conference: current_participatory_space %>
|
72
|
+
<li <% if is_active_link?(decidim_admin_conferences.conference_registration_types_path(current_participatory_space)) %> class="is-active" <% end %>>
|
73
|
+
<%= aria_selected_link_to t("registration_types", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.conference_registration_types_path(current_participatory_space) %>
|
74
|
+
</li>
|
75
|
+
<% end %>
|
76
|
+
<% if allowed_to? :read, :conference_registration, conference: current_participatory_space %>
|
77
|
+
<li <% if is_active_link?(decidim_admin_conferences.conference_conference_registrations_path(current_participatory_space)) %> class="is-active" <% end %>>
|
78
|
+
<%= aria_selected_link_to t("user_registrations", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.conference_conference_registrations_path(current_participatory_space) %>
|
79
|
+
</li>
|
80
|
+
<% end %>
|
81
|
+
<% if allowed_to? :read, :conference_invite, conference: current_participatory_space %>
|
82
|
+
<li <% if is_active_link?(decidim_admin_conferences.conference_conference_invites_path(current_participatory_space)) %> class="is-active" <% end %>>
|
83
|
+
<%= aria_selected_link_to t("conference_invites", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.conference_conference_invites_path(current_participatory_space) %>
|
84
|
+
</li>
|
85
|
+
<% end %>
|
86
|
+
<% if allowed_to? :update, :conference, conference: current_participatory_space %>
|
87
|
+
<li <% if is_active_link?(decidim_admin_conferences.edit_conference_diploma_path(current_participatory_space)) %> class="is-active" <% end %>>
|
88
|
+
<%= aria_selected_link_to t("diploma", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.edit_conference_diploma_path(current_participatory_space) %>
|
89
|
+
</li>
|
90
|
+
<% end %>
|
91
|
+
</ul>
|
74
92
|
</li>
|
75
93
|
<% end %>
|
76
94
|
<% if allowed_to? :read, :conference_user_role, conference: current_participatory_space %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="<%= I18n.locale %>" class="no-js">
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<meta name="viewport" content="width=device-width" />
|
6
|
+
<%= wicked_pdf_stylesheet_link_tag "decidim/conference-diploma" %>
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
<%= yield %>
|
10
|
+
</body>
|
11
|
+
</html>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WickedPDF Global Configuration
|
4
|
+
#
|
5
|
+
# Use this to set up shared configuration options for your entire application.
|
6
|
+
# Any of the configuration options shown here can also be applied to single
|
7
|
+
# models by passing arguments to the `render :pdf` call.
|
8
|
+
#
|
9
|
+
# To learn more, check out the README:
|
10
|
+
#
|
11
|
+
# https://github.com/mileszs/wicked_pdf/blob/master/README.md
|
12
|
+
|
13
|
+
WickedPdf.config = {
|
14
|
+
# Path to the wkhtmltopdf executable: This usually isn't needed if using
|
15
|
+
# one of the wkhtmltopdf-binary family of gems.
|
16
|
+
# exe_path: '/usr/local/bin/wkhtmltopdf',
|
17
|
+
# or
|
18
|
+
exe_path: Gem.bin_path("wkhtmltopdf-binary", "wkhtmltopdf")
|
19
|
+
|
20
|
+
# Layout file to be used for all PDFs
|
21
|
+
# (but can be overridden in `render :pdf` calls)
|
22
|
+
# layout: 'pdf.html',
|
23
|
+
}
|
data/config/locales/ca.yml
CHANGED
@@ -48,7 +48,9 @@ ca:
|
|
48
48
|
decidim:
|
49
49
|
admin:
|
50
50
|
actions:
|
51
|
+
confirm: Confirmar
|
51
52
|
new_conference: Nova conferència
|
53
|
+
send_diplomas: Enviar certificats d'assistència
|
52
54
|
conference_copies:
|
53
55
|
new:
|
54
56
|
copy: Copiar
|
@@ -61,6 +63,10 @@ ca:
|
|
61
63
|
destroy:
|
62
64
|
error: S'ha produït un error en publicar aquesta conferència.
|
63
65
|
success: La conferència no s'ha publicat correctament.
|
66
|
+
conference_registration:
|
67
|
+
confirm:
|
68
|
+
error: S'ha produït un error en confirmar aquest registre de la conferència.
|
69
|
+
success: El registre de la conferència s'ha confirmat amb èxit.
|
64
70
|
conference_speakers:
|
65
71
|
create:
|
66
72
|
error: S'ha produït un error en afegir un ponent per a aquesta conferència.
|
@@ -99,8 +105,6 @@ ca:
|
|
99
105
|
create:
|
100
106
|
error: S'ha produït un error en crear una nova conferència.
|
101
107
|
success: La conferència s'ha creat correctament.
|
102
|
-
destroy:
|
103
|
-
success: La conferència s'ha suprimit correctament.
|
104
108
|
edit:
|
105
109
|
update: Actualitzar
|
106
110
|
exports:
|
@@ -145,14 +149,17 @@ ca:
|
|
145
149
|
attachments: Fitxers adjunts
|
146
150
|
categories: Categoríes
|
147
151
|
components: Components
|
148
|
-
conference_admins:
|
149
|
-
conference_invites:
|
150
|
-
|
151
|
-
|
152
|
+
conference_admins: Usuaris de la conferència
|
153
|
+
conference_invites: Convida
|
154
|
+
conference_speakers: Ponents
|
155
|
+
diploma: Certificat d'assistència
|
152
156
|
info: Info
|
153
157
|
media_links: Enllaços multimedia
|
154
158
|
moderations: Moderacions
|
155
159
|
partners: Col·laboradors
|
160
|
+
registration_types: Tipus de registre
|
161
|
+
registrations: Inscripcions
|
162
|
+
user_registrations: Registre d'usuaris
|
156
163
|
models:
|
157
164
|
conference:
|
158
165
|
fields:
|
@@ -192,6 +199,14 @@ ca:
|
|
192
199
|
types:
|
193
200
|
collaborator: Col·laborador
|
194
201
|
main_promotor: Promotor principal
|
202
|
+
registration_type:
|
203
|
+
fields:
|
204
|
+
conference_meetings: Trobades de la conferència
|
205
|
+
price: Preu
|
206
|
+
registrations_count: Contador d'inscripcions
|
207
|
+
title: Títol
|
208
|
+
weight: Pes
|
209
|
+
name: Tipus de registre
|
195
210
|
partners:
|
196
211
|
create:
|
197
212
|
error: S'ha produït un error en afegir un col·laborador a aquesta jornada.
|
@@ -207,14 +222,38 @@ ca:
|
|
207
222
|
update:
|
208
223
|
error: S'ha produït un error en actualitzar un col·laborador per a aquesta jornada.
|
209
224
|
success: Col·laborador actualitzat correctament per a aquesta jornada.
|
225
|
+
registration_type_publications:
|
226
|
+
create:
|
227
|
+
error: S'ha produït un error en publicar aquest tipus de registre.
|
228
|
+
success: El tipus de registre s'ha publicat correctament.
|
229
|
+
destroy:
|
230
|
+
error: S'ha produït un error en publicar aquest tipus d'inscripció.
|
231
|
+
success: El tipus de registre no s'ha publicat correctament.
|
232
|
+
registration_types:
|
233
|
+
create:
|
234
|
+
error: S'ha produït un error en afegir un tipus de registre per a aquesta conferència.
|
235
|
+
success: El tipus de registre s'ha afegit amb èxit a aquesta conferència.
|
236
|
+
destroy:
|
237
|
+
success: El tipus d'inscripció s'ha eliminat correctament d'aquesta conferència.
|
238
|
+
edit:
|
239
|
+
title: Actualitzar el tipus de registre.
|
240
|
+
update: Actualitzar
|
241
|
+
new:
|
242
|
+
create: Crear
|
243
|
+
title: Nou tipus de registre
|
244
|
+
update:
|
245
|
+
error: S'ha produït un error en actualitzar un tipus de registre per a aquesta conferència.
|
246
|
+
success: El tipus de registre s'ha actualitzat amb èxit per a aquesta conferència.
|
210
247
|
titles:
|
211
248
|
conferences: Conferències
|
212
249
|
admin_log:
|
213
250
|
conference:
|
214
251
|
create: "%{user_name} ha creat la conferènica %{resource_name}"
|
215
252
|
publish: "%{user_name} ha publicat la conferència %{resource_name}"
|
253
|
+
send_conference_diplomas: "%{user_name} ha enviat els certificats d'assistència als assistents de la conferència %{resource_name}"
|
216
254
|
unpublish: "%{user_name} no publicada la conferència %{resource_name}"
|
217
255
|
update: "%{user_name} actualitzem la conferència %{resource_name}"
|
256
|
+
update_diploma: "%{user_name} ha actualitzat la configuració dels certificats d'assistència per la conferència %{resource_name}"
|
218
257
|
conference_speaker:
|
219
258
|
create: "%{user_name} va crear el ponent %{resource_name} a la conferència %{space_name}"
|
220
259
|
delete: "%{user_name} treure el ponent %{resource_name} de la conferència %{space_name}"
|
@@ -223,6 +262,22 @@ ca:
|
|
223
262
|
create: "%{user_name} ha estat convidat com a %{resource_name} per la conferència %{space_name}"
|
224
263
|
delete: "%{user_name} ha eliminat l'usuari %{resource_name} de la conferència %{space_name}"
|
225
264
|
update: "%{user_name} ha canviat el rol d' %{resource_name} a la conferència %{space_name}"
|
265
|
+
conferences:
|
266
|
+
conference_registration:
|
267
|
+
confirm: "%{user_name} ha confirmat un registre per a la conferència %{resource_name}"
|
268
|
+
partner:
|
269
|
+
create: "%{user_name} ha creat %{resource_name} a la conferència %{space_name}"
|
270
|
+
delete: "%{user_name} ha eliminat l'usuari %{resource_name} de la conferència %{space_name}"
|
271
|
+
update: "%{user_name} ha actualitzat %{resource_name} a la conferència %{space_name}"
|
272
|
+
registration_type:
|
273
|
+
create: "%{user_name} ha creat el tipus d'inscripció %{resource_name} per a la conferència %{space_name}"
|
274
|
+
publish: "%{user_name} ha publicat el tipus de registre %{resource_name} per a la conferència %{space_name}"
|
275
|
+
unpublish: "%{user_name} no publicat el tipus d'inscripció %{resource_name} a la conferència %{space_name}"
|
276
|
+
update: "%{user_name} ha actualitzat el tipus de registre %{resource_name} a la conferència %{space_name}"
|
277
|
+
media_link:
|
278
|
+
create: "%{user_name} ha creat l'enllaç de mitjans de comunicació %{resource_name} per a la conferència %{space_name}"
|
279
|
+
delete: "%{user_name} ha eliminat l'enllaç de mitjans de comunicació %{resource_name} per a la conferència %{space_name}"
|
280
|
+
update: "%{user_name} ha actualitzat l'enllaç de mitjans de comunicació %{resource_name} per a la conferència %{space_name}"
|
226
281
|
conference_program:
|
227
282
|
index:
|
228
283
|
title: Programa
|
@@ -276,25 +331,42 @@ ca:
|
|
276
331
|
one: Hi ha 1 inscripció.
|
277
332
|
other: Hi ha %{count} inscripcions.
|
278
333
|
slug_help: 'Les URL amigables s''utilitzen per generar els URL que apunten a aquesta conferència. Només accepta lletres, números i guions, i ha de començar amb una lletra. Exemple: %{url}'
|
334
|
+
diplomas:
|
335
|
+
edit:
|
336
|
+
save: Desa
|
337
|
+
title: Certificat d'assitència
|
279
338
|
invite_join_conference_mailer:
|
280
339
|
invite:
|
281
340
|
decline: Rebutjar la invitació '%{conference_title}'
|
282
341
|
invited_you_to_join_a_conference: "%{invited_by} t'ha convidat a participar en una conferència a l'%{application}. Pots rebutjar-la o acceptar-la a través dels enllaços a continuació."
|
283
|
-
|
342
|
+
registration: Inscripció a '%{conference_title}'
|
284
343
|
partners:
|
285
344
|
index:
|
286
345
|
title: Col·laboradors
|
346
|
+
registration_types:
|
347
|
+
form:
|
348
|
+
select_conference_meetings: Seleccioneu trobades de la conferència
|
349
|
+
index:
|
350
|
+
title: Tipus de registre
|
351
|
+
send_conference_diploma_mailer:
|
352
|
+
diploma:
|
353
|
+
diploma_html: Trobaràs el certificat d'assistència a la conferència <a href="%{url}">%{title}</a> als fitxers adjunts.
|
354
|
+
diploma_user:
|
355
|
+
attendance_verified_by: Assistència verificada per
|
356
|
+
certificate_of_attendance: Certificat d'assistència
|
357
|
+
certificate_of_attendance_description: Aquest document certifica que <strong>%{user}</strong> ha assistit i ha participat a <strong>%{title}</strong> celebrada a <strong>%{location}</strong> del <strong>%{start} - %{end}</strong>
|
358
|
+
send_diploma:
|
359
|
+
error: Hi ha hagut un problema en enviar els certificats d'assistència de la conferència.
|
360
|
+
success: Certificats d'assistència de la conferència enviats correctament
|
287
361
|
conference:
|
288
362
|
registration_confirm:
|
289
363
|
cancel: Cancel·lar
|
290
364
|
confirm: Confirmar
|
291
365
|
show:
|
366
|
+
free: Entrada lliure
|
292
367
|
going: Assistiré
|
293
|
-
join: Participa a la conferència
|
294
368
|
no_slots_available: No hi ha places disponibles
|
295
|
-
|
296
|
-
one: 1 plaça restant
|
297
|
-
other: "%{count} places restants"
|
369
|
+
registration: Inscripció
|
298
370
|
conference_program:
|
299
371
|
program_meeting:
|
300
372
|
content: Contingut
|
@@ -307,7 +379,12 @@ ca:
|
|
307
379
|
conference_registration_mailer:
|
308
380
|
confirmation:
|
309
381
|
confirmed_html: S'ha confirmat la teva inscripció a la conferència <a href="%{url}">%{title}</a>.
|
310
|
-
|
382
|
+
details_1: 'T''has inscrit a la conferència amb %{registration_type} tipus. Té un cost de %{price} i pots assistir als següents esdeveniments:'
|
383
|
+
details_2: Trobareu les dades de la conferència al fitxer adjunt.
|
384
|
+
pending_validation:
|
385
|
+
confirmation_pending: Rebràs la confirmació en breu
|
386
|
+
details: 'T''has inscrit a %{registration_type} tipus amb un cost de %{price} i pots assistir als següents esdeveniments:'
|
387
|
+
pending_html: La teva inscripció a la conferència <a href="%{url}">%{title}</a> està pendent de ser confirmada.
|
311
388
|
conference_registrations:
|
312
389
|
create:
|
313
390
|
invalid: Hi ha hagut un problema en inscriure't a aquesta conferència.
|
@@ -335,15 +412,11 @@ ca:
|
|
335
412
|
conferences:
|
336
413
|
partners:
|
337
414
|
collaborators: Col·laboradors
|
338
|
-
main_promotors:
|
415
|
+
main_promotors: Organitzadors
|
339
416
|
show:
|
340
|
-
|
341
|
-
login_as: Estàs entrant com %{name} <%{email}>
|
417
|
+
login_as: Has iniciat la sessió com a %{name} <%{email}>
|
342
418
|
make_conference_registration: 'Fes la teva inscripció a la conferència:'
|
343
|
-
new_user: Nou usuari?
|
344
419
|
register: Registre
|
345
|
-
sign_in: Inicia sessió per registrar-te en aquesta conferència
|
346
|
-
sign_up: Registra't de forma gratuïta per inscriure't
|
347
420
|
content_blocks:
|
348
421
|
highlighted_conferences:
|
349
422
|
name: Conferències destacades
|
@@ -353,14 +426,20 @@ ca:
|
|
353
426
|
conference_registration_mailer:
|
354
427
|
confirmation:
|
355
428
|
subject: S'ha confirmat la teva inscripció a la conferència
|
429
|
+
pending_validation:
|
430
|
+
subject: La teva inscripció a la conferència està pendent de confirmació
|
356
431
|
invite_join_conference_mailer:
|
357
432
|
invite:
|
358
433
|
subject: Invitació per participar a una conferència
|
434
|
+
send_conference_diploma_mailer:
|
435
|
+
diploma:
|
436
|
+
subject: S'ha enviat el teu certificat d'assistència a la conferència
|
359
437
|
models:
|
360
438
|
conference_invite:
|
361
439
|
fields:
|
362
440
|
email: Correu electrònic
|
363
441
|
name: Nom
|
442
|
+
registration_type: Tipus de registre
|
364
443
|
sent_at: Enviat a
|
365
444
|
status: Estat
|
366
445
|
status:
|
@@ -371,6 +450,11 @@ ca:
|
|
371
450
|
fields:
|
372
451
|
email: Correu electrònic
|
373
452
|
name: Nom
|
453
|
+
registration_type: Tipus de registre
|
454
|
+
state: Estat
|
455
|
+
states:
|
456
|
+
confirmed: Confirmat
|
457
|
+
pending: Pendents
|
374
458
|
pages:
|
375
459
|
home:
|
376
460
|
highlighted_conferences:
|
@@ -383,6 +467,18 @@ ca:
|
|
383
467
|
photos_list:
|
384
468
|
show:
|
385
469
|
related_photos: Fotografies
|
470
|
+
registration_types:
|
471
|
+
index:
|
472
|
+
choose_an_option: 'Trieu l''opció de registre:'
|
473
|
+
login_as: Has iniciat la sessió com a %{name} <%{email}>
|
474
|
+
register: Registre
|
475
|
+
title: Tipus de registre
|
476
|
+
shared:
|
477
|
+
conference_user_login:
|
478
|
+
already_account: Ja tens un compte a Decidim?
|
479
|
+
new_user: Nou usuari?
|
480
|
+
sign_in: Inicia sessió per inscriure't a la conferència
|
481
|
+
sign_up: Crea un compte per inscriure't a la conferència
|
386
482
|
show:
|
387
483
|
details: Detalls
|
388
484
|
introduction: Introducció
|
@@ -409,6 +505,10 @@ ca:
|
|
409
505
|
votes_count: Vots
|
410
506
|
events:
|
411
507
|
conferences:
|
508
|
+
conference_registration_validation_pending:
|
509
|
+
notification_title: El registre de la conferència <a href="%{resource_url}">%{resource_title}</a> està pendent de ser confirmat.
|
510
|
+
conference_registration_confirmed:
|
511
|
+
notification_title: S'ha confirmat el registre de la conferència <a href="%{resource_url}">%{resource_title}</a>.
|
412
512
|
conference_registrations_over_percentage:
|
413
513
|
email_intro: Les places ocupades per a la conferència "%{resource_title}" ocupen més del %{percentage}%.
|
414
514
|
email_outro: Has rebut aquesta notificació perquè ets administrador de la conferència.
|
@@ -424,6 +524,11 @@ ca:
|
|
424
524
|
email_outro: Has rebut aquesta notificació perquè estàs seguint la conferència "%{resource_title}". Pots deixar de seguir-la des de l'enllaç anterior.
|
425
525
|
email_subject: S'han activat les inscripcions per a la conferència "%{resource_title}".
|
426
526
|
notification_title: S'han activat les inscripcions per a la conferència <a href="%{resource_path}">%{resource_title}</a>.
|
527
|
+
upcoming_conference:
|
528
|
+
email_intro: 'La conferència "%{resource_title}" s''està duent a terme en 2 dies. Podeu llegir la descripció de la pàgina:'
|
529
|
+
email_outro: Heu rebut aquesta notificació perquè esteu seguint la conferència "%{resource_title}". Podeu deixar de seguir-lo des de l'enllaç anterior.
|
530
|
+
email_subject: La conferència "%{resource_title}" està arribant!
|
531
|
+
notification_title: La conferència <a href="%{resource_path}">%{resource_title}</a> arribarà en 2 dies.
|
427
532
|
log:
|
428
533
|
value_types:
|
429
534
|
conference_presenter:
|
@@ -440,6 +545,8 @@ ca:
|
|
440
545
|
subject: Invitació a participar en una conferència
|
441
546
|
layouts:
|
442
547
|
decidim:
|
548
|
+
conference_hero:
|
549
|
+
register: Registre
|
443
550
|
conference_widgets:
|
444
551
|
show:
|
445
552
|
take_part: Formar part
|
@@ -460,5 +567,4 @@ ca:
|
|
460
567
|
conference_partners_menu_item: Col·laboradors
|
461
568
|
conference_speaker_menu_item: Ponents
|
462
569
|
media: Mèdia
|
463
|
-
unfold: Desplegar
|
464
570
|
venues: Llocs de realització
|
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
|