decidim-proposals 0.31.1 → 0.31.2
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/controllers/concerns/decidim/proposals/admin/filterable.rb +3 -1
- data/app/controllers/decidim/proposals/proposals_controller.rb +7 -1
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +13 -4
- data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +2 -1
- data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +8 -7
- data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +2 -1
- data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +2 -2
- data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/_proposals.html.erb +1 -1
- data/app/views/decidim/proposals/proposals/index.html.erb +1 -1
- data/config/locales/ar.yml +0 -2
- data/config/locales/bg.yml +0 -2
- data/config/locales/ca-IT.yml +2 -2
- data/config/locales/ca.yml +2 -2
- data/config/locales/cs.yml +11 -2
- data/config/locales/de.yml +0 -2
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +2 -2
- data/config/locales/es-MX.yml +2 -2
- data/config/locales/es-PY.yml +2 -2
- data/config/locales/es.yml +2 -2
- data/config/locales/eu.yml +3 -3
- data/config/locales/fi-plain.yml +0 -2
- data/config/locales/fi.yml +0 -2
- data/config/locales/fr-CA.yml +17 -2
- data/config/locales/fr.yml +17 -2
- data/config/locales/gl.yml +0 -2
- data/config/locales/hu.yml +0 -1
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/it.yml +0 -2
- data/config/locales/ja.yml +1 -1
- data/config/locales/lt.yml +0 -2
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +0 -2
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +0 -2
- data/config/locales/pt-BR.yml +2 -2
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +2 -2
- data/config/locales/ru.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sv.yml +3 -5
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -2
- data/db/data/20260208135005_change_users_in_action_logs_proposals.rb +29 -0
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +21 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5ff74807479920d9ab3da7a3c96b9a0d19dbbedf38d857c330127e7b625bb7ee
|
|
4
|
+
data.tar.gz: d4d5182693c18d797dc7fa949ba0c643247e4453eb7cc440e7e0368733f05fae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3b16acf11cb62832f4427f6930e8fa8285f4e878cf08e0373f1ac045b746278156fd1b63294cae390953cbccb5ab9ec47a4a1c7ab90d44ffae48c37057aa210
|
|
7
|
+
data.tar.gz: 8947155f6686a5a459e8977f48461a219007cbce96a233b6bff7c6a01f6d9f9c3c7c13aaecb473beb21678ae83d9b50483352a775573e5336c57a424c3d0e812
|
|
@@ -51,7 +51,9 @@ module Decidim
|
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
def evaluator_role_ids
|
|
54
|
-
current_participatory_space.user_roles(:evaluator)
|
|
54
|
+
roles = current_participatory_space.user_roles(:evaluator)
|
|
55
|
+
roles = roles.order_by_name if roles.respond_to?(:order_by_name)
|
|
56
|
+
roles.pluck(:id)
|
|
55
57
|
end
|
|
56
58
|
|
|
57
59
|
def translated_evaluator_role_ids_has(evaluator_role_id)
|
|
@@ -16,7 +16,7 @@ module Decidim
|
|
|
16
16
|
include Paginable
|
|
17
17
|
include Decidim::AttachmentsHelper
|
|
18
18
|
|
|
19
|
-
helper_method :proposal_presenter, :form_presenter, :tab_panel_items
|
|
19
|
+
helper_method :proposal_presenter, :form_presenter, :tab_panel_items, :withdrawn_proposals?
|
|
20
20
|
|
|
21
21
|
before_action :authenticate_user!, only: [:new, :create]
|
|
22
22
|
before_action :ensure_is_draft, only: [:preview, :publish, :edit_draft, :update_draft, :destroy_draft]
|
|
@@ -233,6 +233,12 @@ module Decidim
|
|
|
233
233
|
@proposal_presenter ||= present(@proposal)
|
|
234
234
|
end
|
|
235
235
|
|
|
236
|
+
def withdrawn_proposals?
|
|
237
|
+
return @withdrawn_proposals if defined?(@withdrawn_proposals)
|
|
238
|
+
|
|
239
|
+
@withdrawn_proposals = Proposal.where(component: current_component).published.not_hidden.withdrawn.exists?
|
|
240
|
+
end
|
|
241
|
+
|
|
236
242
|
def form_proposal_params
|
|
237
243
|
form(ProposalForm).from_params(params)
|
|
238
244
|
end
|
|
@@ -10,13 +10,11 @@ module Decidim
|
|
|
10
10
|
mimic :proposals_import
|
|
11
11
|
|
|
12
12
|
attribute :origin_component_id, Integer
|
|
13
|
-
attribute :import_proposals, Boolean
|
|
14
13
|
attribute :keep_answers, Boolean
|
|
15
14
|
attribute :keep_authors, Boolean
|
|
16
|
-
attribute :states, Array
|
|
15
|
+
attribute :states, Array[String]
|
|
17
16
|
|
|
18
17
|
validates :origin_component_id, :origin_component, :states, :current_component, presence: true
|
|
19
|
-
validates :import_proposals, allow_nil: false, acceptance: true
|
|
20
18
|
validate :valid_states
|
|
21
19
|
|
|
22
20
|
def states_collection
|
|
@@ -44,11 +42,22 @@ module Decidim
|
|
|
44
42
|
end
|
|
45
43
|
end
|
|
46
44
|
|
|
45
|
+
def available_states(component_id = nil)
|
|
46
|
+
scope = Decidim::Proposals::ProposalState
|
|
47
|
+
scope = scope.where(component: Decidim::Component.find(component_id)) if component_id.present?
|
|
48
|
+
|
|
49
|
+
states = scope.pluck(:token).uniq.map do |token|
|
|
50
|
+
OpenStruct.new(token:, title: token.humanize)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
states + [OpenStruct.new(token: "not_answered", title: I18n.t("decidim.proposals.answers.not_answered"))]
|
|
54
|
+
end
|
|
55
|
+
|
|
47
56
|
private
|
|
48
57
|
|
|
49
58
|
def valid_states
|
|
50
59
|
return if states.all? do |state|
|
|
51
|
-
|
|
60
|
+
available_states(origin_component_id).pluck(:token).include?(state)
|
|
52
61
|
end
|
|
53
62
|
|
|
54
63
|
errors.add(:states, :invalid)
|
|
@@ -35,7 +35,8 @@ module Decidim
|
|
|
35
35
|
|
|
36
36
|
# find the evaluators for the current space.
|
|
37
37
|
def find_evaluators_for_select(participatory_space, current_user)
|
|
38
|
-
evaluator_roles = participatory_space.user_roles(:evaluator)
|
|
38
|
+
evaluator_roles = participatory_space.user_roles(:evaluator)
|
|
39
|
+
evaluator_roles = evaluator_roles.order_by_name if evaluator_roles.respond_to?(:order_by_name)
|
|
39
40
|
evaluators = Decidim::User.where(id: evaluator_roles.pluck(:decidim_user_id)).to_a
|
|
40
41
|
|
|
41
42
|
filtered_evaluator_roles = evaluator_roles.filter do |role|
|
|
@@ -16,10 +16,14 @@
|
|
|
16
16
|
<%= f.select :origin_component_id, @form.origin_components_collection, prompt: t(".select_component") %>
|
|
17
17
|
</div>
|
|
18
18
|
<div class="row column">
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<div>
|
|
22
|
-
<%=
|
|
19
|
+
<label class="ml-4"><%= t(".select_states") %></label>
|
|
20
|
+
<% if @form.available_states.any? %>
|
|
21
|
+
<div class="row column">
|
|
22
|
+
<%= f.collection_check_boxes :states, @form.available_states, :token, ->(a) { translated_attribute(a.title) } do |builder| %>
|
|
23
|
+
<div>
|
|
24
|
+
<%= builder.label { builder.check_box + builder.text } %>
|
|
25
|
+
</div>
|
|
26
|
+
<% end %>
|
|
23
27
|
</div>
|
|
24
28
|
<% end %>
|
|
25
29
|
</div>
|
|
@@ -29,9 +33,6 @@
|
|
|
29
33
|
<div class="row column">
|
|
30
34
|
<%= f.check_box :keep_answers %>
|
|
31
35
|
</div>
|
|
32
|
-
<div class="row column">
|
|
33
|
-
<%= f.check_box :import_proposals %>
|
|
34
|
-
</div>
|
|
35
36
|
</div>
|
|
36
37
|
</div>
|
|
37
38
|
</div>
|
|
@@ -21,5 +21,6 @@
|
|
|
21
21
|
button_edit_label: t("decidim.proposals.collaborative_drafts.new.edit_file"),
|
|
22
22
|
button_class: "button button__lg button__transparent-secondary w-full",
|
|
23
23
|
help_text: t("attachment_legend", scope: "decidim.proposals.collaborative_drafts.edit"),
|
|
24
|
-
help_i18n_scope: "decidim.forms.file_help.file"
|
|
24
|
+
help_i18n_scope: "decidim.forms.file_help.file",
|
|
25
|
+
paragraph: true %>
|
|
25
26
|
<% end %>
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
<%= filter_taxonomy_items_select_field form, :taxonomies, filter %>
|
|
23
23
|
<% end %>
|
|
24
24
|
<% end %>
|
|
25
|
-
|
|
26
25
|
<% if component_settings.attachments_allowed? && (new_proposal || @proposal) %>
|
|
27
26
|
<%= form.attachment :documents,
|
|
28
27
|
multiple: true,
|
|
@@ -31,5 +30,6 @@
|
|
|
31
30
|
button_edit_label: t("decidim.proposals.proposals.edit.edit_attachments"),
|
|
32
31
|
button_class: "button button__lg button__transparent-secondary w-full",
|
|
33
32
|
help_i18n_scope: "decidim.forms.file_help.file",
|
|
34
|
-
help_text: t("attachment_legend", scope: "decidim.proposals.proposals.edit")
|
|
33
|
+
help_text: t("attachment_legend", scope: "decidim.proposals.proposals.edit"),
|
|
34
|
+
paragraph: true %>
|
|
35
35
|
<% end %>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<% if current_settings.votes_enabled?
|
|
1
|
+
<% if current_settings.votes_enabled? %>
|
|
2
2
|
<section class="layout-aside__section">
|
|
3
3
|
<div class="proposal__aside-vote layout-aside__ctas-buttons" data-controller="sticky-buttons">
|
|
4
4
|
<%= render partial: "vote_button", locals: { proposal: @proposal, from_proposals_list: false } unless @proposal.withdrawn? %>
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
|
|
27
27
|
<% if params.dig("filter", "with_availability").present? && params["filter"]["with_availability"] == "withdrawn" %>
|
|
28
28
|
<%= link_to t("decidim.proposals.proposals.index.see_all"), proposals_path("filter[with_availability]" => nil), class: "button button__sm button__text-secondary" %>
|
|
29
|
-
<%
|
|
29
|
+
<% elsif withdrawn_proposals? %>
|
|
30
30
|
<%= link_to t("decidim.proposals.proposals.index.see_all_withdrawn"), proposals_path(filter: { with_availability: "withdrawn", with_any_state: [] }), class: "button button__sm button__text-secondary" %>
|
|
31
31
|
<% end %>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<% add_decidim_meta_tags(
|
|
2
|
-
description: translated_attribute(current_participatory_space.short_description),
|
|
2
|
+
description: translated_attribute(current_participatory_space.try(:short_description) || current_participatory_space.description),
|
|
3
3
|
title: t("decidim.components.pagination.page_title",
|
|
4
4
|
component_name: component_name,
|
|
5
5
|
current_page: @proposals.current_page,
|
data/config/locales/ar.yml
CHANGED
|
@@ -35,7 +35,6 @@ ar:
|
|
|
35
35
|
file: ملف
|
|
36
36
|
proposals_import:
|
|
37
37
|
import_proposals: مقترحات الاستيراد
|
|
38
|
-
keep_answers: الاحتفاظ بالحالة والإجابات
|
|
39
38
|
keep_authors: الحفاظ على المؤلفين الأصلي
|
|
40
39
|
errors:
|
|
41
40
|
models:
|
|
@@ -372,7 +371,6 @@ ar:
|
|
|
372
371
|
create: مقترحات الاستيراد
|
|
373
372
|
no_components: لا توجد مكونات اقتراح أخرى في هذه المساحة التشاركية لاستيراد المقترحات منها.
|
|
374
373
|
select_component: يرجى اختيار عنصر
|
|
375
|
-
select_states: تحقق من حالة مقترحات الاستيراد
|
|
376
374
|
proposals_merges:
|
|
377
375
|
create:
|
|
378
376
|
success: دمج المقترحات بنجاح في واحدة جديدة.
|
data/config/locales/bg.yml
CHANGED
|
@@ -43,7 +43,6 @@ bg:
|
|
|
43
43
|
origin_component_id: Компонент, от който да се копират предложенията
|
|
44
44
|
proposals_import:
|
|
45
45
|
import_proposals: Копиране на предложения
|
|
46
|
-
keep_answers: Запазете състоянието и отговорите
|
|
47
46
|
keep_authors: Запази автора на оригинала
|
|
48
47
|
errors:
|
|
49
48
|
models:
|
|
@@ -456,7 +455,6 @@ bg:
|
|
|
456
455
|
create: Импортиране на предложения
|
|
457
456
|
no_components: Няма други компоненти на предложения в това пространство за участие, от които да се импортират предложенията.
|
|
458
457
|
select_component: Моля, изберете компонент
|
|
459
|
-
select_states: Проверете състоянието на предложенията за импортиране
|
|
460
458
|
title: Импортиране на предложения от друг компонент
|
|
461
459
|
proposals_merges:
|
|
462
460
|
create:
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -53,7 +53,7 @@ ca-IT:
|
|
|
53
53
|
file: Arxiu
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importar propostes
|
|
56
|
-
keep_answers: Manté
|
|
56
|
+
keep_answers: Manté els estats i les respostes
|
|
57
57
|
keep_authors: Mantenir l'autoria original
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -692,7 +692,7 @@ ca-IT:
|
|
|
692
692
|
create: Importa propostes
|
|
693
693
|
no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
|
|
694
694
|
select_component: Escull un component
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Importa només les propostes amb aquests estats. Si no s'ha seleccionat cap estat, s'importaran totes les propostes.
|
|
696
696
|
title: Importar projectes des d'un altre component
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/ca.yml
CHANGED
|
@@ -53,7 +53,7 @@ ca:
|
|
|
53
53
|
file: Arxiu
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importar propostes
|
|
56
|
-
keep_answers: Manté
|
|
56
|
+
keep_answers: Manté els estats i les respostes
|
|
57
57
|
keep_authors: Mantenir l'autoria original
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -692,7 +692,7 @@ ca:
|
|
|
692
692
|
create: Importa propostes
|
|
693
693
|
no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
|
|
694
694
|
select_component: Escull un component
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Importa només les propostes amb aquests estats. Si no s'ha seleccionat cap estat, s'importaran totes les propostes.
|
|
696
696
|
title: Importar projectes des d'un altre component
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/cs.yml
CHANGED
|
@@ -53,7 +53,7 @@ cs:
|
|
|
53
53
|
file: Soubor
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Návrhy na dovoz
|
|
56
|
-
keep_answers: Zachovat
|
|
56
|
+
keep_answers: Zachovat stavy a odpovědi
|
|
57
57
|
keep_authors: Uchovávejte původní autory
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -85,6 +85,7 @@ cs:
|
|
|
85
85
|
models:
|
|
86
86
|
decidim/proposals/admin/update_proposal_taxonomies_event: Návrhy taxonomií se změnily
|
|
87
87
|
decidim/proposals/creation_enabled_event: Vytváření návrhu je povoleno
|
|
88
|
+
decidim/proposals/liking_enabled_event: Označení líbí se mi k Návrhu povoleno
|
|
88
89
|
decidim/proposals/proposal_mentioned_event: Návrh byl zmíněn
|
|
89
90
|
decidim/proposals/publish_proposal_event: Návrh byl zveřejněn
|
|
90
91
|
decidim/proposals/voting_enabled_event: Hlasování návrhu je povoleno
|
|
@@ -154,6 +155,8 @@ cs:
|
|
|
154
155
|
search_placeholder:
|
|
155
156
|
id_string_or_title_cont: Hledat %{collection} podle ID nebo názvu
|
|
156
157
|
tooltips:
|
|
158
|
+
cannot_edit_proposal_info: Tento návrh nelze upravit, protože je vytvořen účastníkem nebo obdržel nějaký hlas
|
|
159
|
+
deleted_proposal_states_info: Tento stav návrhu nelze odstranit, protože k němu jsou přiřazeny návrhy
|
|
157
160
|
deleted_proposals_info: Tento návrh nelze odstranit
|
|
158
161
|
application:
|
|
159
162
|
geocoding:
|
|
@@ -180,6 +183,7 @@ cs:
|
|
|
180
183
|
can_accumulate_votes_beyond_threshold: Lze hromadit hlasy za hranicí
|
|
181
184
|
clear_all: Vymazat vše
|
|
182
185
|
collaborative_drafts_enabled: Společné koncepty povoleny
|
|
186
|
+
collaborative_drafts_enabled_help: Funkce „Spolunávrhy“ bude odstraněna v Decidim v0.32. Organizace, které ji používají, mohou přejít na novou funkci spoluautorství.
|
|
183
187
|
comments_enabled: Komentáře povoleny
|
|
184
188
|
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
|
185
189
|
default_sort_order: Výchozí řazení návrhu
|
|
@@ -339,7 +343,10 @@ cs:
|
|
|
339
343
|
email_subject: Návrhy jsou nyní k dispozici v %{participatory_space_title}
|
|
340
344
|
notification_title: Nyní můžete předložit <a href="%{resource_path}">nové návrhy</a> v <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
341
345
|
liking_enabled:
|
|
346
|
+
email_intro: 'Můžete označovat líbí se mi návrhy v %{participatory_space_title}! Začněte se účastnit na této straně:'
|
|
342
347
|
email_outro: Obdrželi jste toto oznámení, protože sledujete %{participatory_space_title}. Můžete přestat přijímat oznámení na předchozím odkazu.
|
|
348
|
+
email_subject: Návrhy, které se líbí pro %{participatory_space_title}
|
|
349
|
+
notification_title: Nyní můžete začít s <a href="%{resource_path}">označováním návrhů líbí se mi</a> v <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
343
350
|
proposal_mentioned:
|
|
344
351
|
email_intro: Váš návrh "%{mentioned_proposal_title}" byl zmíněn <a href="%{resource_url}">v této skupině</a> v komentářích.
|
|
345
352
|
email_outro: Toto oznámení jste obdrželi, protože jste autorem položky "%{resource_title}".
|
|
@@ -494,6 +501,7 @@ cs:
|
|
|
494
501
|
deleted_proposals_info: Smazané návrhy mohou být obnoveny z koše.
|
|
495
502
|
preview: Náhled
|
|
496
503
|
view_deleted_proposals: Zobrazit smazané návrhy
|
|
504
|
+
deprecation_warning_collaborative_drafts_html: "⚠️ <b>Oznámení o zastaralosti.</b> Funkce Pracovní koncepty bude odstraněna v Decidim v0.32. Organizace, které jej používají, mohou přejít na funkci spoluautorství."
|
|
497
505
|
evaluation_assignments:
|
|
498
506
|
create:
|
|
499
507
|
invalid: Při přiřazování návrhů hodnotiteli došlo k chybě.
|
|
@@ -672,6 +680,7 @@ cs:
|
|
|
672
680
|
ranking: "%{ranking} z %{total}"
|
|
673
681
|
related_meetings: Související schůzky
|
|
674
682
|
remove_assignment: Odstranit přiřazení
|
|
683
|
+
remove_assignment_confirmation: Opravdu chcete odstranit hodnotitele z tohoto návrhu?
|
|
675
684
|
votes_count: Počet hlasů
|
|
676
685
|
update_taxonomies:
|
|
677
686
|
invalid: 'Tyto návrhy již mají taxonomie %{taxonomies}: %{proposals}.'
|
|
@@ -686,7 +695,7 @@ cs:
|
|
|
686
695
|
create: Návrhy na dovoz
|
|
687
696
|
no_components: V tomto účastnickém prostoru neexistují žádné jiné komponenty návrhu, které by mohly importovat návrhy.
|
|
688
697
|
select_component: Vyberte součást
|
|
689
|
-
select_states:
|
|
698
|
+
select_states: Importovat pouze návrhy s těmito stavy. Pokud není vybrán žádný, budou importovány všechny návrhy.
|
|
690
699
|
title: Importovat návrhy z jiné komponenty
|
|
691
700
|
proposals_merges:
|
|
692
701
|
create:
|
data/config/locales/de.yml
CHANGED
|
@@ -53,7 +53,6 @@ de:
|
|
|
53
53
|
file: Datei
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Vorschläge importieren
|
|
56
|
-
keep_answers: Status und Antworten behalten
|
|
57
56
|
keep_authors: Behalten Sie die ursprünglichen Autoren
|
|
58
57
|
errors:
|
|
59
58
|
models:
|
|
@@ -689,7 +688,6 @@ de:
|
|
|
689
688
|
create: Vorschläge importieren
|
|
690
689
|
no_components: In diesem partizipatorischen Bereich gibt es keine weiteren Vorschlagskomponenten, aus denen die Vorschläge importiert werden könnten.
|
|
691
690
|
select_component: Bitte wählen Sie eine Komponente aus
|
|
692
|
-
select_states: Überprüfen Sie die Status der zu importierenden Vorschläge
|
|
693
691
|
title: Vorschläge aus einer anderen Komponente importieren
|
|
694
692
|
proposals_merges:
|
|
695
693
|
create:
|
data/config/locales/el.yml
CHANGED
|
@@ -30,7 +30,6 @@ el:
|
|
|
30
30
|
origin_component_id: Στοιχείο από το οποίο θα αντιγραφούν οι προτάσεις
|
|
31
31
|
proposals_import:
|
|
32
32
|
import_proposals: Εισαγωγή προτάσεων
|
|
33
|
-
keep_answers: Διατήρηση κατάστασης και απαντήσεων
|
|
34
33
|
keep_authors: Διατήρηση αρχικών συντακτών
|
|
35
34
|
errors:
|
|
36
35
|
models:
|
|
@@ -371,7 +370,6 @@ el:
|
|
|
371
370
|
create: Εισαγωγή προτάσεων
|
|
372
371
|
no_components: Δεν υπάρχουν άλλα στοιχεία προτάσεων σε αυτόν τον χώρο συμμετοχής για εισαγωγή των προτάσεων.
|
|
373
372
|
select_component: Επιλέξτε ένα στοιχείο
|
|
374
|
-
select_states: Ελέγξτε την κατάσταση των προτάσεων προς εισαγωγή
|
|
375
373
|
proposals_merges:
|
|
376
374
|
create:
|
|
377
375
|
success: Επιτυχής συγχώνευση των προτάσεων σε μία νέα.
|
data/config/locales/en.yml
CHANGED
|
@@ -53,7 +53,7 @@ en:
|
|
|
53
53
|
file: File
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Import proposals
|
|
56
|
-
keep_answers: Keep
|
|
56
|
+
keep_answers: Keep statuses and answers
|
|
57
57
|
keep_authors: Keep original authors
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -692,7 +692,7 @@ en:
|
|
|
692
692
|
create: Import proposals
|
|
693
693
|
no_components: There are no other proposal components in this participatory space to import the proposals from.
|
|
694
694
|
select_component: Please select a component
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Import only proposals with these statuses. If none are selected, all proposals will be imported.
|
|
696
696
|
title: Import proposals from another component
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -53,7 +53,7 @@ es-MX:
|
|
|
53
53
|
file: Archivo
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Propuestas de importación
|
|
56
|
-
keep_answers: Mantener
|
|
56
|
+
keep_answers: Mantener estados y respuestas
|
|
57
57
|
keep_authors: Mantener autores originales
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -692,7 +692,7 @@ es-MX:
|
|
|
692
692
|
create: Importar propuestas
|
|
693
693
|
no_components: No hay otros componentes propuesta en este espacio participativo desde el que importar.
|
|
694
694
|
select_component: Por favor selecciona un componente
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
696
696
|
title: Importar propuestas desde otro componente
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -53,7 +53,7 @@ es-PY:
|
|
|
53
53
|
file: Archivo
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Propuestas de importación
|
|
56
|
-
keep_answers: Mantener
|
|
56
|
+
keep_answers: Mantener estados y respuestas
|
|
57
57
|
keep_authors: Mantener autores originales
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -692,7 +692,7 @@ es-PY:
|
|
|
692
692
|
create: Importar propuestas
|
|
693
693
|
no_components: No hay otros componentes propuesta en este espacio participativo desde el que importar.
|
|
694
694
|
select_component: Por favor selecciona un componente
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
696
696
|
title: Importar propuestas desde otro componente
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/es.yml
CHANGED
|
@@ -53,7 +53,7 @@ es:
|
|
|
53
53
|
file: Archivo
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importar propuestas
|
|
56
|
-
keep_answers: Mantener
|
|
56
|
+
keep_answers: Mantener estados y respuestas
|
|
57
57
|
keep_authors: Mantener autoría original
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -692,7 +692,7 @@ es:
|
|
|
692
692
|
create: Importar propuestas
|
|
693
693
|
no_components: No hay otros componentes de propuestas en este espacio participativo desde donde importarlas.
|
|
694
694
|
select_component: Selecciona un componente
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
696
696
|
title: Importar propuestas desde otro componente
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/eu.yml
CHANGED
|
@@ -53,7 +53,7 @@ eu:
|
|
|
53
53
|
file: Fitxategia
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Proposamenak inportatu
|
|
56
|
-
keep_answers:
|
|
56
|
+
keep_answers: Egoera-orriak eta erantzunak mantendu
|
|
57
57
|
keep_authors: Mantendu jatorrizko egileak
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -359,7 +359,7 @@ eu:
|
|
|
359
359
|
proposal_published_for_space:
|
|
360
360
|
email_intro: '"%{resource_title}" proposamena jarraizten ari zaren ondorengo "%{participatory_space_title}" espazioan erantsi zaizu.'
|
|
361
361
|
email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" jarraitzen ari zarelako. Jarraitzeari uzti ahal diozu aurreko estekan.
|
|
362
|
-
email_subject: '"%{resource_title}" proposamen berria
|
|
362
|
+
email_subject: '%{participatory_space_title} espazioan "%{resource_title}" proposamen berria egin da'
|
|
363
363
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> proposamena %{participatory_space_title}-era gehitu du %{author} egileak.
|
|
364
364
|
notification_title_official: 'Proposamen ofiziala hona gehitu da: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
365
365
|
proposal_state_changed:
|
|
@@ -692,7 +692,7 @@ eu:
|
|
|
692
692
|
create: Inportatu proposamenak
|
|
693
693
|
no_components: Espazio honetan ez dago beste proposamenik proposamenak inportatzeko.
|
|
694
694
|
select_component: Mesedez, hautatu osagaia
|
|
695
|
-
select_states:
|
|
695
|
+
select_states: Inportatu proposamenak egoera horiekin soilik. Egoerarik hautatzen ez bada, proposamen guztiak inportatuko dira.
|
|
696
696
|
title: Inportatu proposamenak beste osagai batetik
|
|
697
697
|
proposals_merges:
|
|
698
698
|
create:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -53,7 +53,6 @@ fi-pl:
|
|
|
53
53
|
file: Tiedosto
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Tuo ehdotuksia
|
|
56
|
-
keep_answers: Säilytä tilat ja vastaukset
|
|
57
56
|
keep_authors: Säilytä alkuperäiset laatijat
|
|
58
57
|
errors:
|
|
59
58
|
models:
|
|
@@ -692,7 +691,6 @@ fi-pl:
|
|
|
692
691
|
create: Tuo ehdotuksia
|
|
693
692
|
no_components: Tässä osallisuustilassa ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
|
694
693
|
select_component: Valitse komponentti
|
|
695
|
-
select_states: Tarkista tuotavien ehdotusten tilat
|
|
696
694
|
title: Tuo ehdotuksia toisesta komponentista
|
|
697
695
|
proposals_merges:
|
|
698
696
|
create:
|
data/config/locales/fi.yml
CHANGED
|
@@ -53,7 +53,6 @@ fi:
|
|
|
53
53
|
file: Tiedosto
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Tuo ehdotuksia
|
|
56
|
-
keep_answers: Säilytä tilat ja vastaukset
|
|
57
56
|
keep_authors: Säilytä alkuperäiset laatijat
|
|
58
57
|
errors:
|
|
59
58
|
models:
|
|
@@ -692,7 +691,6 @@ fi:
|
|
|
692
691
|
create: Tuo ehdotuksia
|
|
693
692
|
no_components: Tässä osallistumistilassa ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
|
694
693
|
select_component: Valitse komponentti
|
|
695
|
-
select_states: Tarkista tuotavien ehdotusten tilat
|
|
696
694
|
title: Tuo ehdotuksia toisesta komponentista
|
|
697
695
|
proposals_merges:
|
|
698
696
|
create:
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -53,7 +53,7 @@ fr-CA:
|
|
|
53
53
|
file: Fichier
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importer des propositions
|
|
56
|
-
keep_answers:
|
|
56
|
+
keep_answers: Conserver les états et les réponses
|
|
57
57
|
keep_authors: Gardez les auteurs originaux
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -76,12 +76,16 @@ fr-CA:
|
|
|
76
76
|
attributes:
|
|
77
77
|
base:
|
|
78
78
|
not_official: Non officiels
|
|
79
|
+
voted: Ont reçu des votes ou des soutiens
|
|
79
80
|
proposals_split:
|
|
80
81
|
attributes:
|
|
81
82
|
base:
|
|
82
83
|
not_official: Non officiels
|
|
84
|
+
voted: Ont reçu des votes ou des soutiens
|
|
83
85
|
models:
|
|
86
|
+
decidim/proposals/admin/update_proposal_taxonomies_event: Taxonomies de la proposition changées
|
|
84
87
|
decidim/proposals/creation_enabled_event: Autoriser la création de nouvelles propositions
|
|
88
|
+
decidim/proposals/liking_enabled_event: Soutiens des propositions activés
|
|
85
89
|
decidim/proposals/proposal_mentioned_event: Proposition mentionnée
|
|
86
90
|
decidim/proposals/publish_proposal_event: Proposition publiée
|
|
87
91
|
decidim/proposals/voting_enabled_event: Activer le module de vote simple
|
|
@@ -92,6 +96,8 @@ fr-CA:
|
|
|
92
96
|
proposal:
|
|
93
97
|
budget_text: La proposition <span class="resource-link">%{link} a été créée</span>
|
|
94
98
|
import_to_proposal_text: Cette proposition <span "resource-link">%{link} a été créée</span>
|
|
99
|
+
merge_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
100
|
+
split_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
95
101
|
decidim/proposals/collaborative_draft:
|
|
96
102
|
one: Brouillon collaboratif
|
|
97
103
|
other: Brouillons collaboratifs
|
|
@@ -152,6 +158,7 @@ fr-CA:
|
|
|
152
158
|
amend: Amender
|
|
153
159
|
comment: Commentaire
|
|
154
160
|
create: Créer une proposition
|
|
161
|
+
like: Soutenir
|
|
155
162
|
vote: Voter
|
|
156
163
|
vote_comment: Vote sur le commentaire
|
|
157
164
|
withdraw: Retirer
|
|
@@ -176,6 +183,7 @@ fr-CA:
|
|
|
176
183
|
automatic: Automatique
|
|
177
184
|
most_commented: Les plus commentées
|
|
178
185
|
most_followed: Les plus suivies
|
|
186
|
+
most_liked: Les plus soutenues
|
|
179
187
|
most_voted: Les plus votées
|
|
180
188
|
random: Aléatoire
|
|
181
189
|
recent: Les plus récents
|
|
@@ -185,6 +193,7 @@ fr-CA:
|
|
|
185
193
|
edit_time_units:
|
|
186
194
|
days: Jours
|
|
187
195
|
hours: Heures
|
|
196
|
+
minutes: Compte-rendus
|
|
188
197
|
geocoding_enabled: Cartes activées
|
|
189
198
|
minimum_votes_per_user: Nombre minimum de votes par utilisateur
|
|
190
199
|
new_proposal_body_template: Modèle de corps d'une nouvelle proposition
|
|
@@ -235,10 +244,13 @@ fr-CA:
|
|
|
235
244
|
automatic: Automatique
|
|
236
245
|
most_commented: Les plus commentées
|
|
237
246
|
most_followed: Les plus suivies
|
|
247
|
+
most_liked: Les plus soutenues
|
|
238
248
|
most_voted: Les plus votées
|
|
239
249
|
random: Aléatoire
|
|
240
250
|
recent: Récentes
|
|
241
251
|
with_more_authors: Avec le plus d'auteurs
|
|
252
|
+
likes_blocked: Soutiens bloqués
|
|
253
|
+
likes_enabled: Soutiens activés
|
|
242
254
|
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
|
243
255
|
publish_answers_immediately: Publier immédiatement les réponses à la proposition
|
|
244
256
|
publish_answers_immediately_help_html: "Notez que si vous répondez à une proposition sans que cette case soit activée, vous devrez publier la réponse manuellement en sélectionnant la proposition et en utilisant l'action de publication.\nPour plus d'informations sur le fonctionnement de cette action, voir <a href=\"https://docs.decidim.org/en/admin/components/proposals/answers#_publication\" target=\"_blank\">la page de documentation sur les réponses aux propositions</a>."
|
|
@@ -321,6 +333,9 @@ fr-CA:
|
|
|
321
333
|
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Vous pouvez arrêter de recevoir des notifications en cliquant sur le lien précédent.
|
|
322
334
|
email_subject: Les propositions sont maintenant disponibles dans %{participatory_space_title}
|
|
323
335
|
notification_title: Vous pouvez maintenant créer de <a href="%{resource_path}">nouvelles propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
336
|
+
liking_enabled:
|
|
337
|
+
email_intro: 'Vous pouvez soutenir les propositions dans %{participatory_space_title}! Commencer à participer sur cette page :'
|
|
338
|
+
email_outro: Vous avez reçu cette notification parce que vous suivez %{participatory_space_title}. Vous pouvez vous désinscrire des notifications en suivant le lien précédent.
|
|
324
339
|
proposal_mentioned:
|
|
325
340
|
email_intro: Votre proposition "%{mentioned_proposal_title}" a été mentionnée <a href="%{resource_url}">dans cet espace</a> dans les commentaires.
|
|
326
341
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}".
|
|
@@ -597,7 +612,7 @@ fr-CA:
|
|
|
597
612
|
create: Importer des propositions
|
|
598
613
|
no_components: Il n'y a pas d'autre fonctionnalité de proposition dans cet espace participatif dans laquelle importer les propositions.
|
|
599
614
|
select_component: Veuillez sélectionner une fonctionnalité
|
|
600
|
-
select_states:
|
|
615
|
+
select_states: Importer uniquement des propositions avec ces états. Si aucun n'est sélectionné, toutes les propositions seront importées.
|
|
601
616
|
title: Importer des propositions depuis une autre fonctionnalité
|
|
602
617
|
proposals_merges:
|
|
603
618
|
create:
|
data/config/locales/fr.yml
CHANGED
|
@@ -53,7 +53,7 @@ fr:
|
|
|
53
53
|
file: Fichier
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importer des propositions
|
|
56
|
-
keep_answers: Conserver
|
|
56
|
+
keep_answers: Conserver les états et les réponses
|
|
57
57
|
keep_authors: Gardez les auteurs originaux
|
|
58
58
|
errors:
|
|
59
59
|
models:
|
|
@@ -76,12 +76,16 @@ fr:
|
|
|
76
76
|
attributes:
|
|
77
77
|
base:
|
|
78
78
|
not_official: Non officiels
|
|
79
|
+
voted: Ont reçu des votes ou des soutiens
|
|
79
80
|
proposals_split:
|
|
80
81
|
attributes:
|
|
81
82
|
base:
|
|
82
83
|
not_official: Non officiels
|
|
84
|
+
voted: Ont reçu des votes ou des soutiens
|
|
83
85
|
models:
|
|
86
|
+
decidim/proposals/admin/update_proposal_taxonomies_event: Taxonomies de la proposition changées
|
|
84
87
|
decidim/proposals/creation_enabled_event: Autoriser la création de nouvelles propositions
|
|
88
|
+
decidim/proposals/liking_enabled_event: Soutiens des propositions activés
|
|
85
89
|
decidim/proposals/proposal_mentioned_event: Proposition mentionnée
|
|
86
90
|
decidim/proposals/publish_proposal_event: Proposition publiée
|
|
87
91
|
decidim/proposals/voting_enabled_event: Activer le module de vote simple
|
|
@@ -92,6 +96,8 @@ fr:
|
|
|
92
96
|
proposal:
|
|
93
97
|
budget_text: La proposition <span class="resource-link">%{link} a été créée</span>
|
|
94
98
|
import_to_proposal_text: Cette proposition <span "resource-link">%{link} a été créée</span>
|
|
99
|
+
merge_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
100
|
+
split_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
95
101
|
decidim/proposals/collaborative_draft:
|
|
96
102
|
one: Brouillon collaboratif
|
|
97
103
|
other: Brouillons collaboratifs
|
|
@@ -152,6 +158,7 @@ fr:
|
|
|
152
158
|
amend: Amender
|
|
153
159
|
comment: Commenter
|
|
154
160
|
create: Créer une proposition
|
|
161
|
+
like: Soutenir
|
|
155
162
|
vote: Voter
|
|
156
163
|
vote_comment: Vote sur le commentaire
|
|
157
164
|
withdraw: Retirer
|
|
@@ -176,6 +183,7 @@ fr:
|
|
|
176
183
|
automatic: Automatique
|
|
177
184
|
most_commented: Les plus commentées
|
|
178
185
|
most_followed: Les plus suivies
|
|
186
|
+
most_liked: Les plus soutenues
|
|
179
187
|
most_voted: Les plus votées
|
|
180
188
|
random: Aléatoire
|
|
181
189
|
recent: Les plus récentes
|
|
@@ -185,6 +193,7 @@ fr:
|
|
|
185
193
|
edit_time_units:
|
|
186
194
|
days: Jours
|
|
187
195
|
hours: Heures
|
|
196
|
+
minutes: Compte-rendus
|
|
188
197
|
geocoding_enabled: Cartes activées
|
|
189
198
|
minimum_votes_per_user: Nombre minimum de votes par utilisateur
|
|
190
199
|
new_proposal_body_template: Modèle de corps d'une nouvelle proposition
|
|
@@ -235,10 +244,13 @@ fr:
|
|
|
235
244
|
automatic: Automatique
|
|
236
245
|
most_commented: Les plus commentées
|
|
237
246
|
most_followed: Les plus suivies
|
|
247
|
+
most_liked: Les plus soutenues
|
|
238
248
|
most_voted: Les plus votées
|
|
239
249
|
random: Aléatoire
|
|
240
250
|
recent: Les plus récentes
|
|
241
251
|
with_more_authors: Avec le plus d'auteurs
|
|
252
|
+
likes_blocked: Soutiens bloqués
|
|
253
|
+
likes_enabled: Soutiens activés
|
|
242
254
|
proposal_answering_enabled: Autoriser la réponse officielle aux propositions
|
|
243
255
|
publish_answers_immediately: Publier immédiatement les réponses à la proposition
|
|
244
256
|
publish_answers_immediately_help_html: "Notez que si vous répondez à une proposition sans que cette case soit activée, vous devrez publier la réponse manuellement en sélectionnant la proposition et en utilisant l'action de publication.\nPour plus d'informations sur le fonctionnement de cette action, voir <a href=\"https://docs.decidim.org/en/admin/components/proposals/answers#_publication\" target=\"_blank\">la page de documentation sur les réponses aux propositions</a>."
|
|
@@ -321,6 +333,9 @@ fr:
|
|
|
321
333
|
email_outro: Vous avez reçu cette notification car vous suivez %{participatory_space_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
322
334
|
email_subject: Les propositions sont maintenant disponibles dans %{participatory_space_title}
|
|
323
335
|
notification_title: Vous pouvez maintenant créer de <a href="%{resource_path}">nouvelles propositions</a> dans <a href="%{participatory_space_url}">%{participatory_space_title}</a>.
|
|
336
|
+
liking_enabled:
|
|
337
|
+
email_intro: 'Vous pouvez soutenir les propositions dans %{participatory_space_title}! Commencer à participer sur cette page :'
|
|
338
|
+
email_outro: Vous avez reçu cette notification parce que vous suivez %{participatory_space_title}. Vous pouvez vous désinscrire des notifications en suivant le lien précédent.
|
|
324
339
|
proposal_mentioned:
|
|
325
340
|
email_intro: Votre proposition "%{mentioned_proposal_title}" a été mentionnée <a href="%{resource_url}">dans cet espace</a> dans les commentaires.
|
|
326
341
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de "%{resource_title}". Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
@@ -597,7 +612,7 @@ fr:
|
|
|
597
612
|
create: Importer des propositions
|
|
598
613
|
no_components: Il n'y a pas d'autre fonctionnalité de proposition dans cet espace participatif dans laquelle importer les propositions.
|
|
599
614
|
select_component: Veuillez sélectionner une fonctionnalité
|
|
600
|
-
select_states:
|
|
615
|
+
select_states: Importer uniquement des propositions avec ces états. Si aucun n'est sélectionné, toutes les propositions seront importées.
|
|
601
616
|
title: Importer des propositions depuis une autre fonctionnalité
|
|
602
617
|
proposals_merges:
|
|
603
618
|
create:
|
data/config/locales/gl.yml
CHANGED
|
@@ -29,7 +29,6 @@ gl:
|
|
|
29
29
|
origin_component_id: Componente para copiar as propostas de
|
|
30
30
|
proposals_import:
|
|
31
31
|
import_proposals: Propostas de importación
|
|
32
|
-
keep_answers: Manter o estado e as respostas
|
|
33
32
|
keep_authors: Mantén os autores orixinais
|
|
34
33
|
errors:
|
|
35
34
|
models:
|
|
@@ -295,7 +294,6 @@ gl:
|
|
|
295
294
|
create: Propostas de importación
|
|
296
295
|
no_components: Non existen outros compoñentes de proposta neste espazo participativo para importar as propostas.
|
|
297
296
|
select_component: Selecciona un compoñente
|
|
298
|
-
select_states: Comprobe os estados das propostas para importar
|
|
299
297
|
proposals_merges:
|
|
300
298
|
create:
|
|
301
299
|
success: Fusionou con éxito as propostas nun novo.
|
data/config/locales/hu.yml
CHANGED
|
@@ -337,7 +337,6 @@ hu:
|
|
|
337
337
|
create: Javaslatok importálása
|
|
338
338
|
no_components: Ebben a részvételi térben nincs több javaslati elem az importálásához.
|
|
339
339
|
select_component: Válassz ki egy elemet
|
|
340
|
-
select_states: Ellenőrizd az importálandó javaslatok állapotát
|
|
341
340
|
proposals_merges:
|
|
342
341
|
create:
|
|
343
342
|
success: A javaslatokat sikeresen egy újba egyesítettük.
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -223,7 +223,6 @@ id:
|
|
|
223
223
|
create: Mengimpor proposal
|
|
224
224
|
no_components: Tidak ada komponen proposal lain dalam ruang partisipatif ini untuk mengimpor proposal dari.
|
|
225
225
|
select_component: Silakan pilih komponen
|
|
226
|
-
select_states: Periksa status proposal untuk diimpor
|
|
227
226
|
proposals_merges:
|
|
228
227
|
create:
|
|
229
228
|
success: Berhasil menggabungkan proposal menjadi proposal baru.
|
data/config/locales/it.yml
CHANGED
|
@@ -29,7 +29,6 @@ it:
|
|
|
29
29
|
origin_component_id: Componente per copiare le proposte da
|
|
30
30
|
proposals_import:
|
|
31
31
|
import_proposals: Importa proposte
|
|
32
|
-
keep_answers: Mantieni stato e risposte
|
|
33
32
|
keep_authors: Mantieni gli autori originali
|
|
34
33
|
errors:
|
|
35
34
|
models:
|
|
@@ -308,7 +307,6 @@ it:
|
|
|
308
307
|
create: Importa proposte
|
|
309
308
|
no_components: Non ci sono altri componenti di proposta in questo spazio partecipativo per importare le proposte da.
|
|
310
309
|
select_component: Si prega di selezionare un componente
|
|
311
|
-
select_states: Controlla gli stati delle proposte da importare
|
|
312
310
|
proposals_merges:
|
|
313
311
|
create:
|
|
314
312
|
success: Fuse con successo le proposte in una nuova.
|
data/config/locales/ja.yml
CHANGED
|
@@ -684,7 +684,7 @@ ja:
|
|
|
684
684
|
create: 提案をインポート
|
|
685
685
|
no_components: この参加スペースには他の提案コンポーネントはありません。
|
|
686
686
|
select_component: コンポーネントを選択してください
|
|
687
|
-
select_states:
|
|
687
|
+
select_states: 選択されたステータスを持つ提案のみをインポートします。何も選択されていない場合、すべての提案をインポートします。
|
|
688
688
|
title: 別のコンポーネントから提案をインポート
|
|
689
689
|
proposals_merges:
|
|
690
690
|
create:
|
data/config/locales/lt.yml
CHANGED
|
@@ -30,7 +30,6 @@ lt:
|
|
|
30
30
|
origin_component_id: Komponentas, skirtas kopijuoti pasiūlymams iš
|
|
31
31
|
proposals_import:
|
|
32
32
|
import_proposals: Importuoti pasiūlymus
|
|
33
|
-
keep_answers: Išlaikyti būseną ir atsakymus
|
|
34
33
|
keep_authors: Išlaikyti originalius autorius
|
|
35
34
|
errors:
|
|
36
35
|
models:
|
|
@@ -381,7 +380,6 @@ lt:
|
|
|
381
380
|
create: Importuoti pasiūlymus
|
|
382
381
|
no_components: Šioje dalyvaujamojo proceso erdvėje nėra kitų pasiūlymų komponentų, iš kurių būtų galima importuoti pasiūlymus.
|
|
383
382
|
select_component: Pasirinkite komponentą
|
|
384
|
-
select_states: Patikrinti importuoti skirtų pasiūlymų būseną
|
|
385
383
|
proposals_merges:
|
|
386
384
|
create:
|
|
387
385
|
success: Pasiūlymai sulieti į vieną naują pasiūlymą.
|
data/config/locales/lv.yml
CHANGED
|
@@ -260,7 +260,6 @@ lv:
|
|
|
260
260
|
create: Importēt priekšlikumus
|
|
261
261
|
no_components: Šajā līdzdalības telpā nav citu priekšlikumu komentāru, no kuriem importēt priekšlikumus.
|
|
262
262
|
select_component: Lūdzu, izvēlieties komponentu
|
|
263
|
-
select_states: Pārbaudiet importējamo priekšlikumu statusu
|
|
264
263
|
proposals_merges:
|
|
265
264
|
create:
|
|
266
265
|
success: Visi priekšlikumi ir veiksmīgi apvienoti vienā jaunā priekšlikumā.
|
data/config/locales/nl.yml
CHANGED
|
@@ -29,7 +29,6 @@ nl:
|
|
|
29
29
|
origin_component_id: Onderdeel om de voorstellen te kopiëren van
|
|
30
30
|
proposals_import:
|
|
31
31
|
import_proposals: Voorstellen importeren
|
|
32
|
-
keep_answers: Status en antwoorden behouden
|
|
33
32
|
keep_authors: Bewaar originele auteurs
|
|
34
33
|
errors:
|
|
35
34
|
models:
|
|
@@ -316,7 +315,6 @@ nl:
|
|
|
316
315
|
create: Geïmporteerde voorstellen
|
|
317
316
|
no_components: Er zijn geen andere componenten van het voorstel in deze participatieruimte om de voorstellen in te voeren.
|
|
318
317
|
select_component: Selecteer een onderdeel
|
|
319
|
-
select_states: Controleer de status van de voorstellen om te importeren
|
|
320
318
|
proposals_merges:
|
|
321
319
|
create:
|
|
322
320
|
success: De voorstellen zijn succesvol samengevoegd tot een nieuwe.
|
data/config/locales/no.yml
CHANGED
|
@@ -29,7 +29,6 @@
|
|
|
29
29
|
origin_component_id: Komponent å kopiere forslagene fra
|
|
30
30
|
proposals_import:
|
|
31
31
|
import_proposals: Importer forslag
|
|
32
|
-
keep_answers: Behold status og svar
|
|
33
32
|
keep_authors: Behold originale forfattere
|
|
34
33
|
errors:
|
|
35
34
|
models:
|
|
@@ -323,7 +322,6 @@
|
|
|
323
322
|
create: Importer forslag
|
|
324
323
|
no_components: Det er ingen andre forslags komponetner i dette deltaker området å importere forslagene fra.
|
|
325
324
|
select_component: Velg en komponent
|
|
326
|
-
select_states: Sjekk statusen til forslagene som skal importeres
|
|
327
325
|
proposals_merges:
|
|
328
326
|
create:
|
|
329
327
|
success: Slo sammen forslagene til et nytt ett.
|
data/config/locales/pl.yml
CHANGED
|
@@ -43,7 +43,6 @@ pl:
|
|
|
43
43
|
origin_component_id: Komponent z którego kopiuję propozycję
|
|
44
44
|
proposals_import:
|
|
45
45
|
import_proposals: Importuj propozycje
|
|
46
|
-
keep_answers: Zachowaj stan i odpowiedzi
|
|
47
46
|
keep_authors: Zachowaj oryginalnych autorów
|
|
48
47
|
errors:
|
|
49
48
|
models:
|
|
@@ -458,7 +457,6 @@ pl:
|
|
|
458
457
|
create: Importuj propozycje
|
|
459
458
|
no_components: W tej przestrzeni partycypacyjnej nie ma innych komponentów propozycji do zaimportowania propozycji.
|
|
460
459
|
select_component: Wybierz komponent
|
|
461
|
-
select_states: Sprawdź statusy propozycji do zaimportowania
|
|
462
460
|
title: Importuj propozycje z innego komponentu
|
|
463
461
|
proposals_merges:
|
|
464
462
|
create:
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -53,7 +53,6 @@ pt-BR:
|
|
|
53
53
|
file: Arquivo
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importar propostas
|
|
56
|
-
keep_answers: Manter o estado e as respostas
|
|
57
56
|
keep_authors: Mantenha os autores originais
|
|
58
57
|
errors:
|
|
59
58
|
models:
|
|
@@ -146,6 +145,8 @@ pt-BR:
|
|
|
146
145
|
values:
|
|
147
146
|
state_not_published: Não respondido
|
|
148
147
|
state_published: Respondido
|
|
148
|
+
search_placeholder:
|
|
149
|
+
id_string_or_title_cont: Buscar %{collection} por ID ou título
|
|
149
150
|
tooltips:
|
|
150
151
|
cannot_edit_proposal_info: Não é possível editar esta proposta, pois ela foi criada por um participante ou já recebeu votos
|
|
151
152
|
deleted_proposal_states_info: Não é possível excluir o estado desta proposta porque há propostas atribuídas a ela
|
|
@@ -691,7 +692,6 @@ pt-BR:
|
|
|
691
692
|
create: Propostas de importação
|
|
692
693
|
no_components: Não há outros componentes da proposta neste espaço participativo para importar as propostas.
|
|
693
694
|
select_component: Selecione um componente
|
|
694
|
-
select_states: Verifique os estados das propostas para importar
|
|
695
695
|
title: Importar propostas de outro componente
|
|
696
696
|
proposals_merges:
|
|
697
697
|
create:
|
data/config/locales/pt.yml
CHANGED
|
@@ -29,7 +29,6 @@ pt:
|
|
|
29
29
|
origin_component_id: Componente para copiar as propostas de
|
|
30
30
|
proposals_import:
|
|
31
31
|
import_proposals: Importar propostas
|
|
32
|
-
keep_answers: Guardar estado e respostas
|
|
33
32
|
keep_authors: Manter os autores originais
|
|
34
33
|
errors:
|
|
35
34
|
models:
|
|
@@ -318,7 +317,6 @@ pt:
|
|
|
318
317
|
create: Importar propostas
|
|
319
318
|
no_components: Não há outros componentes da proposta neste espaço participativo de onde importar as propostas.
|
|
320
319
|
select_component: Selecione um componente
|
|
321
|
-
select_states: Verifique os estados das propostas a importar
|
|
322
320
|
proposals_merges:
|
|
323
321
|
create:
|
|
324
322
|
success: Fundiu corretamente as propostas em uma nova.
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -32,7 +32,7 @@ ro:
|
|
|
32
32
|
origin_component_id: Componentă de la care se copiază propunerile
|
|
33
33
|
proposals_import:
|
|
34
34
|
import_proposals: Importă propuneri
|
|
35
|
-
keep_answers:
|
|
35
|
+
keep_answers: Păstrați statusuri și răspunsuri
|
|
36
36
|
keep_authors: Păstrează autorii originali
|
|
37
37
|
errors:
|
|
38
38
|
models:
|
|
@@ -389,7 +389,7 @@ ro:
|
|
|
389
389
|
create: Importă propuneri
|
|
390
390
|
no_components: Nu există alte componente de propunere în acest spațiu participativ din care să se importe propunerile.
|
|
391
391
|
select_component: Te rugăm selectează o componentă
|
|
392
|
-
select_states:
|
|
392
|
+
select_states: Importați doar propunerile cu aceste statusuri. Dacă nu este selectat, toate propunerile vor fi importate.
|
|
393
393
|
proposals_merges:
|
|
394
394
|
create:
|
|
395
395
|
success: Propunerile au fost combinate cu succes într-o propunere nouă.
|
data/config/locales/ru.yml
CHANGED
|
@@ -131,7 +131,6 @@ ru:
|
|
|
131
131
|
create: Позаимствовать предложения
|
|
132
132
|
no_components: В этом пространстве соучастия нет других составляющих предложений, из которых можно было бы позаимствовать предложения.
|
|
133
133
|
select_component: Пожалуйста, выберите составляющую
|
|
134
|
-
select_states: Проверьте состояние предложений, которые вы хотите позаимствовать
|
|
135
134
|
admin_log:
|
|
136
135
|
proposal:
|
|
137
136
|
answer: "%{user_name} ответил на предложение %{resource_name} в пространстве %{space_name}"
|
data/config/locales/sk.yml
CHANGED
|
@@ -265,7 +265,6 @@ sk:
|
|
|
265
265
|
create: Návrhy na dovoz
|
|
266
266
|
no_components: V tomto účastníckom priestore neexistujú žiadne iné komponenty návrhu, ktoré by mohli importovať návrhy.
|
|
267
267
|
select_component: Vyberte súčasť
|
|
268
|
-
select_states: Skontrolujte stav návrhov, ktoré chcete importovať
|
|
269
268
|
proposals_merges:
|
|
270
269
|
create:
|
|
271
270
|
success: Projekty boli úspešne zlúčené do novej.
|
data/config/locales/sv.yml
CHANGED
|
@@ -53,7 +53,6 @@ sv:
|
|
|
53
53
|
file: Fil
|
|
54
54
|
proposals_import:
|
|
55
55
|
import_proposals: Importera förslag
|
|
56
|
-
keep_answers: Behåll status och svar
|
|
57
56
|
keep_authors: Behåll originalförfattare
|
|
58
57
|
errors:
|
|
59
58
|
models:
|
|
@@ -145,7 +144,7 @@ sv:
|
|
|
145
144
|
state_not_published: Ej besvarade
|
|
146
145
|
state_published: Besvarade
|
|
147
146
|
search_placeholder:
|
|
148
|
-
id_string_or_title_cont: Sök %{collection} efter ID eller titel
|
|
147
|
+
id_string_or_title_cont: Sök i %{collection} efter ID eller titel
|
|
149
148
|
tooltips:
|
|
150
149
|
cannot_edit_proposal_info: Kan inte redigera detta förslag eftersom det är skapat av en deltagare eller redan har fått någon röst
|
|
151
150
|
deleted_proposal_states_info: Kan inte ta bort detta tillstånd eftersom det finns förslag som är kopplade till det
|
|
@@ -188,7 +187,7 @@ sv:
|
|
|
188
187
|
random: Slumpvis
|
|
189
188
|
recent: Senaste
|
|
190
189
|
with_more_authors: Med flera författare
|
|
191
|
-
define_taxonomy_filters:
|
|
190
|
+
define_taxonomy_filters: Ställ in filter innan du använder den här inställningen.
|
|
192
191
|
edit_time: Förslag kan redigeras av författaren inom så här många minuter
|
|
193
192
|
edit_time_units:
|
|
194
193
|
days: Dagar
|
|
@@ -615,7 +614,6 @@ sv:
|
|
|
615
614
|
create: Importera förslag
|
|
616
615
|
no_components: Det finns inga andra förslagskomponenter i detta deltagarutrymme att importera förslagen från.
|
|
617
616
|
select_component: Välj en komponent
|
|
618
|
-
select_states: Kontrollera status för förslagen som ska importeras
|
|
619
617
|
title: Importera förslag från en annan komponent
|
|
620
618
|
proposals_merges:
|
|
621
619
|
create:
|
|
@@ -912,7 +910,7 @@ sv:
|
|
|
912
910
|
description: Du kan skapa upp till %{limit} förslag.
|
|
913
911
|
success: Din röst har tagits emot
|
|
914
912
|
threshold_per_proposal:
|
|
915
|
-
description: Förslag behöver få minst %{limit} röster för
|
|
913
|
+
description: Förslag behöver få minst %{limit} röster för att gå vidare.
|
|
916
914
|
title: Regler för omröstning
|
|
917
915
|
vote_limit:
|
|
918
916
|
description: Du kan stödja upp till %{limit} förslag.
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -339,7 +339,6 @@ tr:
|
|
|
339
339
|
create: Teklifleri içe aktar
|
|
340
340
|
no_components: Teklifleri içe aktarmak için bu katılımcı alanda başka hiçbir teklif bileşeni bulunmamaktadır.
|
|
341
341
|
select_component: Lütfen bir bileşen seçiniz
|
|
342
|
-
select_states: İçe aktarılacak tekliflerin durumlarını kontrol et
|
|
343
342
|
proposals_merges:
|
|
344
343
|
create:
|
|
345
344
|
success: Teklifler, yeni bir taneyle başarılı bir şekilde birleştirildi.
|
data/config/locales/uk.yml
CHANGED
|
@@ -127,7 +127,6 @@ uk:
|
|
|
127
127
|
create: Запозичити пропозиції
|
|
128
128
|
no_components: У цьому просторі співучасті немає інших складових пропозицій, звідки можна було б запозичити пропозиції.
|
|
129
129
|
select_component: Будь ласка, оберіть складову
|
|
130
|
-
select_states: Перевірте стани пропозицій, які бажаєте запозичити
|
|
131
130
|
admin_log:
|
|
132
131
|
proposal:
|
|
133
132
|
answer: "%{user_name} відповів на пропозицію %{resource_name} у просторі %{space_name}"
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
|
@@ -30,7 +30,6 @@ zh-TW:
|
|
|
30
30
|
origin_component_id: 從哪個組件複製提案
|
|
31
31
|
proposals_import:
|
|
32
32
|
import_proposals: 導入提案
|
|
33
|
-
keep_answers: 保留狀態和回答
|
|
34
33
|
keep_authors: 保留原作者
|
|
35
34
|
errors:
|
|
36
35
|
models:
|
|
@@ -360,7 +359,6 @@ zh-TW:
|
|
|
360
359
|
create: 匯入提案
|
|
361
360
|
no_components: 這個參與空間中沒有其他的提案元件可以匯入提案。
|
|
362
361
|
select_component: 請選擇一個組件
|
|
363
|
-
select_states: 檢查要匯入的提案狀態。
|
|
364
362
|
proposals_merges:
|
|
365
363
|
create:
|
|
366
364
|
success: 已成功合併提案成為新的提案。
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class ChangeUsersInActionLogsProposals < ActiveRecord::Migration[7.2]
|
|
4
|
+
class ActionLog < ApplicationRecord
|
|
5
|
+
self.table_name = :decidim_action_logs
|
|
6
|
+
|
|
7
|
+
belongs_to :user, class_name: "Decidim::UserBaseEntity"
|
|
8
|
+
|
|
9
|
+
belongs_to :resource,
|
|
10
|
+
polymorphic: true,
|
|
11
|
+
optional: true
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def up
|
|
15
|
+
ActionLog.where(resource_type: "Decidim::Proposals::Proposal").find_each do |action_log|
|
|
16
|
+
next unless action_log.resource
|
|
17
|
+
|
|
18
|
+
author = action_log.resource.creator_author
|
|
19
|
+
|
|
20
|
+
next unless author.is_a?(Decidim::User)
|
|
21
|
+
next unless author.group?
|
|
22
|
+
|
|
23
|
+
action_log.user_id = author.id
|
|
24
|
+
action_log.extra["user"] ||= {}
|
|
25
|
+
action_log.extra["user"].merge!("name" => author.name, "nickname" => author.nickname)
|
|
26
|
+
action_log.save!
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-proposals
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.
|
|
4
|
+
version: 0.31.2
|
|
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: 2026-
|
|
13
|
+
date: 2026-02-26 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: decidim-comments
|
|
@@ -18,28 +18,28 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - '='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.31.
|
|
21
|
+
version: 0.31.2
|
|
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.
|
|
28
|
+
version: 0.31.2
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: decidim-core
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
|
33
33
|
- - '='
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
|
-
version: 0.31.
|
|
35
|
+
version: 0.31.2
|
|
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.
|
|
42
|
+
version: 0.31.2
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: doc2text
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,98 +86,98 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - '='
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.31.
|
|
89
|
+
version: 0.31.2
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - '='
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0.31.
|
|
96
|
+
version: 0.31.2
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: decidim-assemblies
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - '='
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: 0.31.
|
|
103
|
+
version: 0.31.2
|
|
104
104
|
type: :development
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - '='
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: 0.31.
|
|
110
|
+
version: 0.31.2
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
112
|
name: decidim-budgets
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
|
115
115
|
- - '='
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: 0.31.
|
|
117
|
+
version: 0.31.2
|
|
118
118
|
type: :development
|
|
119
119
|
prerelease: false
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
121
|
requirements:
|
|
122
122
|
- - '='
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: 0.31.
|
|
124
|
+
version: 0.31.2
|
|
125
125
|
- !ruby/object:Gem::Dependency
|
|
126
126
|
name: decidim-conference
|
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
|
128
128
|
requirements:
|
|
129
129
|
- - '='
|
|
130
130
|
- !ruby/object:Gem::Version
|
|
131
|
-
version: 0.31.
|
|
131
|
+
version: 0.31.2
|
|
132
132
|
type: :development
|
|
133
133
|
prerelease: false
|
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
135
135
|
requirements:
|
|
136
136
|
- - '='
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: 0.31.
|
|
138
|
+
version: 0.31.2
|
|
139
139
|
- !ruby/object:Gem::Dependency
|
|
140
140
|
name: decidim-dev
|
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements:
|
|
143
143
|
- - '='
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
|
-
version: 0.31.
|
|
145
|
+
version: 0.31.2
|
|
146
146
|
type: :development
|
|
147
147
|
prerelease: false
|
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
149
|
requirements:
|
|
150
150
|
- - '='
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
|
-
version: 0.31.
|
|
152
|
+
version: 0.31.2
|
|
153
153
|
- !ruby/object:Gem::Dependency
|
|
154
154
|
name: decidim-meetings
|
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
|
156
156
|
requirements:
|
|
157
157
|
- - '='
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
|
-
version: 0.31.
|
|
159
|
+
version: 0.31.2
|
|
160
160
|
type: :development
|
|
161
161
|
prerelease: false
|
|
162
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
163
|
requirements:
|
|
164
164
|
- - '='
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
|
-
version: 0.31.
|
|
166
|
+
version: 0.31.2
|
|
167
167
|
- !ruby/object:Gem::Dependency
|
|
168
168
|
name: decidim-participatory_processes
|
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
|
170
170
|
requirements:
|
|
171
171
|
- - '='
|
|
172
172
|
- !ruby/object:Gem::Version
|
|
173
|
-
version: 0.31.
|
|
173
|
+
version: 0.31.2
|
|
174
174
|
type: :development
|
|
175
175
|
prerelease: false
|
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
|
177
177
|
requirements:
|
|
178
178
|
- - '='
|
|
179
179
|
- !ruby/object:Gem::Version
|
|
180
|
-
version: 0.31.
|
|
180
|
+
version: 0.31.2
|
|
181
181
|
description: A proposals component for decidim's participatory spaces.
|
|
182
182
|
email:
|
|
183
183
|
- josepjaume@gmail.com
|
|
@@ -568,6 +568,7 @@ files:
|
|
|
568
568
|
- config/locales/vi.yml
|
|
569
569
|
- config/locales/zh-CN.yml
|
|
570
570
|
- config/locales/zh-TW.yml
|
|
571
|
+
- db/data/20260208135005_change_users_in_action_logs_proposals.rb
|
|
571
572
|
- db/migrate/20161212110850_create_decidim_proposals.rb
|
|
572
573
|
- db/migrate/20170112115253_create_proposal_votes.rb
|
|
573
574
|
- db/migrate/20170113114245_add_text_search_indexes.rb
|