decidim-conferences 0.23.1 → 0.24.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/conference_speaker/show.erb +1 -1
- data/app/cells/decidim/conferences/media_link/show.erb +1 -1
- data/app/cells/decidim/conferences/media_link_cell.rb +1 -0
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +40 -18
- data/app/commands/decidim/conferences/admin/create_partner.rb +33 -14
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +41 -17
- data/app/commands/decidim/conferences/admin/update_partner.rb +30 -10
- data/app/controllers/decidim/conferences/admin/imports_controller.rb +14 -0
- data/app/controllers/decidim/conferences/admin/moderations/reports_controller.rb +14 -0
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +1 -1
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/media_link_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/partner_form.rb +2 -1
- data/app/models/decidim/conference_meeting.rb +1 -1
- data/app/models/decidim/conference_speaker.rb +1 -1
- data/app/models/decidim/conference_speaker_conference_meeting.rb +2 -2
- data/app/models/decidim/conferences/conference_meeting_registration_type.rb +2 -2
- data/app/models/decidim/conferences/registration_type.rb +1 -1
- data/app/permissions/decidim/conferences/permissions.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/{conferences_presenter.rb → conference_presenter.rb} +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/{conferences_user_role_presenter.rb → conference_user_role_presenter.rb} +2 -2
- data/app/presenters/decidim/conferences/admin_log/media_link_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/conference_stats_presenter.rb +1 -1
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +1 -1
- data/app/views/layouts/decidim/admin/conference.html.erb +2 -1
- data/config/locales/ar.yml +0 -4
- data/config/locales/ca.yml +10 -3
- data/config/locales/cs.yml +28 -21
- data/config/locales/de.yml +52 -44
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +10 -3
- data/config/locales/es-MX.yml +10 -3
- data/config/locales/es-PY.yml +10 -3
- data/config/locales/es.yml +11 -4
- data/config/locales/eu.yml +0 -4
- data/config/locales/fi-plain.yml +12 -5
- data/config/locales/fi.yml +14 -7
- data/config/locales/fr-CA.yml +10 -3
- data/config/locales/fr.yml +10 -3
- data/config/locales/gl.yml +0 -4
- data/config/locales/hu.yml +0 -4
- data/config/locales/id-ID.yml +0 -4
- data/config/locales/it.yml +1 -5
- data/config/locales/ja.yml +6 -4
- data/config/locales/lv.yml +0 -4
- data/config/locales/nl.yml +10 -9
- data/config/locales/no.yml +0 -4
- data/config/locales/pl.yml +15 -7
- data/config/locales/pt-BR.yml +0 -4
- data/config/locales/pt.yml +0 -4
- data/config/locales/ro-RO.yml +0 -4
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -4
- data/config/locales/sv.yml +6 -4
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +75 -62
- data/config/locales/zh-CN.yml +0 -4
- data/lib/decidim/api/conference_media_link_type.rb +18 -0
- data/lib/decidim/api/conference_partner_type.rb +19 -0
- data/lib/decidim/api/conference_speaker_type.rb +23 -0
- data/lib/decidim/api/conference_type.rb +42 -0
- data/lib/decidim/conferences.rb +1 -0
- data/lib/decidim/conferences/admin_engine.rb +3 -1
- data/lib/decidim/conferences/api.rb +10 -0
- data/lib/decidim/conferences/engine.rb +7 -1
- data/lib/decidim/conferences/participatory_space.rb +25 -25
- data/lib/decidim/conferences/query_extensions.rb +43 -0
- data/lib/decidim/conferences/test/factories.rb +6 -6
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +29 -23
- data/app/types/decidim/conferences/conference_media_link_type.rb +0 -19
- data/app/types/decidim/conferences/conference_partner_type.rb +0 -20
- data/app/types/decidim/conferences/conference_speaker_type.rb +0 -24
- data/app/types/decidim/conferences/conference_type.rb +0 -45
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module Decidim
|
4
4
|
class ConferenceSpeakerConferenceMeeting < ApplicationRecord
|
5
|
-
belongs_to :conference_speaker,
|
6
|
-
belongs_to :conference_meeting,
|
5
|
+
belongs_to :conference_speaker, class_name: "Decidim::ConferenceSpeaker"
|
6
|
+
belongs_to :conference_meeting, class_name: "Decidim::ConferenceMeeting"
|
7
7
|
end
|
8
8
|
end
|
@@ -3,8 +3,8 @@
|
|
3
3
|
module Decidim
|
4
4
|
module Conferences
|
5
5
|
class ConferenceMeetingRegistrationType < ApplicationRecord
|
6
|
-
belongs_to :conference_meeting,
|
7
|
-
belongs_to :registration_type,
|
6
|
+
belongs_to :conference_meeting, class_name: "Decidim::ConferenceMeeting"
|
7
|
+
belongs_to :registration_type, class_name: "Decidim::Conferences::RegistrationType"
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|
@@ -13,7 +13,7 @@ module Decidim
|
|
13
13
|
|
14
14
|
belongs_to :conference, foreign_key: "decidim_conference_id", class_name: "Decidim::Conference"
|
15
15
|
has_many :conference_meeting_registration_types, dependent: :destroy
|
16
|
-
has_many :conference_meetings, through: :conference_meeting_registration_types,
|
16
|
+
has_many :conference_meetings, through: :conference_meeting_registration_types, class_name: "Decidim::ConferenceMeeting"
|
17
17
|
has_many :conference_registrations, foreign_key: "decidim_conference_registration_type_id", class_name: "Decidim::Conferences::ConferenceRegistration", dependent: :destroy
|
18
18
|
|
19
19
|
default_scope { order(weight: :asc) }
|
@@ -80,7 +80,7 @@ module Decidim
|
|
80
80
|
def can_decline_invitation?
|
81
81
|
return unless conference.presence
|
82
82
|
return unless conference.registrations_enabled? &&
|
83
|
-
conference.conference_invites.
|
83
|
+
conference.conference_invites.exists?(user: user) &&
|
84
84
|
permission_action.action == :decline_invitation &&
|
85
85
|
permission_action.subject == :conference
|
86
86
|
|
@@ -10,7 +10,7 @@ module Decidim
|
|
10
10
|
# Public: Render a collection of primary stats.
|
11
11
|
def highlighted
|
12
12
|
highlighted_stats = component_stats(priority: StatsRegistry::HIGH_PRIORITY)
|
13
|
-
highlighted_stats
|
13
|
+
highlighted_stats.concat(component_stats(priority: StatsRegistry::MEDIUM_PRIORITY))
|
14
14
|
highlighted_stats = highlighted_stats.reject(&:empty?)
|
15
15
|
highlighted_stats = highlighted_stats.reject { |_manifest, _name, data| data.zero? }
|
16
16
|
grouped_highlighted_stats = highlighted_stats.group_by { |stats| stats.first.name }
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<ul id="components-list">
|
14
14
|
<% current_participatory_space.components.each do |component| %>
|
15
15
|
<% if component.manifest.admin_engine && user_role_config.component_is_accessible?(component.manifest_name) %>
|
16
|
-
<li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_conferences.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_conferences.edit_component_permissions_path(current_participatory_space, component)) %> class="is-active" <% end %>>
|
16
|
+
<li <% if is_active_link?(manage_component_path(component)) || is_active_link?(decidim_admin_conferences.edit_component_path(current_participatory_space, component)) || is_active_link?(decidim_admin_conferences.edit_component_permissions_path(current_participatory_space, component)) || participatory_space_active_link?(component) %> class="is-active" <% end %>>
|
17
17
|
<%= link_to manage_component_path(component) do %>
|
18
18
|
<%= translated_attribute component.name %>
|
19
19
|
<% if component.primary_stat.present? %>
|
@@ -101,6 +101,7 @@
|
|
101
101
|
<%= aria_selected_link_to t("moderations", scope: "decidim.admin.menu.conferences_submenu"), decidim_admin_conferences.moderations_path(current_participatory_space) %>
|
102
102
|
</li>
|
103
103
|
<% end %>
|
104
|
+
<%= Decidim::Admin.view_hooks.render(:admin_secondary_nav, deep_dup) %>
|
104
105
|
</ul>
|
105
106
|
</div>
|
106
107
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
@@ -277,10 +277,6 @@ ar:
|
|
277
277
|
conferences:
|
278
278
|
conference_registration:
|
279
279
|
confirm: "%{user_name} أكد تسجيل مؤتمر في مؤتمر %{resource_name}"
|
280
|
-
partner:
|
281
|
-
create: "%{user_name} أنشأ %{resource_name} إلى %{space_name} المؤتمر"
|
282
|
-
delete: "%{user_name} أزال المشرف %{resource_name} من المؤتمر %{space_name}"
|
283
|
-
update: "%{user_name} محدث %{resource_name} في المؤتمر %{space_name}"
|
284
280
|
registration_type:
|
285
281
|
create: "%{user_name} أنشأ نوع التسجيل %{resource_name} في المؤتمر %{space_name}"
|
286
282
|
publish: "%{user_name} نشر نوع التسجيل %{resource_name} في المؤتمر %{space_name}"
|
data/config/locales/ca.yml
CHANGED
@@ -267,9 +267,9 @@ ca:
|
|
267
267
|
conference_registration:
|
268
268
|
confirm: "%{user_name} ha confirmat la seva inscripció a la jornada %{resource_name}"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name} ha creat %{resource_name} a la jornada %{space_name}"
|
271
|
-
delete: "%{user_name} ha eliminat
|
272
|
-
update: "%{user_name} ha actualitzat %{resource_name} a la jornada %{space_name}"
|
270
|
+
create: "%{user_name} ha creat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
271
|
+
delete: "%{user_name} ha eliminat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
272
|
+
update: "%{user_name} ha actualitzat la col·laboradora %{resource_name} a la jornada %{space_name}"
|
273
273
|
registration_type:
|
274
274
|
create: "%{user_name} ha creat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
275
275
|
publish: "%{user_name} ha publicat el tipus d'inscripció %{resource_name} a la jornada %{space_name}"
|
@@ -402,6 +402,7 @@ ca:
|
|
402
402
|
personal_website: Lloc web personal
|
403
403
|
show:
|
404
404
|
more_info: més informació
|
405
|
+
speaking_at: Intervé a
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Lloc web personal
|
@@ -539,6 +540,12 @@ ca:
|
|
539
540
|
email_outro: Has rebut aquesta notificació perquè estàs seguint la jornada "%{resource_title}". Podeu deixar-la de seguir-a des de l'enllaç anterior.
|
540
541
|
email_subject: La jornada "%{resource_title}" s'apropa!
|
541
542
|
notification_title: La jornada <a href="%{resource_path}">%{resource_title}</a> començarà en 2 dies.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p>Una <strong>conferència</strong> és un conjunt de trobades organitzades en un programa, amb un grup de persones convidades com a ponents, i altres camps d'informació típics dels grans congressos o esdeveniments socials (inscripció, llista d'organitzacions que secunden o patrocinen l'esdeveniment, etc.).</p> <p>Exemples: Una conferència pot ser un esdeveniment rellevant per a una organització i els seus membres, o pot tenir lloc com a part d'un procés participatiu o després d'una consulta.</p>"
|
547
|
+
page: "<p>Una <strong>conferència</strong> és un conjunt de trobades organitzades en un programa, amb un grup de persones convidades com a ponents, i altres camps d'informació típics dels grans congressos o esdeveniments socials (inscripció, llista d'organitzacions que secunden o patrocinen l'esdeveniment, etc.).</p> <p>Exemples: Una conferència pot ser un esdeveniment rellevant per a una organització i els seus membres, o pot tenir lloc com a part d'un procés participatiu o després d'una consulta.</p>"
|
548
|
+
title: Què són les conferències?
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|
data/config/locales/cs.yml
CHANGED
@@ -19,7 +19,7 @@ cs:
|
|
19
19
|
scopes_enabled: Oblasti působnosti povoleny
|
20
20
|
short_description: Stručný popis
|
21
21
|
show_statistics: Zobrazit statistiky
|
22
|
-
slogan:
|
22
|
+
slogan: Motto
|
23
23
|
slug: URL slug
|
24
24
|
title: Titul
|
25
25
|
conference_speaker:
|
@@ -76,9 +76,9 @@ cs:
|
|
76
76
|
conference_speakers:
|
77
77
|
create:
|
78
78
|
error: Při přidání řečníka k této konferenci došlo k chybě.
|
79
|
-
success:
|
79
|
+
success: Řečník byl úspěšně vytvořen pro tuto konferenci.
|
80
80
|
destroy:
|
81
|
-
success:
|
81
|
+
success: Řečník byl úspěšně smazán pro tuto konferenci.
|
82
82
|
edit:
|
83
83
|
title: Aktualizovat řečníka konference.
|
84
84
|
update: Aktualizace
|
@@ -89,7 +89,7 @@ cs:
|
|
89
89
|
title: Nový řečník konference.
|
90
90
|
update:
|
91
91
|
error: Při této konferenci došlo k chybě při aktualizaci řečníka.
|
92
|
-
success:
|
92
|
+
success: Řečník konference byl úspěšně aktualizován.
|
93
93
|
conference_user_roles:
|
94
94
|
create:
|
95
95
|
error: Při přidávání administrátora této konference došlo k chybě.
|
@@ -143,10 +143,10 @@ cs:
|
|
143
143
|
media_links_title: Odkazy na média
|
144
144
|
new:
|
145
145
|
create: Vytvořit
|
146
|
-
title: Odkaz na
|
146
|
+
title: Odkaz na média
|
147
147
|
update:
|
148
148
|
error: Při aktualizaci tohoto odkazu na média došlo k chybě.
|
149
|
-
success:
|
149
|
+
success: Odkaz na média byl úspěšně aktualizován.
|
150
150
|
menu:
|
151
151
|
conferences: Konference
|
152
152
|
conferences_submenu:
|
@@ -195,7 +195,7 @@ cs:
|
|
195
195
|
date: datum
|
196
196
|
link: Odkaz
|
197
197
|
title: Název
|
198
|
-
name:
|
198
|
+
name: Odkaz na média
|
199
199
|
partner:
|
200
200
|
fields:
|
201
201
|
link: Odkaz
|
@@ -212,7 +212,7 @@ cs:
|
|
212
212
|
price: Cena
|
213
213
|
registrations_count: Registrace se počítají
|
214
214
|
title: Název
|
215
|
-
weight:
|
215
|
+
weight: Váha
|
216
216
|
name: Typ registrace
|
217
217
|
partners:
|
218
218
|
create:
|
@@ -263,7 +263,7 @@ cs:
|
|
263
263
|
update_diploma: "%{user_name} aktualizovala certifikáty pro účast na %{resource_name} konferenci"
|
264
264
|
conference_speaker:
|
265
265
|
create: "%{user_name} vytvořil %{resource_name} řečníka na konferenci %{space_name}"
|
266
|
-
delete: "%{user_name}
|
266
|
+
delete: "%{user_name} odstranil řečníka %{resource_name} z konference %{space_name}"
|
267
267
|
update: "%{user_name} aktualizoval %{resource_name} řečníka na konferenci %{space_name}"
|
268
268
|
conference_user_role:
|
269
269
|
create: "%{user_name} pozval %{resource_name} na konferenci %{space_name}"
|
@@ -273,18 +273,18 @@ cs:
|
|
273
273
|
conference_registration:
|
274
274
|
confirm: "%{user_name} potvrdil registraci konference na konferenci %{resource_name}"
|
275
275
|
partner:
|
276
|
-
create: "%{user_name} vytvořil %{resource_name} na konferenci %{space_name}"
|
277
|
-
delete: "%{user_name} odstranil
|
278
|
-
update: "%{user_name} aktualizoval %{resource_name}
|
276
|
+
create: "%{user_name} vytvořil partnera %{resource_name} na konferenci %{space_name}"
|
277
|
+
delete: "%{user_name} odstranil partnera %{resource_name} z konference %{space_name}"
|
278
|
+
update: "%{user_name} aktualizoval partnera %{resource_name} na konferenci %{space_name}"
|
279
279
|
registration_type:
|
280
280
|
create: "%{user_name} vytvořil typ registrace %{resource_name} na konferenci %{space_name}"
|
281
281
|
publish: "%{user_name} publikoval %{resource_name} typ registrace na %{space_name} konferencích"
|
282
282
|
unpublish: "%{user_name} nepublikováno %{resource_name} typ registrace na %{space_name} konferencích"
|
283
283
|
update: "%{user_name} aktualizoval typ registrace %{resource_name} na konferenci %{space_name}"
|
284
284
|
media_link:
|
285
|
-
create: "%{user_name}
|
286
|
-
delete: "%{user_name}
|
287
|
-
update: "%{user_name}
|
285
|
+
create: "%{user_name} vytvořil %{resource_name} odkaz na média v konferenci %{space_name}"
|
286
|
+
delete: "%{user_name} odstranil %{resource_name} odkaz na média z konference %{space_name}"
|
287
|
+
update: "%{user_name} aktualizoval %{resource_name} odkaz na média v konferenci %{space_name}"
|
288
288
|
conference_program:
|
289
289
|
index:
|
290
290
|
title: Program
|
@@ -380,7 +380,7 @@ cs:
|
|
380
380
|
program_meeting:
|
381
381
|
content: Obsah
|
382
382
|
location: Umístění
|
383
|
-
speakers:
|
383
|
+
speakers: Řečníci
|
384
384
|
streaming: Streamování
|
385
385
|
show:
|
386
386
|
day: Den
|
@@ -388,11 +388,11 @@ cs:
|
|
388
388
|
conference_registration_mailer:
|
389
389
|
confirmation:
|
390
390
|
confirmed_html: Vaše registrace pro konferenci <a href="%{url}">%{title}</a> byla potvrzena.
|
391
|
-
details_1: 'Jste přihlášeni do konference s typem %{registration_type}.
|
391
|
+
details_1: 'Jste přihlášeni do konference s typem %{registration_type}. Stojí %{price} a můžete se zúčastnit následujících akcí:'
|
392
392
|
details_2: Podrobnosti o konferenci naleznete v příloze.
|
393
393
|
pending_validation:
|
394
394
|
confirmation_pending: Potvrzení obdržíte brzy
|
395
|
-
details: 'Zaregistrovali jste se na typ %{registration_type} s cenou %{price} a můžete se zúčastnit následujících událostí:'
|
395
|
+
details: 'Zaregistrovali jste se na typ konference %{registration_type} s cenou %{price} a můžete se zúčastnit následujících událostí:'
|
396
396
|
pending_html: Vaše registrace pro konferenci <a href="%{url}">%{title}</a> čeká na potvrzení.
|
397
397
|
conference_registrations:
|
398
398
|
create:
|
@@ -410,6 +410,7 @@ cs:
|
|
410
410
|
personal_website: Osobní web
|
411
411
|
show:
|
412
412
|
more_info: více informací
|
413
|
+
speaking_at: Má projev v
|
413
414
|
conference_speaker_cell:
|
414
415
|
personal_url:
|
415
416
|
personal_website: Osobní web
|
@@ -417,7 +418,7 @@ cs:
|
|
417
418
|
go_to_twitter: Přejděte na Twitter
|
418
419
|
conference_speakers:
|
419
420
|
index:
|
420
|
-
speakers:
|
421
|
+
speakers: Řečníci
|
421
422
|
conferences:
|
422
423
|
partners:
|
423
424
|
collaborators: Partneři
|
@@ -460,7 +461,7 @@ cs:
|
|
460
461
|
email: E-mail
|
461
462
|
name: název
|
462
463
|
registration_type: Typ registrace
|
463
|
-
state:
|
464
|
+
state: Stav
|
464
465
|
states:
|
465
466
|
confirmed: Potvrzeno
|
466
467
|
pending: čekající
|
@@ -547,6 +548,12 @@ cs:
|
|
547
548
|
email_outro: Toto upozornění jste obdrželi, protože jste sledovali konferenci "%{resource_title}". Můžete jej odhlásit od předchozího odkazu.
|
548
549
|
email_subject: Konference "%{resource_title}" přichází!
|
549
550
|
notification_title: Konference <a href="%{resource_path}">%{resource_title}</a> přichází za 2 dny.
|
551
|
+
help:
|
552
|
+
participatory_spaces:
|
553
|
+
conferences:
|
554
|
+
contextual: "<p> <strong>Konference</strong> je několik schůzek uspořádaných v rámci programu s řadou lidí pozvaných jako řečníci, a další informační pole typická pro velké kongresy nebo společenské události (registrace, seznam organizací, které podporují nebo sponzorují událost atd.).</p> <p>Příklady: Konference může být relevantní pro organizaci a její členy, nebo se koná v rámci účastnického procesu, nebo následuje konzultace.</p>\n"
|
555
|
+
page: "<p> <strong>Konference</strong> je několik schůzek uspořádaných v rámci programu s řadou lidí pozvaných jako řečníci, a další informační pole typická pro velké kongresy nebo společenské události (registrace, seznam organizací, které podporují nebo sponzorují událost atd.).</p> <p>Příklady: Konference může být relevantní pro organizaci a její členy, nebo se koná v rámci účastnického procesu, nebo následuje konzultace.</p>\n"
|
556
|
+
title: Co jsou konference?
|
550
557
|
log:
|
551
558
|
value_types:
|
552
559
|
conference_presenter:
|
@@ -586,6 +593,6 @@ cs:
|
|
586
593
|
conferences_nav:
|
587
594
|
conference_menu_item: Informace
|
588
595
|
conference_partners_menu_item: Partneři
|
589
|
-
conference_speaker_menu_item:
|
596
|
+
conference_speaker_menu_item: Řečníci
|
590
597
|
media: Média
|
591
598
|
venues: Místa
|
data/config/locales/de.yml
CHANGED
@@ -146,7 +146,7 @@ de:
|
|
146
146
|
conferences_submenu:
|
147
147
|
attachment_collections: Ordner
|
148
148
|
attachment_files: Dateien
|
149
|
-
attachments:
|
149
|
+
attachments: Anhänge
|
150
150
|
categories: Kategorien
|
151
151
|
components: Komponenten
|
152
152
|
conference_admins: Konferenzadministratoren
|
@@ -249,36 +249,36 @@ de:
|
|
249
249
|
conferences: Konferenzen
|
250
250
|
admin_log:
|
251
251
|
conference:
|
252
|
-
create: "%{user_name}
|
253
|
-
publish: "%{user_name}
|
254
|
-
send_conference_diplomas: "%{user_name}
|
255
|
-
unpublish: "%{user_name}
|
256
|
-
update: "%{user_name} hat die %{resource_name}
|
257
|
-
update_diploma: "%{user_name} hat die Konfiguration der
|
252
|
+
create: "%{user_name} hat die Konferenz %{resource_name} erstellt"
|
253
|
+
publish: "%{user_name} hat die Konferenz %{resource_name} veröffentlicht"
|
254
|
+
send_conference_diplomas: "%{user_name} hat Teilnahmebescheinigungen an die Teilnehmenden der Konferenz %{resource_name} gesendet"
|
255
|
+
unpublish: "%{user_name} hat die Konferenz %{resource_name} auf \"unveröffentlicht\" gesetzt"
|
256
|
+
update: "%{user_name} hat die Konferenz %{resource_name} aktualisiert"
|
257
|
+
update_diploma: "%{user_name} hat die Konfiguration der Teilnahmebescheinigungen für die Konferenz %{resource_name} aktualisiert"
|
258
258
|
conference_speaker:
|
259
|
-
create: "%{user_name} hat den %{resource_name}
|
260
|
-
delete: "%{user_name}
|
261
|
-
update: "%{user_name}
|
259
|
+
create: "%{user_name} hat den Sprecher %{resource_name} in der Konferenz %{space_name} erstellt"
|
260
|
+
delete: "%{user_name} hat den Sprecher %{resource_name} aus der Konferenz %{space_name} entfernt"
|
261
|
+
update: "%{user_name} hat den Sprecher %{resource_name} in der Konferenz %{space_name} aktualisiert"
|
262
262
|
conference_user_role:
|
263
|
-
create: "%{user_name}
|
264
|
-
delete: "%{user_name}
|
265
|
-
update: "%{user_name} hat die Rolle von %{resource_name} in der %{space_name}
|
263
|
+
create: "%{user_name} hat %{resource_name} zur Konferenz %{space_name} eingeladen"
|
264
|
+
delete: "%{user_name} hat den Admin %{resource_name} aus der Konferenz %{space_name} entfernt"
|
265
|
+
update: "%{user_name} hat die Rolle von %{resource_name} in der Konferenz %{space_name} geändert"
|
266
266
|
conferences:
|
267
267
|
conference_registration:
|
268
|
-
confirm: "%{user_name}
|
268
|
+
confirm: "%{user_name} hat eine Anmeldung zur Konferenz %{resource_name} bestätigt"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name} hat %{resource_name}
|
271
|
-
delete: "%{user_name}
|
272
|
-
update: "%{user_name}
|
270
|
+
create: "%{user_name} hat den Partner %{resource_name} in der Konferenz %{space_name} erstellt"
|
271
|
+
delete: "%{user_name} hat den Partner %{resource_name} aus der Konferenz %{space_name} entfernt"
|
272
|
+
update: "%{user_name} hat den Partner %{resource_name} in der Konferenz %{space_name} aktualisiert"
|
273
273
|
registration_type:
|
274
|
-
create: "%{user_name} hat den %{resource_name}
|
275
|
-
publish: "%{user_name} hat
|
276
|
-
unpublish: "%{user_name}
|
277
|
-
update: "%{user_name}
|
274
|
+
create: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} erstellt"
|
275
|
+
publish: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} veröffentlicht"
|
276
|
+
unpublish: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} auf \"unveröffentlicht\" gesetzt"
|
277
|
+
update: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} aktualisiert"
|
278
278
|
media_link:
|
279
|
-
create: "%{user_name} hat den %{resource_name}
|
280
|
-
delete: "%{user_name} den Medienlink %{resource_name}
|
281
|
-
update: "%{user_name} hat den %{resource_name}
|
279
|
+
create: "%{user_name} hat den Medienlink %{resource_name} in der Konferenz %{space_name} erstellt"
|
280
|
+
delete: "%{user_name} hat den Medienlink %{resource_name} aus der Konferenz %{space_name} entfernt"
|
281
|
+
update: "%{user_name} hat den Medienlink %{resource_name} in der Konferenz %{space_name} aktualisiert"
|
282
282
|
conference_program:
|
283
283
|
index:
|
284
284
|
title: Programm
|
@@ -351,7 +351,7 @@ de:
|
|
351
351
|
title: Registrierungsarten
|
352
352
|
send_conference_diploma_mailer:
|
353
353
|
diploma:
|
354
|
-
diploma_html: Die Teilnahmebescheinigung für die Konferenz <a href="%{url}">%{title}</a> in den
|
354
|
+
diploma_html: Die Teilnahmebescheinigung für die Konferenz <a href="%{url}">%{title}</a> finden Sie in den Anhängen.
|
355
355
|
diploma_user:
|
356
356
|
attendance_verified_by: Anwesenheit überprüft durch
|
357
357
|
certificate_of_attendance: Teilnahmebestätigung
|
@@ -402,6 +402,7 @@ de:
|
|
402
402
|
personal_website: Persönliche Webseite
|
403
403
|
show:
|
404
404
|
more_info: Mehr Informationen
|
405
|
+
speaking_at: Sprecher bei
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Persönliche Webseite
|
@@ -428,7 +429,7 @@ de:
|
|
428
429
|
confirmation:
|
429
430
|
subject: Die Registrierung Ihrer Konferenz wurde bestätigt
|
430
431
|
pending_validation:
|
431
|
-
subject:
|
432
|
+
subject: Ihre Anmeldung zur Konferenz steht noch aus
|
432
433
|
invite_join_conference_mailer:
|
433
434
|
invite:
|
434
435
|
subject: Einladung zur Teilnahme an einer Konferenz
|
@@ -475,6 +476,7 @@ de:
|
|
475
476
|
index:
|
476
477
|
choose_an_option: 'Wählen Sie Ihre Registrierungsoption:'
|
477
478
|
login_as: Sie sind als %{name} <%{email}> angemeldet
|
479
|
+
no_registrations: Keine Registrierungen
|
478
480
|
register: Registrieren
|
479
481
|
title: Registrierungsarten
|
480
482
|
shared:
|
@@ -487,7 +489,7 @@ de:
|
|
487
489
|
details: Einzelheiten
|
488
490
|
introduction: Einführung
|
489
491
|
objectives: Ziele
|
490
|
-
related_assemblies: Ähnliche
|
492
|
+
related_assemblies: Ähnliche Gremien
|
491
493
|
related_consultations: Verwandte Konsultationen
|
492
494
|
related_participatory_processes: Ähnliche Beteiligungsprozesse
|
493
495
|
statistics:
|
@@ -514,30 +516,36 @@ de:
|
|
514
516
|
conference_registration_validation_pending:
|
515
517
|
notification_title: Ihre Anmeldung für die Konferenz <a href="%{resource_url}">%{resource_title}</a> steht noch aus.
|
516
518
|
conference_registrations_over_percentage:
|
517
|
-
email_intro: Die "%{resource_title}"
|
519
|
+
email_intro: Die Slots der Konferenz "%{resource_title}" sind zu über %{percentage}% belegt.
|
518
520
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Administrator des Teilnahmebereichs der Konferenz sind.
|
519
|
-
email_subject: Die "%{resource_title}"
|
520
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
521
|
+
email_subject: Die Slots in der Konferenz "%{resource_title}" sind zu über %{percentage}% belegt
|
522
|
+
notification_title: Die Slots der Konferenz <a href="%{resource_path}">%{resource_title}</a> sind zu über %{percentage}% belegt.
|
521
523
|
conference_updated:
|
522
|
-
email_intro: 'Die Konferenz "%{resource_title}" wurde aktualisiert. Sie können die neue Version
|
523
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
524
|
+
email_intro: 'Die Konferenz "%{resource_title}" wurde aktualisiert. Sie können die neue Version auf der Konferenz-Seite lesen:'
|
525
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Konferenz "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
524
526
|
email_subject: Die Konferenz "%{resource_title}" wurde aktualisiert
|
525
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
527
|
+
notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> wurde aktualisiert.
|
526
528
|
registrations_enabled:
|
527
|
-
email_intro: 'Die "%{resource_title}"
|
528
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
529
|
-
email_subject: Die "%{resource_title}"
|
530
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
529
|
+
email_intro: 'Die Konferenz "%{resource_title}" hat Registrierungen aktiviert. Sie können sich auf der Konferenz-Seite registrieren:'
|
530
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Konferenz "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
531
|
+
email_subject: Die Konferenz "%{resource_title}" hat Registrierungen aktiviert.
|
532
|
+
notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> hat Registrierungen aktiviert.
|
531
533
|
role_assigned:
|
532
|
-
email_intro: Sie wurden als %{role} für die Konferenz
|
533
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein %{role} der Konferenz
|
534
|
-
email_subject: Sie wurden als %{role} für
|
534
|
+
email_intro: Sie wurden als %{role} für die Konferenz "%{resource_title}" ausgewählt.
|
535
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein %{role} der Konferenz "%{resource_title}" sind.
|
536
|
+
email_subject: Sie wurden als %{role} für "%{resource_title}" ausgewählt.
|
535
537
|
notification_title: Sie wurden als %{role} für die Konferenz <a href="%{resource_url}">%{resource_title}</a> ausgewählt.
|
536
538
|
upcoming_conference:
|
537
|
-
email_intro: 'Die "%{resource_title}"
|
538
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
539
|
-
email_subject: Die "%{resource_title}"
|
540
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
539
|
+
email_intro: 'Die Konferenz "%{resource_title}" findet in 2 Tagen statt. Sie können die Beschreibung auf der Konferenz-Seite lesen:'
|
540
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Konferenz "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
541
|
+
email_subject: Die Konferenz "%{resource_title}" kommt!
|
542
|
+
notification_title: Die Konferenz <a href="%{resource_path}">%{resource_title}</a> beginnt in 2 Tagen.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p>Eine <strong>Konferenz</strong> ist eine Sammlung von Meetings, die in einem Programm organisiert werden, mit einer Anzahl von Personen, die als Referenten eingeladen werden und andere Informationsfelder, die für große Kongresse oder gesellschaftliche Veranstaltungen typisch sind (Registrierung, Liste der Organisationen, die die Veranstaltung unterstützen oder sponsern, usw.)..</p> <p>Beispiele: Eine Konferenz kann ein relevantes Ereignis für eine Organisation und ihre Mitglieder sein oder im Rahmen eines partizipatorischen Prozesses oder einer Beratung folgen.</p>\n"
|
547
|
+
page: "<p>Eine <strong>Konferenz</strong> ist eine Sammlung von Meetings, die in einem Programm organisiert werden, mit einer Anzahl von Personen, die als Referenten eingeladen werden und andere Informationsfelder, die für große Kongresse oder gesellschaftliche Veranstaltungen typisch sind (Registrierung, Liste der Organisationen, die die Veranstaltung unterstützen oder sponsern, usw.)..</p> <p>Beispiele: Eine Konferenz kann ein relevantes Ereignis für eine Organisation und ihre Mitglieder sein oder im Rahmen eines partizipatorischen Prozesses oder einer Beratung folgen.</p>\n"
|
548
|
+
title: Was sind Konferenzen?
|
541
549
|
log:
|
542
550
|
value_types:
|
543
551
|
conference_presenter:
|