decidim-meetings 0.31.0.rc1 → 0.31.0
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/meetings/meeting_cell.rb +1 -6
- data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +8 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +3 -0
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +32 -3
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +0 -10
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +2 -0
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +3 -3
- data/config/locales/ca-IT.yml +6 -1
- data/config/locales/ca.yml +6 -1
- data/config/locales/cs.yml +5 -0
- data/config/locales/de.yml +2 -2
- data/config/locales/en.yml +5 -0
- data/config/locales/es-MX.yml +5 -0
- data/config/locales/es-PY.yml +5 -0
- data/config/locales/es.yml +5 -0
- data/config/locales/eu.yml +25 -20
- data/config/locales/fi-plain.yml +5 -0
- data/config/locales/fi.yml +5 -0
- data/config/locales/fr-CA.yml +5 -0
- data/config/locales/fr.yml +5 -0
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/hu.yml +1 -0
- data/config/locales/it.yml +1 -0
- data/config/locales/ja.yml +5 -0
- data/config/locales/lb.yml +1 -0
- data/config/locales/no.yml +1 -0
- data/config/locales/pt.yml +1 -0
- data/config/locales/ro-RO.yml +1 -0
- data/config/locales/sv.yml +3 -0
- data/db/data/20251114085753_change_send_reminders_before_hours_for_legacy_meetings.rb +15 -0
- data/lib/decidim/meetings/component.rb +11 -5
- data/lib/decidim/meetings/engine.rb +6 -0
- data/lib/decidim/meetings/seeds.rb +1 -0
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +15 -15
- data/app/cells/decidim/meetings/meeting_s_cell.rb +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b204c25e5a660ba2fbd0e60e6a4dd6a4b15624f1e2de600fccddb89dd2d2543d
|
|
4
|
+
data.tar.gz: fd60a44ba0c20e254af3012c40b071c35650e212a5f6789781d8457ee90cdd0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b8e070b01f3864669ebeaa307f5bd840ecbbbc1fbad716e3a2ae4b0af918774e801f758603fd3681c12260e44c090545c57a44727d296b3f74edbfb053ddeb2
|
|
7
|
+
data.tar.gz: 8420c3856d1568cc7a740fd4fa96fae535dd16d83fdaa007c4b1a3aa5a70d68db6a6ad327a6cc3d9a9fa874384134eb4620c4b2945298e79e5c0375c20b73fff
|
|
@@ -27,7 +27,7 @@ module Decidim
|
|
|
27
27
|
# Finds the Projects scoped to an array of components and filtered
|
|
28
28
|
# by a range of dates.
|
|
29
29
|
def query
|
|
30
|
-
meetings = Decidim::Meetings::Meeting.not_hidden.
|
|
30
|
+
meetings = Decidim::Meetings::Meeting.not_hidden.where(component: @components)
|
|
31
31
|
meetings = meetings.where(created_at: @start_at..) if @start_at.present?
|
|
32
32
|
meetings = meetings.where(created_at: ..@end_at) if @end_at.present?
|
|
33
33
|
meetings
|
|
@@ -35,6 +35,14 @@
|
|
|
35
35
|
<%= present(meeting).taxonomy_names.join(", ") %>
|
|
36
36
|
</td>
|
|
37
37
|
|
|
38
|
+
<td class="table-list__state" data-label="<%= t("models.meeting.fields.published", scope: "decidim.meetings") %>">
|
|
39
|
+
<% if meeting.published? %>
|
|
40
|
+
<span class="label success !text-sm"><%= t("admin.meetings.index.published", scope: "decidim.meetings") %></span>
|
|
41
|
+
<% else %>
|
|
42
|
+
<span class="label alert !text-sm"><%= t("admin.meetings.index.unpublished", scope: "decidim.meetings") %></span>
|
|
43
|
+
<% end %>
|
|
44
|
+
</td>
|
|
45
|
+
|
|
38
46
|
<td class="table-list__actions" data-label="<%= t("actions.title", scope: "decidim.meetings") %>">
|
|
39
47
|
<% if is_linked %>
|
|
40
48
|
<%= t("index.linked_meeting_warning_html", href: edit_meeting_path(meeting), name: present(meeting).space_title, scope: "decidim.meetings.admin.meetings") %>
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
<li class="dropdown__item">
|
|
152
152
|
<% if allowed_to?(:update, :meeting, meeting: meeting) %>
|
|
153
153
|
<% if meeting.published? %>
|
|
154
|
-
<%= link_to unpublish_meeting_path(meeting), method: :put, data: { confirm: t("actions.
|
|
154
|
+
<%= link_to unpublish_meeting_path(meeting), method: :put, data: { confirm: t("actions.confirm_unpublish_meeting", scope: "decidim.meetings") }, class: "dropdown__button" do %>
|
|
155
155
|
<%= icon "close-circle-line" %>
|
|
156
156
|
<%= t("actions.unpublish", scope: "decidim.admin") %>
|
|
157
157
|
<% end %>
|
|
@@ -21,6 +21,9 @@
|
|
|
21
21
|
<th>
|
|
22
22
|
<%= sort_link(query, :scope_name, t("models.meeting.fields.taxonomies", scope: "decidim.meetings") ) %>
|
|
23
23
|
</th>
|
|
24
|
+
<th>
|
|
25
|
+
<%= t("models.meeting.fields.published", scope: "decidim.meetings") %>
|
|
26
|
+
</th>
|
|
24
27
|
<th><%= t("actions.title", scope: "decidim.meetings") %></th>
|
|
25
28
|
</tr>
|
|
26
29
|
</thead>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<%= render "decidim/meetings/admin/poll/response_option_template", form: question_form, editable: true, template_id: "response-option-template-dummy" %>
|
|
25
25
|
<% end %>
|
|
26
26
|
|
|
27
|
-
<div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0">
|
|
27
|
+
<div class="questionnaire-questions-list flex flex-col py-6 gap-6 last:pb-0" data-draggable-table data-sort-url="#" id="questionnaire-questions-list">
|
|
28
28
|
<% @form.questions.each_with_index do |question, index| %>
|
|
29
29
|
<%= fields_for "questionnaire[questions][]", question do |question_form| %>
|
|
30
30
|
<%= render "decidim/meetings/admin/poll/question",
|
|
@@ -44,6 +44,35 @@
|
|
|
44
44
|
|
|
45
45
|
<script>
|
|
46
46
|
document.addEventListener("turbo:load", function () {
|
|
47
|
-
window.Decidim.createEditableForm()
|
|
48
|
-
|
|
47
|
+
window.Decidim.createEditableForm();
|
|
48
|
+
|
|
49
|
+
// Function to initialize the sortable functionality
|
|
50
|
+
function initializeSortable() {
|
|
51
|
+
const container = document.querySelector("#questionnaire-questions-list");
|
|
52
|
+
const questionCards = container?.querySelectorAll(".card.questionnaire-question");
|
|
53
|
+
|
|
54
|
+
if (!container || !questionCards?.length) return;
|
|
55
|
+
|
|
56
|
+
questionCards.forEach(card => {
|
|
57
|
+
card.setAttribute("draggable", "true");
|
|
58
|
+
card.setAttribute("role", "option");
|
|
59
|
+
card.setAttribute("aria-grabbed", "false");
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
window.Decidim?.createSortableList?.("#questionnaire-questions-list");
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// Initialize on load and when new options such as questions etc are added
|
|
66
|
+
initializeSortable();
|
|
67
|
+
|
|
68
|
+
const observer = new MutationObserver(() => {
|
|
69
|
+
clearTimeout(observer.timer);
|
|
70
|
+
observer.timer = setTimeout(initializeSortable, 500);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
const container = document.querySelector("#questionnaire-questions-list");
|
|
74
|
+
if (container) {
|
|
75
|
+
observer.observe(container, { childList: true, subtree: true });
|
|
76
|
+
}
|
|
77
|
+
});
|
|
49
78
|
</script>
|
|
@@ -24,16 +24,6 @@
|
|
|
24
24
|
</span>
|
|
25
25
|
</button>
|
|
26
26
|
|
|
27
|
-
<button class="button button__xs button__transparent-secondary small alert move-up-question button--title">
|
|
28
|
-
<%= icon "arrow-up-line" %>
|
|
29
|
-
<span class="hidden md:block"><%= t("up", scope: "decidim.forms.admin.questionnaires.question") %></span>
|
|
30
|
-
</button>
|
|
31
|
-
|
|
32
|
-
<button class="button button__xs button__transparent-secondary small alert move-down-question button--title">
|
|
33
|
-
<%= icon "arrow-down-line" %>
|
|
34
|
-
<span class="hidden md:block"><%= t("down", scope: "decidim.forms.admin.questionnaires.question") %></span>
|
|
35
|
-
</button>
|
|
36
|
-
|
|
37
27
|
<% if editable %>
|
|
38
28
|
<button class="button button__xs button__transparent-secondary small alert remove-question button--title">
|
|
39
29
|
<span class="hidden md:block"><%= t("remove", scope: "decidim.forms.admin.questionnaires.question") %></span>
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
</h1>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
+
<div class="flash warning"><%= t("deprecation_warning_polls_html", scope: "decidim.meetings.admin") %></div>
|
|
16
|
+
|
|
15
17
|
<div class="item__edit item__edit-1col">
|
|
16
18
|
<div class="item__edit-form">
|
|
17
19
|
<%= decidim_form_for(@form, url: update_url, method: :put, html: { class: "form-defaults form edit_questionnaire" }) do |form| %>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<% if allowed_to?(:update, :meeting, meeting: meeting) %>
|
|
2
|
-
<li role="menuitem">
|
|
2
|
+
<li class="dropdown__item" role="menuitem">
|
|
3
3
|
<%= link_to edit_meeting_path(meeting), class: "dropdown__button" do %>
|
|
4
4
|
<span><%= t("edit_meeting", scope: "decidim.meetings.meetings.meeting") %></span>
|
|
5
5
|
<%= icon "pencil-line" %>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<% if allowed_to?(:close, :meeting, meeting: meeting) %>
|
|
11
11
|
<% caption = meeting.closed? ? t("edit_close_meeting", scope: "decidim.meetings.meetings.meeting") : t("close_meeting", scope: "decidim.meetings.meetings.meeting") %>
|
|
12
|
-
<li role="menuitem">
|
|
12
|
+
<li class="dropdown__item" role="menuitem">
|
|
13
13
|
<%= link_to edit_meeting_meeting_close_path(meeting_id: meeting.id, id: meeting.id), class: "dropdown__button" do %>
|
|
14
14
|
<span><%= caption %></span>
|
|
15
15
|
<%= icon "lock-line" %>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
<% end %>
|
|
19
19
|
|
|
20
20
|
<% if meeting.withdrawable_by?(current_user) %>
|
|
21
|
-
<li role="menuitem">
|
|
21
|
+
<li class="dropdown__item" role="menuitem">
|
|
22
22
|
<%= action_authorized_link_to(
|
|
23
23
|
:withdraw,
|
|
24
24
|
withdraw_meeting_path(meeting),
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -274,7 +274,7 @@ ca-IT:
|
|
|
274
274
|
attended_meetings:
|
|
275
275
|
conditions:
|
|
276
276
|
- Inscriu-te a les trobades a les que vols assistir
|
|
277
|
-
description:
|
|
277
|
+
description: Aquesta ensenya s'aconsegueix assistint a diverses reunions presencials.
|
|
278
278
|
description_another: Aquesta participant ha assistit a %{score} trobades.
|
|
279
279
|
description_own: Has assistit a %{score} trobades.
|
|
280
280
|
name: Trobades a les que has assistit
|
|
@@ -286,6 +286,7 @@ ca-IT:
|
|
|
286
286
|
agenda: Ordre del dia
|
|
287
287
|
close: Tancar
|
|
288
288
|
confirm_delete_meeting: Segur que vols suprimir aquesta trobada?
|
|
289
|
+
confirm_unpublish_meeting: Segur que vols despublicar aquesta trobada?
|
|
289
290
|
deleted_meetings_info: Les trobades eliminades es poden restaurar des de la paperera.
|
|
290
291
|
edit: Edita
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ ca-IT:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: S'ha produït un error en actualitzar aquest ordre del dia.
|
|
332
333
|
success: L'ordre del dia s'ha actualitzat correctament.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Avís de Desús/Obsolescència.</b> La funció de sondejos/votacions s'eliminarà en una versió futura (per determinar). Les organitzacions que utilitzen sondejos/votacions en viu a les reunions han de planejar-se fer servir eines de sondejos/votacions externes (per exemple, a través de Jitsi) o migrar a altres mecanismes de votació disponibles a Decidim, com el nou component d'Eleccions (`decidim-eleccions`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Comentaris
|
|
335
337
|
meetings: Trobades
|
|
@@ -384,7 +386,9 @@ ca-IT:
|
|
|
384
386
|
select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Aquesta reunió s'ha d'editar des de <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Publicada
|
|
387
390
|
title: Trobades
|
|
391
|
+
unpublished: Despublicada
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Assignar
|
|
390
394
|
link_a_space: Vincular un espai
|
|
@@ -677,6 +681,7 @@ ca-IT:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Mapa
|
|
679
683
|
official_meeting: Trobada oficial
|
|
684
|
+
published: Publicada
|
|
680
685
|
start_time: Data d'inici
|
|
681
686
|
taxonomies: Taxonomies
|
|
682
687
|
title: Títol
|
data/config/locales/ca.yml
CHANGED
|
@@ -274,7 +274,7 @@ ca:
|
|
|
274
274
|
attended_meetings:
|
|
275
275
|
conditions:
|
|
276
276
|
- Inscriu-te a les trobades a les que vols assistir
|
|
277
|
-
description:
|
|
277
|
+
description: Aquesta ensenya s'aconsegueix assistint a diverses reunions presencials.
|
|
278
278
|
description_another: Aquesta participant ha assistit a %{score} trobades.
|
|
279
279
|
description_own: Has assistit a %{score} trobades.
|
|
280
280
|
name: Trobades a les que has assistit
|
|
@@ -286,6 +286,7 @@ ca:
|
|
|
286
286
|
agenda: Ordre del dia
|
|
287
287
|
close: Tancar
|
|
288
288
|
confirm_delete_meeting: Segur que vols suprimir aquesta trobada?
|
|
289
|
+
confirm_unpublish_meeting: Segur que vols despublicar aquesta trobada?
|
|
289
290
|
deleted_meetings_info: Les trobades eliminades es poden restaurar des de la paperera.
|
|
290
291
|
edit: Edita
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ ca:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: S'ha produït un error en actualitzar aquest ordre del dia.
|
|
332
333
|
success: L'ordre del dia s'ha actualitzat correctament.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Avís de Desús/Obsolescència.</b> La funció de sondejos/votacions s'eliminarà en una versió futura (per determinar). Les organitzacions que utilitzen sondejos/votacions en viu a les reunions han de planejar-se fer servir eines de sondejos/votacions externes (per exemple, a través de Jitsi) o migrar a altres mecanismes de votació disponibles a Decidim, com el nou component d'Eleccions (`decidim-eleccions`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Comentaris
|
|
335
337
|
meetings: Trobades
|
|
@@ -384,7 +386,9 @@ ca:
|
|
|
384
386
|
select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Aquesta reunió s'ha d'editar des de <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Publicada
|
|
387
390
|
title: Trobades
|
|
391
|
+
unpublished: Despublicada
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Assignar
|
|
390
394
|
link_a_space: Vincular un espai
|
|
@@ -677,6 +681,7 @@ ca:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Mapa
|
|
679
683
|
official_meeting: Trobada oficial
|
|
684
|
+
published: Publicada
|
|
680
685
|
start_time: Data d'inici
|
|
681
686
|
taxonomies: Taxonomies
|
|
682
687
|
title: Títol
|
data/config/locales/cs.yml
CHANGED
|
@@ -277,6 +277,7 @@ cs:
|
|
|
277
277
|
agenda: Denní program
|
|
278
278
|
close: Zavřít
|
|
279
279
|
confirm_delete_meeting: Opravdu chcete smazat tuto schůzi?
|
|
280
|
+
confirm_unpublish_meeting: Opravdu chcete zrušit publikování této schůzky?
|
|
280
281
|
deleted_meetings_info: Smazané schůzky mohou být obnoveny z koše.
|
|
281
282
|
edit: Upravit
|
|
282
283
|
invalid_destroy:
|
|
@@ -323,6 +324,7 @@ cs:
|
|
|
323
324
|
update:
|
|
324
325
|
invalid: Při aktualizaci této agendy došlo k problému.
|
|
325
326
|
success: Program schůze byl úspěšně aktualizován.
|
|
327
|
+
deprecation_warning_polls_html: "⚠️ <b>Oznámení o zastaralosti.</b> Funkce Ankety bude odstraněna v budoucí verzi (bude určena). Organizace používající ankety by měly plánovat použití externích průzkumných nástrojů (například prostřednictvím Jitsi) nebo se přesuňte na další hlasovací mechanismy, které jsou k dispozici v Decidimu, jako je nový volební modul (`decidim-elections`)."
|
|
326
328
|
exports:
|
|
327
329
|
meeting_comments: Komentáře
|
|
328
330
|
meetings: Setkání
|
|
@@ -377,7 +379,9 @@ cs:
|
|
|
377
379
|
select_an_iframe_access_level: Vyberte prosím úroveň přístupu iframe
|
|
378
380
|
index:
|
|
379
381
|
linked_meeting_warning_html: Tato schůzka musí být upravena od <br><a href="%{href}">%{name}</a>
|
|
382
|
+
published: Publikováno
|
|
380
383
|
title: Setkání
|
|
384
|
+
unpublished: Nezveřejněno
|
|
381
385
|
linked_spaces:
|
|
382
386
|
assign: Přiřadit
|
|
383
387
|
link_a_space: Propojit prostor
|
|
@@ -676,6 +680,7 @@ cs:
|
|
|
676
680
|
id: ID
|
|
677
681
|
map: Mapa
|
|
678
682
|
official_meeting: Oficiální schůzka
|
|
683
|
+
published: Zveřejněno
|
|
679
684
|
start_time: Datum zahájení
|
|
680
685
|
taxonomies: Taxonomie
|
|
681
686
|
title: Titul
|
data/config/locales/de.yml
CHANGED
|
@@ -499,8 +499,8 @@ de:
|
|
|
499
499
|
copy_calendar_url: Kopieren
|
|
500
500
|
copy_calendar_url_clarification: Kalender-URL in Zwischenablage kopieren
|
|
501
501
|
copy_calendar_url_copied: Kopiert!
|
|
502
|
-
copy_calendar_url_description: Sie können alle veröffentlichten Veranstaltungen
|
|
503
|
-
copy_calendar_url_explanation: Bitte beachten Sie, dass
|
|
502
|
+
copy_calendar_url_description: Sie können alle veröffentlichten Veranstaltungen auf Ihrer Kalenderanwendung anzeigen. Kopieren Sie diese URL und fügen Sie den Kalender mit der Option "Neuen Kalender von einer URL abonnieren" hinzu.
|
|
503
|
+
copy_calendar_url_explanation: Bitte beachten Sie, dass nur eine Auswahl von Veranstaltungen exportiert wird, weil Filter aktiv sind. Wenn Sie alle Veranstaltungen exportieren möchten, setzen Sie zuerst alle Filter zurück.
|
|
504
504
|
copy_calendar_url_message: Die URL wurde erfolgreich in die Zwischenablage kopiert.
|
|
505
505
|
export_calendar: Kalender exportieren
|
|
506
506
|
close_meeting_reminder_mailer:
|
data/config/locales/en.yml
CHANGED
|
@@ -286,6 +286,7 @@ en:
|
|
|
286
286
|
agenda: Agenda
|
|
287
287
|
close: Close
|
|
288
288
|
confirm_delete_meeting: Are you sure you want to delete this meeting?
|
|
289
|
+
confirm_unpublish_meeting: Are you sure you want to unpublish this meeting?
|
|
289
290
|
deleted_meetings_info: Deleted meetings can be restored from the trash.
|
|
290
291
|
edit: Edit
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ en:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: There was a problem updating this agenda.
|
|
332
333
|
success: Agenda successfully updated.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Deprecation Notice.</b> The Polls feature will be removed in a future version (to be determined). Organizations using meeting polls should plan to use external polling tools (for instance, through Jitsi) or migrate to other voting mechanisms available in Decidim, such as the new Elections module (`decidim-elections`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Comments
|
|
335
337
|
meetings: Meetings
|
|
@@ -384,7 +386,9 @@ en:
|
|
|
384
386
|
select_an_iframe_access_level: Please select an iframe access level
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: This meeting must be edited from <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Published
|
|
387
390
|
title: Meetings
|
|
391
|
+
unpublished: Unpublished
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Assign
|
|
390
394
|
link_a_space: Link a space
|
|
@@ -677,6 +681,7 @@ en:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Map
|
|
679
683
|
official_meeting: Official meeting
|
|
684
|
+
published: Published
|
|
680
685
|
start_time: Start date
|
|
681
686
|
taxonomies: Taxonomies
|
|
682
687
|
title: Title
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -286,6 +286,7 @@ es-MX:
|
|
|
286
286
|
agenda: Orden del día
|
|
287
287
|
close: Cerrar
|
|
288
288
|
confirm_delete_meeting: '¿Seguro que quiere eliminar este encuentro?'
|
|
289
|
+
confirm_unpublish_meeting: '¿Seguro que quieres despublicar este encuentro?'
|
|
289
290
|
deleted_meetings_info: Los encuentros eliminados se pueden restaurar desde papelera.
|
|
290
291
|
edit: Editar
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ es-MX:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: Se ha producido un error al actualizar este orden del día.
|
|
332
333
|
success: El orden del día se ha actualizado correctamente.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Aviso de Desuso/Obsolescencia.</b> La función de sondeos/votaciones se eliminará en una versión futura (por determinar). Las organizaciones que utilizan sondeos/votaciones de reuniones deben planear utilizar herramientas de sondeos/votaciones externas (por ejemplo, a través de Jitsi) o migrar a otros mecanismos de votación disponibles en Decidim, como el nuevo componente de Elecciones (`decidim-eleccions`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Comentarios
|
|
335
337
|
meetings: Reuniones
|
|
@@ -384,7 +386,9 @@ es-MX:
|
|
|
384
386
|
select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Publicado
|
|
387
390
|
title: Encuentros
|
|
391
|
+
unpublished: Despublicado
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Asignar
|
|
390
394
|
link_a_space: Vincular un espacio
|
|
@@ -677,6 +681,7 @@ es-MX:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Mapa
|
|
679
683
|
official_meeting: Encuentro oficial
|
|
684
|
+
published: Publicado
|
|
680
685
|
start_time: Fecha de inicio
|
|
681
686
|
taxonomies: Taxonomías
|
|
682
687
|
title: Título
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -286,6 +286,7 @@ es-PY:
|
|
|
286
286
|
agenda: Orden del día
|
|
287
287
|
close: Cerrar
|
|
288
288
|
confirm_delete_meeting: '¿Seguro que quiere eliminar este encuentro?'
|
|
289
|
+
confirm_unpublish_meeting: '¿Seguro que quieres despublicar este encuentro?'
|
|
289
290
|
deleted_meetings_info: Los encuentros eliminados se pueden restaurar desde papelera.
|
|
290
291
|
edit: Editar
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ es-PY:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: Se ha producido un error al actualizar este orden del día.
|
|
332
333
|
success: El orden del día se ha actualizado correctamente.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Aviso de Desuso/Obsolescencia.</b> La función de sondeos/votaciones se eliminará en una versión futura (por determinar). Las organizaciones que utilizan sondeos/votaciones de reuniones deben planear utilizar herramientas de sondeos/votaciones externas (por ejemplo, a través de Jitsi) o migrar a otros mecanismos de votación disponibles en Decidim, como el nuevo componente de Elecciones (`decidim-eleccions`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Comentarios
|
|
335
337
|
meetings: Reuniones
|
|
@@ -384,7 +386,9 @@ es-PY:
|
|
|
384
386
|
select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Publicado
|
|
387
390
|
title: Encuentros
|
|
391
|
+
unpublished: Despublicado
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Asignar
|
|
390
394
|
link_a_space: Vincular un espacio
|
|
@@ -677,6 +681,7 @@ es-PY:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Mapa
|
|
679
683
|
official_meeting: Encuentro oficial
|
|
684
|
+
published: Publicado
|
|
680
685
|
start_time: Fecha de inicio
|
|
681
686
|
taxonomies: Taxonomías
|
|
682
687
|
title: Título
|
data/config/locales/es.yml
CHANGED
|
@@ -286,6 +286,7 @@ es:
|
|
|
286
286
|
agenda: Orden del día
|
|
287
287
|
close: Cerrar
|
|
288
288
|
confirm_delete_meeting: '¿Seguro que quiere eliminar este encuentro?'
|
|
289
|
+
confirm_unpublish_meeting: '¿Seguro que quieres despublicar este encuentro?'
|
|
289
290
|
deleted_meetings_info: Los encuentros eliminados se pueden restaurar desde papelera.
|
|
290
291
|
edit: Editar
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ es:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: Se ha producido un error al actualizar este orden del día.
|
|
332
333
|
success: El orden del día se ha actualizado correctamente.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Aviso de Desuso/Obsolescencia.</b> La función de sondeos/votaciones se eliminará en una versión futura (por determinar). Las organizaciones que utilizan sondeos/votaciones de reuniones deben planear utilizar herramientas de sondeos/votaciones externas (por ejemplo, a través de Jitsi) o migrar a otros mecanismos de votación disponibles en Decidim, como el nuevo componente de Elecciones (`decidim-eleccions`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Comentarios
|
|
335
337
|
meetings: Encuentros
|
|
@@ -384,7 +386,9 @@ es:
|
|
|
384
386
|
select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Esta reunión debe ser editada desde <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Publicado
|
|
387
390
|
title: Encuentros
|
|
391
|
+
unpublished: Despublicado
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Asignar
|
|
390
394
|
link_a_space: Vincular un espacio
|
|
@@ -677,6 +681,7 @@ es:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Mapa
|
|
679
683
|
official_meeting: Encuentro oficial
|
|
684
|
+
published: Publicado
|
|
680
685
|
start_time: Fecha de inicio
|
|
681
686
|
taxonomies: Taxonomías
|
|
682
687
|
title: Título
|
data/config/locales/eu.yml
CHANGED
|
@@ -146,17 +146,17 @@ eu:
|
|
|
146
146
|
success: Topaketa zuzen bikoiztu da.
|
|
147
147
|
new:
|
|
148
148
|
copy: Kopiatu
|
|
149
|
-
title:
|
|
149
|
+
title: Topaketa bikoiztu
|
|
150
150
|
tooltips:
|
|
151
|
-
cannot_close_meetings: Ezin da
|
|
152
|
-
cannot_duplicate_meetings: Ezin da
|
|
153
|
-
cannot_edit_meetings: Ezin da
|
|
154
|
-
cannot_manage_agenda_meetings: Ezin da erabili agenda
|
|
155
|
-
cannot_manage_attachments_meetings: Ez da erabili eranskirik
|
|
156
|
-
cannot_manage_poll_meetings: Ezin da erabili inkestarik
|
|
157
|
-
cannot_manage_registrations_meetings: Ezin da erabili erregistrorik
|
|
151
|
+
cannot_close_meetings: Ezin da topaketa hau itxi parte-hartzaile batek sortu baitu
|
|
152
|
+
cannot_duplicate_meetings: Ezin da topaketa hau bikoiztu parte-hartzaile batek sortu baitu
|
|
153
|
+
cannot_edit_meetings: Ezin da topketa hau editatu parte-hartzaile batek sortu baitu
|
|
154
|
+
cannot_manage_agenda_meetings: Ezin da erabili agenda topaketa honetan parte-hartzaile batek sortu baitu
|
|
155
|
+
cannot_manage_attachments_meetings: Ez da erabili eranskirik topaketa honetan parte-hartzaile batek sortu baitu
|
|
156
|
+
cannot_manage_poll_meetings: Ezin da erabili inkestarik topaketa honetan parte-hartzaile batek sortu baitu
|
|
157
|
+
cannot_manage_registrations_meetings: Ezin da erabili erregistrorik topaketa honetan parte-hartzaile batek sortu baitu, erregistroak desgaituak ditu edo kanpokoak dira
|
|
158
158
|
cannot_mark_attendee: Ezin da markatu laguntzaile bezala, markatuta baitzegoen
|
|
159
|
-
deleted_meetings_info: Ezin da
|
|
159
|
+
deleted_meetings_info: Ezin da topaketa hau ezabatu parte-hartzaile batek sortu baitu.
|
|
160
160
|
components:
|
|
161
161
|
meetings:
|
|
162
162
|
actions:
|
|
@@ -221,7 +221,7 @@ eu:
|
|
|
221
221
|
email_subject: '"%{resource_title}" topaketa itxi egin da'
|
|
222
222
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketa itxi egin da.
|
|
223
223
|
meeting_created:
|
|
224
|
-
button_text: Eman izena
|
|
224
|
+
button_text: Eman izena topaketan
|
|
225
225
|
email_intro: '"%{resource_title}" topaketa jarraitzen duzun "%{participatory_space_title}" espazioan gehitu da.'
|
|
226
226
|
email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" prozesua jarraitzen ari zarelako. Aureko estekan utzi ahal diozu jarraitzeari.
|
|
227
227
|
email_subject: 'Beste topaketa bat gehituta honi: %{participatory_space_title}'
|
|
@@ -251,10 +251,10 @@ eu:
|
|
|
251
251
|
email_subject: '"%{resource_title}" topaketarako zure "%{registration_code}" erregistro kodea baliozkotu egin da'
|
|
252
252
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> topaketarako zure "%{registration_code}" erregistro kodea balioztatu da.
|
|
253
253
|
registration_marked_as_attendee:
|
|
254
|
-
email_intro: '"%{
|
|
254
|
+
email_intro: '"%{resource_title}" topakerako zure izen-ematea egiaztatu da.'
|
|
255
255
|
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" topaketarako zure erregistro-kodea baliozkotu delako.
|
|
256
|
-
email_subject: '"%{
|
|
257
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a>
|
|
256
|
+
email_subject: '"%{resource_title}" topakerako zure izen-ematea egiaztatu da'
|
|
257
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> topakerako zure izen-ematea egiaztatu da.
|
|
258
258
|
registrations_enabled:
|
|
259
259
|
email_intro: '"%{resource_title}" topaketan izena emateko epea ireki da. Izena eman ahal duzu bere orrian:'
|
|
260
260
|
email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" bilera jarraitzen duzulako. Aurreko estekan sartu jarraitzeari uzteko.
|
|
@@ -286,6 +286,7 @@ eu:
|
|
|
286
286
|
agenda: Agenda
|
|
287
287
|
close: Itxi
|
|
288
288
|
confirm_delete_meeting: Ziur zaude topaketa hau ezabatu nahi duzula?
|
|
289
|
+
confirm_unpublish_meeting: Ziur zaude topaketa hau despublikatu nahi duzula?
|
|
289
290
|
deleted_meetings_info: Ezabatutako topaketak zaborretik berreskura daitezke.
|
|
290
291
|
edit: Editatu
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ eu:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: Arazo bat egon da agenda hau eguneratzean.
|
|
332
333
|
success: Agenda ondo eguneratua.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️<b>Deprezazioaren oharra.<b> Inkesten ezaugarria etorkizuneko bertsio batean ezabatuko da (zehazteke). Bilera-inkestak erabiltzen dituzten erakundeek pentsatu behar dute kanpoko hauteskunde-tresnak erabiltzea (adibidez, Jitsiren bidez) edo Decidimen dauden beste bozketa-mekanismoetara migratzea, hala nola Hauteskundeen modulu berrira (hauteskunde sindikalak)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Iruzkinak
|
|
335
337
|
meetings: Topaketak
|
|
@@ -338,7 +340,7 @@ eu:
|
|
|
338
340
|
invite_join_meeting_mailer:
|
|
339
341
|
invite:
|
|
340
342
|
decline: Deuseztatu gonbidapena
|
|
341
|
-
invited_you_to_join_a_meeting: "%{invited_by}
|
|
343
|
+
invited_you_to_join_a_meeting: "%{invited_by} k %{application} topaketan parte hartzera gonbidatu zaitu. Beheko estekan onar dezakezu gobidapena."
|
|
342
344
|
join: Erregistratu '%{meeting_title}' topaketa
|
|
343
345
|
invites:
|
|
344
346
|
create:
|
|
@@ -358,7 +360,7 @@ eu:
|
|
|
358
360
|
meeting_closes:
|
|
359
361
|
edit:
|
|
360
362
|
close: Itxi
|
|
361
|
-
title:
|
|
363
|
+
title: Topaketa itxi
|
|
362
364
|
meetings:
|
|
363
365
|
close:
|
|
364
366
|
invalid: Arazo bat egon da topaketa hau ixtean.
|
|
@@ -369,7 +371,7 @@ eu:
|
|
|
369
371
|
invalid: Arazo bat egon da topaketa hau sortzean.
|
|
370
372
|
success: Topaketa zuzen sortu da. Kontuan hartu oraindik ez dela argitaratu, eskuz argitaratu beharko duzu.
|
|
371
373
|
edit:
|
|
372
|
-
title:
|
|
374
|
+
title: Topaketa editatu
|
|
373
375
|
update: Eguneratu
|
|
374
376
|
form:
|
|
375
377
|
address_help: 'Helbidea: Geocoderrek erabiltzen du kokapena aurkitzeko'
|
|
@@ -384,7 +386,9 @@ eu:
|
|
|
384
386
|
select_an_iframe_access_level: Mesedez, hautatu iframe maila bat
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: 'Topaketa hau hemendik editatu behar da: <br><a href="%{href}">%{name}</a>'
|
|
389
|
+
published: Argitaratua
|
|
387
390
|
title: Topaketa-zerrenda
|
|
391
|
+
unpublished: Desargitaratua
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Esleitu
|
|
390
394
|
link_a_space: Lotu espazioa
|
|
@@ -406,7 +410,7 @@ eu:
|
|
|
406
410
|
reminders:
|
|
407
411
|
reminder_enabled: Bidali gogorarazpena topaketa honetarako
|
|
408
412
|
reminder_message: Gogorarazteko e-mailaren edukia
|
|
409
|
-
reminder_message_help_text: Pertsonalizatu mezua behar den bezala. Erabili {{meeting_title}}
|
|
413
|
+
reminder_message_help_text: Pertsonalizatu mezua behar den bezala. Erabili {{meeting_title}} topaketa-izena erakusteko.
|
|
410
414
|
send_reminder: Gogorarazteko e-maila programatuta
|
|
411
415
|
send_reminder_help_text: Topaketa egin baino lehen, zenbat ordu gogorarazteko.
|
|
412
416
|
title: Gogorarazpenak
|
|
@@ -505,7 +509,7 @@ eu:
|
|
|
505
509
|
export_calendar: Esportatu egutegia
|
|
506
510
|
close_meeting_reminder_mailer:
|
|
507
511
|
close_meeting_reminder:
|
|
508
|
-
body: <a href="%{meeting_path}">"%{meeting_title}"</a>
|
|
512
|
+
body: <a href="%{meeting_path}">"%{meeting_title}"</a> topaketa ixteko dago. Mesedez, gehitu topaketari buruzko txosten bat "Itxi topaketa" botoia erabiliz.
|
|
509
513
|
greetings: Agur, <br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
|
510
514
|
hello: Kaixo %{username},
|
|
511
515
|
subject: Zuk orain "%{meeting_title}" topaketa itxi ahal duzu txosten batekin
|
|
@@ -677,6 +681,7 @@ eu:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Mapa
|
|
679
683
|
official_meeting: Topaketa ofiziala
|
|
684
|
+
published: Argitaratua
|
|
680
685
|
start_time: Hasiera-data
|
|
681
686
|
taxonomies: Taxonomiak
|
|
682
687
|
title: Titulua
|
|
@@ -749,7 +754,7 @@ eu:
|
|
|
749
754
|
success: Topaketatik ongi atera zara.
|
|
750
755
|
waitlist:
|
|
751
756
|
invalid: Arazo bat egon da itxarote-zerrendara lotzean.
|
|
752
|
-
success: Zuzen sartu zara
|
|
757
|
+
success: Zuzen sartu zara topaketaren itxarote-zerrendan. Zure erregistroa behar bezala ziurtatuz gero, jakinaraziko dizute.
|
|
753
758
|
type_of_meeting:
|
|
754
759
|
hybrid: Hibridoa
|
|
755
760
|
in_person: Aurrez aurre
|
|
@@ -777,7 +782,7 @@ eu:
|
|
|
777
782
|
root_commentable_url: Iruzkin honekin lotzen duen baliabidearen URLa
|
|
778
783
|
meetings:
|
|
779
784
|
address: Topaketaren helbidea, baldin eta aurrez aurre badago eta kokapen fisikoa badu
|
|
780
|
-
attachments:
|
|
785
|
+
attachments: Topaketa honetako atxikipen kopurua
|
|
781
786
|
attendees: Zenbat jende bildu da topaketa honetan?
|
|
782
787
|
attending_organizations: Topaketan izan diren erakundeak
|
|
783
788
|
audio_url: Topaketaren audiograbazioa
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -286,6 +286,7 @@ fi-pl:
|
|
|
286
286
|
agenda: Esityslista
|
|
287
287
|
close: Sulje
|
|
288
288
|
confirm_delete_meeting: Haluatko varmasti poistaa tämän tapaamisen?
|
|
289
|
+
confirm_unpublish_meeting: Haluatko varmasti perua tämän tapaamisen julkaisun?
|
|
289
290
|
deleted_meetings_info: Poistetut tapaamiset voidaan palauttaa roskakorista.
|
|
290
291
|
edit: Muokkaa
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ fi-pl:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: Esityslistan päivittäminen epäonnistui.
|
|
332
333
|
success: Esityslistan päivitys onnistui.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Poistamisilmoitus</b> Pikakyselyominaisuus poistetaan järjestelmän myöhemmistä versioista (määritetään myöhemmin). Organisaatioiden, jotka käyttävät tapaamisten pikakyselyominaisuutta, tulisi suunnitella ulkoisten pikakyselytyökalujen käyttöä (esimerkiksi Jitsi-tapaamissovellus) tai siirtyä käyttämään muita Decidim-alustan äänestystapoja, kuten uutta vaalit-moduulia (`decidim-elections`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Kommentit
|
|
335
337
|
meetings: Tapahtumat
|
|
@@ -384,7 +386,9 @@ fi-pl:
|
|
|
384
386
|
select_an_iframe_access_level: Valitse iframe-upotusten käyttöoikeustaso
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Tätä tapaamista tulee muokata kohteesta <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Julkaistu
|
|
387
390
|
title: Tapahtumat
|
|
391
|
+
unpublished: Julkaisematon
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Määritä
|
|
390
394
|
link_a_space: Liitä osallistumistila
|
|
@@ -677,6 +681,7 @@ fi-pl:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Kartta
|
|
679
683
|
official_meeting: Virallinen tapahtuma
|
|
684
|
+
published: Julkaistu
|
|
680
685
|
start_time: Alkamispäivä
|
|
681
686
|
taxonomies: Luokittelut
|
|
682
687
|
title: Otsikko
|
data/config/locales/fi.yml
CHANGED
|
@@ -286,6 +286,7 @@ fi:
|
|
|
286
286
|
agenda: Esityslista
|
|
287
287
|
close: Sulje
|
|
288
288
|
confirm_delete_meeting: Haluatko varmasti poistaa tämän tapaamisen?
|
|
289
|
+
confirm_unpublish_meeting: Haluatko varmasti perua tämän tapaamisen julkaisun?
|
|
289
290
|
deleted_meetings_info: Poistetut tapaamiset voidaan palauttaa roskakorista.
|
|
290
291
|
edit: Muokkaa
|
|
291
292
|
invalid_destroy:
|
|
@@ -330,6 +331,7 @@ fi:
|
|
|
330
331
|
update:
|
|
331
332
|
invalid: Esityslistan päivittäminen epäonnistui.
|
|
332
333
|
success: Esityslistan päivitys onnistui.
|
|
334
|
+
deprecation_warning_polls_html: "⚠️ <b>Poistamisilmoitus</b> Pikakyselyominaisuus poistetaan järjestelmän myöhemmistä versioista (määritetään myöhemmin). Organisaatioiden, jotka käyttävät tapaamisten pikakyselyominaisuutta, tulisi suunnitella ulkoisten pikakyselytyökalujen käyttöä (esimerkiksi Jitsi-tapaamissovellus) tai siirtyä käyttämään muita Decidim-alustan äänestystapoja, kuten uutta vaalit-moduulia (`decidim-elections`)."
|
|
333
335
|
exports:
|
|
334
336
|
meeting_comments: Kommentit
|
|
335
337
|
meetings: Tapaamiset
|
|
@@ -384,7 +386,9 @@ fi:
|
|
|
384
386
|
select_an_iframe_access_level: Valitse iframe-upotusten käyttöoikeustaso
|
|
385
387
|
index:
|
|
386
388
|
linked_meeting_warning_html: Tätä tapaamista tulee muokata kohteesta <br><a href="%{href}">%{name}</a>
|
|
389
|
+
published: Julkaistu
|
|
387
390
|
title: Tapaamiset
|
|
391
|
+
unpublished: Julkaisematon
|
|
388
392
|
linked_spaces:
|
|
389
393
|
assign: Määritä
|
|
390
394
|
link_a_space: Liitä osallistumistila
|
|
@@ -677,6 +681,7 @@ fi:
|
|
|
677
681
|
id: ID
|
|
678
682
|
map: Kartta
|
|
679
683
|
official_meeting: Virallinen tapaaminen
|
|
684
|
+
published: Julkaistu
|
|
680
685
|
start_time: Alkamispäivä
|
|
681
686
|
taxonomies: Luokittelut
|
|
682
687
|
title: Otsikko
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -276,6 +276,7 @@ fr-CA:
|
|
|
276
276
|
agenda: Ordre du jour
|
|
277
277
|
close: Clore
|
|
278
278
|
confirm_delete_meeting: Êtes-vous sûr(e) de vouloir supprimer cette rencontre ?
|
|
279
|
+
confirm_unpublish_meeting: Êtes-vous sûr(e) de vouloir annuler la publication de cette réunion ?
|
|
279
280
|
deleted_meetings_info: Les rencontres supprimées peuvent être restaurées depuis la corbeille.
|
|
280
281
|
edit: Modifier
|
|
281
282
|
invalid_destroy:
|
|
@@ -320,6 +321,7 @@ fr-CA:
|
|
|
320
321
|
update:
|
|
321
322
|
invalid: Un problème est survenu lors de la mise à jour de cet ordre du jour.
|
|
322
323
|
success: Ordre du jour mis à jour avec succès.
|
|
324
|
+
deprecation_warning_polls_html: "⚠️ <b>Avis de dépréciation.</b> La fonctionnalité des sondages sera supprimée dans une version future (à déterminer). Les organisations utilisant des sondages de réunion devraient planifier d'utiliser des outils de sondage externes (par exemple, via Jitsi) ou migrer vers d'autres mécanismes de vote disponibles dans Decidim, comme le nouveau module Elections (`decidim-elections`)."
|
|
323
325
|
exports:
|
|
324
326
|
meeting_comments: Commentaires
|
|
325
327
|
meetings: Rencontres
|
|
@@ -374,7 +376,9 @@ fr-CA:
|
|
|
374
376
|
select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
|
|
375
377
|
index:
|
|
376
378
|
linked_meeting_warning_html: Cette rencontre doit être modifiée à partir de <br><a href="%{href}">%{name}</a>
|
|
379
|
+
published: Publiée
|
|
377
380
|
title: Rencontres
|
|
381
|
+
unpublished: Non publiées
|
|
378
382
|
linked_spaces:
|
|
379
383
|
assign: Assigner
|
|
380
384
|
link_a_space: Lier un espace
|
|
@@ -664,6 +668,7 @@ fr-CA:
|
|
|
664
668
|
id: ID
|
|
665
669
|
map: Carte
|
|
666
670
|
official_meeting: Réunion officielle
|
|
671
|
+
published: Publiée
|
|
667
672
|
start_time: Date de début
|
|
668
673
|
taxonomies: Taxonomies
|
|
669
674
|
title: Titre
|
data/config/locales/fr.yml
CHANGED
|
@@ -276,6 +276,7 @@ fr:
|
|
|
276
276
|
agenda: Ordre du jour
|
|
277
277
|
close: Clore
|
|
278
278
|
confirm_delete_meeting: Êtes-vous sûr(e) de vouloir supprimer cette rencontre ?
|
|
279
|
+
confirm_unpublish_meeting: Êtes-vous sûr(e) de vouloir annuler la publication de cette réunion ?
|
|
279
280
|
deleted_meetings_info: Les rencontres supprimées peuvent être restaurées depuis la corbeille.
|
|
280
281
|
edit: Modifier
|
|
281
282
|
invalid_destroy:
|
|
@@ -320,6 +321,7 @@ fr:
|
|
|
320
321
|
update:
|
|
321
322
|
invalid: Un problème est survenu lors de la mise à jour de cet ordre du jour.
|
|
322
323
|
success: Ordre du jour mis à jour avec succès.
|
|
324
|
+
deprecation_warning_polls_html: "⚠️ <b>Avis de dépréciation.</b> La fonctionnalité des sondages sera supprimée dans une version future (à déterminer). Les organisations utilisant des sondages de réunion devraient planifier d'utiliser des outils de sondage externes (par exemple, via Jitsi) ou migrer vers d'autres mécanismes de vote disponibles dans Decidim, comme le nouveau module Elections (`decidim-elections`)."
|
|
323
325
|
exports:
|
|
324
326
|
meeting_comments: Commentaires
|
|
325
327
|
meetings: Rencontres
|
|
@@ -374,7 +376,9 @@ fr:
|
|
|
374
376
|
select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
|
|
375
377
|
index:
|
|
376
378
|
linked_meeting_warning_html: Cette rencontre doit être modifiée à partir de <br><a href="%{href}">%{name}</a>
|
|
379
|
+
published: Publiée
|
|
377
380
|
title: Rencontres
|
|
381
|
+
unpublished: Non publiées
|
|
378
382
|
linked_spaces:
|
|
379
383
|
assign: Assigner
|
|
380
384
|
link_a_space: Lier un espace
|
|
@@ -664,6 +668,7 @@ fr:
|
|
|
664
668
|
id: ID
|
|
665
669
|
map: Carte
|
|
666
670
|
official_meeting: Rencontre officielle
|
|
671
|
+
published: Publiée
|
|
667
672
|
start_time: Date de début
|
|
668
673
|
taxonomies: Taxonomies
|
|
669
674
|
title: Titre
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
|
@@ -283,6 +283,7 @@ ja:
|
|
|
283
283
|
agenda: 予定
|
|
284
284
|
close: 閉じる
|
|
285
285
|
confirm_delete_meeting: このミーティングを削除してもよろしいですか?
|
|
286
|
+
confirm_unpublish_meeting: このミーティングを非公開にしてもよろしいですか?
|
|
286
287
|
deleted_meetings_info: 削除されたミーティングはゴミ箱から復元できます。
|
|
287
288
|
edit: 編集
|
|
288
289
|
invalid_destroy:
|
|
@@ -326,6 +327,7 @@ ja:
|
|
|
326
327
|
update:
|
|
327
328
|
invalid: アジェンダの更新に問題がありました。
|
|
328
329
|
success: アジェンダが正常に更新されました。
|
|
330
|
+
deprecation_warning_polls_html: "⚠️ <b>非推奨通知</b>: 投票機能は将来のバージョンで削除される予定です(時期は未定)。会議用投票機能をご利用の組織は、Jitsiなどの外部投票ツールを使用するか、Decidimの新しい選挙モジュール(`decidim-elections`)などの代替投票システムへの移行を計画してください。"
|
|
329
331
|
exports:
|
|
330
332
|
meeting_comments: コメント
|
|
331
333
|
meetings: ミーティング
|
|
@@ -380,7 +382,9 @@ ja:
|
|
|
380
382
|
select_an_iframe_access_level: Iframeアクセスレベルを選択してください
|
|
381
383
|
index:
|
|
382
384
|
linked_meeting_warning_html: このミーティングは <br><a href="%{href}">%{name}</a> から編集する必要があります.
|
|
385
|
+
published: 公開済み
|
|
383
386
|
title: ミーティング
|
|
387
|
+
unpublished: 未公開
|
|
384
388
|
linked_spaces:
|
|
385
389
|
assign: 割り当て
|
|
386
390
|
link_a_space: スペースをリンク
|
|
@@ -670,6 +674,7 @@ ja:
|
|
|
670
674
|
id: ID
|
|
671
675
|
map: 地図
|
|
672
676
|
official_meeting: 公式ミーティング
|
|
677
|
+
published: 公開済み
|
|
673
678
|
start_time: 開始日
|
|
674
679
|
taxonomies: タクソノミー
|
|
675
680
|
title: タイトル
|
data/config/locales/lb.yml
CHANGED
data/config/locales/no.yml
CHANGED
data/config/locales/pt.yml
CHANGED
data/config/locales/ro-RO.yml
CHANGED
data/config/locales/sv.yml
CHANGED
|
@@ -370,7 +370,9 @@ sv:
|
|
|
370
370
|
select_an_iframe_access_level: Välj vem som får tillgång till iframe
|
|
371
371
|
index:
|
|
372
372
|
linked_meeting_warning_html: Mötet måste redigeras från <br><a href="%{href}">%{name}</a>
|
|
373
|
+
published: Publicerad
|
|
373
374
|
title: Möten
|
|
375
|
+
unpublished: Opublicerad
|
|
374
376
|
linked_spaces:
|
|
375
377
|
assign: Tilldela
|
|
376
378
|
link_a_space: Länka en process
|
|
@@ -663,6 +665,7 @@ sv:
|
|
|
663
665
|
id: ID
|
|
664
666
|
map: Karta
|
|
665
667
|
official_meeting: Officiellt möte
|
|
668
|
+
published: Publicerad
|
|
666
669
|
start_time: Startdatum
|
|
667
670
|
taxonomies: Kategorisering
|
|
668
671
|
title: Titel
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class ChangeSendRemindersBeforeHoursForLegacyMeetings < ActiveRecord::Migration[7.2]
|
|
4
|
+
class Meeting < ApplicationRecord
|
|
5
|
+
self.table_name = "decidim_meetings_meetings"
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def up
|
|
9
|
+
Meeting.where(send_reminders_before_hours: nil).update_all(send_reminders_before_hours: 48) # rubocop:disable Rails/SkipsModelValidations
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def down
|
|
13
|
+
raise ActiveRecord::IrreversibleMigration
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -28,12 +28,18 @@ Decidim.register_component(:meetings) do |component|
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
component.register_stat :meetings_count,
|
|
31
|
-
primary: true,
|
|
32
31
|
admin: false,
|
|
33
32
|
priority: Decidim::StatsRegistry::HIGH_PRIORITY,
|
|
34
33
|
icon_name: "map-pin-line",
|
|
35
34
|
tooltip_key: "meetings_count_tooltip" do |components, start_at, end_at|
|
|
36
|
-
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).not_withdrawn
|
|
35
|
+
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).published.not_withdrawn
|
|
36
|
+
meetings.count
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
component.register_stat :admin_meetings_count,
|
|
40
|
+
primary: true,
|
|
41
|
+
admin: false do |components, start_at, end_at|
|
|
42
|
+
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at)
|
|
37
43
|
meetings.count
|
|
38
44
|
end
|
|
39
45
|
|
|
@@ -41,7 +47,7 @@ Decidim.register_component(:meetings) do |component|
|
|
|
41
47
|
priority: Decidim::StatsRegistry::MEDIUM_PRIORITY,
|
|
42
48
|
icon_name: "map-pin-line",
|
|
43
49
|
tooltip_key: "meetings_count_tooltip" do |components, start_at, end_at|
|
|
44
|
-
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).not_withdrawn
|
|
50
|
+
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).published.not_withdrawn
|
|
45
51
|
meetings.count
|
|
46
52
|
end
|
|
47
53
|
|
|
@@ -50,7 +56,7 @@ Decidim.register_component(:meetings) do |component|
|
|
|
50
56
|
icon_name: "user-follow-line",
|
|
51
57
|
tooltip_key: "followers_count_tooltip",
|
|
52
58
|
priority: Decidim::StatsRegistry::MEDIUM_PRIORITY do |components, start_at, end_at|
|
|
53
|
-
meetings_ids = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).pluck(:id)
|
|
59
|
+
meetings_ids = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).published.pluck(:id)
|
|
54
60
|
Decidim::Follow.where(decidim_followable_type: "Decidim::Meetings::Meeting", decidim_followable_id: meetings_ids).count
|
|
55
61
|
end
|
|
56
62
|
|
|
@@ -59,7 +65,7 @@ Decidim.register_component(:meetings) do |component|
|
|
|
59
65
|
icon_name: "chat-1-line",
|
|
60
66
|
tooltip_key: "comments_count",
|
|
61
67
|
tag: :comments do |components, start_at, end_at|
|
|
62
|
-
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).not_hidden
|
|
68
|
+
meetings = Decidim::Meetings::FilteredMeetings.for(components, start_at, end_at).published.not_hidden
|
|
63
69
|
meetings.sum(:comments_count)
|
|
64
70
|
end
|
|
65
71
|
|
|
@@ -75,6 +75,12 @@ module Decidim
|
|
|
75
75
|
Decidim.icons.register(name: "calendar-close-line", icon: "calendar-close-line", category: "system", description: "", engine: :meetings)
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
+
initializer "decidim_meetings.data_migrate", after: "decidim_core.data_migrate" do
|
|
79
|
+
DataMigrate.configure do |config|
|
|
80
|
+
config.data_migrations_path << root.join("db/data").to_s
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
78
84
|
initializer "decidim_meetings.content_processors" do |_app|
|
|
79
85
|
Decidim.configure do |config|
|
|
80
86
|
config.content_processors += [:meeting]
|
|
@@ -80,6 +80,7 @@ module Decidim
|
|
|
80
80
|
registration_terms: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
|
|
81
81
|
Decidim::Faker::Localized.paragraph(sentence_count: 3)
|
|
82
82
|
end,
|
|
83
|
+
send_reminders_before_hours: 48,
|
|
83
84
|
published_at: ::Faker::Boolean.boolean(true_ratio: 0.8) ? Time.current : nil
|
|
84
85
|
}
|
|
85
86
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-meetings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.0
|
|
4
|
+
version: 0.31.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josep Jaume Rey Peroy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2025-
|
|
13
|
+
date: 2025-11-20 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-core
|
|
@@ -18,28 +18,28 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.31.0
|
|
21
|
+
version: 0.31.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - '='
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 0.31.0
|
|
28
|
+
version: 0.31.0
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: decidim-forms
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.31.0
|
|
35
|
+
version: 0.31.0
|
|
36
36
|
type: :runtime
|
|
37
37
|
prerelease: false
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
40
|
- - '='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.31.0
|
|
42
|
+
version: 0.31.0
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: icalendar
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -60,56 +60,56 @@ dependencies:
|
|
|
60
60
|
requirements:
|
|
61
61
|
- - '='
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version: 0.31.0
|
|
63
|
+
version: 0.31.0
|
|
64
64
|
type: :development
|
|
65
65
|
prerelease: false
|
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
68
|
- - '='
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 0.31.0
|
|
70
|
+
version: 0.31.0
|
|
71
71
|
- !ruby/object:Gem::Dependency
|
|
72
72
|
name: decidim-assemblies
|
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
|
74
74
|
requirements:
|
|
75
75
|
- - '='
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
|
-
version: 0.31.0
|
|
77
|
+
version: 0.31.0
|
|
78
78
|
type: :development
|
|
79
79
|
prerelease: false
|
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - '='
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
|
-
version: 0.31.0
|
|
84
|
+
version: 0.31.0
|
|
85
85
|
- !ruby/object:Gem::Dependency
|
|
86
86
|
name: decidim-dev
|
|
87
87
|
requirement: !ruby/object:Gem::Requirement
|
|
88
88
|
requirements:
|
|
89
89
|
- - '='
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: 0.31.0
|
|
91
|
+
version: 0.31.0
|
|
92
92
|
type: :development
|
|
93
93
|
prerelease: false
|
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
|
95
95
|
requirements:
|
|
96
96
|
- - '='
|
|
97
97
|
- !ruby/object:Gem::Version
|
|
98
|
-
version: 0.31.0
|
|
98
|
+
version: 0.31.0
|
|
99
99
|
- !ruby/object:Gem::Dependency
|
|
100
100
|
name: decidim-participatory_processes
|
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
|
102
102
|
requirements:
|
|
103
103
|
- - '='
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
|
-
version: 0.31.0
|
|
105
|
+
version: 0.31.0
|
|
106
106
|
type: :development
|
|
107
107
|
prerelease: false
|
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
|
109
109
|
requirements:
|
|
110
110
|
- - '='
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: 0.31.0
|
|
112
|
+
version: 0.31.0
|
|
113
113
|
description: A meetings component for decidim's participatory spaces.
|
|
114
114
|
email:
|
|
115
115
|
- josepjaume@gmail.com
|
|
@@ -144,7 +144,6 @@ files:
|
|
|
144
144
|
- app/cells/decidim/meetings/meeting_l_cell.rb
|
|
145
145
|
- app/cells/decidim/meetings/meeting_month/show.erb
|
|
146
146
|
- app/cells/decidim/meetings/meeting_month_cell.rb
|
|
147
|
-
- app/cells/decidim/meetings/meeting_s_cell.rb
|
|
148
147
|
- app/cells/decidim/meetings/meeting_url/show.erb
|
|
149
148
|
- app/cells/decidim/meetings/meeting_url_cell.rb
|
|
150
149
|
- app/cells/decidim/meetings/online_meeting_cell.rb
|
|
@@ -480,6 +479,7 @@ files:
|
|
|
480
479
|
- config/locales/vi.yml
|
|
481
480
|
- config/locales/zh-CN.yml
|
|
482
481
|
- config/locales/zh-TW.yml
|
|
482
|
+
- db/data/20251114085753_change_send_reminders_before_hours_for_legacy_meetings.rb
|
|
483
483
|
- db/migrate/20161130121354_create_meetings.rb
|
|
484
484
|
- db/migrate/20170110142105_close_a_meeting.rb
|
|
485
485
|
- db/migrate/20170123151650_add_latitude_and_longitude_to_meetings.rb
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Decidim
|
|
4
|
-
module Meetings
|
|
5
|
-
# This cell renders the Search (:s) meeting card
|
|
6
|
-
# for a given instance of a Meeting
|
|
7
|
-
class MeetingSCell < Decidim::CardSCell
|
|
8
|
-
private
|
|
9
|
-
|
|
10
|
-
def metadata_cell
|
|
11
|
-
"decidim/meetings/meeting_card_metadata"
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
end
|