decidim-conferences 0.29.2 → 0.30.0.rc2
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/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +1 -1
- data/app/commands/decidim/conferences/admin/copy_conference.rb +2 -12
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/controllers/decidim/conferences/admin/component_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +17 -4
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +0 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +3 -8
- data/app/helpers/decidim/conferences/conference_program_helper.rb +4 -2
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -11
- data/app/models/decidim/conference.rb +19 -0
- data/app/models/decidim/conferences/conference_invite.rb +10 -0
- data/app/permissions/decidim/conferences/permissions.rb +11 -4
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/conference_presenter.rb +19 -0
- data/app/serializers/decidim/conferences/conference_serializer.rb +24 -0
- data/app/serializers/decidim/conferences/download_your_data_conference_invite_serializer.rb +3 -4
- data/app/serializers/decidim/conferences/download_your_data_conference_registration_serializer.rb +4 -4
- data/app/serializers/decidim/conferences/open_data_conference_serializer.rb +30 -0
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +0 -3
- data/app/views/decidim/conferences/admin/conferences/_actions.html.erb +35 -0
- data/app/views/decidim/conferences/admin/conferences/_conference_row.html.erb +28 -0
- data/app/views/decidim/conferences/admin/conferences/_conferences_thead.html.erb +8 -0
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +27 -8
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +14 -52
- data/app/views/decidim/conferences/admin/conferences/manage_trash.html.erb +20 -0
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +3 -1
- data/app/views/decidim/conferences/conference_program/show.html.erb +3 -1
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +4 -1
- data/app/views/decidim/conferences/conferences/index.html.erb +3 -2
- data/app/views/decidim/conferences/conferences/show.html.erb +6 -6
- data/app/views/decidim/conferences/media/index.html.erb +3 -1
- data/app/views/decidim/conferences/registration_types/index.html.erb +3 -1
- data/app/views/layouts/decidim/admin/conference.html.erb +1 -1
- data/config/locales/ar.yml +12 -3
- data/config/locales/bg.yml +0 -3
- data/config/locales/ca.yml +63 -3
- data/config/locales/cs.yml +63 -3
- data/config/locales/de.yml +63 -3
- data/config/locales/el.yml +0 -3
- data/config/locales/en.yml +63 -3
- data/config/locales/es-MX.yml +63 -3
- data/config/locales/es-PY.yml +63 -3
- data/config/locales/es.yml +63 -3
- data/config/locales/eu.yml +63 -3
- data/config/locales/fi-plain.yml +63 -3
- data/config/locales/fi.yml +63 -3
- data/config/locales/fr-CA.yml +22 -3
- data/config/locales/fr.yml +22 -3
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +0 -3
- data/config/locales/hu.yml +0 -3
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/it.yml +0 -3
- data/config/locales/ja.yml +65 -3
- data/config/locales/lb.yml +0 -3
- data/config/locales/lt.yml +0 -3
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -3
- data/config/locales/no.yml +0 -3
- data/config/locales/pl.yml +0 -3
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -3
- data/config/locales/ro-RO.yml +0 -3
- data/config/locales/sk.yml +0 -3
- data/config/locales/sv.yml +116 -3
- data/config/locales/tr-TR.yml +0 -3
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +0 -3
- data/db/migrate/20210310134942_add_followable_counter_cache_to_conferences.rb +1 -1
- data/db/migrate/20240822161330_add_deleted_at_to_decidim_conferences.rb +8 -0
- data/decidim-conferences.gemspec +1 -2
- data/lib/decidim/api/conference_media_link_type.rb +4 -4
- data/lib/decidim/api/conference_partner_type.rb +4 -4
- data/lib/decidim/api/conference_speaker_type.rb +7 -8
- data/lib/decidim/api/conference_type.rb +17 -19
- data/lib/decidim/conferences/admin_engine.rb +87 -58
- data/lib/decidim/conferences/conference_diploma_pdf.rb +242 -0
- data/lib/decidim/conferences/engine.rb +6 -1
- data/lib/decidim/conferences/menu.rb +23 -9
- data/lib/decidim/conferences/participatory_space.rb +13 -0
- data/lib/decidim/conferences/seeds.rb +134 -115
- data/lib/decidim/conferences/test/factories.rb +10 -9
- data/lib/decidim/conferences/version.rb +1 -1
- data/lib/decidim/conferences.rb +1 -0
- metadata +23 -28
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
@@ -3,61 +3,23 @@
|
|
3
3
|
<%= admin_filter_selector %>
|
4
4
|
<div class="table-scroll">
|
5
5
|
<table class="table-list">
|
6
|
-
|
7
|
-
<tr>
|
8
|
-
<th><%= t("models.conference.fields.title", scope: "decidim.admin") %></th>
|
9
|
-
<th><%= sort_link(query, :created_at, t("models.conference.fields.created_at", scope: "decidim.admin"), default_order: :desc) %></th>
|
10
|
-
<th class="table-list__actions"><%= t("models.conference.fields.published", scope: "decidim.admin") %></th>
|
11
|
-
<th></th>
|
12
|
-
</tr>
|
13
|
-
</thead>
|
6
|
+
<%= render partial: "conferences_thead" %>
|
14
7
|
<tbody>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
<%= icon_with_tooltip "star-s-fill", t("models.assembly.fields.promoted", scope: "decidim.admin") %>
|
20
|
-
<% end %>
|
21
|
-
|
22
|
-
<% if allowed_to? :update, :conference, conference: conference %>
|
23
|
-
<%= link_to translated_attribute(conference.title), edit_conference_path(conference) %><br>
|
24
|
-
<% elsif allowed_to? :read, :component, conference: conference %>
|
25
|
-
<%= link_to translated_attribute(conference.title), components_path(conference) %><br>
|
26
|
-
<% else %>
|
27
|
-
<%= translated_attribute(conference.title) %>
|
28
|
-
<% end %>
|
29
|
-
</td>
|
30
|
-
<td>
|
31
|
-
<%= l conference.created_at, format: :short %>
|
32
|
-
</td>
|
33
|
-
<td class="table-list__state">
|
34
|
-
<% if conference.published? %>
|
35
|
-
<span class="label !text-sm success"><%= t("conferences.index.published", scope: "decidim.admin") %></span>
|
36
|
-
<% else %>
|
37
|
-
<span class="label !text-sm alert"><%= t("conferences.index.unpublished", scope: "decidim.admin") %></span>
|
38
|
-
<% end %>
|
39
|
-
</td>
|
40
|
-
<td class="table-list__actions">
|
41
|
-
<% if allowed_to? :update, :conference, conference: conference %>
|
42
|
-
<%= icon_link_to "pencil-line", edit_conference_path(conference), t("actions.configure", scope: "decidim.admin"), class: "action-icon--new" %>
|
43
|
-
<% end %>
|
44
|
-
|
45
|
-
<% if allowed_to? :create, :conference, conference: conference %>
|
46
|
-
<%= icon_link_to "file-copy-line", new_conference_copy_path(conference), t("actions.duplicate", scope: "decidim.admin"), class: "action-icon--copy" %>
|
47
|
-
<% end %>
|
48
|
-
|
49
|
-
<% if allowed_to? :preview, :conference, conference: conference %>
|
50
|
-
<%= icon_link_to "eye-line", decidim_conferences.conference_path(conference), t("actions.preview", scope: "decidim.admin"), class: "action-icon--preview", target: "_blank", data: { "external-link": false } %>
|
51
|
-
<% end %>
|
52
|
-
|
53
|
-
<% if allowed_to? :read, :moderation, conference: conference %>
|
54
|
-
<%= icon_link_to "flag-line", moderations_path(conference), t("actions.moderate", scope: "decidim.admin"), class: "action-icon--moderate" %>
|
55
|
-
<% end %>
|
56
|
-
</td>
|
57
|
-
</tr>
|
58
|
-
<% end %>
|
8
|
+
<%= render partial: "decidim/conferences/admin/conferences/conference_row",
|
9
|
+
collection: @conferences,
|
10
|
+
as: :conference,
|
11
|
+
locals: { view: :index } %>
|
59
12
|
</tbody>
|
60
13
|
</table>
|
61
14
|
</div>
|
15
|
+
<div class="card mt-4">
|
16
|
+
<%= link_to manage_trash_conferences_path, class: "flex items-center underline text-secondary" do %>
|
17
|
+
<%= icon "delete-bin-2-line", class: "mr-2 fill-current text-secondary", role: "img" %>
|
18
|
+
<%= t("decidim.admin.actions.view_deleted_conferences") %>
|
19
|
+
<span class="ml-2">
|
20
|
+
<%= icon_with_tooltip("information-line", t("decidim.admin.tooltips.deleted_conferences_info")) %>
|
21
|
+
</span>
|
22
|
+
<% end %>
|
23
|
+
</div>
|
62
24
|
<%= decidim_paginate @conferences %>
|
63
25
|
</div>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<% add_decidim_page_title(t("conferences_deleted", scope: "decidim.admin.titles")) %>
|
2
|
+
<div class="item_show__header">
|
3
|
+
<h1 class="item_show__header-title">
|
4
|
+
<%= t "conferences.manage_trash.title", scope: "decidim.admin" %>
|
5
|
+
</h1>
|
6
|
+
</div>
|
7
|
+
<div class="card" id="conferences">
|
8
|
+
<%= admin_filter_selector %>
|
9
|
+
</div>
|
10
|
+
<div class="table-scroll">
|
11
|
+
<table class="table-list">
|
12
|
+
<%= render partial: "conferences_thead" %>
|
13
|
+
<tbody>
|
14
|
+
<%= render partial: "decidim/conferences/admin/conferences/conference_row",
|
15
|
+
collection: trashable_deleted_collection,
|
16
|
+
as: :conference,
|
17
|
+
locals: { view: :deleted } %>
|
18
|
+
</tbody>
|
19
|
+
</table>
|
20
|
+
</div>
|
data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb
CHANGED
@@ -11,7 +11,9 @@
|
|
11
11
|
<div class="diploma__name">
|
12
12
|
<h2><strong><%= translated_attribute(@conference.title) %></strong></h2>
|
13
13
|
<h3><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance") %></h3>
|
14
|
-
<p><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance_description",
|
14
|
+
<p><%= t("decidim.conferences.admin.send_conference_diploma_mailer.diploma_user.certificate_of_attendance_description",
|
15
|
+
user: @user.name, title: translated_attribute(@conference.title), location: @conference.location,
|
16
|
+
start: l(@conference.start_date, format: :decidim_short), end: l(@conference.end_date, format: :decidim_short) ).html_safe %></p>
|
15
17
|
</div>
|
16
18
|
<hr>
|
17
19
|
<div class="diploma__attendance">
|
@@ -1,3 +1,6 @@
|
|
1
|
+
<% add_decidim_meta_tags(
|
2
|
+
title: t("conference_program.index.title", scope: "decidim"),
|
3
|
+
resource: meeting_component) %>
|
1
4
|
<%
|
2
5
|
if respond_to?(:meeting_component) && meeting_component
|
3
6
|
edit_link(
|
@@ -9,7 +12,6 @@ if respond_to?(:meeting_component) && meeting_component
|
|
9
12
|
)
|
10
13
|
end
|
11
14
|
%>
|
12
|
-
<% add_decidim_meta_tags(title: t("conference_program.index.title", scope: "decidim")) %>
|
13
15
|
|
14
16
|
<%# NOTE: this page does not use a regular layout %>
|
15
17
|
<main class="container">
|
@@ -1,4 +1,7 @@
|
|
1
|
-
<% add_decidim_meta_tags(
|
1
|
+
<% add_decidim_meta_tags(
|
2
|
+
title: t("conference_speakers.index.title", scope: "decidim"),
|
3
|
+
resource: current_participatory_space) %>
|
4
|
+
|
2
5
|
<% add_decidim_page_title(translated_attribute(current_participatory_space.title)) %>
|
3
6
|
|
4
7
|
<%
|
@@ -1,5 +1,6 @@
|
|
1
|
-
<% add_decidim_meta_tags(
|
2
|
-
|
1
|
+
<% add_decidim_meta_tags(
|
2
|
+
title: t("conferences.index.title", scope: "decidim"),
|
3
|
+
resource: current_participatory_space) %>
|
3
4
|
<%
|
4
5
|
edit_link(
|
5
6
|
decidim_admin_conferences.conferences_path,
|
@@ -1,9 +1,9 @@
|
|
1
|
-
<% add_decidim_meta_tags(
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
1
|
+
<% add_decidim_meta_tags(
|
2
|
+
title: translated_attribute(current_participatory_space.title),
|
3
|
+
image_url: resolve_meta_image_url(current_participatory_space),
|
4
|
+
description: translated_attribute(current_participatory_space.short_description),
|
5
|
+
url: conference_url(current_participatory_space),
|
6
|
+
resource: current_participatory_space) %>
|
7
7
|
|
8
8
|
<%
|
9
9
|
edit_link(
|
@@ -1,4 +1,6 @@
|
|
1
|
-
<% add_decidim_meta_tags(
|
1
|
+
<% add_decidim_meta_tags(
|
2
|
+
title: t("media.index.title", scope: "decidim"),
|
3
|
+
resource: current_participatory_space) %>
|
2
4
|
<% add_decidim_page_title(translated_attribute(current_participatory_space.title)) %>
|
3
5
|
|
4
6
|
<%
|
@@ -1,4 +1,6 @@
|
|
1
|
-
<% add_decidim_meta_tags(
|
1
|
+
<% add_decidim_meta_tags(
|
2
|
+
title: t("registration_types.index.title", scope: "decidim.conferences"),
|
3
|
+
resource: current_participatory_space) %>
|
2
4
|
<% add_decidim_page_title(translated_attribute(current_participatory_space.title)) %>
|
3
5
|
|
4
6
|
<%
|
data/config/locales/ar.yml
CHANGED
@@ -22,8 +22,6 @@ ar:
|
|
22
22
|
published_at: نشرت في
|
23
23
|
registration_terms: شروط التسجيل
|
24
24
|
registrations_enabled: التسجيلات مفعلة
|
25
|
-
scope_id: نطاق
|
26
|
-
scopes_enabled: النطاقات المُفعّلَة
|
27
25
|
short_description: وصف قصير
|
28
26
|
show_statistics: عرض الإحصائيات
|
29
27
|
sign_date: تاريخ التوقيع
|
@@ -63,6 +61,8 @@ ar:
|
|
63
61
|
email: البريد الإلكتروني
|
64
62
|
name: اسم
|
65
63
|
role: وظيفة
|
64
|
+
partner:
|
65
|
+
logo: الشعار
|
66
66
|
activerecord:
|
67
67
|
models:
|
68
68
|
decidim/conference:
|
@@ -174,7 +174,6 @@ ar:
|
|
174
174
|
attachment_collections: المجلدات
|
175
175
|
attachment_files: ملفات
|
176
176
|
attachments: مرفقات
|
177
|
-
categories: الاقسام
|
178
177
|
components: المكونات
|
179
178
|
conference_admins: المشرفون على المؤتمر
|
180
179
|
conference_invites: تدعو
|
@@ -464,6 +463,16 @@ ar:
|
|
464
463
|
objectives: الأهداف
|
465
464
|
related_assemblies: الجمعيات ذات الصلة
|
466
465
|
related_participatory_processes: العمليات التشاركية ذات الصلة
|
466
|
+
download_your_data:
|
467
|
+
help:
|
468
|
+
conference_invites:
|
469
|
+
confirmed_at: التاريخ الذي تم فيه تأكيد هذه الدعوة
|
470
|
+
created_at: التاريخ الذي تم فيه إنشاء هذه الدعوة
|
471
|
+
updated_at: تاريخ آخر مرة تم فيه تحديث هذه الدعوة
|
472
|
+
conference_registrations:
|
473
|
+
confirmed_at: التاريخ الذي تم فيه تأكيد هذا التسجيل
|
474
|
+
created_at: التاريخ الذي تم فيه إنشاء هذا التسجيل
|
475
|
+
updated_at: تاريخ آخر مرة تم فيها تحديث هذا التسجيل
|
467
476
|
events:
|
468
477
|
conferences:
|
469
478
|
conference_registration_confirmed:
|
data/config/locales/bg.yml
CHANGED
@@ -22,8 +22,6 @@ bg:
|
|
22
22
|
published_at: Публикувано на
|
23
23
|
registration_terms: Условия за регистрация
|
24
24
|
registrations_enabled: Регистрациите са активирани
|
25
|
-
scope_id: Обхват
|
26
|
-
scopes_enabled: Обхватите са активирани
|
27
25
|
short_description: Кратко описание
|
28
26
|
show_statistics: Покажи статистиките
|
29
27
|
sign_date: Дата на подпис
|
@@ -187,7 +185,6 @@ bg:
|
|
187
185
|
attachment_collections: Папки
|
188
186
|
attachment_files: Файлове
|
189
187
|
attachments: Прикачени файлове
|
190
|
-
categories: Категории
|
191
188
|
components: Компоненти
|
192
189
|
conference_admins: Администратори на конференция
|
193
190
|
conference_invites: Покани
|
data/config/locales/ca.yml
CHANGED
@@ -22,8 +22,6 @@ ca:
|
|
22
22
|
published_at: Publicat a
|
23
23
|
registration_terms: Condicions d'inscripció
|
24
24
|
registrations_enabled: Inscripcions habilitades
|
25
|
-
scope_id: Àmbit
|
26
|
-
scopes_enabled: Àmbits habilitats
|
27
25
|
short_description: Breu descripció
|
28
26
|
show_statistics: Mostrar estadístiques
|
29
27
|
sign_date: Data de signatura
|
@@ -69,6 +67,8 @@ ca:
|
|
69
67
|
email: Correu electrònic
|
70
68
|
name: Nom
|
71
69
|
role: Rol
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -90,6 +90,7 @@ ca:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmar
|
93
|
+
confirm_delete_conference: Segur que vols esborrar aquesta jornada? Si canvies d'opinió, la pots restaurar més endavant.
|
93
94
|
new_conference: Afegir jornada
|
94
95
|
new_conference_user_role: Afegir administradora
|
95
96
|
new_media_link: Afegir enllaç multimèdia
|
@@ -97,6 +98,7 @@ ca:
|
|
97
98
|
new_registration_type: Afegir tipus de registre
|
98
99
|
new_speaker: Afegir ponent
|
99
100
|
send_diplomas: Enviar certificats d'assistència
|
101
|
+
view_deleted_conferences: Veure les jornades eliminades
|
100
102
|
conference_copies:
|
101
103
|
new:
|
102
104
|
copy: Copiar
|
@@ -166,6 +168,8 @@ ca:
|
|
166
168
|
index:
|
167
169
|
published: Publicat
|
168
170
|
unpublished: Despublicada
|
171
|
+
manage_trash:
|
172
|
+
title: Jornades eliminades
|
169
173
|
new:
|
170
174
|
create: Crear
|
171
175
|
title: Jornada
|
@@ -199,7 +203,6 @@ ca:
|
|
199
203
|
attachment_collections: Carpetes
|
200
204
|
attachment_files: Fitxers
|
201
205
|
attachments: Adjunts
|
202
|
-
categories: Categories
|
203
206
|
components: Components
|
204
207
|
conference_admins: Administradors de conferències
|
205
208
|
conference_invites: Convida
|
@@ -297,13 +300,21 @@ ca:
|
|
297
300
|
update:
|
298
301
|
error: S'ha produït un error en actualitzar un tipus d'inscripció per a aquesta jornada.
|
299
302
|
success: El tipus d'inscripció s'ha actualitzat correctament per a aquesta jornada.
|
303
|
+
taxonomy_filters:
|
304
|
+
space_filter_for:
|
305
|
+
conferences: Totes les jornades
|
300
306
|
titles:
|
301
307
|
conferences: Jornades
|
308
|
+
conferences_deleted: Jornades eliminades
|
309
|
+
tooltips:
|
310
|
+
deleted_conferences_info: Les jornades només es poden eliminar si el seu estat és 'Despublicada'.
|
302
311
|
admin_log:
|
303
312
|
conference:
|
304
313
|
create: "%{user_name} ha creat la jornada %{resource_name}"
|
305
314
|
publish: "%{user_name} ha publicat la jornada %{resource_name}"
|
315
|
+
restore: "%{user_name} ha restaurat la jornada %{resource_name}"
|
306
316
|
send_conference_diplomas: "%{user_name} ha enviat certificats d'assistència a les assistents de la jornada %{resource_name}"
|
317
|
+
soft_delete: "%{user_name} ha mogut a la paperera la jornada %{resource_name}"
|
307
318
|
unpublish: "%{user_name} no publicada la jornada %{resource_name}"
|
308
319
|
update: "%{user_name} ha actualitzat la jornada %{resource_name}"
|
309
320
|
update_diploma: "%{user_name} ha actualitzat la configuració dels certificats d'assistència per a la jornada %{resource_name}"
|
@@ -374,10 +385,13 @@ ca:
|
|
374
385
|
conferences:
|
375
386
|
form:
|
376
387
|
available_slots_help: Deixa-ho a 0 si les places disponibles són il·limitades.
|
388
|
+
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
389
|
+
no_taxonomy_filters_found: No s'han trobat filtres de taxonomia.
|
377
390
|
registrations_count:
|
378
391
|
one: Hi ha hagut 1 inscripció.
|
379
392
|
other: Hi ha hagut %{count} inscripcions.
|
380
393
|
slug_help_html: 'Les URL amigables s''utilitzen per generar els URL que apunten a aquesta jornada. Només accepta lletres, números i guions, i ha de començar amb una lletra. Exemple: %{url}'
|
394
|
+
taxonomies: Taxonomies
|
381
395
|
content_blocks:
|
382
396
|
highlighted_conferences:
|
383
397
|
max_results: Quantitat màxima d'elements a mostrar
|
@@ -526,6 +540,25 @@ ca:
|
|
526
540
|
objectives: Objectius
|
527
541
|
related_assemblies: Assemblees relacionades
|
528
542
|
related_participatory_processes: Processos participatius relacionats
|
543
|
+
download_your_data:
|
544
|
+
help:
|
545
|
+
conference_invites:
|
546
|
+
accepted_at: La data en què la invitació a la jornada es va acceptar
|
547
|
+
conference: La jornada a la qual correspon aquesta invitació
|
548
|
+
confirmed_at: La data en què es va confirmar la invitació
|
549
|
+
created_at: La data en què va ser crear la invitació
|
550
|
+
id: L'identificador únic de la invitació a la jornada
|
551
|
+
registration_type: El tipus d'inscripció enviada per a aquesta jornada
|
552
|
+
rejected_at: La data en què la invitació a la jornada va ser rebutjada
|
553
|
+
sent_at: La data en què la invitació a la jornada es va enviar
|
554
|
+
updated_at: La data en què aquesta taxonomia es va actualitzar per darrera vegada
|
555
|
+
conference_registrations:
|
556
|
+
conference: La jornada a la qual pertany aquesta inscripció
|
557
|
+
confirmed_at: La data en què es va confirmar la inscripció
|
558
|
+
created_at: La data en què va ser crear la inscripció
|
559
|
+
id: L'identificador únic de la inscripció a la jornada
|
560
|
+
registration_type: El tipus d'inscripció habilitat para aquesta jornada
|
561
|
+
updated_at: La data en què aquesta inscripció es va actualitzar per darrera vegada
|
529
562
|
events:
|
530
563
|
conferences:
|
531
564
|
conference_registration_confirmed:
|
@@ -573,6 +606,33 @@ ca:
|
|
573
606
|
title: Multimedia i enllaços
|
574
607
|
menu:
|
575
608
|
conferences: Jornades
|
609
|
+
open_data:
|
610
|
+
help:
|
611
|
+
conferences:
|
612
|
+
created_at: La data en què es va crear aquesta jornada
|
613
|
+
decidim_scope_id: L'àmbit territorial de la jornada
|
614
|
+
description: Una descripció llarga de la jornada
|
615
|
+
end_date: La data en la qual va finalitzar aquesta jornada.
|
616
|
+
follows_count: El número d'usuàries que segueixen aquesta jornada
|
617
|
+
hashtag: L'etiqueta que fa servir la jornada a Twitter/X
|
618
|
+
id: L'identificador únic de la jornada
|
619
|
+
location: El lloc de celebració de la jornada. On es va dur a terme aquesta jornada.
|
620
|
+
objectives: Els objectius de la jornada. Quina va ser la meta.
|
621
|
+
promoted: Si la jornada està destacada o no
|
622
|
+
published_at: La data en què es va publicar aquesta jornada
|
623
|
+
reference: La referència única de la jornada
|
624
|
+
remote_banner_image_url: L'URL de la imatge de capçalera de la jornada
|
625
|
+
remote_hero_image_url: L'URL de la imatge principal de la jornada
|
626
|
+
scope: L'àmbit territorial de la jornada
|
627
|
+
scopes_enabled: Si l'àmbit territorial està habilitat o no
|
628
|
+
short_description: Una descripció breu de la jornada
|
629
|
+
slogan: El lema d'aquesta jornada
|
630
|
+
slug: El nom curt de la jornada (utilitzat per a finalitats d'identificació, per a l'URL)
|
631
|
+
start_date: La data en la qual va començar aquesta jornada.
|
632
|
+
taxonomies: Les taxonomies de la jornada
|
633
|
+
title: El títol de la jornada
|
634
|
+
updated_at: La data de la darrera actualització d'aquesta jornada
|
635
|
+
url: L'URL de la jornada
|
576
636
|
statistics:
|
577
637
|
conferences_count: Jornades
|
578
638
|
devise:
|
data/config/locales/cs.yml
CHANGED
@@ -22,8 +22,6 @@ cs:
|
|
22
22
|
published_at: Publikováno v
|
23
23
|
registration_terms: Podmínky registrace
|
24
24
|
registrations_enabled: Registrace povoleny
|
25
|
-
scope_id: Oblast působnosti
|
26
|
-
scopes_enabled: Oblasti působnosti povoleny
|
27
25
|
short_description: Stručný popis
|
28
26
|
show_statistics: Zobrazit statistiky
|
29
27
|
sign_date: Datum podpisu
|
@@ -69,6 +67,8 @@ cs:
|
|
69
67
|
email: E-mail
|
70
68
|
name: Název
|
71
69
|
role: Role
|
70
|
+
partner:
|
71
|
+
logo: Logo
|
72
72
|
errors:
|
73
73
|
models:
|
74
74
|
conference_registration_invite:
|
@@ -96,6 +96,7 @@ cs:
|
|
96
96
|
admin:
|
97
97
|
actions:
|
98
98
|
confirm: Potvrdit
|
99
|
+
confirm_delete_conference: Opravdu chcete odstranit tuto konferenci? Pokud změníte názor, můžete ji obnovit později.
|
99
100
|
new_conference: Nová konference
|
100
101
|
new_conference_user_role: Nový administrátor konference
|
101
102
|
new_media_link: Nový odkaz na média
|
@@ -103,6 +104,7 @@ cs:
|
|
103
104
|
new_registration_type: Nový typ registrace
|
104
105
|
new_speaker: Nový mluvčí
|
105
106
|
send_diplomas: Odeslání certifikátů o účasti
|
107
|
+
view_deleted_conferences: Zobrazit smazané konference
|
106
108
|
conference_copies:
|
107
109
|
new:
|
108
110
|
copy: Kopírovat
|
@@ -172,6 +174,8 @@ cs:
|
|
172
174
|
index:
|
173
175
|
published: Publikováno
|
174
176
|
unpublished: Nezveřejněno
|
177
|
+
manage_trash:
|
178
|
+
title: Smazané konference
|
175
179
|
new:
|
176
180
|
create: Vytvořit
|
177
181
|
title: Konference
|
@@ -205,7 +209,6 @@ cs:
|
|
205
209
|
attachment_collections: Složky
|
206
210
|
attachment_files: Soubory
|
207
211
|
attachments: Přílohy
|
208
|
-
categories: Kategorie
|
209
212
|
components: Komponenty
|
210
213
|
conference_admins: Administrátoři konference
|
211
214
|
conference_invites: Pozvánky
|
@@ -303,13 +306,21 @@ cs:
|
|
303
306
|
update:
|
304
307
|
error: Při aktualizaci typu registrace pro tuto konferenci došlo k chybě.
|
305
308
|
success: Typ registrace byl úspěšně aktualizován pro tuto konferenci.
|
309
|
+
taxonomy_filters:
|
310
|
+
space_filter_for:
|
311
|
+
conferences: Všechny konference
|
306
312
|
titles:
|
307
313
|
conferences: Konference
|
314
|
+
conferences_deleted: Smazané konference
|
315
|
+
tooltips:
|
316
|
+
deleted_conferences_info: Konference mohou být smazané pouze v případě, že je stav "Nezveřejněný".
|
308
317
|
admin_log:
|
309
318
|
conference:
|
310
319
|
create: "%{user_name} vytvořil konferenci %{resource_name}"
|
311
320
|
publish: "%{user_name} zveřejnila %{resource_name} konferenci"
|
321
|
+
restore: "%{user_name} obnovil konferenci %{resource_name}"
|
312
322
|
send_conference_diplomas: "%{user_name} zaslal certifikaci o účasti na konferenci %{resource_name}"
|
323
|
+
soft_delete: "%{user_name} přesunul do koše konferenci %{resource_name}"
|
313
324
|
unpublish: "%{user_name} nepublikováno %{resource_name} konferenci"
|
314
325
|
update: "%{user_name} aktualizoval konferenci %{resource_name}"
|
315
326
|
update_diploma: "%{user_name} aktualizovala certifikáty pro účast na %{resource_name} konferenci"
|
@@ -380,12 +391,15 @@ cs:
|
|
380
391
|
conferences:
|
381
392
|
form:
|
382
393
|
available_slots_help: Nechte to na 0, pokud máte k dispozici neomezené sloty.
|
394
|
+
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
395
|
+
no_taxonomy_filters_found: Nebyly nalezeny žádné filtry taxonomie.
|
383
396
|
registrations_count:
|
384
397
|
one: Došlo k 1 registraci.
|
385
398
|
few: Bylo zde %{count} registrací.
|
386
399
|
many: Bylo zde %{count} registrací.
|
387
400
|
other: Bylo zde %{count} registrací.
|
388
401
|
slug_help_html: 'URL slugy se používají ke generování adres URL, které odkazují na tuto konferenci. Povolená jsou pouze písmena, číslice a pomlčky a musí začínat písmenem. Příklad: %{url}'
|
402
|
+
taxonomies: Taxonomie
|
389
403
|
content_blocks:
|
390
404
|
highlighted_conferences:
|
391
405
|
max_results: Maximální počet zobrazených prvků
|
@@ -536,6 +550,25 @@ cs:
|
|
536
550
|
objectives: Cíle
|
537
551
|
related_assemblies: Související shromáždění
|
538
552
|
related_participatory_processes: Související participativní procesy
|
553
|
+
download_your_data:
|
554
|
+
help:
|
555
|
+
conference_invites:
|
556
|
+
accepted_at: Datum, kdy byla pozvánka na konferenci přijata
|
557
|
+
conference: Konference, na kterou byla tato pozvánka zaslána
|
558
|
+
confirmed_at: Datum, kdy bylo toto pozvání potvrzeno
|
559
|
+
created_at: Datum, kdy byla tato pozvánka vytvořena
|
560
|
+
id: Jedinečný identifikátor pozvánky na konferenci
|
561
|
+
registration_type: Typ registrace na tuto konferenci, která byla zaslána
|
562
|
+
rejected_at: Datum odmítnutí pozvánky na konferenci
|
563
|
+
sent_at: Datum odeslání pozvánky na konferenci
|
564
|
+
updated_at: Datum, kdy byla tato pozvánka naposledy aktualizována
|
565
|
+
conference_registrations:
|
566
|
+
conference: Konference, ke které patří
|
567
|
+
confirmed_at: Datum, kdy byla tato registrace potvrzena
|
568
|
+
created_at: Datum, kdy byla registrace vytvořena
|
569
|
+
id: Jedinečný identifikátor registrací konference
|
570
|
+
registration_type: Typ registrace, do které patří
|
571
|
+
updated_at: Datum, kdy byla registrace naposledy aktualizována
|
539
572
|
events:
|
540
573
|
conferences:
|
541
574
|
conference_registration_confirmed:
|
@@ -583,6 +616,33 @@ cs:
|
|
583
616
|
title: Média a odkazy
|
584
617
|
menu:
|
585
618
|
conferences: Konference
|
619
|
+
open_data:
|
620
|
+
help:
|
621
|
+
conferences:
|
622
|
+
created_at: Datum, kdy byl tento prostor vytvořen
|
623
|
+
decidim_scope_id: Rozsah konference
|
624
|
+
description: Dlouhý popis konference
|
625
|
+
end_date: Datum, kdy tato konference skončí.
|
626
|
+
follows_count: Počet uživatelů sledujících tento prostor
|
627
|
+
hashtag: Hashtag Konference, používaná pro Twitter/X
|
628
|
+
id: Jedinečný identifikátor této konference
|
629
|
+
location: Místo konference, kde se bude konat.
|
630
|
+
objectives: Cíle této konference. Co je cílem.
|
631
|
+
promoted: Zda je konference propagována, nebo ne
|
632
|
+
published_at: Datum, kdy byl tento prostor publikován
|
633
|
+
reference: Jedinečný odkaz na prostor
|
634
|
+
remote_banner_image_url: URL obrázku banneru konference
|
635
|
+
remote_hero_image_url: URL obrázku přední osobnosti konference
|
636
|
+
scope: Rozsah konference
|
637
|
+
scopes_enabled: Zda jsou rozsahy povoleny nebo ne
|
638
|
+
short_description: Stručný popis konference
|
639
|
+
slogan: Slogan pro tuto konferenci
|
640
|
+
slug: Konference slug (používá se pro účely identifikace, pro URL)
|
641
|
+
start_date: Datum, kdy tato konference začne.
|
642
|
+
taxonomies: Taxonomie konference
|
643
|
+
title: Název konference
|
644
|
+
updated_at: Poslední datum, kdy byl tento prostor aktualizován
|
645
|
+
url: URL prostoru
|
586
646
|
statistics:
|
587
647
|
conferences_count: Konference
|
588
648
|
devise:
|