decidim-conferences 0.15.2 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/admin/decidim_conferences_manifest.js +1 -0
- data/app/assets/images/decidim/conferences/conference.svg +2 -5
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +3 -0
- data/app/cells/decidim/conferences/{join_conference_button/show.erb → registration_type/join_conference.erb} +6 -7
- data/app/cells/decidim/conferences/{join_conference_button → registration_type}/registration_confirm.erb +2 -2
- data/app/cells/decidim/conferences/registration_type/show.erb +16 -0
- data/app/cells/decidim/conferences/registration_type_cell.rb +51 -0
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +75 -0
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +77 -0
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +56 -0
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +3 -2
- data/app/commands/decidim/conferences/admin/publish_registration_type.rb +36 -0
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +48 -0
- data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +36 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +2 -2
- data/app/commands/decidim/conferences/admin/update_diploma.rb +47 -0
- data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +74 -0
- data/app/commands/decidim/conferences/join_conference.rb +21 -9
- data/app/commands/decidim/conferences/leave_conference.rb +5 -3
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +21 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +0 -9
- data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +62 -0
- data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +53 -0
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +84 -0
- data/app/controllers/decidim/conferences/application_controller.rb +2 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +6 -2
- data/app/controllers/decidim/conferences/conferences_controller.rb +4 -0
- data/app/controllers/decidim/conferences/registration_types_controller.rb +39 -0
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +21 -0
- data/app/forms/decidim/conferences/admin/conference_form.rb +5 -2
- data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +15 -0
- data/app/forms/decidim/conferences/admin/diploma_form.rb +24 -0
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +44 -0
- data/app/helpers/decidim/conferences/conference_helper.rb +15 -0
- data/app/jobs/decidim/conferences/admin/send_conference_diploma_job.rb +20 -0
- data/app/jobs/decidim/conferences/upcoming_conference_notification_job.rb +1 -1
- data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +2 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +48 -0
- data/app/mailers/decidim/conferences/conference_registration_mailer.rb +16 -1
- data/app/models/decidim/conference.rb +12 -0
- data/app/models/decidim/conference_meeting.rb +2 -0
- data/app/models/decidim/conferences/conference_invite.rb +1 -0
- data/app/models/decidim/conferences/conference_meeting_registration_type.rb +10 -0
- data/app/models/decidim/conferences/conference_registration.rb +11 -0
- data/app/models/decidim/conferences/registration_type.rb +25 -0
- data/app/permissions/decidim/conferences/permissions.rb +19 -12
- data/app/presenters/decidim/conference_speaker_presenter.rb +4 -0
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +43 -0
- data/app/presenters/decidim/conferences/admin_log/conferences_presenter.rb +4 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +45 -0
- data/app/serializers/decidim/conferences/conference_registration_serializer.rb +4 -0
- data/app/serializers/decidim/conferences/data_portability_conference_invite_serializer.rb +4 -0
- data/app/serializers/decidim/conferences/data_portability_conference_registration_serializer.rb +4 -0
- data/app/uploaders/decidim/conferences/diploma_uploader.rb +12 -0
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +4 -0
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +16 -0
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -4
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +31 -0
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +7 -0
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +2 -2
- data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +30 -0
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +7 -0
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +65 -0
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +7 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma.html.erb +1 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +24 -0
- data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +1 -2
- data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +9 -1
- data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +11 -0
- data/app/views/decidim/conferences/conferences/index.html.erb +2 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +10 -24
- data/app/views/decidim/conferences/registration_types/index.html.erb +30 -0
- data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +14 -0
- data/app/views/layouts/decidim/_conference_hero.html.erb +5 -3
- data/app/views/layouts/decidim/_conferences_nav.html.erb +45 -89
- data/app/views/layouts/decidim/admin/conference.html.erb +26 -8
- data/app/views/layouts/decidim/diploma.html.erb +11 -0
- data/config/initializers/wicked_pdf.rb +23 -0
- data/config/locales/ca.yml +125 -19
- data/config/locales/de.yml +127 -21
- data/config/locales/en.yml +127 -21
- data/config/locales/es-PY.yml +125 -19
- data/config/locales/es.yml +125 -19
- data/config/locales/eu.yml +127 -21
- data/config/locales/fi-pl.yml +128 -22
- data/config/locales/fi.yml +128 -22
- data/config/locales/fr.yml +127 -21
- data/config/locales/gl.yml +126 -20
- data/config/locales/hu.yml +127 -21
- data/config/locales/id-ID.yml +125 -20
- data/config/locales/it.yml +127 -21
- data/config/locales/nl.yml +126 -20
- data/config/locales/pl.yml +127 -24
- data/config/locales/pt-BR.yml +125 -19
- data/config/locales/pt.yml +126 -20
- data/config/locales/sv.yml +126 -20
- data/config/locales/tr-TR.yml +125 -22
- data/db/migrate/20181023142325_add_conference_registration_types.rb +21 -0
- data/db/migrate/20181030090202_add_reference_registration_type_to_conference_registration.rb +9 -0
- data/db/migrate/20181030153614_add_registration_type_to_conference_invite.rb +8 -0
- data/db/migrate/20181106092826_add_diploma_fields_to_conference.rb +11 -0
- data/db/migrate/20181123124424_make_price_optional_conference_registration_type.rb +7 -0
- data/lib/decidim/conferences/admin_engine.rb +16 -2
- data/lib/decidim/conferences/engine.rb +8 -4
- data/lib/decidim/conferences/participatory_space.rb +11 -0
- data/lib/decidim/conferences/test/factories.rb +36 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +92 -23
- data/app/cells/decidim/conferences/join_conference_button_cell.rb +0 -42
- data/app/views/decidim/conferences/conferences/_conferences_sidebar.html.erb +0 -11
@@ -0,0 +1,14 @@
|
|
1
|
+
<div class="row" data-equalizer>
|
2
|
+
<div class="column medium-6">
|
3
|
+
<div class="card p-m" data-equalizer-watch>
|
4
|
+
<p><%= t(".already_account") %></p>
|
5
|
+
<%= link_to t(".sign_in"), decidim.new_user_session_path, class: "" %>
|
6
|
+
</div>
|
7
|
+
</div>
|
8
|
+
<div class="column medium-6">
|
9
|
+
<div class="card p-m" data-equalizer-watch>
|
10
|
+
<p><%= t(".new_user") %></p>
|
11
|
+
<%= link_to t(".sign_up"), decidim.new_user_registration_path, class: "" %>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
@@ -20,13 +20,15 @@
|
|
20
20
|
<div class="row column medium-8 text-left mt-m">
|
21
21
|
<div class="column medium-6">
|
22
22
|
<button type="button" class="button hollow light expanded">
|
23
|
-
<%=
|
23
|
+
<%= render_date(current_participatory_space) %>
|
24
24
|
<%= current_participatory_space.location %>
|
25
25
|
</button>
|
26
26
|
</div>
|
27
27
|
<% if current_participatory_space.registrations_enabled? %>
|
28
|
-
<div class="column medium-3">
|
29
|
-
<%=
|
28
|
+
<div class="column medium-3 end">
|
29
|
+
<%= link_to decidim_conferences.conference_registration_types_path(current_participatory_space) do %>
|
30
|
+
<button type="button" class="button button--sc light expanded"><%= t(".register") %></button>
|
31
|
+
<% end %>
|
30
32
|
</div>
|
31
33
|
<% end %>
|
32
34
|
<% current_participatory_space.components.where(manifest_name: "meetings").each do |component_meeting| %>
|
@@ -1,90 +1,46 @@
|
|
1
|
-
<%
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
<div>
|
6
|
-
<button class="process-nav__trigger hide-for-medium" data-toggle="process-nav-content">
|
7
|
-
<%= icon "caret-bottom", class: "icon--small process-nav__trigger__icon", aria_label: t(".unfold"), role: "img" %>
|
8
|
-
<div class="process-nav__link">
|
9
|
-
<% if self.try(:current_component) %>
|
10
|
-
<%= component_icon(current_component) %>
|
11
|
-
<%= translated_attribute(current_component.name) %>
|
12
|
-
<% else %>
|
13
|
-
<%= icon "conference" %>
|
14
|
-
<%= t ".conference_menu_item" %>
|
15
|
-
<% end %>
|
16
|
-
</div>
|
17
|
-
</button>
|
18
|
-
<div class="row column process-nav__content is-active" id="process-nav-content" data-toggler=".is-active">
|
19
|
-
<ul>
|
20
|
-
<li class="<%= "is-active" if is_active_link?(decidim_conferences.conference_path(current_participatory_space), :exclusive) %>">
|
21
|
-
<%= active_link_to decidim_conferences.conference_path(current_participatory_space), active: :exclusive, class: "process-nav__link", class_active: "is-active" do %>
|
22
|
-
<%= external_icon "decidim/conferences/conference.svg" %>
|
23
|
-
<%= t ".conference_menu_item" %>
|
24
|
-
<% end %>
|
25
|
-
</li>
|
1
|
+
<%
|
2
|
+
components = current_participatory_space.components.published.where.not(manifest_name: "meetings")
|
3
|
+
meeting_components = current_participatory_space.components.published.where(manifest_name: "meetings")
|
4
|
+
%>
|
26
5
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
<% if component.published? || component == self.try(:current_component) %>
|
69
|
-
<li class="<%= "is-active" if is_active_link?(main_component_path(component), :inclusive) %>">
|
70
|
-
<%= active_link_to main_component_path(component), active: :inclusive, class: "process-nav__link", class_active: "is-active" do %>
|
71
|
-
<%= component_icon(component) %>
|
72
|
-
<%= translated_attribute(component.name) %>
|
73
|
-
<% end %>
|
74
|
-
</li>
|
75
|
-
<% end %>
|
76
|
-
<% end %>
|
77
|
-
|
78
|
-
<li class="<%= "is-active" if is_active_link?(decidim_conferences.conference_media_path(current_participatory_space), :inclusive) %>">
|
79
|
-
<%= active_link_to decidim_conferences.conference_media_path(current_participatory_space), active: :inclusive, class: "process-nav__link", class_active: "is-active" do %>
|
80
|
-
<%= external_icon "decidim/conferences/conference.svg" %>
|
81
|
-
<%= t ".media" %>
|
82
|
-
<% end %>
|
83
|
-
</li>
|
84
|
-
</ul>
|
85
|
-
</div>
|
86
|
-
</div>
|
87
|
-
</div>
|
88
|
-
</div>
|
89
|
-
</section>
|
90
|
-
<% end %>
|
6
|
+
<%=
|
7
|
+
extended_navigation_bar(([
|
8
|
+
{
|
9
|
+
name: t(".conference_menu_item"),
|
10
|
+
url: decidim_conferences.conference_path(current_participatory_space),
|
11
|
+
active: is_active_link?(decidim_conferences.conference_path(current_participatory_space), :exclusive)
|
12
|
+
},
|
13
|
+
current_participatory_space.speakers.any? ? {
|
14
|
+
name: t(".conference_speaker_menu_item"),
|
15
|
+
url: decidim_conferences.conference_conference_speakers_path(current_participatory_space),
|
16
|
+
active: is_active_link?(decidim_conferences.conference_conference_speakers_path(current_participatory_space), :inclusive)
|
17
|
+
} : nil
|
18
|
+
] + meeting_components.map do |component|
|
19
|
+
{
|
20
|
+
name: translated_attribute(component.name),
|
21
|
+
url: decidim_conferences.conference_conference_program_path(current_participatory_space, id: component.id),
|
22
|
+
active: is_active_link?(decidim_conferences.conference_conference_program_path(current_participatory_space, id: component.id), :inclusive)
|
23
|
+
}
|
24
|
+
end + [
|
25
|
+
current_participatory_space.partners.any? ? {
|
26
|
+
name: t(".conference_partners_menu_item"),
|
27
|
+
url: decidim_conferences.conference_path(current_participatory_space, anchor: "conference-partners"),
|
28
|
+
} : nil,
|
29
|
+
meeting_components.any? ? {
|
30
|
+
name: t(".venues"),
|
31
|
+
url: decidim_conferences.conference_path(current_participatory_space, anchor: "venues")
|
32
|
+
} : nil,
|
33
|
+
] + components.map do |component|
|
34
|
+
{
|
35
|
+
name: translated_attribute(component.name),
|
36
|
+
url: main_component_path(component),
|
37
|
+
active: is_active_link?(main_component_path(component), :inclusive)
|
38
|
+
}
|
39
|
+
end + [
|
40
|
+
current_participatory_space.attachments.any? || current_participatory_space.media_links.any? ? {
|
41
|
+
name: t(".media"),
|
42
|
+
url: decidim_conferences.conference_media_path(current_participatory_space),
|
43
|
+
active: is_active_link?(decidim_conferences.conference_media_path(current_participatory_space), :inclusive)
|
44
|
+
} : nil
|
45
|
+
]).compact)
|
46
|
+
%>
|
@@ -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ó
|