decidim-proposals 0.30.5 → 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/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/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/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 +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 +4 -4
- 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 +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 +0 -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 +4 -4
- 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/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
|
|
@@ -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|
|
|
@@ -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,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:
|
|
@@ -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:
|
|
@@ -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:
|
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.
|
data/config/locales/hu.yml
CHANGED
|
@@ -390,7 +390,6 @@ hu:
|
|
|
390
390
|
create: Javaslatok importálása
|
|
391
391
|
no_components: Ebben a részvételi térben nincs több javaslati elem az importálásához.
|
|
392
392
|
select_component: Válassz ki egy elemet
|
|
393
|
-
select_states: Ellenőrizd az importálandó javaslatok állapotát
|
|
394
393
|
proposals_merges:
|
|
395
394
|
create:
|
|
396
395
|
success: A javaslatokat sikeresen egy újba egyesítettük.
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -253,7 +253,6 @@ id:
|
|
|
253
253
|
create: Mengimpor proposal
|
|
254
254
|
no_components: Tidak ada komponen proposal lain dalam ruang partisipatif ini untuk mengimpor proposal dari.
|
|
255
255
|
select_component: Silakan pilih komponen
|
|
256
|
-
select_states: Periksa status proposal untuk diimpor
|
|
257
256
|
proposals_merges:
|
|
258
257
|
create:
|
|
259
258
|
success: Berhasil menggabungkan proposal menjadi proposal baru.
|
data/config/locales/it.yml
CHANGED
|
@@ -33,7 +33,6 @@ it:
|
|
|
33
33
|
origin_component_id: Componente per copiare le proposte da
|
|
34
34
|
proposals_import:
|
|
35
35
|
import_proposals: Importa proposte
|
|
36
|
-
keep_answers: Mantieni stato e risposte
|
|
37
36
|
keep_authors: Mantieni gli autori originali
|
|
38
37
|
valuation_assignment:
|
|
39
38
|
admin_log:
|
|
@@ -361,7 +360,6 @@ it:
|
|
|
361
360
|
create: Importa proposte
|
|
362
361
|
no_components: Non ci sono altri componenti di proposta in questo spazio partecipativo per importare le proposte da.
|
|
363
362
|
select_component: Si prega di selezionare un componente
|
|
364
|
-
select_states: Controlla gli stati delle proposte da importare
|
|
365
363
|
proposals_merges:
|
|
366
364
|
create:
|
|
367
365
|
success: Fuse con successo le proposte in una nuova.
|
data/config/locales/ja.yml
CHANGED
|
@@ -690,7 +690,7 @@ ja:
|
|
|
690
690
|
create: 提案をインポート
|
|
691
691
|
no_components: この参加スペースには他の提案コンポーネントはありません。
|
|
692
692
|
select_component: コンポーネントを選択してください
|
|
693
|
-
select_states:
|
|
693
|
+
select_states: 選択されたステータスを持つ提案のみをインポートします。何も選択されていない場合、すべての提案をインポートします。
|
|
694
694
|
title: 別のコンポーネントから提案をインポート
|
|
695
695
|
proposals_merges:
|
|
696
696
|
create:
|
data/config/locales/lt.yml
CHANGED
|
@@ -34,7 +34,6 @@ lt:
|
|
|
34
34
|
origin_component_id: Komponentas, skirtas kopijuoti pasiūlymams iš
|
|
35
35
|
proposals_import:
|
|
36
36
|
import_proposals: Importuoti pasiūlymus
|
|
37
|
-
keep_answers: Išlaikyti būseną ir atsakymus
|
|
38
37
|
keep_authors: Išlaikyti originalius autorius
|
|
39
38
|
valuation_assignment:
|
|
40
39
|
admin_log:
|
|
@@ -431,7 +430,6 @@ lt:
|
|
|
431
430
|
create: Importuoti pasiūlymus
|
|
432
431
|
no_components: Šioje dalyvaujamojo proceso erdvėje nėra kitų pasiūlymų komponentų, iš kurių būtų galima importuoti pasiūlymus.
|
|
433
432
|
select_component: Pasirinkite komponentą
|
|
434
|
-
select_states: Patikrinti importuoti skirtų pasiūlymų būseną
|
|
435
433
|
proposals_merges:
|
|
436
434
|
create:
|
|
437
435
|
success: Pasiūlymai sulieti į vieną naują pasiūlymą.
|
data/config/locales/lv.yml
CHANGED
|
@@ -310,7 +310,6 @@ lv:
|
|
|
310
310
|
create: Importēt priekšlikumus
|
|
311
311
|
no_components: Šajā līdzdalības telpā nav citu priekšlikumu komentāru, no kuriem importēt priekšlikumus.
|
|
312
312
|
select_component: Lūdzu, izvēlieties komponentu
|
|
313
|
-
select_states: Pārbaudiet importējamo priekšlikumu statusu
|
|
314
313
|
proposals_merges:
|
|
315
314
|
create:
|
|
316
315
|
success: Visi priekšlikumi ir veiksmīgi apvienoti vienā jaunā priekšlikumā.
|
data/config/locales/nl.yml
CHANGED
|
@@ -33,7 +33,6 @@ nl:
|
|
|
33
33
|
origin_component_id: Onderdeel om de voorstellen te kopiëren van
|
|
34
34
|
proposals_import:
|
|
35
35
|
import_proposals: Voorstellen importeren
|
|
36
|
-
keep_answers: Status en antwoorden behouden
|
|
37
36
|
keep_authors: Bewaar originele auteurs
|
|
38
37
|
valuation_assignment:
|
|
39
38
|
admin_log:
|
|
@@ -368,7 +367,6 @@ nl:
|
|
|
368
367
|
create: Geïmporteerde voorstellen
|
|
369
368
|
no_components: Er zijn geen andere componenten van het voorstel in deze participatieruimte om de voorstellen in te voeren.
|
|
370
369
|
select_component: Selecteer een onderdeel
|
|
371
|
-
select_states: Controleer de status van de voorstellen om te importeren
|
|
372
370
|
proposals_merges:
|
|
373
371
|
create:
|
|
374
372
|
success: De voorstellen zijn succesvol samengevoegd tot een nieuwe.
|
data/config/locales/no.yml
CHANGED
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
origin_component_id: Komponent å kopiere forslagene fra
|
|
34
34
|
proposals_import:
|
|
35
35
|
import_proposals: Importer forslag
|
|
36
|
-
keep_answers: Behold status og svar
|
|
37
36
|
keep_authors: Behold originale forfattere
|
|
38
37
|
errors:
|
|
39
38
|
models:
|
|
@@ -359,7 +358,6 @@
|
|
|
359
358
|
create: Importer forslag
|
|
360
359
|
no_components: Det er ingen andre forslags komponetner i dette deltaker området å importere forslagene fra.
|
|
361
360
|
select_component: Velg en komponent
|
|
362
|
-
select_states: Sjekk statusen til forslagene som skal importeres
|
|
363
361
|
proposals_merges:
|
|
364
362
|
create:
|
|
365
363
|
success: Slo sammen forslagene til et nytt ett.
|
data/config/locales/pl.yml
CHANGED
|
@@ -47,7 +47,6 @@ pl:
|
|
|
47
47
|
origin_component_id: Komponent z którego kopiuję propozycję
|
|
48
48
|
proposals_import:
|
|
49
49
|
import_proposals: Importuj propozycje
|
|
50
|
-
keep_answers: Zachowaj stan i odpowiedzi
|
|
51
50
|
keep_authors: Zachowaj oryginalnych autorów
|
|
52
51
|
valuation_assignment:
|
|
53
52
|
admin_log:
|
|
@@ -513,7 +512,6 @@ pl:
|
|
|
513
512
|
create: Importuj propozycje
|
|
514
513
|
no_components: W tej przestrzeni partycypacyjnej nie ma innych komponentów propozycji do zaimportowania propozycji.
|
|
515
514
|
select_component: Wybierz komponent
|
|
516
|
-
select_states: Sprawdź statusy propozycji do zaimportowania
|
|
517
515
|
title: Importuj propozycje z innego komponentu
|
|
518
516
|
proposals_merges:
|
|
519
517
|
create:
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -54,7 +54,6 @@ pt-BR:
|
|
|
54
54
|
file: Arquivo
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importar propostas
|
|
57
|
-
keep_answers: Manter o estado e as respostas
|
|
58
57
|
keep_authors: Mantenha os autores originais
|
|
59
58
|
valuation_assignment:
|
|
60
59
|
admin_log:
|
|
@@ -692,7 +691,6 @@ pt-BR:
|
|
|
692
691
|
create: Propostas de importação
|
|
693
692
|
no_components: Não há outros componentes da proposta neste espaço participativo para importar as propostas.
|
|
694
693
|
select_component: Selecione um componente
|
|
695
|
-
select_states: Verifique os estados das propostas para importar
|
|
696
694
|
title: Importar propostas de outro componente
|
|
697
695
|
proposals_merges:
|
|
698
696
|
create:
|
data/config/locales/pt.yml
CHANGED
|
@@ -33,7 +33,6 @@ pt:
|
|
|
33
33
|
origin_component_id: Componente para copiar as propostas de
|
|
34
34
|
proposals_import:
|
|
35
35
|
import_proposals: Importar propostas
|
|
36
|
-
keep_answers: Guardar estado e respostas
|
|
37
36
|
keep_authors: Manter os autores originais
|
|
38
37
|
valuation_assignment:
|
|
39
38
|
admin_log:
|
|
@@ -367,7 +366,6 @@ pt:
|
|
|
367
366
|
create: Importar propostas
|
|
368
367
|
no_components: Não há outros componentes da proposta neste espaço participativo de onde importar as propostas.
|
|
369
368
|
select_component: Selecione um componente
|
|
370
|
-
select_states: Verifique os estados das propostas a importar
|
|
371
369
|
proposals_merges:
|
|
372
370
|
create:
|
|
373
371
|
success: Fundiu corretamente as propostas em uma nova.
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -33,7 +33,7 @@ ro:
|
|
|
33
33
|
origin_component_id: Componentă de la care se copiază propunerile
|
|
34
34
|
proposals_import:
|
|
35
35
|
import_proposals: Importă propuneri
|
|
36
|
-
keep_answers:
|
|
36
|
+
keep_answers: Păstrați statusuri și răspunsuri
|
|
37
37
|
keep_authors: Păstrează autorii originali
|
|
38
38
|
valuation_assignment:
|
|
39
39
|
admin_log:
|
|
@@ -410,7 +410,7 @@ ro:
|
|
|
410
410
|
create: Importă propuneri
|
|
411
411
|
no_components: Nu există alte componente de propunere în acest spațiu participativ din care să se importe propunerile.
|
|
412
412
|
select_component: Te rugăm selectează o componentă
|
|
413
|
-
select_states:
|
|
413
|
+
select_states: Importați doar propunerile cu aceste statusuri. Dacă nu este selectat, toate propunerile vor fi importate.
|
|
414
414
|
proposals_merges:
|
|
415
415
|
create:
|
|
416
416
|
success: Propunerile au fost combinate cu succes într-o propunere nouă.
|
data/config/locales/ru.yml
CHANGED
|
@@ -141,7 +141,6 @@ ru:
|
|
|
141
141
|
create: Позаимствовать предложения
|
|
142
142
|
no_components: В этом пространстве соучастия нет других составляющих предложений, из которых можно было бы позаимствовать предложения.
|
|
143
143
|
select_component: Пожалуйста, выберите составляющую
|
|
144
|
-
select_states: Проверьте состояние предложений, которые вы хотите позаимствовать
|
|
145
144
|
admin_log:
|
|
146
145
|
proposal:
|
|
147
146
|
answer: "%{user_name} ответил на предложение %{resource_name} в пространстве %{space_name}"
|
data/config/locales/sk.yml
CHANGED
|
@@ -312,7 +312,6 @@ sk:
|
|
|
312
312
|
create: Návrhy na dovoz
|
|
313
313
|
no_components: V tomto účastníckom priestore neexistujú žiadne iné komponenty návrhu, ktoré by mohli importovať návrhy.
|
|
314
314
|
select_component: Vyberte súčasť
|
|
315
|
-
select_states: Skontrolujte stav návrhov, ktoré chcete importovať
|
|
316
315
|
proposals_merges:
|
|
317
316
|
create:
|
|
318
317
|
success: Projekty boli úspešne zlúčené do novej.
|
data/config/locales/sv.yml
CHANGED
|
@@ -54,7 +54,6 @@ sv:
|
|
|
54
54
|
file: Fil
|
|
55
55
|
proposals_import:
|
|
56
56
|
import_proposals: Importera förslag
|
|
57
|
-
keep_answers: Behåll status och svar
|
|
58
57
|
keep_authors: Behåll originalförfattare
|
|
59
58
|
valuation_assignment:
|
|
60
59
|
admin_log:
|
|
@@ -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
|
|
@@ -445,6 +444,8 @@ sv:
|
|
|
445
444
|
locale: Kommentarförfattarens språk
|
|
446
445
|
root_commentable_url: URL till innehållet som är relaterat till kommentaren
|
|
447
446
|
user_group: Namn på gruppen som kommenterat (om det var en grupp)
|
|
447
|
+
proposals:
|
|
448
|
+
endorsements: Antal gilla-markeringar för förslaget
|
|
448
449
|
participatory_spaces:
|
|
449
450
|
highlighted_proposals:
|
|
450
451
|
see_all: Visa alla förslag
|
|
@@ -627,7 +628,6 @@ sv:
|
|
|
627
628
|
create: Importera förslag
|
|
628
629
|
no_components: Det finns inga andra förslagskomponenter i detta deltagarutrymme att importera förslagen från.
|
|
629
630
|
select_component: Välj en komponent
|
|
630
|
-
select_states: Kontrollera status för förslagen som ska importeras
|
|
631
631
|
title: Importera förslag från en annan komponent
|
|
632
632
|
proposals_merges:
|
|
633
633
|
create:
|
|
@@ -933,7 +933,7 @@ sv:
|
|
|
933
933
|
description: Du kan skapa upp till %{limit} förslag.
|
|
934
934
|
success: Din röst har tagits emot
|
|
935
935
|
threshold_per_proposal:
|
|
936
|
-
description: Förslag behöver få minst %{limit} röster för
|
|
936
|
+
description: Förslag behöver få minst %{limit} röster för att gå vidare.
|
|
937
937
|
title: Regler för omröstning
|
|
938
938
|
vote_limit:
|
|
939
939
|
description: Du kan stödja upp till %{limit} förslag.
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -386,7 +386,6 @@ tr:
|
|
|
386
386
|
create: Teklifleri içe aktar
|
|
387
387
|
no_components: Teklifleri içe aktarmak için bu katılımcı alanda başka hiçbir teklif bileşeni bulunmamaktadır.
|
|
388
388
|
select_component: Lütfen bir bileşen seçiniz
|
|
389
|
-
select_states: İçe aktarılacak tekliflerin durumlarını kontrol et
|
|
390
389
|
proposals_merges:
|
|
391
390
|
create:
|
|
392
391
|
success: Teklifler, yeni bir taneyle başarılı bir şekilde birleştirildi.
|
data/config/locales/uk.yml
CHANGED
|
@@ -141,7 +141,6 @@ uk:
|
|
|
141
141
|
create: Запозичити пропозиції
|
|
142
142
|
no_components: У цьому просторі співучасті немає інших складових пропозицій, звідки можна було б запозичити пропозиції.
|
|
143
143
|
select_component: Будь ласка, оберіть складову
|
|
144
|
-
select_states: Перевірте стани пропозицій, які бажаєте запозичити
|
|
145
144
|
admin_log:
|
|
146
145
|
proposal:
|
|
147
146
|
answer: "%{user_name} відповів на пропозицію %{resource_name} у просторі %{space_name}"
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
|
@@ -34,7 +34,6 @@ zh-TW:
|
|
|
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:
|
|
@@ -410,7 +409,6 @@ zh-TW:
|
|
|
410
409
|
create: 匯入提案
|
|
411
410
|
no_components: 這個參與空間中沒有其他的提案元件可以匯入提案。
|
|
412
411
|
select_component: 請選擇一個組件
|
|
413
|
-
select_states: 檢查要匯入的提案狀態。
|
|
414
412
|
proposals_merges:
|
|
415
413
|
create:
|
|
416
414
|
success: 已成功合併提案成為新的提案。
|
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.30.
|
|
4
|
+
version: 0.30.6
|
|
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.30.
|
|
21
|
+
version: 0.30.6
|
|
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.30.
|
|
28
|
+
version: 0.30.6
|
|
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.30.
|
|
35
|
+
version: 0.30.6
|
|
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.30.
|
|
42
|
+
version: 0.30.6
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: doc2text
|
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -80,98 +80,98 @@ dependencies:
|
|
|
80
80
|
requirements:
|
|
81
81
|
- - '='
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version: 0.30.
|
|
83
|
+
version: 0.30.6
|
|
84
84
|
type: :development
|
|
85
85
|
prerelease: false
|
|
86
86
|
version_requirements: !ruby/object:Gem::Requirement
|
|
87
87
|
requirements:
|
|
88
88
|
- - '='
|
|
89
89
|
- !ruby/object:Gem::Version
|
|
90
|
-
version: 0.30.
|
|
90
|
+
version: 0.30.6
|
|
91
91
|
- !ruby/object:Gem::Dependency
|
|
92
92
|
name: decidim-assemblies
|
|
93
93
|
requirement: !ruby/object:Gem::Requirement
|
|
94
94
|
requirements:
|
|
95
95
|
- - '='
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: 0.30.
|
|
97
|
+
version: 0.30.6
|
|
98
98
|
type: :development
|
|
99
99
|
prerelease: false
|
|
100
100
|
version_requirements: !ruby/object:Gem::Requirement
|
|
101
101
|
requirements:
|
|
102
102
|
- - '='
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: 0.30.
|
|
104
|
+
version: 0.30.6
|
|
105
105
|
- !ruby/object:Gem::Dependency
|
|
106
106
|
name: decidim-budgets
|
|
107
107
|
requirement: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
|
109
109
|
- - '='
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
|
-
version: 0.30.
|
|
111
|
+
version: 0.30.6
|
|
112
112
|
type: :development
|
|
113
113
|
prerelease: false
|
|
114
114
|
version_requirements: !ruby/object:Gem::Requirement
|
|
115
115
|
requirements:
|
|
116
116
|
- - '='
|
|
117
117
|
- !ruby/object:Gem::Version
|
|
118
|
-
version: 0.30.
|
|
118
|
+
version: 0.30.6
|
|
119
119
|
- !ruby/object:Gem::Dependency
|
|
120
120
|
name: decidim-conference
|
|
121
121
|
requirement: !ruby/object:Gem::Requirement
|
|
122
122
|
requirements:
|
|
123
123
|
- - '='
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
|
-
version: 0.30.
|
|
125
|
+
version: 0.30.6
|
|
126
126
|
type: :development
|
|
127
127
|
prerelease: false
|
|
128
128
|
version_requirements: !ruby/object:Gem::Requirement
|
|
129
129
|
requirements:
|
|
130
130
|
- - '='
|
|
131
131
|
- !ruby/object:Gem::Version
|
|
132
|
-
version: 0.30.
|
|
132
|
+
version: 0.30.6
|
|
133
133
|
- !ruby/object:Gem::Dependency
|
|
134
134
|
name: decidim-dev
|
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
|
137
137
|
- - '='
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version: 0.30.
|
|
139
|
+
version: 0.30.6
|
|
140
140
|
type: :development
|
|
141
141
|
prerelease: false
|
|
142
142
|
version_requirements: !ruby/object:Gem::Requirement
|
|
143
143
|
requirements:
|
|
144
144
|
- - '='
|
|
145
145
|
- !ruby/object:Gem::Version
|
|
146
|
-
version: 0.30.
|
|
146
|
+
version: 0.30.6
|
|
147
147
|
- !ruby/object:Gem::Dependency
|
|
148
148
|
name: decidim-meetings
|
|
149
149
|
requirement: !ruby/object:Gem::Requirement
|
|
150
150
|
requirements:
|
|
151
151
|
- - '='
|
|
152
152
|
- !ruby/object:Gem::Version
|
|
153
|
-
version: 0.30.
|
|
153
|
+
version: 0.30.6
|
|
154
154
|
type: :development
|
|
155
155
|
prerelease: false
|
|
156
156
|
version_requirements: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements:
|
|
158
158
|
- - '='
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version: 0.30.
|
|
160
|
+
version: 0.30.6
|
|
161
161
|
- !ruby/object:Gem::Dependency
|
|
162
162
|
name: decidim-participatory_processes
|
|
163
163
|
requirement: !ruby/object:Gem::Requirement
|
|
164
164
|
requirements:
|
|
165
165
|
- - '='
|
|
166
166
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: 0.30.
|
|
167
|
+
version: 0.30.6
|
|
168
168
|
type: :development
|
|
169
169
|
prerelease: false
|
|
170
170
|
version_requirements: !ruby/object:Gem::Requirement
|
|
171
171
|
requirements:
|
|
172
172
|
- - '='
|
|
173
173
|
- !ruby/object:Gem::Version
|
|
174
|
-
version: 0.30.
|
|
174
|
+
version: 0.30.6
|
|
175
175
|
description: A proposals component for decidim's participatory spaces.
|
|
176
176
|
email:
|
|
177
177
|
- josepjaume@gmail.com
|