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.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheet/decidim/conferences/conferences.scss +3 -0
  3. data/app/cells/decidim/conferences/conference_address/show.erb +1 -1
  4. data/app/cells/decidim/conferences/conference_speaker/show.erb +2 -2
  5. data/app/cells/decidim/conferences/conference_speaker_cell.rb +6 -2
  6. data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +6 -0
  7. data/app/cells/decidim/conferences/partner_cell.rb +2 -0
  8. data/app/cells/decidim/conferences/photos_list_cell.rb +1 -0
  9. data/app/cells/decidim/conferences/registration_type_cell.rb +2 -0
  10. data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +1 -0
  11. data/app/commands/decidim/conferences/admin/create_conference.rb +0 -10
  12. data/app/commands/decidim/conferences/admin/create_conference_admin.rb +1 -0
  13. data/app/commands/decidim/conferences/admin/publish_conference.rb +12 -0
  14. data/app/commands/decidim/conferences/admin/update_conference.rb +6 -2
  15. data/app/commands/decidim/conferences/admin/update_diploma.rb +1 -0
  16. data/app/commands/decidim/conferences/join_conference.rb +2 -0
  17. data/app/commands/decidim/conferences/leave_conference.rb +1 -0
  18. data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +3 -1
  19. data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +2 -1
  20. data/app/controllers/decidim/conferences/admin/conference_user_roles_controller.rb +2 -1
  21. data/app/controllers/decidim/conferences/admin/conferences_controller.rb +2 -1
  22. data/app/controllers/decidim/conferences/admin/media_links_controller.rb +2 -1
  23. data/app/controllers/decidim/conferences/admin/partners_controller.rb +2 -1
  24. data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +2 -1
  25. data/app/controllers/decidim/conferences/conference_program_controller.rb +4 -1
  26. data/app/controllers/decidim/conferences/conference_registrations_controller.rb +1 -0
  27. data/app/controllers/decidim/conferences/conference_speakers_controller.rb +1 -0
  28. data/app/controllers/decidim/conferences/media_controller.rb +1 -0
  29. data/app/controllers/decidim/conferences/registration_types_controller.rb +1 -0
  30. data/app/forms/decidim/conferences/admin/conference_form.rb +4 -0
  31. data/app/forms/decidim/conferences/admin/conference_speaker_form.rb +1 -0
  32. data/app/forms/decidim/conferences/admin/registration_type_form.rb +1 -0
  33. data/app/helpers/decidim/conferences/conference_helper.rb +1 -0
  34. data/app/models/decidim/conference.rb +17 -4
  35. data/app/models/decidim/conference_user_role.rb +1 -0
  36. data/app/permissions/decidim/conferences/permissions.rb +6 -0
  37. data/app/presenters/decidim/conferences/admin_log/value_types/role_presenter.rb +1 -0
  38. data/app/presenters/decidim/log/value_types/conference_presenter.rb +1 -0
  39. data/app/queries/decidim/conferences/admin/conference_invites.rb +1 -0
  40. data/app/queries/decidim/conferences/admin/conference_speakers.rb +1 -0
  41. data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +1 -0
  42. data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +4 -3
  43. data/app/views/decidim/conferences/admin/conferences/index.html.erb +4 -3
  44. data/app/views/decidim/conferences/admin/partners/index.html.erb +1 -0
  45. data/app/views/decidim/conferences/admin/registration_types/index.html.erb +1 -0
  46. data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +1 -1
  47. data/app/views/decidim/conferences/conference_registration_mailer/confirmation.html.erb +1 -1
  48. data/app/views/decidim/conferences/conference_registration_mailer/pending_validation.html.erb +1 -1
  49. data/app/views/decidim/conferences/conferences/_partners.html.erb +1 -1
  50. data/app/views/decidim/conferences/conferences/show.html.erb +3 -3
  51. data/app/views/decidim/conferences/media/index.html.erb +2 -2
  52. data/app/views/layouts/decidim/_conference_hero.html.erb +2 -2
  53. data/app/views/layouts/decidim/diploma.html.erb +2 -2
  54. data/config/locales/ar.yml +5 -2
  55. data/config/locales/cs.yml +55 -55
  56. data/config/locales/de.yml +10 -10
  57. data/config/locales/el-GR.yml +1 -0
  58. data/config/locales/fr.yml +94 -94
  59. data/config/locales/hu.yml +1 -1
  60. data/config/locales/is-IS.yml +1 -0
  61. data/config/locales/it.yml +3 -3
  62. data/config/locales/nl.yml +2 -2
  63. data/config/locales/no.yml +571 -0
  64. data/lib/decidim/conferences/participatory_space.rb +3 -0
  65. data/lib/decidim/conferences/version.rb +1 -1
  66. 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
- belongs_to :area,
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
 
@@ -13,6 +13,7 @@ module Decidim
13
13
  # Returns an HTML-safe String.
14
14
  def present
15
15
  return if value.blank?
16
+
16
17
  h.t(value, scope: "decidim.admin.models.conference_user_role.roles", default: value)
17
18
  end
18
19
  end
@@ -14,6 +14,7 @@ module Decidim
14
14
  def present
15
15
  return unless value
16
16
  return h.translated_attribute(conference.title) if conference
