decidim-conferences 0.29.6 → 0.30.0.rc1
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/invite_user_to_join_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 -10
- 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 +16 -3
- data/config/locales/bg.yml +6 -3
- data/config/locales/ca.yml +62 -4
- data/config/locales/cs.yml +61 -3
- data/config/locales/de.yml +70 -12
- data/config/locales/el.yml +6 -3
- data/config/locales/en.yml +62 -4
- data/config/locales/es-MX.yml +64 -6
- data/config/locales/es-PY.yml +65 -7
- data/config/locales/es.yml +63 -5
- data/config/locales/eu.yml +84 -26
- data/config/locales/fi-plain.yml +63 -5
- data/config/locales/fi.yml +63 -5
- data/config/locales/fr-CA.yml +21 -4
- data/config/locales/fr.yml +22 -5
- data/config/locales/ga-IE.yml +0 -2
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +6 -3
- data/config/locales/id-ID.yml +6 -3
- data/config/locales/it.yml +6 -3
- data/config/locales/ja.yml +62 -4
- data/config/locales/lb.yml +4 -3
- data/config/locales/lt.yml +6 -3
- data/config/locales/lv.yml +6 -3
- data/config/locales/nl.yml +6 -3
- data/config/locales/no.yml +6 -3
- data/config/locales/pl.yml +6 -3
- data/config/locales/pt-BR.yml +7 -4
- data/config/locales/pt.yml +6 -3
- data/config/locales/ro-RO.yml +6 -5
- data/config/locales/sk.yml +6 -3
- data/config/locales/sv.yml +37 -41
- data/config/locales/tr-TR.yml +6 -3
- data/config/locales/zh-CN.yml +6 -3
- data/config/locales/zh-TW.yml +6 -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 -29
- data/app/controllers/decidim/conferences/admin/categories_controller.rb +0 -13
- data/config/initializers/wicked_pdf.rb +0 -22
- data/config/locales/ca-IT.yml +0 -603
|
@@ -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: تاريخ التوقيع
|
|
@@ -98,6 +96,8 @@ ar:
|
|
|
98
96
|
conference_copies:
|
|
99
97
|
new:
|
|
100
98
|
copy: نسخ
|
|
99
|
+
select: حدد البيانات التي ترغب في تكرارها
|
|
100
|
+
title: مؤتمر مكرر
|
|
101
101
|
conference_publications:
|
|
102
102
|
create:
|
|
103
103
|
error: كانت هناك مشكلة في نشر هذا المؤتمر.
|
|
@@ -155,6 +155,10 @@ ar:
|
|
|
155
155
|
update:
|
|
156
156
|
error: حدثت مشكلة أثناء تحديث هذا المؤتمر.
|
|
157
157
|
success: تم تحديث المؤتمر بنجاح.
|
|
158
|
+
conferences_copies:
|
|
159
|
+
create:
|
|
160
|
+
error: كانت هناك مشكلة في تكرار هذا المؤتمر.
|
|
161
|
+
success: تم تكرار المؤتمر بنجاح.
|
|
158
162
|
media_links:
|
|
159
163
|
create:
|
|
160
164
|
error: حدثت مشكلة أثناء إنشاء رابط وسائط جديد.
|
|
@@ -170,7 +174,6 @@ ar:
|
|
|
170
174
|
attachment_collections: المجلدات
|
|
171
175
|
attachment_files: ملفات
|
|
172
176
|
attachments: مرفقات
|
|
173
|
-
categories: الاقسام
|
|
174
177
|
components: المكونات
|
|
175
178
|
conference_admins: المشرفون على المؤتمر
|
|
176
179
|
conference_invites: تدعو
|
|
@@ -460,6 +463,16 @@ ar:
|
|
|
460
463
|
objectives: الأهداف
|
|
461
464
|
related_assemblies: الجمعيات ذات الصلة
|
|
462
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: تاريخ آخر مرة تم فيها تحديث هذا التسجيل
|
|
463
476
|
events:
|
|
464
477
|
conferences:
|
|
465
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: Дата на подпис
|
|
@@ -100,6 +98,8 @@ bg:
|
|
|
100
98
|
conference_copies:
|
|
101
99
|
new:
|
|
102
100
|
copy: Копиране
|
|
101
|
+
select: Изберете кои данни искате да дублирате
|
|
102
|
+
title: Дублиране на конференцията
|
|
103
103
|
conference_publications:
|
|
104
104
|
create:
|
|
105
105
|
error: Възникна проблем при публикуването на тази конференция.
|
|
@@ -166,6 +166,10 @@ bg:
|
|
|
166
166
|
update:
|
|
167
167
|
error: Възникна проблем при актуализирането на тази конференция.
|
|
168
168
|
success: Конференцията беше актуализирана успешно.
|
|
169
|
+
conferences_copies:
|
|
170
|
+
create:
|
|
171
|
+
error: Възникна проблем при дублирането на тази конференция.
|
|
172
|
+
success: Конференцията беше дублирана успешно.
|
|
169
173
|
media_links:
|
|
170
174
|
create:
|
|
171
175
|
error: Възникна проблем при създаването на нов медия линк.
|
|
@@ -181,7 +185,6 @@ bg:
|
|
|
181
185
|
attachment_collections: Папки
|
|
182
186
|
attachment_files: Файлове
|
|
183
187
|
attachments: Прикачени файлове
|
|
184
|
-
categories: Категории
|
|
185
188
|
components: Компоненти
|
|
186
189
|
conference_admins: Администратори на конференция
|
|
187
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
|
|
@@ -92,6 +90,7 @@ ca:
|
|
|
92
90
|
admin:
|
|
93
91
|
actions:
|
|
94
92
|
confirm: Confirmar
|
|
93
|
+
confirm_delete_conference: Segur que vols esborrar aquesta jornada? Si canvies d'opinió, la pots restaurar més endavant.
|
|
95
94
|
new_conference: Afegir jornada
|
|
96
95
|
new_conference_user_role: Afegir administradora
|
|
97
96
|
new_media_link: Afegir enllaç multimèdia
|
|
@@ -99,11 +98,12 @@ ca:
|
|
|
99
98
|
new_registration_type: Afegir tipus de registre
|
|
100
99
|
new_speaker: Afegir ponent
|
|
101
100
|
send_diplomas: Enviar certificats d'assistència
|
|
101
|
+
view_deleted_conferences: Veure les jornades eliminades
|
|
102
102
|
conference_copies:
|
|
103
103
|
new:
|
|
104
104
|
copy: Copiar
|
|
105
105
|
select: Selecciona quines dades vols duplicar
|
|
106
|
-
title:
|
|
106
|
+
title: Jornada duplicada
|
|
107
107
|
conference_publications:
|
|
108
108
|
create:
|
|
109
109
|
error: S'ha produït un error en publicar aquesta jornada.
|
|
@@ -168,6 +168,8 @@ ca:
|
|
|
168
168
|
index:
|
|
169
169
|
published: Publicat
|
|
170
170
|
unpublished: Despublicada
|
|
171
|
+
manage_trash:
|
|
172
|
+
title: Jornades eliminades
|
|
171
173
|
new:
|
|
172
174
|
create: Crear
|
|
173
175
|
title: Jornada
|
|
@@ -201,7 +203,6 @@ ca:
|
|
|
201
203
|
attachment_collections: Carpetes
|
|
202
204
|
attachment_files: Fitxers
|
|
203
205
|
attachments: Adjunts
|
|
204
|
-
categories: Categories
|
|
205
206
|
components: Components
|
|
206
207
|
conference_admins: Administradors de conferències
|
|
207
208
|
conference_invites: Convida
|
|
@@ -299,13 +300,21 @@ ca:
|
|
|
299
300
|
update:
|
|
300
301
|
error: S'ha produït un error en actualitzar un tipus d'inscripció per a aquesta jornada.
|
|
301
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
|
|
302
306
|
titles:
|
|
303
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'.
|
|
304
311
|
admin_log:
|
|
305
312
|
conference:
|
|
306
313
|
create: "%{user_name} ha creat la jornada %{resource_name}"
|
|
307
314
|
publish: "%{user_name} ha publicat la jornada %{resource_name}"
|
|
315
|
+
restore: "%{user_name} ha restaurat la jornada %{resource_name}"
|
|
308
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}"
|
|
309
318
|
unpublish: "%{user_name} no publicada la jornada %{resource_name}"
|
|
310
319
|
update: "%{user_name} ha actualitzat la jornada %{resource_name}"
|
|
311
320
|
update_diploma: "%{user_name} ha actualitzat la configuració dels certificats d'assistència per a la jornada %{resource_name}"
|
|
@@ -376,10 +385,13 @@ ca:
|
|
|
376
385
|
conferences:
|
|
377
386
|
form:
|
|
378
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.
|
|
379
390
|
registrations_count:
|
|
380
391
|
one: Hi ha hagut 1 inscripció.
|
|
381
392
|
other: Hi ha hagut %{count} inscripcions.
|
|
382
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
|
|
383
395
|
content_blocks:
|
|
384
396
|
highlighted_conferences:
|
|
385
397
|
max_results: Quantitat màxima d'elements a mostrar
|
|
@@ -528,6 +540,25 @@ ca:
|
|
|
528
540
|
objectives: Objectius
|
|
529
541
|
related_assemblies: Assemblees relacionades
|
|
530
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
|
|
531
562
|
events:
|
|
532
563
|
conferences:
|
|
533
564
|
conference_registration_confirmed:
|
|
@@ -575,6 +606,33 @@ ca:
|
|
|
575
606
|
title: Multimedia i enllaços
|
|
576
607
|
menu:
|
|
577
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
|
|
578
636
|
statistics:
|
|
579
637
|
conferences_count: Jornades
|
|
580
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
|
|
@@ -98,6 +96,7 @@ cs:
|
|
|
98
96
|
admin:
|
|
99
97
|
actions:
|
|
100
98
|
confirm: Potvrdit
|
|
99
|
+
confirm_delete_conference: Opravdu chcete odstranit tuto konferenci? Pokud změníte názor, můžete ji obnovit později.
|
|
101
100
|
new_conference: Nová konference
|
|
102
101
|
new_conference_user_role: Nový administrátor konference
|
|
103
102
|
new_media_link: Nový odkaz na média
|
|
@@ -105,6 +104,7 @@ cs:
|
|
|
105
104
|
new_registration_type: Nový typ registrace
|
|
106
105
|
new_speaker: Nový mluvčí
|
|
107
106
|
send_diplomas: Odeslání certifikátů o účasti
|
|
107
|
+
view_deleted_conferences: Zobrazit smazané konference
|
|
108
108
|
conference_copies:
|
|
109
109
|
new:
|
|
110
110
|
copy: Kopírovat
|
|
@@ -174,6 +174,8 @@ cs:
|
|
|
174
174
|
index:
|
|
175
175
|
published: Publikováno
|
|
176
176
|
unpublished: Nezveřejněno
|
|
177
|
+
manage_trash:
|
|
178
|
+
title: Smazané konference
|
|
177
179
|
new:
|
|
178
180
|
create: Vytvořit
|
|
179
181
|
title: Konference
|
|
@@ -207,7 +209,6 @@ cs:
|
|
|
207
209
|
attachment_collections: Složky
|
|
208
210
|
attachment_files: Soubory
|
|
209
211
|
attachments: Přílohy
|
|
210
|
-
categories: Kategorie
|
|
211
212
|
components: Komponenty
|
|
212
213
|
conference_admins: Administrátoři konference
|
|
213
214
|
conference_invites: Pozvánky
|
|
@@ -305,13 +306,21 @@ cs:
|
|
|
305
306
|
update:
|
|
306
307
|
error: Při aktualizaci typu registrace pro tuto konferenci došlo k chybě.
|
|
307
308
|
success: Typ registrace byl úspěšně aktualizován pro tuto konferenci.
|
|
309
|
+
taxonomy_filters:
|
|
310
|
+
space_filter_for:
|
|
311
|
+
conferences: Všechny konference
|
|
308
312
|
titles:
|
|
309
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ý".
|
|
310
317
|
admin_log:
|
|
311
318
|
conference:
|
|
312
319
|
create: "%{user_name} vytvořil konferenci %{resource_name}"
|
|
313
320
|
publish: "%{user_name} zveřejnila %{resource_name} konferenci"
|
|
321
|
+
restore: "%{user_name} obnovil konferenci %{resource_name}"
|
|
314
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}"
|
|
315
324
|
unpublish: "%{user_name} nepublikováno %{resource_name} konferenci"
|
|
316
325
|
update: "%{user_name} aktualizoval konferenci %{resource_name}"
|
|
317
326
|
update_diploma: "%{user_name} aktualizovala certifikáty pro účast na %{resource_name} konferenci"
|
|
@@ -382,12 +391,15 @@ cs:
|
|
|
382
391
|
conferences:
|
|
383
392
|
form:
|
|
384
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.
|
|
385
396
|
registrations_count:
|
|
386
397
|
one: Došlo k 1 registraci.
|
|
387
398
|
few: Bylo zde %{count} registrací.
|
|
388
399
|
many: Bylo zde %{count} registrací.
|
|
389
400
|
other: Bylo zde %{count} registrací.
|
|
390
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
|
|
391
403
|
content_blocks:
|
|
392
404
|
highlighted_conferences:
|
|
393
405
|
max_results: Maximální počet zobrazených prvků
|
|
@@ -538,6 +550,25 @@ cs:
|
|
|
538
550
|
objectives: Cíle
|
|
539
551
|
related_assemblies: Související shromáždění
|
|
540
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
|
|
541
572
|
events:
|
|
542
573
|
conferences:
|
|
543
574
|
conference_registration_confirmed:
|
|
@@ -585,6 +616,33 @@ cs:
|
|
|
585
616
|
title: Média a odkazy
|
|
586
617
|
menu:
|
|
587
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
|
|
588
646
|
statistics:
|
|
589
647
|
conferences_count: Konference
|
|
590
648
|
devise:
|