decidim-conferences 0.18.0 → 0.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheet/decidim/conferences/conferences.scss +3 -0
- data/app/cells/decidim/conferences/conference_address/show.erb +1 -1
- data/app/cells/decidim/conferences/conference_speaker/show.erb +2 -2
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +6 -2
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +6 -0
- data/app/cells/decidim/conferences/partner_cell.rb +2 -0
- data/app/cells/decidim/conferences/photos_list_cell.rb +1 -0
- data/app/cells/decidim/conferences/registration_type_cell.rb +2 -0
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +1 -0
- data/app/commands/decidim/conferences/admin/create_conference.rb +0 -10
- data/app/commands/decidim/conferences/admin/create_conference_admin.rb +1 -0
- data/app/commands/decidim/conferences/admin/publish_conference.rb +12 -0
- data/app/commands/decidim/conferences/admin/update_conference.rb +6 -2
- data/app/commands/decidim/conferences/admin/update_diploma.rb +1 -0
- data/app/commands/decidim/conferences/join_conference.rb +2 -0
- data/app/commands/decidim/conferences/leave_conference.rb +1 -0
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +3 -1
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conference_user_roles_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +2 -1
- data/app/controllers/decidim/conferences/conference_program_controller.rb +4 -1
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +1 -0
- data/app/controllers/decidim/conferences/conference_speakers_controller.rb +1 -0
- data/app/controllers/decidim/conferences/media_controller.rb +1 -0
- data/app/controllers/decidim/conferences/registration_types_controller.rb +1 -0
- data/app/forms/decidim/conferences/admin/conference_form.rb +4 -0
- data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -0
- data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -0
- data/app/helpers/decidim/conferences/conference_helper.rb +1 -0
- data/app/models/decidim/conference.rb +17 -4
- data/app/models/decidim/conference_user_role.rb +1 -0
- data/app/permissions/decidim/conferences/permissions.rb +6 -0
- data/app/presenters/decidim/conferences/admin_log/value_types/role_presenter.rb +1 -0
- data/app/presenters/decidim/log/value_types/conference_presenter.rb +1 -0
- data/app/queries/decidim/conferences/admin/conference_invites.rb +1 -0
- data/app/queries/decidim/conferences/admin/conference_speakers.rb +1 -0
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +1 -0
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +4 -3
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +4 -3
- data/app/views/decidim/conferences/admin/partners/index.html.erb +1 -0
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +1 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +1 -1
- data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +1 -1
- data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/_partners.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +3 -3
- data/app/views/decidim/conferences/media/index.html.erb +2 -2
- data/app/views/layouts/decidim/_conference_hero.html.erb +2 -2
- data/app/views/layouts/decidim/diploma.html.erb +2 -2
- data/config/locales/ar.yml +5 -2
- data/config/locales/cs.yml +55 -55
- data/config/locales/de.yml +10 -10
- data/config/locales/el-GR.yml +1 -0
- data/config/locales/fr.yml +94 -94
- data/config/locales/hu.yml +1 -1
- data/config/locales/is-IS.yml +1 -0
- data/config/locales/it.yml +3 -3
- data/config/locales/nl.yml +2 -2
- data/config/locales/no.yml +571 -0
- data/lib/decidim/conferences/participatory_space.rb +3 -0
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +23 -20
@@ -62,6 +62,7 @@ module Decidim
|
|
62
62
|
|
63
63
|
def processes_for_select
|
64
64
|
return unless Decidim.participatory_space_manifests.map(&:name).include?(:participatory_processes)
|
65
|
+
|
65
66
|
@processes_for_select ||= Decidim.find_participatory_space_manifest(:participatory_processes)
|
66
67
|
.participatory_spaces.call(current_organization)&.order(title: :asc)&.map do |process|
|
67
68
|
[
|
@@ -73,6 +74,7 @@ module Decidim
|
|
73
74
|
|
74
75
|
def assemblies_for_select
|
75
76
|
return unless Decidim.participatory_space_manifests.map(&:name).include?(:assemblies)
|
77
|
+
|
76
78
|
@assemblies_for_select ||= Decidim.find_participatory_space_manifest(:assemblies)
|
77
79
|
.participatory_spaces.call(current_organization)&.order(title: :asc)&.map do |assembly|
|
78
80
|
[
|
@@ -84,6 +86,7 @@ module Decidim
|
|
84
86
|
|
85
87
|
def consultations_for_select
|
86
88
|
return unless Decidim.participatory_space_manifests.map(&:name).include?(:consultations)
|
89
|
+
|
87
90
|
@consultations_for_select ||= Decidim.find_participatory_space_manifest(:consultations)
|
88
91
|
.participatory_spaces.call(current_organization)&.order(title: :asc)&.map do |consultation|
|
89
92
|
[
|
@@ -98,6 +101,7 @@ module Decidim
|
|
98
101
|
def available_slots_greater_than_or_equal_to_registrations_count
|
99
102
|
conference = OrganizationConferences.new(current_organization).query.find_by(slug: slug)
|
100
103
|
return true if conference.blank?
|
104
|
+
|
101
105
|
errors.add(:available_slots, :invalid) if available_slots < conference.conference_registrations.count
|
102
106
|
end
|
103
107
|
|
@@ -50,6 +50,7 @@ module Decidim
|
|
50
50
|
def conference_meetings
|
51
51
|
meeting_components = current_participatory_space.components.where(manifest_name: "meetings")
|
52
52
|
return unless meeting_components || conference_meeting_ids.delete("").present?
|
53
|
+
|
53
54
|
@conference_meetings ||= Decidim::ConferenceMeeting.where(component: meeting_components).where(id: conference_meeting_ids)
|
54
55
|
end
|
55
56
|
|
@@ -36,6 +36,7 @@ module Decidim
|
|
36
36
|
def conference_meetings
|
37
37
|
meeting_components = current_participatory_space.components.where(manifest_name: "meetings")
|
38
38
|
return unless meeting_components || conference_meeting_ids.delete("").present?
|
39
|
+
|
39
40
|
@conference_meetings ||= Decidim::ConferenceMeeting.where(component: meeting_components).where(id: conference_meeting_ids)
|
40
41
|
end
|
41
42
|
end
|
@@ -8,6 +8,7 @@ module Decidim
|
|
8
8
|
#
|
9
9
|
def render_date(conference)
|
10
10
|
return l(conference.start_date, format: :decidim_with_month_name_short) if conference.start_date == conference.end_date
|
11
|
+
|
11
12
|
"#{l(conference.start_date, format: :decidim_with_month_name_short)} - #{l(conference.end_date, format: :decidim_with_month_name_short)}"
|
12
13
|
end
|
13
14
|
end
|
@@ -16,14 +16,12 @@ module Decidim
|
|
16
16
|
include Decidim::Traceable
|
17
17
|
include Decidim::Loggable
|
18
18
|
include Decidim::ParticipatorySpaceResourceable
|
19
|
+
include Decidim::Searchable
|
19
20
|
|
20
21
|
belongs_to :organization,
|
21
22
|
foreign_key: "decidim_organization_id",
|
22
23
|
class_name: "Decidim::Organization"
|
23
|
-
|
24
|
-
foreign_key: "decidim_area_id",
|
25
|
-
class_name: "Decidim::Area",
|
26
|
-
optional: true
|
24
|
+
|
27
25
|
has_many :categories,
|
28
26
|
foreign_key: "decidim_participatory_space_id",
|
29
27
|
foreign_type: "decidim_participatory_space_type",
|
@@ -58,6 +56,18 @@ module Decidim
|
|
58
56
|
mount_uploader :main_logo, Decidim::Conferences::DiplomaUploader
|
59
57
|
mount_uploader :signature, Decidim::Conferences::DiplomaUploader
|
60
58
|
|
59
|
+
searchable_fields({
|
60
|
+
scope_id: :decidim_scope_id,
|
61
|
+
participatory_space: :itself,
|
62
|
+
A: :title,
|
63
|
+
B: :slogan,
|
64
|
+
C: :short_description,
|
65
|
+
D: [:description, :objectives],
|
66
|
+
datetime: :published_at
|
67
|
+
},
|
68
|
+
index_on_create: ->(_conference) { false },
|
69
|
+
index_on_update: ->(conference) { conference.visible? })
|
70
|
+
|
61
71
|
# Scope to return only the promoted conferences.
|
62
72
|
#
|
63
73
|
# Returns an ActiveRecord::Relation.
|
@@ -87,6 +97,7 @@ module Decidim
|
|
87
97
|
|
88
98
|
def has_available_slots?
|
89
99
|
return true if available_slots.zero?
|
100
|
+
|
90
101
|
available_slots > conference_registrations.count
|
91
102
|
end
|
92
103
|
|
@@ -96,11 +107,13 @@ module Decidim
|
|
96
107
|
|
97
108
|
def diploma_sent?
|
98
109
|
return false if diploma_sent_at.nil?
|
110
|
+
|
99
111
|
true
|
100
112
|
end
|
101
113
|
|
102
114
|
def closed?
|
103
115
|
return false if end_date.blank?
|
116
|
+
|
104
117
|
end_date < Date.current
|
105
118
|
end
|
106
119
|
end
|
@@ -24,6 +24,7 @@ module Decidim
|
|
24
24
|
# Private: check if the process and the user have the same organization
|
25
25
|
def user_and_conference_same_organization
|
26
26
|
return if !conference || !user
|
27
|
+
|
27
28
|
errors.add(:conference, :invalid) unless user.organization == conference.organization
|
28
29
|
end
|
29
30
|
end
|
@@ -30,6 +30,7 @@ module Decidim
|
|
30
30
|
end
|
31
31
|
|
32
32
|
return permission_action unless user
|
33
|
+
|
33
34
|
if !has_manageable_conferences? && !user.admin?
|
34
35
|
disallow!
|
35
36
|
return permission_action
|
@@ -94,12 +95,14 @@ module Decidim
|
|
94
95
|
# Checks if it has any manageable conference, with any possible role.
|
95
96
|
def has_manageable_conferences?(role: :any)
|
96
97
|
return unless user
|
98
|
+
|
97
99
|
conferences_with_role_privileges(role).any?
|
98
100
|
end
|
99
101
|
|
100
102
|
# Whether the user can manage the given conference or not.
|
101
103
|
def can_manage_conference?(role: :any)
|
102
104
|
return unless user
|
105
|
+
|
103
106
|
conferences_with_role_privileges(role).include? conference
|
104
107
|
end
|
105
108
|
|
@@ -123,6 +126,7 @@ module Decidim
|
|
123
126
|
|
124
127
|
return allow! if user&.admin?
|
125
128
|
return allow! if conference.published?
|
129
|
+
|
126
130
|
toggle_allow(can_manage_conference?)
|
127
131
|
end
|
128
132
|
|
@@ -222,12 +226,14 @@ module Decidim
|
|
222
226
|
# Everyone can read the conference list
|
223
227
|
def user_can_read_conference_list?
|
224
228
|
return unless read_conference_list_permission_action?
|
229
|
+
|
225
230
|
toggle_allow(user.admin? || has_manageable_conferences?)
|
226
231
|
end
|
227
232
|
|
228
233
|
def user_can_read_current_conference?
|
229
234
|
return unless read_conference_list_permission_action?
|
230
235
|
return if permission_action.subject == :conference_list
|
236
|
+
|
231
237
|
toggle_allow(user.admin? || can_manage_conference?)
|
232
238
|
end
|
233
239
|
|
@@ -36,6 +36,7 @@ module Decidim
|
|
36
36
|
|
37
37
|
def filter_by_search(conference_invites)
|
38
38
|
return conference_invites if @query.blank?
|
39
|
+
|
39
40
|
conference_invites.joins(:user).where(
|
40
41
|
User.arel_table[:name].lower.matches("%#{@query}%").or(User.arel_table[:email].lower.matches("%#{@query}%"))
|
41
42
|
)
|
@@ -25,10 +25,10 @@
|
|
25
25
|
<% @conference_user_roles.each do |role| %>
|
26
26
|
<tr>
|
27
27
|
<td>
|
28
|
-
<%= role.user.name %><br
|
28
|
+
<%= role.user.name %><br>
|
29
29
|
</td>
|
30
30
|
<td>
|
31
|
-
<%= role.user.email %><br
|
31
|
+
<%= role.user.email %><br>
|
32
32
|
</td>
|
33
33
|
<td>
|
34
34
|
<% if role.user.invitation_sent_at %>
|
@@ -41,7 +41,7 @@
|
|
41
41
|
<% end %>
|
42
42
|
</td>
|
43
43
|
<td>
|
44
|
-
<%= t("#{role.role}", scope: "decidim.admin.models.conference_user_role.roles") %><br
|
44
|
+
<%= t("#{role.role}", scope: "decidim.admin.models.conference_user_role.roles") %><br>
|
45
45
|
</td>
|
46
46
|
<td class="table-list__actions">
|
47
47
|
<% if allowed_to?(:invite, :conference_user_role, user_role: role) && role.user.invited_to_sign_up? %>
|
@@ -60,6 +60,7 @@
|
|
60
60
|
<% end %>
|
61
61
|
</tbody>
|
62
62
|
</table>
|
63
|
+
<%= paginate @conference_user_roles, theme: "decidim" %>
|
63
64
|
</div>
|
64
65
|
</div>
|
65
66
|
</div>
|
@@ -26,11 +26,11 @@
|
|
26
26
|
</span>
|
27
27
|
<% end %>
|
28
28
|
<% if allowed_to? :update, :conference, conference: conference %>
|
29
|
-
<%= link_to translated_attribute(conference.title), edit_conference_path(conference) %><br
|
29
|
+
<%= link_to translated_attribute(conference.title), edit_conference_path(conference) %><br>
|
30
30
|
<% elsif allowed_to? :preview, :conference, conference: conference %>
|
31
|
-
<%= link_to translated_attribute(conference.title), decidim_conferences.conference_path(conference) %><br
|
31
|
+
<%= link_to translated_attribute(conference.title), decidim_conferences.conference_path(conference) %><br>
|
32
32
|
<% elsif allowed_to? :read, :moderation, conference: conference %>
|
33
|
-
<%= link_to translated_attribute(conference.title), moderations_path(conference) %><br
|
33
|
+
<%= link_to translated_attribute(conference.title), moderations_path(conference) %><br>
|
34
34
|
<% else %>
|
35
35
|
<%= translated_attribute(conference.title) %>
|
36
36
|
<% end %>
|
@@ -60,6 +60,7 @@
|
|
60
60
|
<% end %>
|
61
61
|
</tbody>
|
62
62
|
</table>
|
63
|
+
<%= paginate @conferences, theme: "decidim" %>
|
63
64
|
</div>
|
64
65
|
</div>
|
65
66
|
</div>
|
data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
<h3><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance") %></h3>
|
11
11
|
<p><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance_description", user: @user.name, title: translated_attribute(@conference.title), location: @conference.location, start: l(@conference.start_date, format: :decidim_short), end: l(@conference.end_date, format: :decidim_short) ).html_safe %></p>
|
12
12
|
</div>
|
13
|
-
<hr class="reset mt-m mb-m"
|
13
|
+
<hr class="reset mt-m mb-m">
|
14
14
|
<div class="diploma__attendance">
|
15
15
|
<strong><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.attendance_verified_by") %></strong>
|
16
16
|
<div>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<p><%= t(".details_1", registration_type: translated_attribute(@registration_type.title), price: number_to_currency((@registration_type.price || 0), locale: I18n.locale, unit: Decidim.currency_unit)) %></p>
|
4
4
|
|
5
5
|
<ul>
|
6
|
-
<% @registration_type.conference_meetings.each do |conference_meeting| %>
|
6
|
+
<% @registration_type.conference_meetings.order(:start_time).each do |conference_meeting| %>
|
7
7
|
<li><%= present(conference_meeting).title %> </li>
|
8
8
|
<% end %>
|
9
9
|
</ul>
|
data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
<p><%= t(".details", registration_type: translated_attribute(@registration_type.title), price: number_to_currency((@registration_type.price || 0), locale: I18n.locale, unit: Decidim.currency_unit)) %></p>
|
4
4
|
|
5
5
|
<ul>
|
6
|
-
<% @registration_type.conference_meetings.each do |conference_meeting| %>
|
6
|
+
<% @registration_type.conference_meetings.order(:start_time).each do |conference_meeting| %>
|
7
7
|
<li><%= present(conference_meeting).title %> </li>
|
8
8
|
<% end %>
|
9
9
|
</ul>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<% if conference.partners.any? %>
|
2
2
|
<div id="conference-partners">
|
3
3
|
<% conference.partners.group_by(&:partner_type).each do |partner_type, partners| %>
|
4
|
-
<hr class="reset mt-none mb-m"
|
4
|
+
<hr class="reset mt-none mb-m">
|
5
5
|
<section class="section">
|
6
6
|
<h1 class="section-heading"><%= t(".#{partner_type.pluralize}") %></h1>
|
7
7
|
<div class="row small-up-2 medium-up-3 card-grid">
|
@@ -22,7 +22,7 @@ edit_link(
|
|
22
22
|
<h4 class="section-heading"><%= t("conferences.show.introduction", scope: "decidim") %></h4>
|
23
23
|
<%= decidim_sanitize translated_attribute(current_participatory_space.short_description) %>
|
24
24
|
</section>
|
25
|
-
<hr class="reset mt-none mb-m"
|
25
|
+
<hr class="reset mt-none mb-m">
|
26
26
|
<section class="section">
|
27
27
|
<h4 class="section-heading"><%= t("conferences.show.details", scope: "decidim") %></h4>
|
28
28
|
<%= decidim_sanitize translated_attribute(current_participatory_space.description) %>
|
@@ -53,7 +53,7 @@ edit_link(
|
|
53
53
|
<%= render_hook(:conference_venues) %>
|
54
54
|
|
55
55
|
<% if current_participatory_space.registrations_enabled? %>
|
56
|
-
<hr class="reset mt-none mb-m"
|
56
|
+
<hr class="reset mt-none mb-m">
|
57
57
|
<section class="section">
|
58
58
|
<h4 class="section-heading"><%= t(".register") %></h4>
|
59
59
|
<% if current_user.present? %>
|
@@ -72,7 +72,7 @@ edit_link(
|
|
72
72
|
</section>
|
73
73
|
<% end %>
|
74
74
|
|
75
|
-
<hr class="reset mt-none mb-m"
|
75
|
+
<hr class="reset mt-none mb-m">
|
76
76
|
|
77
77
|
<% unless translated_attribute(current_participatory_space.objectives).blank? %>
|
78
78
|
<section class="section">
|
@@ -16,7 +16,7 @@ edit_link(
|
|
16
16
|
<h1 class="section-heading"><%= t("media.index.title", scope: "decidim") %></h1>
|
17
17
|
<p><%= t("media.index.description", scope: "decidim") %></p>
|
18
18
|
</section>
|
19
|
-
<hr class="reset mt-none mb-s"
|
19
|
+
<hr class="reset mt-none mb-s">
|
20
20
|
<section class="media-links">
|
21
21
|
<ul class="list-reset">
|
22
22
|
<% @media_links.each do |media_link| %>
|
@@ -24,7 +24,7 @@ edit_link(
|
|
24
24
|
<% end %>
|
25
25
|
</ul>
|
26
26
|
</section>
|
27
|
-
<hr class="reset mt-none mb-s"
|
27
|
+
<hr class="reset mt-none mb-s">
|
28
28
|
<% end %>
|
29
29
|
<%= attachments_for_conference current_participatory_space %>
|
30
30
|
</div>
|
@@ -19,10 +19,10 @@
|
|
19
19
|
<div class="row">
|
20
20
|
<div class="row column medium-8 text-left mt-m">
|
21
21
|
<div class="column medium-6">
|
22
|
-
<
|
22
|
+
<div class="conference--date button hollow light expanded">
|
23
23
|
<%= participatory_space_helpers.render_date(current_participatory_space) %>
|
24
24
|
<%= current_participatory_space.location %>
|
25
|
-
</
|
25
|
+
</div>
|
26
26
|
</div>
|
27
27
|
<% if current_participatory_space.registrations_enabled? %>
|
28
28
|
<div class="column medium-3 end">
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="<%= I18n.locale %>" class="no-js">
|
3
3
|
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"
|
5
|
-
<meta name="viewport" content="width=device-width"
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
+
<meta name="viewport" content="width=device-width">
|
6
6
|
<%= wicked_pdf_stylesheet_link_tag "decidim/conference-diploma" %>
|
7
7
|
</head>
|
8
8
|
<body>
|
data/config/locales/ar.yml
CHANGED
@@ -16,7 +16,7 @@ ar:
|
|
16
16
|
promoted: سلط الضوء
|
17
17
|
published_at: نشرت في
|
18
18
|
scope_id: نطاق
|
19
|
-
scopes_enabled:
|
19
|
+
scopes_enabled: النطاقات المُفعّلَة
|
20
20
|
short_description: وصف قصير
|
21
21
|
show_statistics: عرض الإحصائيات
|
22
22
|
slogan: شعار
|
@@ -161,6 +161,7 @@ ar:
|
|
161
161
|
attachments: مرفقات
|
162
162
|
categories: الاقسام
|
163
163
|
components: المكونات
|
164
|
+
conference_admins: المشرفون على المؤتمر
|
164
165
|
conference_invites: تدعو
|
165
166
|
conference_speakers: مكبرات الصوت
|
166
167
|
diploma: شهادة حضور
|
@@ -384,7 +385,7 @@ ar:
|
|
384
385
|
registration: التسجيل
|
385
386
|
conference_program:
|
386
387
|
program_meeting:
|
387
|
-
content:
|
388
|
+
content: المحتوى
|
388
389
|
location: موقعك
|
389
390
|
speakers: مكبرات الصوت
|
390
391
|
streaming: تدفق
|
@@ -395,6 +396,7 @@ ar:
|
|
395
396
|
confirmation:
|
396
397
|
confirmed_html: تم تأكيد تسجيلك للمؤتمر <a href="%{url}">%{title}</a>.
|
397
398
|
details_1: 'أنت مسجل في المؤتمر مع %{registration_type} نوع. تبلغ تكلفتها %{price} ويمكنك حضور الأحداث التالية:'
|
399
|
+
details_2: سوف تجد تفاصيل المحاضرة في المرفقات.
|
398
400
|
pending_validation:
|
399
401
|
confirmation_pending: سوف تتلقى التأكيد قريبا
|
400
402
|
details: 'لقد قمت بالتسجيل إلى %{registration_type} نوع بتكلفة %{price} ويمكنك حضور الأحداث التالية:'
|
@@ -489,6 +491,7 @@ ar:
|
|
489
491
|
title: أنواع التسجيل
|
490
492
|
shared:
|
491
493
|
conference_user_login:
|
494
|
+
already_account: هل تمتلك حسابًا مِن قبلُ على ديسيديم؟
|
492
495
|
new_user: مستخدم جديد؟
|
493
496
|
sign_in: تسجيل الدخول للتسجيل في المؤتمر
|
494
497
|
sign_up: إنشاء حساب في decidim للتسجيل في المؤتمر
|
data/config/locales/cs.yml
CHANGED
@@ -2,7 +2,7 @@ cs:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
conference:
|
5
|
-
assemblies_ids: Související
|
5
|
+
assemblies_ids: Související shromáždění
|
6
6
|
banner_image: Obrázek banneru
|
7
7
|
consultations_ids: Související konzultace
|
8
8
|
copy_categories: Kopírovat kategorie
|
@@ -11,7 +11,7 @@ cs:
|
|
11
11
|
decidim_scope_id: Rozsah
|
12
12
|
description: Popis
|
13
13
|
hashtag: Hashtag
|
14
|
-
hero_image:
|
14
|
+
hero_image: Obrázek na hlavní stránce
|
15
15
|
participatory_processes_ids: Související procesy účasti
|
16
16
|
promoted: Propagováno
|
17
17
|
published_at: Publikováno v
|
@@ -25,7 +25,7 @@ cs:
|
|
25
25
|
conference_speaker:
|
26
26
|
full_name: Celé jméno
|
27
27
|
conference_user_role:
|
28
|
-
email: E-
|
28
|
+
email: E-mail
|
29
29
|
name: název
|
30
30
|
role: Role
|
31
31
|
errors:
|
@@ -42,10 +42,10 @@ cs:
|
|
42
42
|
many: Konference
|
43
43
|
other: Konference
|
44
44
|
decidim/conference_speaker:
|
45
|
-
one:
|
46
|
-
few:
|
47
|
-
many:
|
48
|
-
other:
|
45
|
+
one: Řečník Konference
|
46
|
+
few: Řečnící Konference
|
47
|
+
many: Řečníci Konference
|
48
|
+
other: Řečníci Konference
|
49
49
|
decidim/conference_user_role:
|
50
50
|
one: Uživatelská role konference
|
51
51
|
few: Konference uživatelských rolí
|
@@ -61,13 +61,13 @@ cs:
|
|
61
61
|
new:
|
62
62
|
copy: kopírovat
|
63
63
|
select: Vyberte, která data chcete duplikovat
|
64
|
-
title:
|
64
|
+
title: Duplikovat konferenci
|
65
65
|
conference_publications:
|
66
66
|
create:
|
67
67
|
error: Při publikování této konference došlo k chybě.
|
68
68
|
success: Konference byla úspěšně publikována.
|
69
69
|
destroy:
|
70
|
-
error: Při
|
70
|
+
error: Při odebrání této konference došlo k chybě.
|
71
71
|
success: Konference byla nepublikována úspěšně.
|
72
72
|
conference_registration:
|
73
73
|
confirm:
|
@@ -80,32 +80,32 @@ cs:
|
|
80
80
|
destroy:
|
81
81
|
success: Reproduktor byl úspěšně smazán pro tuto konferenci.
|
82
82
|
edit:
|
83
|
-
title: Aktualizovat
|
83
|
+
title: Aktualizovat řečníka konference.
|
84
84
|
update: Aktualizace
|
85
85
|
index:
|
86
|
-
conference_speakers_title:
|
86
|
+
conference_speakers_title: Řečnící konference
|
87
87
|
new:
|
88
88
|
create: Vytvořit
|
89
|
-
title: Nový
|
89
|
+
title: Nový řečník konference.
|
90
90
|
update:
|
91
|
-
error: Při této konferenci došlo k chybě při aktualizaci
|
91
|
+
error: Při této konferenci došlo k chybě při aktualizaci řečníka.
|
92
92
|
success: Speaker se úspěšně pro tuto konferenci úspěšně aktualizoval.
|
93
93
|
conference_user_roles:
|
94
94
|
create:
|
95
|
-
error: Při přidávání
|
95
|
+
error: Při přidávání administrátora této konference došlo k chybě.
|
96
96
|
success: Uživatel úspěšně přidal tuto konferenci.
|
97
97
|
destroy:
|
98
|
-
success:
|
98
|
+
success: Administrátor konference byl úspěšně odstraněn.
|
99
99
|
edit:
|
100
100
|
title: Aktualizovat uživatele konference.
|
101
101
|
update: Aktualizace
|
102
102
|
index:
|
103
|
-
conference_admins_title:
|
103
|
+
conference_admins_title: administrátoři konference
|
104
104
|
new:
|
105
105
|
create: Vytvořit
|
106
|
-
title: Nový
|
106
|
+
title: Nový administrátor konference.
|
107
107
|
update:
|
108
|
-
error:
|
108
|
+
error: Při aktualizaci tohoto administrátora konference došlo k potížím.
|
109
109
|
success: Uživatel úspěšně aktualizován pro tuto konferenci.
|
110
110
|
conferences:
|
111
111
|
create:
|
@@ -133,17 +133,17 @@ cs:
|
|
133
133
|
media_links:
|
134
134
|
create:
|
135
135
|
error: Při vytváření nového odkazu na média došlo k chybě.
|
136
|
-
success:
|
136
|
+
success: Odkaz na media byl úspěšně vytvořen.
|
137
137
|
destroy:
|
138
|
-
success:
|
138
|
+
success: Odkaz na media byl úspěšně smazán.
|
139
139
|
edit:
|
140
|
-
title: Aktualizovat
|
140
|
+
title: Aktualizovat odkaz na media.
|
141
141
|
update: Aktualizace
|
142
142
|
index:
|
143
143
|
media_links_title: Odkazy na média
|
144
144
|
new:
|
145
145
|
create: Vytvořit
|
146
|
-
title:
|
146
|
+
title: Odkaz na media
|
147
147
|
update:
|
148
148
|
error: Při aktualizaci tohoto odkazu na média došlo k chybě.
|
149
149
|
success: Media Link byl úspěšně aktualizován.
|
@@ -155,13 +155,13 @@ cs:
|
|
155
155
|
attachments: Přílohy
|
156
156
|
categories: Kategorie
|
157
157
|
components: Komponenty
|
158
|
-
conference_admins:
|
158
|
+
conference_admins: Administrátoři konference
|
159
159
|
conference_invites: Pozvánky
|
160
|
-
conference_speakers:
|
160
|
+
conference_speakers: Řečníci
|
161
161
|
diploma: Potvrzení o účasti
|
162
162
|
info: Info
|
163
163
|
media_links: Odkazy na média
|
164
|
-
moderations:
|
164
|
+
moderations: Moderátoři
|
165
165
|
partners: Partneři
|
166
166
|
registration_types: Typy registrace
|
167
167
|
registrations: Registrace
|
@@ -172,19 +172,19 @@ cs:
|
|
172
172
|
created_at: Vytvořeno u
|
173
173
|
promoted: Propagováno
|
174
174
|
published: Publikováno
|
175
|
-
title:
|
175
|
+
title: Název
|
176
176
|
conference_speaker:
|
177
177
|
fields:
|
178
178
|
affiliation: Přidružení
|
179
179
|
full_name: Celé jméno
|
180
180
|
position: Pozice
|
181
|
-
name:
|
181
|
+
name: Řečník Konference
|
182
182
|
conference_user_role:
|
183
183
|
fields:
|
184
|
-
email: E-
|
184
|
+
email: E-mail
|
185
185
|
name: název
|
186
186
|
role: Role
|
187
|
-
name:
|
187
|
+
name: Administrátor konference
|
188
188
|
roles:
|
189
189
|
admin: Správce
|
190
190
|
collaborator: Spolupracovník
|
@@ -193,7 +193,7 @@ cs:
|
|
193
193
|
fields:
|
194
194
|
date: datum
|
195
195
|
link: Odkaz
|
196
|
-
title:
|
196
|
+
title: Název
|
197
197
|
name: Media Link
|
198
198
|
partner:
|
199
199
|
fields:
|
@@ -204,19 +204,19 @@ cs:
|
|
204
204
|
name: Partner
|
205
205
|
types:
|
206
206
|
collaborator: Spolupracovník
|
207
|
-
main_promotor: Hlavní
|
207
|
+
main_promotor: Hlavní podporovatel
|
208
208
|
registration_type:
|
209
209
|
fields:
|
210
210
|
conference_meetings: Setkání konference
|
211
211
|
price: Cena
|
212
212
|
registrations_count: Registrace se počítají
|
213
|
-
title:
|
213
|
+
title: Název
|
214
214
|
weight: Hmotnost
|
215
215
|
name: Typ registrace
|
216
216
|
partners:
|
217
217
|
create:
|
218
218
|
error: Při přidávání partnera pro tuto konferenci došlo k chybě.
|
219
|
-
success:
|
219
|
+
success: Konferenční partner byl úspěšně přidán.
|
220
220
|
destroy:
|
221
221
|
success: Partner byl úspěšně odstraněn z této konference.
|
222
222
|
edit:
|
@@ -233,12 +233,12 @@ cs:
|
|
233
233
|
error: Při publikování tohoto typu registrace došlo k chybě.
|
234
234
|
success: Typ registrace byl úspěšně publikován.
|
235
235
|
destroy:
|
236
|
-
error:
|
237
|
-
success: Typ registrace byl
|
236
|
+
error: Při zrušení publikování tohoto typu registrace došlo k potížím.
|
237
|
+
success: Typ registrace byl úspěšně nezveřejněn.
|
238
238
|
registration_types:
|
239
239
|
create:
|
240
240
|
error: Při přidávání typu registrace pro tuto konferenci došlo k chybě.
|
241
|
-
success: Typ
|
241
|
+
success: Typ registrace byl úspěšně přidán na tuto konferenci.
|
242
242
|
destroy:
|
243
243
|
success: Typ registrace byl z této konference úspěšně odstraněn.
|
244
244
|
edit:
|
@@ -254,32 +254,32 @@ cs:
|
|
254
254
|
conferences: Konference
|
255
255
|
admin_log:
|
256
256
|
conference:
|
257
|
-
create: "%{user_name}
|
257
|
+
create: "%{user_name} vytvořil konferenci %{resource_name}"
|
258
258
|
publish: "%{user_name} zveřejnila %{resource_name} konferenci"
|
259
|
-
send_conference_diplomas: "%{user_name}
|
259
|
+
send_conference_diplomas: "%{user_name} zaslal certifikaci o účasti na konferenci %{resource_name}"
|
260
260
|
unpublish: "%{user_name} nepublikováno %{resource_name} konferenci"
|
261
|
-
update: "%{user_name}
|
261
|
+
update: "%{user_name} aktualizoval konferenci %{resource_name}"
|
262
262
|
update_diploma: "%{user_name} aktualizovala certifikáty pro účast na %{resource_name} konferenci"
|
263
263
|
conference_speaker:
|
264
|
-
create: "%{user_name}
|
264
|
+
create: "%{user_name} vytvořil %{resource_name} řečníka na konferenci %{space_name}"
|
265
265
|
delete: "%{user_name} odstranila %{resource_name} reproduktor z %{space_name} konferencí"
|
266
|
-
update: "%{user_name} aktualizoval %{resource_name}
|
266
|
+
update: "%{user_name} aktualizoval %{resource_name} řečníka na konferenci %{space_name}"
|
267
267
|
conference_user_role:
|
268
|
-
create: "%{user_name}
|
269
|
-
delete: "%{user_name} odstranil uživatele %{resource_name} z %{space_name}
|
270
|
-
update: "%{user_name}
|
268
|
+
create: "%{user_name} pozval %{resource_name} na konferenci %{space_name}"
|
269
|
+
delete: "%{user_name} odstranil uživatele %{resource_name} z konference %{space_name}"
|
270
|
+
update: "%{user_name} změnil roli %{resource_name} na konferenci %{space_name}"
|
271
271
|
conferences:
|
272
272
|
conference_registration:
|
273
|
-
confirm: "%{user_name}
|
273
|
+
confirm: "%{user_name} potvrdil registraci konference na konferenci %{resource_name}"
|
274
274
|
partner:
|
275
275
|
create: "%{user_name} vytvořeno %{resource_name} na %{space_name} konferenci"
|
276
|
-
delete: "%{user_name} odstranil uživatele %{resource_name} z %{space_name}
|
277
|
-
update: "%{user_name}
|
276
|
+
delete: "%{user_name} odstranil uživatele %{resource_name} z konference %{space_name}"
|
277
|
+
update: "%{user_name} aktualizoval %{resource_name} v konferenci %{space_name}"
|
278
278
|
registration_type:
|
279
|
-
create: "%{user_name} vytvořil %{resource_name}
|
279
|
+
create: "%{user_name} vytvořil typ registrace %{resource_name} na konferenci %{space_name}"
|
280
280
|
publish: "%{user_name} publikoval %{resource_name} typ registrace na %{space_name} konferencích"
|
281
281
|
unpublish: "%{user_name} nepublikováno %{resource_name} typ registrace na %{space_name} konferencích"
|
282
|
-
update: "%{user_name} aktualizoval %{resource_name}
|
282
|
+
update: "%{user_name} aktualizoval typ registrace %{resource_name} na konferenci %{space_name}"
|
283
283
|
media_link:
|
284
284
|
create: "%{user_name} vytvořilo %{resource_name} mediální odkaz na konferenci %{space_name}"
|
285
285
|
delete: "%{user_name} odstranilo %{resource_name} odkaz na média z %{space_name} konferencí"
|
@@ -289,12 +289,12 @@ cs:
|
|
289
289
|
title: Program
|
290
290
|
conference_speakers:
|
291
291
|
index:
|
292
|
-
title:
|
292
|
+
title: Řečníci
|
293
293
|
conferences:
|
294
294
|
admin:
|
295
295
|
conference_copies:
|
296
296
|
form:
|
297
|
-
slug_help: '
|
297
|
+
slug_help: 'URL slugs se používají k vygenerování adres URL, které odkazují na tuto konferenci. Přijme pouze písmena, čísla a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
298
298
|
conference_invites:
|
299
299
|
create:
|
300
300
|
error: Při pozvání uživatele do konference došlo k problému.
|
@@ -310,7 +310,7 @@ cs:
|
|
310
310
|
accepted: Přijato
|
311
311
|
all: Všechno
|
312
312
|
rejected: Odmítnuto
|
313
|
-
sent:
|
313
|
+
sent: Odesláno
|
314
314
|
filter_by: Filtrovat podle
|
315
315
|
invite_attendee: Pozvat účastníka
|
316
316
|
invites: Pozvánky
|
@@ -324,9 +324,9 @@ cs:
|
|
324
324
|
registrations: Registrace
|
325
325
|
conference_speakers:
|
326
326
|
form:
|
327
|
-
existing_user: Existující
|
328
|
-
non_user: Není
|
329
|
-
select_user:
|
327
|
+
existing_user: Existující účastník
|
328
|
+
non_user: Není účastníkem
|
329
|
+
select_user: Vybrat účastníka
|
330
330
|
user_type: Typ uživatele
|
331
331
|
index:
|
332
332
|
search: Vyhledávání
|