17
+
17
18
  I18n.t("not_found", id: value, scope: "decidim.log.value_types.conference_presenter")
18
19
  end
19
20
 
@@ -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
  )
@@ -32,6 +32,7 @@ module Decidim
32
32
 
33
33
  def filter_by_search(conference_speakers)
34
34
  return conference_speakers if @query.blank?
35
+
35
36
  conference_speakers.where("LOWER(full_name) LIKE LOWER(?)", "%#{@query}%")
36
37
  end
37
38
  end
@@ -63,6 +63,7 @@
63
63
  <% end %>
64
64
  </tbody>
65
65
  </table>
66
+ <%= paginate @conference_speakers, theme: "decidim" %>
66
67
  </div>
67
68
  </div>
68
69
  </div>
@@ -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>
@@ -51,6 +51,7 @@
51
51
  <% end %>
52
52
  </tbody>
53
53
  </table>
54
+ <%= paginate @partners, theme: "decidim" %>
54
55
  </div>
55
56
  </div>
56
57
  </div>
@@ -60,6 +60,7 @@
60
60
  <% end %>
61
61
  </tbody>
62
62
  </table>
63
+ <%= paginate @registration_types, theme: "decidim" %>
63
64
  </div>
64
65
  </div>
65
66
  </div>
@@ -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>
@@ -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
- <button type="button" class="button hollow light expanded">
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
- </button>
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>
@@ -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 للتسجيل في المؤتمر
@@ -2,7 +2,7 @@ cs:
2
2
  activemodel:
3
3
  attributes:
4
4
  conference:
5
- assemblies_ids: Související sestavy
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: Domácí obrázek
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-mailem
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: Konferenční reproduktor
46
- few: Konferenční reproduktory
47
- many: Konferenční reproduktory
48
- other: Konferenční reproduktory
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: Duplicitní konference
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 otevírání této konference došlo k chybě.
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 konferenční reproduktor.
83
+ title: Aktualizovat řečníka konference.
84
84
  update: Aktualizace
85
85
  index:
86
- conference_speakers_title: Konferenční reproduktory
86
+ conference_speakers_title: Řečnící konference
87
87
  new:
88
88
  create: Vytvořit
89
- title: Nový konferenční reproduktor.
89
+ title: Nový řečník konference.
90
90
  update:
91
- error: Při této konferenci došlo k chybě při aktualizaci reproduktoru.
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í uživatele této konference došlo k chybě.
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: Uživatel byl z této konference úspěšně odstraněn.
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: uživatelů konferencí
103
+ conference_admins_title: administrátoři konference
104
104
  new:
105
105
  create: Vytvořit
106
- title: Nový uživatel konference.
106
+ title: Nový administrátor konference.
107
107
  update:
108
- error: Došlo k chybě uživatele aktualizované pro tuto konferenci.
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: Media Link byl úspěšně vytvořen.
136
+ success: Odkaz na media byl úspěšně vytvořen.
137
137
  destroy:
138
- success: Media Link byl úspěšně smazán.
138
+ success: Odkaz na media byl úspěšně smazán.
139
139
  edit:
140
- title: Aktualizovat mediální odkaz.
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: Media Link
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: Správci konferencí
158
+ conference_admins: Administrátoři konference
159
159
  conference_invites: Pozvánky
160
- conference_speakers: Reproduktory
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: Moderování
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: Titul
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: Konferenční reproduktor
181
+ name: Řečník Konference
182
182
  conference_user_role:
183
183
  fields:
184
- email: E-mailem
184
+ email: E-mail
185
185
  name: název
186
186
  role: Role
187
- name: Uživatel konference
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: Titul
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í promotor
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: Titul
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: Partner úspěšně přidal na tuto konferenci.
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: Došlo k chybě zrušením publikování tohoto typu registrace.
237
- success: Typ registrace byl nepublikován úspěšně.
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 zápisu byl úspěšně přidán na tuto konferenci.
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} vytvořila %{resource_name} konferenci"
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} zaslali certifikáty o účasti na %{resource_name} konferenci"
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} aktualizovala %{resource_name} konferenci"
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} vytvořila %{resource_name} reproduktor na %{space_name} konferencích"
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} reproduktor na %{space_name} konferenci"
266
+ update: "%{user_name} aktualizoval %{resource_name} řečníka na konferenci %{space_name}"
267
267
  conference_user_role:
268
- create: "%{user_name} pozváno %{resource_name} na %{space_name} konference"
269
- delete: "%{user_name} odstranil uživatele %{resource_name} z %{space_name} konference"
270
- update: "%{user_name} změnila roli %{resource_name} na %{space_name} konferenci"
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} potvrdilo registraci konference na %{resource_name} konferenci"
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} konference"
277
- update: "%{user_name} aktualizováno %{resource_name} v %{space_name} konferenci"
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} typ registrace na %{space_name} konferencích"
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} typ registrace na %{space_name} konferenci"
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: Reproduktory
292
+ title: Řečníci
293
293
  conferences:
294
294
  admin:
295
295
  conference_copies:
296
296
  form:
297
- slug_help: 'Sloupce adres URL 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}'
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: Odeslaná
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í uživatel
328
- non_user: Není uživatel
329
- select_user: Vyberte uživatele
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í