decidim-conferences 0.23.2 → 0.24.0
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/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 +10 -3
- data/config/locales/de.yml +10 -3
- 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 +11 -4
- data/config/locales/fi.yml +11 -4
- 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 +4 -3
- data/config/locales/no.yml +0 -4
- data/config/locales/pl.yml +14 -7
- data/config/locales/pt-BR.yml +0 -4
- data/config/locales/pt.yml +0 -4
- data/config/locales/ro-RO.yml +60 -3
- data/config/locales/sk.yml +0 -4
- data/config/locales/sv.yml +6 -4
- data/config/locales/tr-TR.yml +7 -4
- data/config/locales/zh-CN.yml +0 -4
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +16 -0
- 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 +21 -16
- 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
@@ -273,9 +273,9 @@ 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"
|
@@ -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
|
@@ -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:
|
data/config/locales/de.yml
CHANGED
@@ -267,9 +267,9 @@ de:
|
|
267
267
|
conference_registration:
|
268
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} hat den
|
272
|
-
update: "%{user_name} hat %{resource_name} in der Konferenz %{space_name} aktualisiert"
|
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
274
|
create: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} erstellt"
|
275
275
|
publish: "%{user_name} hat den Registrierungstyp %{resource_name} in der Konferenz %{space_name} veröffentlicht"
|
@@ -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
|
@@ -539,6 +540,12 @@ de:
|
|
539
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.
|
540
541
|
email_subject: Die Konferenz "%{resource_title}" kommt!
|
541
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?
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|
data/config/locales/el.yml
CHANGED
@@ -266,10 +266,6 @@ el:
|
|
266
266
|
conferences:
|
267
267
|
conference_registration:
|
268
268
|
confirm: "Ο χρήστης %{user_name} επιβεβαίωση μια εγγραφή διάσκεψης στη διάσκεψη %{resource_name}"
|
269
|
-
partner:
|
270
|
-
create: "Ο χρήστης %{user_name} δημιούργησε %{resource_name} στη διάσκεψη %{space_name}"
|
271
|
-
delete: "Ο χρήστης %{user_name} κατάργησε τον διαχειριστή %{resource_name} από τη διάσκεψη %{space_name}"
|
272
|
-
update: "Ο χρήστης %{user_name} ενημέρωσε το στοιχείο %{resource_name} στη διάσκεψη %{space_name}"
|
273
269
|
registration_type:
|
274
270
|
create: "Ο χρήστης %{user_name} δημιούργησε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
|
275
271
|
publish: "Ο χρήστης %{user_name} δημοσίευσε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
|
data/config/locales/en.yml
CHANGED
@@ -268,9 +268,9 @@ en:
|
|
268
268
|
conference_registration:
|
269
269
|
confirm: "%{user_name} confirmed a conference registration in %{resource_name} conference"
|
270
270
|
partner:
|
271
|
-
create: "%{user_name} created %{resource_name}
|
272
|
-
delete: "%{user_name} removed the
|
273
|
-
update: "%{user_name} updated %{resource_name} in the %{space_name} conference"
|
271
|
+
create: "%{user_name} created the partner %{resource_name} in the %{space_name} conference"
|
272
|
+
delete: "%{user_name} removed the partner %{resource_name} from the %{space_name} conference"
|
273
|
+
update: "%{user_name} updated the partner %{resource_name} in the %{space_name} conference"
|
274
274
|
registration_type:
|
275
275
|
create: "%{user_name} created the %{resource_name} registration type in the %{space_name} conference"
|
276
276
|
publish: "%{user_name} published the %{resource_name} registration type in the %{space_name} conference"
|
@@ -403,6 +403,7 @@ en:
|
|
403
403
|
personal_website: Personal website
|
404
404
|
show:
|
405
405
|
more_info: more info
|
406
|
+
speaking_at: Speaking at
|
406
407
|
conference_speaker_cell:
|
407
408
|
personal_url:
|
408
409
|
personal_website: Personal website
|
@@ -540,6 +541,12 @@ en:
|
|
540
541
|
email_outro: You have received this notification because you are following the "%{resource_title}" conference. You can unfollow it from the previous link.
|
541
542
|
email_subject: The "%{resource_title}" conference is coming!
|
542
543
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> conference is coming in 2 days.
|
544
|
+
help:
|
545
|
+
participatory_spaces:
|
546
|
+
conferences:
|
547
|
+
contextual: "<p>A <strong>conference</strong> is a collection of meetings arranged in a programme, with a number of people invited as speakers, and other information fields typical of large congresses or social events (registration, list of organisations that support or sponsor the event, etc.).</p> <p>Examples: A conference can be a relevant event for an organization and its members, or take place as part of a participatory process or follow a consultation.</p>\n"
|
548
|
+
page: "<p>A <strong>conference</strong> is a collection of meetings arranged in a programme, with a number of people invited as speakers, and other information fields typical of large congresses or social events (registration, list of organisations that support or sponsor the event, etc.).</p> <p>Examples: A conference can be a relevant event for an organization and its members, or take place as part of a participatory process or follow a consultation.</p>\n"
|
549
|
+
title: What are conferences?
|
543
550
|
log:
|
544
551
|
value_types:
|
545
552
|
conference_presenter:
|
data/config/locales/es-MX.yml
CHANGED
@@ -267,9 +267,9 @@ es-MX:
|
|
267
267
|
conference_registration:
|
268
268
|
confirm: "%{user_name} ha confirmado su inscripción a la conferencia %{resource_name}"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name}
|
271
|
-
delete: "%{user_name}
|
272
|
-
update: "%{user_name}
|
270
|
+
create: "%{user_name} creó la colaboradora %{resource_name} en la jornada %{space_name}"
|
271
|
+
delete: "%{user_name} eliminó la colaboradora %{resource_name} de la jornada %{space_name}"
|
272
|
+
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
273
273
|
registration_type:
|
274
274
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
275
275
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -402,6 +402,7 @@ es-MX:
|
|
402
402
|
personal_website: Sitio web personal
|
403
403
|
show:
|
404
404
|
more_info: más información
|
405
|
+
speaking_at: Interviene en
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Sitio web personal
|
@@ -539,6 +540,12 @@ es-MX:
|
|
539
540
|
email_outro: Ha recibido esta notificación porque está siguiendo la conferencia "%{resource_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
540
541
|
email_subject: '¡Se acerca la conferencia "%{resource_title}"!'
|
541
542
|
notification_title: La conferencia <a href="%{resource_path}">%{resource_title}</a> llegará en 2 días.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p>Una <strong>conferencia</strong> es una colección de reuniones organizadas en un programa, con un número de personas invitadas como ponentes, y otros campos de información típicos de grandes congresos o eventos sociales (registro, lista de organizaciones que apoyan o patrocinan el evento, etc.)..</p> <p>Ejemplos: Una conferencia puede ser un evento relevante para una organización y sus miembros, o tiene lugar como parte de un proceso participativo o después de una consulta.</p>\n"
|
547
|
+
page: "<p>Una <strong>conferencia</strong> es una colección de reuniones organizadas en un programa, con un número de personas invitadas como ponentes, y otros campos de información típicos de grandes congresos o eventos sociales (registro, lista de organizaciones que apoyan o patrocinan el evento, etc.)..</p> <p>Ejemplos: Una conferencia puede ser un evento relevante para una organización y sus miembros, o tiene lugar como parte de un proceso participativo o después de una consulta.</p>"
|
548
|
+
title: '¿Qué son las conferencias?'
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|
data/config/locales/es-PY.yml
CHANGED
@@ -267,9 +267,9 @@ es-PY:
|
|
267
267
|
conference_registration:
|
268
268
|
confirm: "%{user_name} ha confirmado su inscripción a la conferencia %{resource_name}"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name}
|
271
|
-
delete: "%{user_name}
|
272
|
-
update: "%{user_name}
|
270
|
+
create: "%{user_name} creó la colaboradora %{resource_name} en la jornada %{space_name}"
|
271
|
+
delete: "%{user_name} eliminó la colaboradora %{resource_name} de la jornada %{space_name}"
|
272
|
+
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
273
273
|
registration_type:
|
274
274
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
275
275
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -402,6 +402,7 @@ es-PY:
|
|
402
402
|
personal_website: Sitio web personal
|
403
403
|
show:
|
404
404
|
more_info: más información
|
405
|
+
speaking_at: Interviene en
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Sitio web personal
|
@@ -539,6 +540,12 @@ es-PY:
|
|
539
540
|
email_outro: Ha recibido esta notificación porque está siguiendo la conferencia "%{resource_title}". Puedes dejar de seguirlo desde el enlace anterior.
|
540
541
|
email_subject: '¡Se acerca la conferencia "%{resource_title}"!'
|
541
542
|
notification_title: La conferencia <a href="%{resource_path}">%{resource_title}</a> llegará en 2 días.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p>Una <strong>conferencia</strong> es una colección de reuniones organizadas en un programa, con un número de personas invitadas como ponentes, y otros campos de información típicos de grandes congresos o eventos sociales (registro, lista de organizaciones que apoyan o patrocinan el evento, etc.)..</p> <p>Ejemplos: Una conferencia puede ser un evento relevante para una organización y sus miembros, o tiene lugar como parte de un proceso participativo o después de una consulta.</p>\n"
|
547
|
+
page: "<p>Una <strong>conferencia</strong> es una colección de reuniones organizadas en un programa, con un número de personas invitadas como ponentes, y otros campos de información típicos de grandes congresos o eventos sociales (registro, lista de organizaciones que apoyan o patrocinan el evento, etc.)..</p> <p>Ejemplos: Una conferencia puede ser un evento relevante para una organización y sus miembros, o tiene lugar como parte de un proceso participativo o después de una consulta.</p>"
|
548
|
+
title: '¿Qué son las conferencias?'
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|
data/config/locales/es.yml
CHANGED
@@ -267,9 +267,9 @@ es:
|
|
267
267
|
conference_registration:
|
268
268
|
confirm: "%{user_name} ha confirmado su inscripción a la jornada %{resource_name}"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name}
|
271
|
-
delete: "%{user_name}
|
272
|
-
update: "%{user_name}
|
270
|
+
create: "%{user_name} creó la colaboradora %{resource_name} en la jornada %{space_name}"
|
271
|
+
delete: "%{user_name} eliminó la colaboradora %{resource_name} de la jornada %{space_name}"
|
272
|
+
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
273
273
|
registration_type:
|
274
274
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
275
275
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -402,6 +402,7 @@ es:
|
|
402
402
|
personal_website: Sitio web personal
|
403
403
|
show:
|
404
404
|
more_info: más información
|
405
|
+
speaking_at: Interviene en
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Sitio web personal
|
@@ -494,7 +495,7 @@ es:
|
|
494
495
|
statistics:
|
495
496
|
answers_count: Respuestas
|
496
497
|
comments_count: Comentarios
|
497
|
-
conference_count:
|
498
|
+
conference_count: Jornadas
|
498
499
|
debates_count: Debates
|
499
500
|
endorsements_count: Adhesiones
|
500
501
|
headline: Actividad
|
@@ -539,6 +540,12 @@ es:
|
|
539
540
|
email_outro: Has recibido esta notificación porque estás siguiendo la jornada "%{resource_title}". Puedes dejar de seguirla desde el enlace anterior.
|
540
541
|
email_subject: '¡Se acerca la jornada "%{resource_title}"!'
|
541
542
|
notification_title: La jornada <a href="%{resource_path}">%{resource_title}</a> se realizará dentro de 2 días.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p>Una <strong>conferencia</strong> es una colección de reuniones organizadas en un programa, con un número de personas invitadas como ponentes, y otros campos de información típicos de grandes congresos o eventos sociales (registro, lista de organizaciones que apoyan o patrocinan el evento, etc.)..</p> <p>Ejemplos: Una conferencia puede ser un evento relevante para una organización y sus miembros, o tiene lugar como parte de un proceso participativo o después de una consulta.</p>\n"
|
547
|
+
page: "<p>Una <strong>conferencia</strong> es una colección de reuniones organizadas en un programa, con un número de personas invitadas como ponentes, y otros campos de información típicos de grandes congresos o eventos sociales (registro, lista de organizaciones que apoyan o patrocinan el evento, etc.)..</p> <p>Ejemplos: Una conferencia puede ser un evento relevante para una organización y sus miembros, o tiene lugar como parte de un proceso participativo o después de una consulta.</p>"
|
548
|
+
title: '¿Qué son las conferencias?'
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|
data/config/locales/eu.yml
CHANGED
@@ -265,10 +265,6 @@ eu:
|
|
265
265
|
conferences:
|
266
266
|
conference_registration:
|
267
267
|
confirm: "%{user_name} Kongresuko matrikula bat baieztatu da %{resource_name} Kongresuan"
|
268
|
-
partner:
|
269
|
-
create: "%{user_name} sortu %{resource_name} %{space_name} konferentzia"
|
270
|
-
delete: "%{user_name} kendu erabiltzaileak %{resource_name} tik %{space_name} konferentzia"
|
271
|
-
update: "%{user_name} eguneratzen %{resource_name} parte %{space_name} konferentzia"
|
272
268
|
registration_type:
|
273
269
|
create: "%{user_name} sortutako %{resource_name} matrikula mota %{space_name} konferentzia"
|
274
270
|
publish: "%{user_name} argitaratutako %{resource_name} izen-emate mota %{space_name} biltzarrean"
|
data/config/locales/fi-plain.yml
CHANGED
@@ -267,9 +267,9 @@ fi-pl:
|
|
267
267
|
conference_registration:
|
268
268
|
confirm: "%{user_name} vahvisti konferenssin %{resource_name} ilmoittautumisen"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name} loi %{resource_name}
|
271
|
-
delete: "%{user_name} poisti
|
272
|
-
update: "%{user_name} päivitti %{resource_name}
|
270
|
+
create: "%{user_name} loi yhteistyökumppanin %{resource_name} konferenssissa %{space_name}"
|
271
|
+
delete: "%{user_name} poisti yhteistyökumppanin %{resource_name} konferenssissa %{space_name}"
|
272
|
+
update: "%{user_name} päivitti yhteistyökumppania %{resource_name} konferenssissa %{space_name}"
|
273
273
|
registration_type:
|
274
274
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
275
275
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
@@ -402,6 +402,7 @@ fi-pl:
|
|
402
402
|
personal_website: Henkilökohtainen verkkosivusto
|
403
403
|
show:
|
404
404
|
more_info: lisätietoja
|
405
|
+
speaking_at: Esitys alkaa klo
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Henkilökohtainen verkkosivusto
|
@@ -494,7 +495,7 @@ fi-pl:
|
|
494
495
|
statistics:
|
495
496
|
answers_count: Vastauksia
|
496
497
|
comments_count: Kommentteja
|
497
|
-
conference_count:
|
498
|
+
conference_count: Konferenssit
|
498
499
|
debates_count: Keskusteluita
|
499
500
|
endorsements_count: Suosituksia
|
500
501
|
headline: Toiminta
|
@@ -539,6 +540,12 @@ fi-pl:
|
|
539
540
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat konferenssia "%{resource_title}". Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
540
541
|
email_subject: Konferenssi "%{resource_title}" on tulossa!
|
541
542
|
notification_title: Konferenssi <a href="%{resource_path}">%{resource_title}</a> on tulossa kahden päivän päästä.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p><strong>Konferenssi</strong> on useiden tapahtumien sarja, mihin kutsutaan puhujia ja jolle määritetään useita tietotyyppejä, jotka ovat tyypillisä suurille kongresseille tai sosiaalisille tapahtumille (ilmoittautumiset, kannatusorganisaatioiden tai rahoittajien listat, jne.).</p><p>Esimerkkejä: Konferenssi voidaan järjestää organisaatiolle ja sen jäsenille tai se voi olla jonkin osallistumisprosessin yksi osa tai kuulemisen jälkeinen tapahtuma.</p>\n"
|
547
|
+
page: "<p><strong>Konferenssi</strong> on useiden tapahtumien sarja, mihin kutsutaan puhujia ja jolle määritetään useita tietotyyppejä, jotka ovat tyypillisä suurille kongresseille tai sosiaalisille tapahtumille (ilmoittautumiset, kannatusorganisaatioiden tai rahoittajien listat, jne.).</p><p>Esimerkkejä: Konferenssi voidaan järjestää organisaatiolle ja sen jäsenille tai se voi olla jonkin osallistumisprosessin yksi osa tai kuulemisen jälkeinen tapahtuma.</p>\n"
|
548
|
+
title: Mitä konferenssit ovat?
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|
data/config/locales/fi.yml
CHANGED
@@ -267,9 +267,9 @@ fi:
|
|
267
267
|
conference_registration:
|
268
268
|
confirm: "%{user_name} vahvisti konferenssin %{resource_name} ilmoittautumisen"
|
269
269
|
partner:
|
270
|
-
create: "%{user_name} loi %{resource_name}
|
271
|
-
delete: "%{user_name} poisti
|
272
|
-
update: "%{user_name} päivitti %{resource_name}
|
270
|
+
create: "%{user_name} loi yhteistyökumppanin %{resource_name} konferenssissa %{space_name}"
|
271
|
+
delete: "%{user_name} poisti yhteistyökumppanin %{resource_name} konferenssissa %{space_name}"
|
272
|
+
update: "%{user_name} päivitti yhteistyökumppania %{resource_name} konferenssissa %{space_name}"
|
273
273
|
registration_type:
|
274
274
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
275
275
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
@@ -402,6 +402,7 @@ fi:
|
|
402
402
|
personal_website: Henkilökohtainen verkkosivusto
|
403
403
|
show:
|
404
404
|
more_info: lisätietoja
|
405
|
+
speaking_at: Esitys alkaa klo
|
405
406
|
conference_speaker_cell:
|
406
407
|
personal_url:
|
407
408
|
personal_website: Henkilökohtainen verkkosivusto
|
@@ -494,7 +495,7 @@ fi:
|
|
494
495
|
statistics:
|
495
496
|
answers_count: Vastausta
|
496
497
|
comments_count: Kommenttia
|
497
|
-
conference_count:
|
498
|
+
conference_count: Konferenssit
|
498
499
|
debates_count: Keskustelua
|
499
500
|
endorsements_count: Suositusta
|
500
501
|
headline: Toiminta
|
@@ -539,6 +540,12 @@ fi:
|
|
539
540
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat konferenssia "%{resource_title}". Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
540
541
|
email_subject: Konferenssi "%{resource_title}" on tulossa!
|
541
542
|
notification_title: Konferenssi <a href="%{resource_path}">%{resource_title}</a> on tulossa kahden päivän päästä.
|
543
|
+
help:
|
544
|
+
participatory_spaces:
|
545
|
+
conferences:
|
546
|
+
contextual: "<p><strong>Konferenssi</strong> on useiden tapahtumien sarja, mihin kutsutaan puhujia ja jolle määritetään useita tietotyyppejä, jotka ovat tyypillisä suurille kongresseille tai sosiaalisille tapahtumille (ilmoittautumiset, kannatusorganisaatioiden tai rahoittajien listat, jne.).</p><p>Esimerkkejä: Konferenssi voidaan järjestää organisaatiolle ja sen jäsenille tai se voi olla jonkin osallistumisprosessin yksi osa tai kuulemisen jälkeinen tapahtuma.</p>\n"
|
547
|
+
page: "<p><strong>Konferenssi</strong> on useiden tapahtumien sarja, mihin kutsutaan puhujia ja jolle määritetään useita tietotyyppejä, jotka ovat tyypillisä suurille kongresseille tai sosiaalisille tapahtumille (ilmoittautumiset, kannatusorganisaatioiden tai rahoittajien listat, jne.).</p><p>Esimerkkejä: Konferenssi voidaan järjestää organisaatiolle ja sen jäsenille tai se voi olla jonkin osallistumisprosessin yksi osa tai kuulemisen jälkeinen tapahtuma.</p>\n"
|
548
|
+
title: Mitä konferenssit ovat?
|
542
549
|
log:
|
543
550
|
value_types:
|
544
551
|
conference_presenter:
|