decidim-proposals 0.30.4 → 0.30.6
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/proposals/proposal_g/show.erb +1 -1
- data/app/cells/decidim/proposals/proposal_vote/show.erb +1 -1
- 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 +3 -2
- data/app/models/decidim/proposals/proposal.rb +2 -2
- data/app/presenters/decidim/proposals/proposal_presenter.rb +0 -1
- data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +8 -7
- 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/_votes_count.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 +2 -2
- data/config/locales/de.yml +2 -4
- 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 +10 -10
- data/config/locales/fi-plain.yml +0 -2
- data/config/locales/fi.yml +0 -2
- data/config/locales/fr-CA.yml +6 -2
- data/config/locales/fr.yml +6 -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 +11 -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 +410 -3
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +10 -2
- data/config/locales/ru.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sv.yml +41 -28
- 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/lib/decidim/proposals/component.rb +12 -0
- data/lib/decidim/proposals/seeds.rb +1 -1
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +20 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e7cd0b3ab3caa000c7312e538273ef7e7317ac194704dc867c4b6632c3afcff
|
|
4
|
+
data.tar.gz: c1365fa1979144c94687bb6de01ce790bcfadb88e9ec6355d0f4f78f143c53b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41e7ea8b4de34287f002916b911c065e99689c75a8e3386af77f15b1e7510ebc184a025c309cc0d16365a3a0219b3f9cd85f058dcc0d58a828db64fcd5182864
|
|
7
|
+
data.tar.gz: 87648a2de629f7f9d61634d50c7885d6be5b9c7ba277ef8609e5ff20ff1c30f4ae6f7f0ee1e258a0f61632ff14c8ab7d308c4aa85b0b518c7abfc79a1134db95
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<%= link_to resource_path, class: classes[:default], id: resource_id do %>
|
|
3
3
|
<div class="<%= classes[:img] %>">
|
|
4
4
|
<% if has_image? %>
|
|
5
|
-
<%= image_tag resource_image_path, alt:
|
|
5
|
+
<%= image_tag resource_image_path, alt: "" %>
|
|
6
6
|
<% else %>
|
|
7
7
|
<%= external_icon "media/images/proposal-placeholder-card-g.svg", class: "card__proposal-placeholder-g" %>
|
|
8
8
|
<% end %>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<% if !current_settings.votes_hidden? && (current_component.participatory_space.can_participate?(current_user) || current_user
|
|
1
|
+
<% if !current_settings.votes_hidden? && (current_component.participatory_space.can_participate?(current_user) || current_user&.admin?) %>
|
|
2
2
|
<% if component_settings.participatory_texts_enabled? && from_proposals_list %>
|
|
3
3
|
<%= render partial: "decidim/proposals/proposals/participatory_texts/proposal_votes_count", locals: { proposal: resource, from_proposals_list: true } %>
|
|
4
4
|
<% else %>
|
|
@@ -51,7 +51,9 @@ module Decidim
|
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
def valuator_role_ids
|
|
54
|
-
current_participatory_space.user_roles(:valuator)
|
|
54
|
+
roles = current_participatory_space.user_roles(:valuator)
|
|
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_valuator_role_ids_has(valuator_role_id)
|
|
@@ -17,7 +17,7 @@ module Decidim
|
|
|
17
17
|
include Paginable
|
|
18
18
|
include Decidim::AttachmentsHelper
|
|
19
19
|
|
|
20
|
-
helper_method :proposal_presenter, :form_presenter, :tab_panel_items
|
|
20
|
+
helper_method :proposal_presenter, :form_presenter, :tab_panel_items, :withdrawn_proposals?
|
|
21
21
|
|
|
22
22
|
before_action :authenticate_user!, only: [:new, :create]
|
|
23
23
|
before_action :ensure_is_draft, only: [:preview, :publish, :edit_draft, :update_draft, :destroy_draft]
|
|
@@ -234,6 +234,12 @@ module Decidim
|
|
|
234
234
|
@proposal_presenter ||= present(@proposal)
|
|
235
235
|
end
|
|
236
236
|
|
|
237
|
+
def withdrawn_proposals?
|
|
238
|
+
return @withdrawn_proposals if defined?(@withdrawn_proposals)
|
|
239
|
+
|
|
240
|
+
@withdrawn_proposals = Proposal.where(component: current_component).published.not_hidden.withdrawn.exists?
|
|
241
|
+
end
|
|
242
|
+
|
|
237
243
|
def form_proposal_params
|
|
238
244
|
form(ProposalForm).from_params(params)
|
|
239
245
|
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)
|
|
@@ -33,9 +33,10 @@ module Decidim
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
# find the
|
|
36
|
+
# find the evaluators for the current space.
|
|
37
37
|
def find_valuators_for_select(participatory_space, current_user)
|
|
38
|
-
valuator_roles = participatory_space.user_roles(:valuator)
|
|
38
|
+
valuator_roles = participatory_space.user_roles(:valuator)
|
|
39
|
+
valuator_roles = valuator_roles.order_by_name if valuator_roles.respond_to?(:order_by_name)
|
|
39
40
|
valuators = Decidim::User.where(id: valuator_roles.pluck(:decidim_user_id)).to_a
|
|
40
41
|
|
|
41
42
|
filtered_valuator_roles = valuator_roles.filter do |role|
|
|
@@ -174,8 +174,8 @@ module Decidim
|
|
|
174
174
|
A: :title,
|
|
175
175
|
datetime: :published_at
|
|
176
176
|
},
|
|
177
|
-
index_on_create: ->(proposal) { proposal.
|
|
178
|
-
index_on_update: ->(proposal) { proposal.visible? })
|
|
177
|
+
index_on_create: ->(proposal) { proposal.visible? && proposal.component&.published? },
|
|
178
|
+
index_on_update: ->(proposal) { proposal.visible? && proposal.component&.published? })
|
|
179
179
|
|
|
180
180
|
def self.log_presenter_class_for(_log)
|
|
181
181
|
Decidim::Proposals::AdminLog::ProposalPresenter
|
|
@@ -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>
|
|
@@ -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-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,4 +1,4 @@
|
|
|
1
|
-
<% if !current_settings.votes_hidden? && (current_component.participatory_space.can_participate?(current_user) || current_user
|
|
1
|
+
<% if !current_settings.votes_hidden? && (current_component.participatory_space.can_participate?(current_user) || current_user&.admin?) %>
|
|
2
2
|
<% if component_settings.participatory_texts_enabled? && from_proposals_list %>
|
|
3
3
|
<%= render partial: "decidim/proposals/proposals/participatory_texts/proposal_votes_count", locals: { proposal:, from_proposals_list: true } %>
|
|
4
4
|
<% else %>
|
|
@@ -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
|
@@ -39,7 +39,6 @@ ar:
|
|
|
39
39
|
file: ملف
|
|
40
40
|
proposals_import:
|
|
41
41
|
import_proposals: مقترحات الاستيراد
|
|
42
|
-
keep_answers: الاحتفاظ بالحالة والإجابات
|
|
43
42
|
keep_authors: الحفاظ على المؤلفين الأصلي
|
|
44
43
|
valuation_assignment:
|
|
45
44
|
admin_log:
|
|
@@ -422,7 +421,6 @@ ar:
|
|
|
422
421
|
create: مقترحات الاستيراد
|
|
423
422
|
no_components: لا توجد مكونات اقتراح أخرى في هذه المساحة التشاركية لاستيراد المقترحات منها.
|
|
424
423
|
select_component: يرجى اختيار عنصر
|
|
425
|
-
select_states: تحقق من حالة مقترحات الاستيراد
|
|
426
424
|
proposals_merges:
|
|
427
425
|
create:
|
|
428
426
|
success: دمج المقترحات بنجاح في واحدة جديدة.
|
data/config/locales/bg.yml
CHANGED
|
@@ -47,7 +47,6 @@ bg:
|
|
|
47
47
|
origin_component_id: Компонент, от който да се копират предложенията
|
|
48
48
|
proposals_import:
|
|
49
49
|
import_proposals: Копиране на предложения
|
|
50
|
-
keep_answers: Запазете състоянието и отговорите
|
|
51
50
|
keep_authors: Запази автора на оригинала
|
|
52
51
|
valuation_assignment:
|
|
53
52
|
admin_log:
|
|
@@ -511,7 +510,6 @@ bg:
|
|
|
511
510
|
create: Импортиране на предложения
|
|
512
511
|
no_components: Няма други компоненти на предложения в това пространство за участие, от които да се импортират предложенията.
|
|
513
512
|
select_component: Моля, изберете компонент
|
|
514
|
-
select_states: Проверете състоянието на предложенията за импортиране
|
|
515
513
|
title: Импортиране на предложения от друг компонент
|
|
516
514
|
proposals_merges:
|
|
517
515
|
create:
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -54,7 +54,7 @@ ca-IT:
|
|
|
54
54
|
file: Arxiu
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importar propostes
|
|
57
|
-
keep_answers: Manté
|
|
57
|
+
keep_answers: Manté els estats i les respostes
|
|
58
58
|
keep_authors: Mantenir l'autoria original
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -698,7 +698,7 @@ ca-IT:
|
|
|
698
698
|
create: Importa propostes
|
|
699
699
|
no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
|
|
700
700
|
select_component: Escull un component
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Importa només les propostes amb aquests estats. Si no s'ha seleccionat cap estat, s'importaran totes les propostes.
|
|
702
702
|
title: Importar projectes des d'un altre component
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
data/config/locales/ca.yml
CHANGED
|
@@ -54,7 +54,7 @@ ca:
|
|
|
54
54
|
file: Arxiu
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importar propostes
|
|
57
|
-
keep_answers: Manté
|
|
57
|
+
keep_answers: Manté els estats i les respostes
|
|
58
58
|
keep_authors: Mantenir l'autoria original
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -698,7 +698,7 @@ ca:
|
|
|
698
698
|
create: Importa propostes
|
|
699
699
|
no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
|
|
700
700
|
select_component: Escull un component
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Importa només les propostes amb aquests estats. Si no s'ha seleccionat cap estat, s'importaran totes les propostes.
|
|
702
702
|
title: Importar projectes des d'un altre component
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
data/config/locales/cs.yml
CHANGED
|
@@ -54,7 +54,7 @@ cs:
|
|
|
54
54
|
file: Soubor
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Návrhy na dovoz
|
|
57
|
-
keep_answers: Zachovat
|
|
57
|
+
keep_answers: Zachovat stavy a odpovědi
|
|
58
58
|
keep_authors: Uchovávejte původní autory
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -701,7 +701,7 @@ cs:
|
|
|
701
701
|
create: Návrhy na dovoz
|
|
702
702
|
no_components: V tomto účastnickém prostoru neexistují žádné jiné komponenty návrhu, které by mohly importovat návrhy.
|
|
703
703
|
select_component: Vyberte součást
|
|
704
|
-
select_states:
|
|
704
|
+
select_states: Importovat pouze návrhy s těmito stavy. Pokud není vybrán žádný, budou importovány všechny návrhy.
|
|
705
705
|
title: Importovat návrhy z jiné komponenty
|
|
706
706
|
proposals_merges:
|
|
707
707
|
create:
|
data/config/locales/de.yml
CHANGED
|
@@ -54,7 +54,6 @@ de:
|
|
|
54
54
|
file: Datei
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Vorschläge importieren
|
|
57
|
-
keep_answers: Status und Antworten behalten
|
|
58
57
|
keep_authors: Behalten Sie die ursprünglichen Autoren
|
|
59
58
|
valuation_assignment:
|
|
60
59
|
admin_log:
|
|
@@ -115,8 +114,8 @@ de:
|
|
|
115
114
|
one: Anmerkung
|
|
116
115
|
other: Anmerkungen
|
|
117
116
|
decidim/proposals/proposal_vote:
|
|
118
|
-
one:
|
|
119
|
-
other:
|
|
117
|
+
one: Stimme
|
|
118
|
+
other: Stimmen
|
|
120
119
|
decidim:
|
|
121
120
|
admin:
|
|
122
121
|
admin_log:
|
|
@@ -698,7 +697,6 @@ de:
|
|
|
698
697
|
create: Vorschläge importieren
|
|
699
698
|
no_components: In diesem partizipatorischen Bereich gibt es keine weiteren Vorschlagskomponenten, aus denen die Vorschläge importiert werden könnten.
|
|
700
699
|
select_component: Bitte wählen Sie eine Komponente aus
|
|
701
|
-
select_states: Überprüfen Sie die Status der zu importierenden Vorschläge
|
|
702
700
|
title: Vorschläge aus einer anderen Komponente importieren
|
|
703
701
|
proposals_merges:
|
|
704
702
|
create:
|
data/config/locales/el.yml
CHANGED
|
@@ -34,7 +34,6 @@ el:
|
|
|
34
34
|
origin_component_id: Στοιχείο από το οποίο θα αντιγραφούν οι προτάσεις
|
|
35
35
|
proposals_import:
|
|
36
36
|
import_proposals: Εισαγωγή προτάσεων
|
|
37
|
-
keep_answers: Διατήρηση κατάστασης και απαντήσεων
|
|
38
37
|
keep_authors: Διατήρηση αρχικών συντακτών
|
|
39
38
|
valuation_assignment:
|
|
40
39
|
admin_log:
|
|
@@ -421,7 +420,6 @@ el:
|
|
|
421
420
|
create: Εισαγωγή προτάσεων
|
|
422
421
|
no_components: Δεν υπάρχουν άλλα στοιχεία προτάσεων σε αυτόν τον χώρο συμμετοχής για εισαγωγή των προτάσεων.
|
|
423
422
|
select_component: Επιλέξτε ένα στοιχείο
|
|
424
|
-
select_states: Ελέγξτε την κατάσταση των προτάσεων προς εισαγωγή
|
|
425
423
|
proposals_merges:
|
|
426
424
|
create:
|
|
427
425
|
success: Επιτυχής συγχώνευση των προτάσεων σε μία νέα.
|
data/config/locales/en.yml
CHANGED
|
@@ -54,7 +54,7 @@ en:
|
|
|
54
54
|
file: File
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Import proposals
|
|
57
|
-
keep_answers: Keep
|
|
57
|
+
keep_answers: Keep statuses and answers
|
|
58
58
|
keep_authors: Keep original authors
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -698,7 +698,7 @@ en:
|
|
|
698
698
|
create: Import proposals
|
|
699
699
|
no_components: There are no other proposal components in this participatory space to import the proposals from.
|
|
700
700
|
select_component: Please select a component
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Import only proposals with these statuses. If none are selected, all proposals will be imported.
|
|
702
702
|
title: Import proposals from another component
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -54,7 +54,7 @@ es-MX:
|
|
|
54
54
|
file: Archivo
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Propuestas de importación
|
|
57
|
-
keep_answers: Mantener
|
|
57
|
+
keep_answers: Mantener estados y respuestas
|
|
58
58
|
keep_authors: Mantener autores originales
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -698,7 +698,7 @@ es-MX:
|
|
|
698
698
|
create: Importar propuestas
|
|
699
699
|
no_components: No hay otros componentes propuesta en este espacio participativo desde el que importar.
|
|
700
700
|
select_component: Por favor selecciona un componente
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
702
702
|
title: Importar propuestas desde otro componente
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -54,7 +54,7 @@ es-PY:
|
|
|
54
54
|
file: Archivo
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Propuestas de importación
|
|
57
|
-
keep_answers: Mantener
|
|
57
|
+
keep_answers: Mantener estados y respuestas
|
|
58
58
|
keep_authors: Mantener autores originales
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -698,7 +698,7 @@ es-PY:
|
|
|
698
698
|
create: Importar propuestas
|
|
699
699
|
no_components: No hay otros componentes propuesta en este espacio participativo desde el que importar.
|
|
700
700
|
select_component: Por favor selecciona un componente
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
702
702
|
title: Importar propuestas desde otro componente
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
data/config/locales/es.yml
CHANGED
|
@@ -54,7 +54,7 @@ es:
|
|
|
54
54
|
file: Archivo
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importar propuestas
|
|
57
|
-
keep_answers: Mantener
|
|
57
|
+
keep_answers: Mantener estados y respuestas
|
|
58
58
|
keep_authors: Mantener autoría original
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -698,7 +698,7 @@ es:
|
|
|
698
698
|
create: Importar propuestas
|
|
699
699
|
no_components: No hay otros componentes de propuestas en este espacio participativo desde donde importarlas.
|
|
700
700
|
select_component: Selecciona un componente
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Importar solo propuestas con estos estados. Si no se selecciona ningún estado, todas las propuestas serán importadas.
|
|
702
702
|
title: Importar propuestas desde otro componente
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
data/config/locales/eu.yml
CHANGED
|
@@ -54,7 +54,7 @@ eu:
|
|
|
54
54
|
file: Fitxategia
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Proposamenak inportatu
|
|
57
|
-
keep_answers:
|
|
57
|
+
keep_answers: Egoera-orriak eta erantzunak mantendu
|
|
58
58
|
keep_authors: Mantendu jatorrizko egileak
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -340,7 +340,7 @@ eu:
|
|
|
340
340
|
endorsing_enabled:
|
|
341
341
|
email_intro: 'Proposamenak egin ditzakezu %{participatory_space_title} parte hartze espazioan! Hasi orri honetan parte hartzen:'
|
|
342
342
|
email_outro: Jakinarazpen hau jaso duzu %{participatory_space_title} jarraitzen ari zarelako. Jakinarazpenak jasotzeari utzi ahal diozu aurreko estekan.
|
|
343
|
-
email_subject:
|
|
343
|
+
email_subject: '%{participatory_space_title} espazioko proposamenei atxikimenduak adierazteko aukera dago'
|
|
344
344
|
notification_title: 'Orain has zaitezke <a href="%{resource_path}"></a> proposamenak onartzen hemen: <a href="%{participatory_space_url}">%{participatory_space_title}</a>.'
|
|
345
345
|
proposal_mentioned:
|
|
346
346
|
email_intro: Zure proposamen hau "%{mentioned_proposal_title}" aipatu da <a href="%{resource_url}"> iruzkinen</a> espazioan.
|
|
@@ -355,7 +355,7 @@ eu:
|
|
|
355
355
|
proposal_published_for_space:
|
|
356
356
|
email_intro: '"%{resource_title}" proposamena jarraizten ari zaren ondorengo "%{participatory_space_title}" espazioan erantsi zaizu.'
|
|
357
357
|
email_outro: Jakinarazpen hau jaso duzu "%{participatory_space_title}" jarraitzen ari zarelako. Jarraitzeari uzti ahal diozu aurreko estekan.
|
|
358
|
-
email_subject: '"%{resource_title}" proposamen berria
|
|
358
|
+
email_subject: '%{participatory_space_title} espazioan "%{resource_title}" proposamen berria egin da'
|
|
359
359
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> proposamena %{participatory_space_title}-era gehitu du %{author} egileak.
|
|
360
360
|
notification_title_official: 'Proposamen ofiziala hona gehitu da: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
361
361
|
proposal_state_changed:
|
|
@@ -385,7 +385,7 @@ eu:
|
|
|
385
385
|
badges:
|
|
386
386
|
accepted_proposals:
|
|
387
387
|
conditions:
|
|
388
|
-
- Aukeratu zure intereseko partaidetza
|
|
388
|
+
- Aukeratu zure intereseko partaidetza-espazioa proposamenak bidaltzeko
|
|
389
389
|
- Egin daitezkeen proposamenak egiten saiatu. Horrela onartuak izateko aukera gehiago dute.
|
|
390
390
|
description: Garaikur hau proposamen berriekin aktiboki parte hartzen duzunean eta horiek onartzen direnean ematen da
|
|
391
391
|
description_another: Parte-hartzaile honek %{score} proposamen onartu ditu.
|
|
@@ -407,7 +407,7 @@ eu:
|
|
|
407
407
|
unearned_own: Oraindik ez duzu proposamenik bozkatu.
|
|
408
408
|
proposals:
|
|
409
409
|
conditions:
|
|
410
|
-
- Aukeratu zure interesekoa den
|
|
410
|
+
- Aukeratu zure interesekoa den partaidetza-espazioa, gaitutako proposamenak aurkeztuta
|
|
411
411
|
- Sortu beste proposamen bat
|
|
412
412
|
description: Garaikur hau proposamen berriekin modu aktiboan parte hartzen duzunean ematen da.
|
|
413
413
|
description_another: Parte-hartzaile honek %{score} proposamen sortu ditu.
|
|
@@ -609,7 +609,7 @@ eu:
|
|
|
609
609
|
destroy:
|
|
610
610
|
success: Egoera behar bezala ezabatua
|
|
611
611
|
edit:
|
|
612
|
-
title:
|
|
612
|
+
title: Egoera editatu
|
|
613
613
|
update: Eguneratu
|
|
614
614
|
form:
|
|
615
615
|
preview: Aurrebistaratu
|
|
@@ -698,7 +698,7 @@ eu:
|
|
|
698
698
|
create: Inportatu proposamenak
|
|
699
699
|
no_components: Espazio honetan ez dago beste proposamenik proposamenak inportatzeko.
|
|
700
700
|
select_component: Mesedez, hautatu osagaia
|
|
701
|
-
select_states:
|
|
701
|
+
select_states: Inportatu proposamenak egoera horiekin soilik. Egoerarik hautatzen ez bada, proposamen guztiak inportatuko dira.
|
|
702
702
|
title: Inportatu proposamenak beste osagai batetik
|
|
703
703
|
proposals_merges:
|
|
704
704
|
create:
|
|
@@ -732,7 +732,7 @@ eu:
|
|
|
732
732
|
accepted: Onartuta
|
|
733
733
|
evaluating: Ebaluatzen
|
|
734
734
|
not_answered: Erantzun gabe
|
|
735
|
-
rejected:
|
|
735
|
+
rejected: Bazteruta
|
|
736
736
|
withdrawn: Kendu
|
|
737
737
|
application_helper:
|
|
738
738
|
filter_origin_values:
|
|
@@ -1012,7 +1012,7 @@ eu:
|
|
|
1012
1012
|
already_voted_hover: Kendu babesa
|
|
1013
1013
|
maximum_votes_reached: Babesen muga lortua
|
|
1014
1014
|
no_votes_remaining: Ez da gelditzen babesik
|
|
1015
|
-
vote:
|
|
1015
|
+
vote: Babesa eman
|
|
1016
1016
|
votes_blocked: Eman botoa
|
|
1017
1017
|
votes_count:
|
|
1018
1018
|
count:
|
|
@@ -1035,7 +1035,7 @@ eu:
|
|
|
1035
1035
|
title: Parte hartzeko arauak
|
|
1036
1036
|
vote_limit:
|
|
1037
1037
|
description: '%{limit} proposameni eman ahal diozu babesa.'
|
|
1038
|
-
votes:
|
|
1038
|
+
votes: '%{number} boto emateke'
|
|
1039
1039
|
wizard_aside:
|
|
1040
1040
|
back: Atzera
|
|
1041
1041
|
back_from_step_1: Itzuli proposamenetara
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -54,7 +54,6 @@ fi-pl:
|
|
|
54
54
|
file: Tiedosto
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Tuo ehdotuksia
|
|
57
|
-
keep_answers: Säilytä tilat ja vastaukset
|
|
58
57
|
keep_authors: Säilytä alkuperäiset laatijat
|
|
59
58
|
valuation_assignment:
|
|
60
59
|
admin_log:
|
|
@@ -698,7 +697,6 @@ fi-pl:
|
|
|
698
697
|
create: Tuo ehdotuksia
|
|
699
698
|
no_components: Tässä osallisuustilassa ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
|
700
699
|
select_component: Valitse komponentti
|
|
701
|
-
select_states: Tarkista tuotavien ehdotusten tilat
|
|
702
700
|
title: Tuo ehdotuksia toisesta komponentista
|
|
703
701
|
proposals_merges:
|
|
704
702
|
create:
|
data/config/locales/fi.yml
CHANGED
|
@@ -54,7 +54,6 @@ fi:
|
|
|
54
54
|
file: Tiedosto
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Tuo ehdotuksia
|
|
57
|
-
keep_answers: Säilytä tilat ja vastaukset
|
|
58
57
|
keep_authors: Säilytä alkuperäiset laatijat
|
|
59
58
|
valuation_assignment:
|
|
60
59
|
admin_log:
|
|
@@ -698,7 +697,6 @@ fi:
|
|
|
698
697
|
create: Tuo ehdotuksia
|
|
699
698
|
no_components: Tässä osallistumistilassa ei ole muita ehdotuskomponentteja ehdotusten tuomiseksi.
|
|
700
699
|
select_component: Valitse komponentti
|
|
701
|
-
select_states: Tarkista tuotavien ehdotusten tilat
|
|
702
700
|
title: Tuo ehdotuksia toisesta komponentista
|
|
703
701
|
proposals_merges:
|
|
704
702
|
create:
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -54,7 +54,7 @@ fr-CA:
|
|
|
54
54
|
file: Fichier
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importer des propositions
|
|
57
|
-
keep_answers:
|
|
57
|
+
keep_answers: Conserver les états et les réponses
|
|
58
58
|
keep_authors: Gardez les auteurs originaux
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -87,6 +87,7 @@ fr-CA:
|
|
|
87
87
|
not_official: Non officiels
|
|
88
88
|
voted: A reçu des votes ou des soutiens
|
|
89
89
|
models:
|
|
90
|
+
decidim/proposals/admin/update_proposal_taxonomies_event: Taxonomies de la proposition changées
|
|
90
91
|
decidim/proposals/creation_enabled_event: Autoriser la création de nouvelles propositions
|
|
91
92
|
decidim/proposals/endorsing_enabled_event: Activer le module de soutiens
|
|
92
93
|
decidim/proposals/proposal_mentioned_event: Proposition mentionnée
|
|
@@ -99,6 +100,8 @@ fr-CA:
|
|
|
99
100
|
proposal:
|
|
100
101
|
budget_text: La proposition <span class="resource-link">%{link} a été créée</span>
|
|
101
102
|
import_to_proposal_text: Cette proposition <span "resource-link">%{link} a été créée</span>
|
|
103
|
+
merge_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
104
|
+
split_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
102
105
|
decidim/proposals/collaborative_draft:
|
|
103
106
|
one: Brouillon collaboratif
|
|
104
107
|
other: Brouillons collaboratifs
|
|
@@ -189,6 +192,7 @@ fr-CA:
|
|
|
189
192
|
edit_time_units:
|
|
190
193
|
days: Jours
|
|
191
194
|
hours: Heures
|
|
195
|
+
minutes: Compte-rendus
|
|
192
196
|
geocoding_enabled: Cartes activées
|
|
193
197
|
minimum_votes_per_user: Nombre minimum de votes par utilisateur
|
|
194
198
|
new_proposal_body_template: Modèle de corps d'une nouvelle proposition
|
|
@@ -616,7 +620,7 @@ fr-CA:
|
|
|
616
620
|
create: Importer des propositions
|
|
617
621
|
no_components: Il n'y a pas d'autre fonctionnalité de proposition dans cet espace participatif dans laquelle importer les propositions.
|
|
618
622
|
select_component: Veuillez sélectionner une fonctionnalité
|
|
619
|
-
select_states:
|
|
623
|
+
select_states: Importer uniquement des propositions avec ces états. Si aucun n'est sélectionné, toutes les propositions seront importées.
|
|
620
624
|
title: Importer des propositions depuis une autre fonctionnalité
|
|
621
625
|
proposals_merges:
|
|
622
626
|
create:
|
data/config/locales/fr.yml
CHANGED
|
@@ -54,7 +54,7 @@ fr:
|
|
|
54
54
|
file: Fichier
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importer des propositions
|
|
57
|
-
keep_answers: Conserver
|
|
57
|
+
keep_answers: Conserver les états et les réponses
|
|
58
58
|
keep_authors: Gardez les auteurs originaux
|
|
59
59
|
valuation_assignment:
|
|
60
60
|
admin_log:
|
|
@@ -87,6 +87,7 @@ fr:
|
|
|
87
87
|
not_official: Non officiels
|
|
88
88
|
voted: A reçu des votes ou des soutiens
|
|
89
89
|
models:
|
|
90
|
+
decidim/proposals/admin/update_proposal_taxonomies_event: Taxonomies de la proposition changées
|
|
90
91
|
decidim/proposals/creation_enabled_event: Autoriser la création de nouvelles propositions
|
|
91
92
|
decidim/proposals/endorsing_enabled_event: Activer le module de soutiens
|
|
92
93
|
decidim/proposals/proposal_mentioned_event: Proposition mentionnée
|
|
@@ -99,6 +100,8 @@ fr:
|
|
|
99
100
|
proposal:
|
|
100
101
|
budget_text: La proposition <span class="resource-link">%{link} a été créée</span>
|
|
101
102
|
import_to_proposal_text: Cette proposition <span "resource-link">%{link} a été créée</span>
|
|
103
|
+
merge_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
104
|
+
split_to_proposal_text: 'Cette proposition a été créée : %{link}'
|
|
102
105
|
decidim/proposals/collaborative_draft:
|
|
103
106
|
one: Brouillon collaboratif
|
|
104
107
|
other: Brouillons collaboratifs
|
|
@@ -189,6 +192,7 @@ fr:
|
|
|
189
192
|
edit_time_units:
|
|
190
193
|
days: Jours
|
|
191
194
|
hours: Heures
|
|
195
|
+
minutes: Compte-rendus
|
|
192
196
|
geocoding_enabled: Cartes activées
|
|
193
197
|
minimum_votes_per_user: Nombre minimum de votes par utilisateur
|
|
194
198
|
new_proposal_body_template: Modèle de corps d'une nouvelle proposition
|
|
@@ -616,7 +620,7 @@ fr:
|
|
|
616
620
|
create: Importer des propositions
|
|
617
621
|
no_components: Il n'y a pas d'autre fonctionnalité de proposition dans cet espace participatif dans laquelle importer les propositions.
|
|
618
622
|
select_component: Veuillez sélectionner une fonctionnalité
|
|
619
|
-
select_states:
|
|
623
|
+
select_states: Importer uniquement des propositions avec ces états. Si aucun n'est sélectionné, toutes les propositions seront importées.
|
|
620
624
|
title: Importer des propositions depuis une autre fonctionnalité
|
|
621
625
|
proposals_merges:
|
|
622
626
|
create:
|
data/config/locales/gl.yml
CHANGED
|
@@ -33,7 +33,6 @@ gl:
|
|
|
33
33
|
origin_component_id: Componente para copiar as propostas de
|
|
34
34
|
proposals_import:
|
|
35
35
|
import_proposals: Propostas de importación
|
|
36
|
-
keep_answers: Manter o estado e as respostas
|
|
37
36
|
keep_authors: Mantén os autores orixinais
|
|
38
37
|
valuation_assignment:
|
|
39
38
|
admin_log:
|
|
@@ -334,7 +333,6 @@ gl:
|
|
|
334
333
|
create: Propostas de importación
|
|
335
334
|
no_components: Non existen outros compoñentes de proposta neste espazo participativo para importar as propostas.
|
|
336
335
|
select_component: Selecciona un compoñente
|
|
337
|
-
select_states: Comprobe os estados das propostas para importar
|
|
338
336
|
proposals_merges:
|
|
339
337
|
create:
|
|
340
338
|
success: Fusionou con éxito as propostas nun novo.
|