decidim-consultations 0.15.2 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/decidim/consultations/admin/consultations_controller.rb +0 -9
- data/app/controllers/decidim/consultations/consultations_controller.rb +5 -0
- data/app/models/decidim/consultations/question.rb +4 -0
- data/app/permissions/decidim/consultations/admin/permissions.rb +1 -1
- data/app/views/decidim/consultations/consultations/index.html.erb +3 -2
- data/app/views/decidim/consultations/questions/_right_column.html.erb +1 -1
- data/app/views/layouts/decidim/_consultation_header.html.erb +3 -0
- data/app/views/layouts/decidim/_question_components.html.erb +20 -23
- data/config/locales/ca.yml +7 -3
- data/config/locales/de.yml +8 -4
- data/config/locales/en.yml +8 -4
- data/config/locales/es-PY.yml +7 -3
- data/config/locales/es.yml +8 -4
- data/config/locales/eu.yml +8 -4
- data/config/locales/fi-pl.yml +8 -4
- data/config/locales/fi.yml +8 -4
- data/config/locales/fr.yml +10 -6
- data/config/locales/gl.yml +8 -4
- data/config/locales/hu.yml +10 -6
- data/config/locales/id-ID.yml +7 -5
- data/config/locales/it.yml +8 -4
- data/config/locales/nl.yml +10 -6
- data/config/locales/pl.yml +10 -6
- data/config/locales/pt-BR.yml +7 -3
- data/config/locales/pt.yml +8 -4
- data/config/locales/ru.yml +0 -7
- data/config/locales/sv.yml +8 -4
- data/config/locales/tr-TR.yml +7 -6
- data/config/locales/uk.yml +0 -7
- data/lib/decidim/consultations/admin_engine.rb +1 -1
- data/lib/decidim/consultations/version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9dac82b172fe321c28275c8b9cbf83f0ae882defaf8ccb8de7eeb8f18c0bb97
|
4
|
+
data.tar.gz: 7cbd05bd00745b9afa993a45365d5dcbed27db4cc350eeaee76be1adaba6cf3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad5d3cdd58cab7ac5768ac0dea7c646d129d21da4542d63953a8fb5dd18f56bd5809de2d6c7b05b626324eda287d1e2a6500defec0b387b8eee36909f6a4e088
|
7
|
+
data.tar.gz: 224748a37911ec1647fd50193d2c7f03872663d2fd778384efc3a818f14c4f1ff0daef6115480f56b4b1822c4f75c0baf80594ae46bf538bd68ce33cd4cf98f4
|
@@ -64,15 +64,6 @@ module Decidim
|
|
64
64
|
end
|
65
65
|
end
|
66
66
|
|
67
|
-
def destroy
|
68
|
-
enforce_permission_to :destroy, :consultation, consultation: current_consultation
|
69
|
-
current_consultation.destroy!
|
70
|
-
|
71
|
-
flash[:notice] = I18n.t("consultations.destroy.success", scope: "decidim.admin")
|
72
|
-
|
73
|
-
redirect_to consultations_path
|
74
|
-
end
|
75
|
-
|
76
67
|
private
|
77
68
|
|
78
69
|
def current_consultation
|
@@ -11,6 +11,7 @@ module Decidim
|
|
11
11
|
include FilterResource
|
12
12
|
include Paginable
|
13
13
|
include Orderable
|
14
|
+
include ParticipatorySpaceContext
|
14
15
|
|
15
16
|
helper_method :collection, :consultations, :finished_consultations, :active_consultations, :filter
|
16
17
|
|
@@ -32,6 +33,10 @@ module Decidim
|
|
32
33
|
|
33
34
|
private
|
34
35
|
|
36
|
+
def current_participatory_space_manifest
|
37
|
+
@current_participatory_space_manifest ||= Decidim.find_participatory_space_manifest(:consultations)
|
38
|
+
end
|
39
|
+
|
35
40
|
def consultations
|
36
41
|
@consultations = search.results
|
37
42
|
@consultations = reorder(@consultations)
|
@@ -49,7 +49,7 @@ module Decidim
|
|
49
49
|
case permission_action.action
|
50
50
|
when :create, :read, :publish
|
51
51
|
allow!
|
52
|
-
when :update, :
|
52
|
+
when :update, :preview
|
53
53
|
toggle_allow(consultation.present?)
|
54
54
|
when :publish_results
|
55
55
|
toggle_allow(consultation.finished? && !consultation.results_published?)
|
@@ -6,7 +6,8 @@ edit_link(
|
|
6
6
|
)
|
7
7
|
%>
|
8
8
|
<% provide :meta_title, t("consultations.index.title", scope: "decidim") %>
|
9
|
-
|
9
|
+
|
10
|
+
<%= participatory_space_wrapper do %>
|
10
11
|
<div class="row columns">
|
11
12
|
<div class="title-action">
|
12
13
|
<div class="row collapse">
|
@@ -28,7 +29,7 @@ edit_link(
|
|
28
29
|
<%= render partial: "consultations" %>
|
29
30
|
</div>
|
30
31
|
</div>
|
31
|
-
|
32
|
+
<% end %>
|
32
33
|
|
33
34
|
<%= javascript_include_tag "decidim/filters" %>
|
34
35
|
<%= javascript_include_tag "decidim/orders" %>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
<% if user_signed_in? %>
|
11
11
|
<div class="card extra">
|
12
12
|
<div class="card__content">
|
13
|
-
<%= render partial: "decidim/shared/follow_button", locals: { followable: question } %>
|
13
|
+
<%= render partial: "decidim/shared/follow_button", locals: { followable: question, large: false } %>
|
14
14
|
</div>
|
15
15
|
</div>
|
16
16
|
<% end %>
|
@@ -1,3 +1,5 @@
|
|
1
|
+
<%= participatory_space_floating_help %>
|
2
|
+
|
1
3
|
<div class="consultations-header consultations-home-banner row column">
|
2
4
|
<div class="row column consultations-header__main"
|
3
5
|
style="background-image:url(<%= current_consultation.banner_image.url %>);">
|
@@ -10,6 +12,7 @@
|
|
10
12
|
<p class="text-highlight"><%= translated_attribute current_consultation.subtitle %></p>
|
11
13
|
</div>
|
12
14
|
</div>
|
15
|
+
|
13
16
|
<%= render partial: "layouts/decidim/consultation_voting_data", locals: { consultation: current_consultation } %>
|
14
17
|
</div>
|
15
18
|
</div>
|
@@ -12,28 +12,25 @@
|
|
12
12
|
<% end %>
|
13
13
|
</div>
|
14
14
|
</button>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
<% end %>
|
36
|
-
</ul>
|
37
|
-
</div>
|
15
|
+
|
16
|
+
<%
|
17
|
+
components = question.components.published.or(Decidim::Component.where(id: self.try(:current_component)))
|
18
|
+
%>
|
19
|
+
|
20
|
+
<%=
|
21
|
+
extended_navigation_bar([
|
22
|
+
{
|
23
|
+
name: t(".question_menu_item"),
|
24
|
+
url: decidim_consultations.question_path(question),
|
25
|
+
active: is_active_link?(decidim_consultations.question_path(question), :exclusive)
|
26
|
+
}
|
27
|
+
] + components.map do |component|
|
28
|
+
{
|
29
|
+
name: translated_attribute(component.name),
|
30
|
+
url: main_component_path(component),
|
31
|
+
active: is_active_link?(main_component_path(component), :inclusive)
|
32
|
+
}
|
33
|
+
end)
|
34
|
+
%>
|
38
35
|
</div>
|
39
36
|
</div>
|
data/config/locales/ca.yml
CHANGED
@@ -38,7 +38,7 @@ ca:
|
|
38
38
|
not_found: La resposta no s'ha trobat.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: Consultes
|
44
44
|
decidim/consultations/question:
|
@@ -76,8 +76,6 @@ ca:
|
|
76
76
|
create:
|
77
77
|
error: S'ha produït un error en crear una nova consulta.
|
78
78
|
success: S'ha creat la consulta amb èxit.
|
79
|
-
destroy:
|
80
|
-
success: S'ha eliminat la consulta amb èxit.
|
81
79
|
edit:
|
82
80
|
update: Actualització
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ ca:
|
|
246
244
|
view_results: Veure resultats
|
247
245
|
vote: Votació
|
248
246
|
unspecified: Sense especificar
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Les consultes són un espai que permet realitzar una pregunta clara a totes les persones que formen una organització, fer una crida a participar en la consulta, suscitar i ordenar el debat a favor o encontra d'una resposta. Arribada la data de la consulta permet votar i publicar els resultats de les votacions.</p> <p>Exemples: Les consultes pot versar sobre gairebé qualsevol aspecte que afecti a una organització: alguns exemples són canviar el nom o logotip de l'organització oferint diverses alternatives, decidir Sí o No a formar part d'una organització més gran, validar o rebutjar un nou pla estratègic o el resultat d'un grup de treball, o definir si els càrrecs han de romandre un màxim de 1, 2 o 3 mandats.</p>\n"
|
251
|
+
page: "<p>Les consultes són un espai que permet realitzar una pregunta clara a totes les persones que formen una organització, fer una crida a participar en la consulta, suscitar i ordenar el debat a favor o encontra d'una resposta. Arribada la data de la consulta permet votar i publicar els resultats de les votacions.</p> <p>Exemples: Les consultes pot versar sobre gairebé qualsevol aspecte que afecti a una organització: alguns exemples són canviar el nom o logotip de l'organització oferint diverses alternatives, decidir Sí o No a formar part d'una organització més gran, validar o rebutjar un nou pla estratègic o el resultat d'un grup de treball, o definir si els càrrecs han de romandre un màxim de 1, 2 o 3 mandats.</p>\n"
|
252
|
+
title: Què són les consultes?
|
249
253
|
menu:
|
250
254
|
consultations: Consultes
|
251
255
|
pages:
|
data/config/locales/de.yml
CHANGED
@@ -38,7 +38,7 @@ de:
|
|
38
38
|
not_found: Antwort nicht gefunden.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Beratung
|
43
43
|
other: Konsultationen
|
44
44
|
decidim/consultations/question:
|
@@ -49,7 +49,7 @@ de:
|
|
49
49
|
other: Antworten
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Abstimmung
|
52
|
-
other:
|
52
|
+
other: Abstimmung
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ de:
|
|
76
76
|
create:
|
77
77
|
error: Beim Erstellen einer neuen Konsultation ist ein Fehler aufgetreten.
|
78
78
|
success: Beratung erfolgreich erstellt.
|
79
|
-
destroy:
|
80
|
-
success: Die Konsultation wurde erfolgreich gelöscht.
|
81
79
|
edit:
|
82
80
|
update: Aktualisieren
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ de:
|
|
246
244
|
view_results: Ergebnisse anzeigen
|
247
245
|
vote: Abstimmung
|
248
246
|
unspecified: Keine Angabe
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Konsultationen sind ein Raum, in dem Sie allen Personen, die eine Organisation bilden, eine klare Frage stellen, anrufen, um an der Konsultation teilzunehmen, die Debatte anzuregen und die Debatte für oder gegen eine Antwort anzuordnen. Wenn das Konsultationsdatum erreicht ist, können Sie abstimmen und die Abstimmungsergebnisse veröffentlichen.</p> <p>Beispiele: Bei den Konsultationen kann es sich um fast jeden Aspekt handeln, der eine Organisation betrifft: Bei einigen Beispielen wird der Name oder das Logo der Organisation geändert, die verschiedene Alternativen bietet. Sie entscheiden sich für Ja oder Nein, um Teil einer größeren Organisation zu werden, eine neue Strategie zu bestätigen oder abzulehnen Plan oder das Ergebnis einer Arbeitsgruppe oder die Festlegung, ob die Positionen maximal 1, 2 oder 3 Mandate bleiben sollen.</p>\n"
|
251
|
+
page: "<p>Konsultationen sind ein Raum, in dem Sie allen Personen, die eine Organisation bilden, eine klare Frage stellen, anrufen, um an der Konsultation teilzunehmen, die Debatte anzuregen und die Debatte für oder gegen eine Antwort anzuordnen. Wenn das Konsultationsdatum erreicht ist, können Sie abstimmen und die Abstimmungsergebnisse veröffentlichen.</p> <p>Beispiele: Bei den Konsultationen kann es sich um fast jeden Aspekt handeln, der eine Organisation betrifft: Bei einigen Beispielen wird der Name oder das Logo der Organisation geändert, die verschiedene Alternativen bietet. Sie entscheiden sich für Ja oder Nein, um Teil einer größeren Organisation zu werden, eine neue Strategie zu bestätigen oder abzulehnen Plan oder das Ergebnis einer Arbeitsgruppe oder die Festlegung, ob die Positionen maximal 1, 2 oder 3 Mandate bleiben sollen.</p>Arten in der Organisation.</p>\n"
|
252
|
+
title: Was sind Konsultationen?
|
249
253
|
menu:
|
250
254
|
consultations: Konsultationen
|
251
255
|
pages:
|
data/config/locales/en.yml
CHANGED
@@ -38,7 +38,7 @@ en:
|
|
38
38
|
not_found: Response not found.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consultation
|
43
43
|
other: Consultations
|
44
44
|
decidim/consultations/question:
|
@@ -48,7 +48,7 @@ en:
|
|
48
48
|
one: Response
|
49
49
|
other: Responses
|
50
50
|
decidim/consultations/vote:
|
51
|
-
one:
|
51
|
+
one: Vote
|
52
52
|
other: Votes
|
53
53
|
decidim:
|
54
54
|
admin:
|
@@ -76,8 +76,6 @@ en:
|
|
76
76
|
create:
|
77
77
|
error: There was an error creating a new consultation.
|
78
78
|
success: Consultation successfully created.
|
79
|
-
destroy:
|
80
|
-
success: Consultation successfully deleted.
|
81
79
|
edit:
|
82
80
|
update: Update
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ en:
|
|
246
244
|
view_results: View results
|
247
245
|
vote: Vote
|
248
246
|
unspecified: Not specified
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Consultations are a space that allows you to ask a clear question to all the people who form an organization, make a call to participate in the consultation, spark and order the debate for or against a response. When the consultation date arrives, you can vote and publish the results of the votes.</p> <p>Examples: The consultations can be about almost any aspect that affects an organization: some examples are changing the name or logo of the organization offering several alternatives, deciding Yes or No to become part of a larger organization, validating or rejecting a new strategic plan or the result of a working group, or defining whether the positions should remain a maximum of 1, 2 or 3 mandates.</p>\n"
|
251
|
+
page: "<p>Consultations are a space that allows you to ask a clear question to all the people who form an organization, make a call to participate in the consultation, spark and order the debate for or against a response. When the consultation date arrives, you can vote and publish the results of the votes.</p> <p>Examples: The consultations can be about almost any aspect that affects an organization: some examples are changing the name or logo of the organization offering several alternatives, deciding Yes or No to become part of a larger organization, validating or rejecting a new strategic plan or the result of a working group, or defining whether the positions should remain a maximum of 1, 2 or 3 mandates.</p>ard in the organization.</p>\n"
|
252
|
+
title: What are consultations?
|
249
253
|
menu:
|
250
254
|
consultations: Consultations
|
251
255
|
pages:
|
data/config/locales/es-PY.yml
CHANGED
@@ -38,7 +38,7 @@ es-PY:
|
|
38
38
|
not_found: Respuesta no encontrada
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: Consultas
|
44
44
|
decidim/consultations/question:
|
@@ -76,8 +76,6 @@ es-PY:
|
|
76
76
|
create:
|
77
77
|
error: Hubo un error al crear una nueva consulta.
|
78
78
|
success: Consulta creada con éxito.
|
79
|
-
destroy:
|
80
|
-
success: Consulta eliminada con éxito.
|
81
79
|
edit:
|
82
80
|
update: Actualizar
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ es-PY:
|
|
246
244
|
view_results: Ver resultados
|
247
245
|
vote: Votar
|
248
246
|
unspecified: No especificado
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>consultas son un espacio que le permite hacer una pregunta clara a todas las personas que forman una organización, hacer una llamada para participar en la consulta, provocar y ordenar el debate a favor o en contra de una respuesta. Cuando llega la fecha de consulta, puede votar y publicar los resultados de los votos.</p> <p>Ejemplos: Las consultas pueden ser sobre casi cualquier aspecto que afecte a una organización: algunos ejemplos están cambiando el nombre o el logotipo de la organización que ofrece varias alternativas, decidiendo Sí o No para formar parte de una organización más grande, validando o rechazando una nueva estrategia plan o el resultado de un grupo de trabajo, o definir si las posiciones deben permanecer como máximo de 1, 2 o 3 mandatos.</p>\n"
|
251
|
+
page: "<p>consultas son un espacio que le permite hacer una pregunta clara a todas las personas que forman una organización, hacer una llamada para participar en la consulta, provocar y ordenar el debate a favor o en contra de una respuesta. Cuando llega la fecha de consulta, puede votar y publicar los resultados de los votos.</p> <p>Ejemplos: Las consultas pueden ser sobre casi cualquier aspecto que afecte a una organización: algunos ejemplos están cambiando el nombre o el logotipo de la organización que ofrece varias alternativas, decidiendo Sí o No para formar parte de una organización más grande, validando o rechazando una nueva estrategia plan o el resultado de un grupo de trabajo, o definir si las posiciones deben permanecer como máximo de 1, 2 o 3 mandatos.</p>ard en la organización.</p>\n"
|
252
|
+
title: '¿Qué son las consultas?'
|
249
253
|
menu:
|
250
254
|
consultations: Consultas
|
251
255
|
pages:
|
data/config/locales/es.yml
CHANGED
@@ -38,7 +38,7 @@ es:
|
|
38
38
|
not_found: Respuesta no encontrada
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: Consultas
|
44
44
|
decidim/consultations/question:
|
@@ -48,7 +48,7 @@ es:
|
|
48
48
|
one: Respuesta
|
49
49
|
other: Respuestas
|
50
50
|
decidim/consultations/vote:
|
51
|
-
one:
|
51
|
+
one: Apoyo
|
52
52
|
other: Votos
|
53
53
|
decidim:
|
54
54
|
admin:
|
@@ -76,8 +76,6 @@ es:
|
|
76
76
|
create:
|
77
77
|
error: Hubo un error al crear una nueva consulta.
|
78
78
|
success: Consulta creada con éxito.
|
79
|
-
destroy:
|
80
|
-
success: Consulta eliminada con éxito.
|
81
79
|
edit:
|
82
80
|
update: Actualizar
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ es:
|
|
246
244
|
view_results: Ver resultados
|
247
245
|
vote: Votar
|
248
246
|
unspecified: No especificado
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Las consultas son un espacio que permite realizar una pregunta clara a todas las personas que forman una organización, hacer un llamamiento a participar en la consulta, suscitar y ordenar el debate a favor o encontra de una respuesta. Llegada la fecha de la consulta permite votar y publicar los resultados de las votaciones.</p> <p>Ejemplos: Las consultas puede versar sobre casi cualquier aspecto que afecte a una organización: algunos ejemplos son cambiar el nombre o logotipo de la organización ofreciendo varias alternativas, decidir Sí o No a formar parte de una organización más grande, validar o rechazar un nuevo plan estratégico o el resultado de un grupo de trabajo, o definir si los cargos deben permanecer un máximo de 1, 2 ó 3 mandatos.</p>\n"
|
251
|
+
page: "<p>Las consultas son un espacio que permite realizar una pregunta clara a todas las personas que forman una organización, hacer un llamamiento a participar en la consulta, suscitar y ordenar el debate a favor o encontra de una respuesta. Llegada la fecha de la consulta permite votar y publicar los resultados de las votaciones.</p> <p>Ejemplos: Las consultas puede versar sobre casi cualquier aspecto que afecte a una organización: algunos ejemplos son cambiar el nombre o logotipo de la organización ofreciendo varias alternativas, decidir Sí o No a formar parte de una organización más grande, validar o rechazar un nuevo plan estratégico o el resultado de un grupo de trabajo, o definir si los cargos deben permanecer un máximo de 1, 2 ó 3 mandatos.</p>\n"
|
252
|
+
title: '¿Qué son las consultas?'
|
249
253
|
menu:
|
250
254
|
consultations: Consultas
|
251
255
|
pages:
|
data/config/locales/eu.yml
CHANGED
@@ -38,7 +38,7 @@ eu:
|
|
38
38
|
not_found: Erantzuna ez da aurkitu.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: kontsultak
|
44
44
|
decidim/consultations/question:
|
@@ -49,7 +49,7 @@ eu:
|
|
49
49
|
other: Erantzunak
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Bozkatu
|
52
|
-
other:
|
52
|
+
other: Bozkatu
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ eu:
|
|
76
76
|
create:
|
77
77
|
error: Errore bat gertatu da kontsulta berri bat sortzean.
|
78
78
|
success: Kontsulta sortu da.
|
79
|
-
destroy:
|
80
|
-
success: Kontsulta ezabatu da.
|
81
79
|
edit:
|
82
80
|
update: eguneratzearen
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ eu:
|
|
246
244
|
view_results: Ikusi emaitzak
|
247
245
|
vote: Bozkatu
|
248
246
|
unspecified: Zehaztu gabea
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Kontsultak aukera ematen du elkarte bat osatzen duten pertsona guztiei galdera argi bat egiteko, kontsulta egiteko parte hartzeko, txinparta egiteko eta erantzuna emateko edo aurka egiteko. Kontsulta datak iristen direnean, botoen emaitzak bozkatu eta argitaratu ditzakezu.</p> <p>Adibideak: Kontsultak erakundeari eragiten dion alderdi ia guztiak izan ditzake: adibide batzuk erakundearen izena edo logotipoa aldatzen ari dira, aukera ugari eskainiz, Bai edo Ez izaera handiago baten parte hartzea erabakitzeko, baliogabetzeko edo baztertzeko estrategia berri bat plan edo talde lan baten emaitza, edo posizioak 1, 2 edo 3 mandatu gehienez egon behar duten ala ez zehazteko.</p>\n"
|
251
|
+
page: "<p>Kontsultak aukera ematen du elkarte bat osatzen duten pertsona guztiei galdera argi bat egiteko, kontsulta egiteko parte hartzeko, txinparta egiteko eta erantzuna emateko edo aurka egiteko. Kontsulta datak iristen direnean, botoen emaitzak bozkatu eta argitaratu ditzakezu.</p> <p>Adibideak: Kontsultak erakundeari eragiten dion alderdi ia guztiak izan ditzake: adibide batzuk erakundearen izena edo logotipoa aldatzen ari dira, aukera ugari eskainiz, Bai edo Ez izaera handiago baten parte hartzea erabakitzeko, baliogabetzeko edo baztertzeko estrategia berri bat plan edo talde lan baten emaitza, edo posizioak 1, 2 edo 3 mandatu gehienez egon behar duten ala ez zehazteko.</p>erakundeko ard.</p>\n"
|
252
|
+
title: Zer dira kontsultak?
|
249
253
|
menu:
|
250
254
|
consultations: kontsultak
|
251
255
|
pages:
|
data/config/locales/fi-pl.yml
CHANGED
@@ -38,7 +38,7 @@ fi-pl:
|
|
38
38
|
not_found: Vastausta ei löytynyt.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Kuuleminen
|
43
43
|
other: Kuulemiset
|
44
44
|
decidim/consultations/question:
|
@@ -48,7 +48,7 @@ fi-pl:
|
|
48
48
|
one: Vastaus
|
49
49
|
other: Vastaukset
|
50
50
|
decidim/consultations/vote:
|
51
|
-
one:
|
51
|
+
one: Ääni
|
52
52
|
other: Äänet
|
53
53
|
decidim:
|
54
54
|
admin:
|
@@ -76,8 +76,6 @@ fi-pl:
|
|
76
76
|
create:
|
77
77
|
error: Virhe uuden kuulemisen luonnissa.
|
78
78
|
success: Kuuleminen luotu onnistuneesti.
|
79
|
-
destroy:
|
80
|
-
success: Kuuleminen poistettu onnistuneesti.
|
81
79
|
edit:
|
82
80
|
update: Päivitä
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ fi-pl:
|
|
246
244
|
view_results: Näytä tulokset
|
247
245
|
vote: Äänestä
|
248
246
|
unspecified: Ei määritelty
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Kuulemiset ovat osallisuustila, jonka avulla voit esittää selkeän kysymyksen kaikille organisaation ihmisille, tehdä päätöksen kuulemiseen osallistumisesta sekä herättää ja järjestää keskustelua vastauksen saamiseksi. Kun kuulemisen päivä tulee, voit äänestää ja julkaista äänestyksen tulokset.</p> <p>Kuulemisia voidaan järjestää lähes mistä tahansa organisaatioon vaikuttavasta näkökulmasta, kuten nimen tai logon muuttamisesta, päättämisestä laajempaan organisaatioon liittymisestä, strategisen suunnitelman tai työryhmän päätöksen validoinnista tai hylkäämisestä, tai mandaattien vaaditusta määrästä päättäminen.</p>\n"
|
251
|
+
page: "<p>Kuulemiset ovat osallisuustila, jonka avulla voit esittää selkeän kysymyksen kaikille organisaation ihmisille, tehdä päätöksen kuulemiseen osallistumisesta sekä herättää ja järjestää keskustelua vastauksen saamiseksi. Kun kuulemisen päivä tulee, voit äänestää ja julkaista äänestyksen tulokset.</p> <p>Kuulemisia voidaan järjestää lähes mistä tahansa organisaatioon vaikuttavasta näkökulmasta, kuten nimen tai logon muuttamisesta, päättämisestä laajempaan organisaatioon liittymisestä, strategisen suunnitelman tai työryhmän päätöksen validoinnista tai hylkäämisestä, tai mandaattien vaaditusta määrästä päättäminen.</p>"
|
252
|
+
title: Mitä ovat kuulemiset?
|
249
253
|
menu:
|
250
254
|
consultations: Kuulemiset
|
251
255
|
pages:
|
data/config/locales/fi.yml
CHANGED
@@ -38,7 +38,7 @@ fi:
|
|
38
38
|
not_found: Vastausta ei löytynyt.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Kuuleminen
|
43
43
|
other: Kuulemiset
|
44
44
|
decidim/consultations/question:
|
@@ -48,7 +48,7 @@ fi:
|
|
48
48
|
one: Vastaus
|
49
49
|
other: Vastaukset
|
50
50
|
decidim/consultations/vote:
|
51
|
-
one:
|
51
|
+
one: Ääni
|
52
52
|
other: Äänet
|
53
53
|
decidim:
|
54
54
|
admin:
|
@@ -76,8 +76,6 @@ fi:
|
|
76
76
|
create:
|
77
77
|
error: Virhe uuden kuulemisen luonnissa.
|
78
78
|
success: Kuuleminen luotu onnistuneesti.
|
79
|
-
destroy:
|
80
|
-
success: Kuuleminen poistettu onnistuneesti.
|
81
79
|
edit:
|
82
80
|
update: Päivitä
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ fi:
|
|
246
244
|
view_results: Näytä tulokset
|
247
245
|
vote: Äänestä
|
248
246
|
unspecified: Ei määritelty
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Kuulemiset ovat osallisuustila, jonka avulla voit esittää selkeän kysymyksen kaikille organisaation ihmisille, tehdä päätöksen kuulemiseen osallistumisesta sekä herättää ja järjestää keskustelua vastauksen saamiseksi. Kun kuulemisen päivä tulee, voit äänestää ja julkaista äänestyksen tulokset.</p> <p>Kuulemisia voidaan järjestää lähes mistä tahansa organisaatioon vaikuttavasta näkökulmasta, kuten nimen tai logon muuttamisesta, päättämisestä laajempaan organisaatioon liittymisestä, strategisen suunnitelman tai työryhmän päätöksen validoinnista tai hylkäämisestä, tai mandaattien vaaditusta määrästä päättäminen.</p>\n"
|
251
|
+
page: "<p>Kuulemiset ovat osallisuustila, jonka avulla voit esittää selkeän kysymyksen kaikille organisaation ihmisille, tehdä päätöksen kuulemiseen osallistumisesta sekä herättää ja järjestää keskustelua vastauksen saamiseksi. Kun kuulemisen päivä tulee, voit äänestää ja julkaista äänestyksen tulokset.</p> <p>Kuulemisia voidaan järjestää lähes mistä tahansa organisaatioon vaikuttavasta näkökulmasta, kuten nimen tai logon muuttamisesta, päättämisestä laajempaan organisaatioon liittymisestä, strategisen suunnitelman tai työryhmän päätöksen validoinnista tai hylkäämisestä, tai mandaattien vaaditusta määrästä päättäminen.</p>"
|
252
|
+
title: Mitä ovat kuulemiset?
|
249
253
|
menu:
|
250
254
|
consultations: Kuulemiset
|
251
255
|
pages:
|
data/config/locales/fr.yml
CHANGED
@@ -38,9 +38,9 @@ fr:
|
|
38
38
|
not_found: Réponse introuvable.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
42
|
-
one:
|
43
|
-
other:
|
41
|
+
decidim/consultation:
|
42
|
+
one: Consultation
|
43
|
+
other: Consultations
|
44
44
|
decidim/consultations/question:
|
45
45
|
one: Question
|
46
46
|
other: Questions
|
@@ -49,7 +49,7 @@ fr:
|
|
49
49
|
other: Réponses
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Vote
|
52
|
-
other:
|
52
|
+
other: Vote
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ fr:
|
|
76
76
|
create:
|
77
77
|
error: Une erreur s'est produite lors de la création d'une nouvelle votation.
|
78
78
|
success: La votation a été créée avec succès.
|
79
|
-
destroy:
|
80
|
-
success: La votation a été supprimée avec succès.
|
81
79
|
edit:
|
82
80
|
update: Mettre à jour
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ fr:
|
|
246
244
|
view_results: Voir les résultats
|
247
245
|
vote: Voter
|
248
246
|
unspecified: Non précisé
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>consultations sont un espace qui vous permet de poser une question claire à toutes les personnes qui forment une organisation, de lancer un appel à participer à la consultation, de susciter et d’organiser le débat pour ou contre une réponse. Lorsque la date de consultation arrive, vous pouvez voter et publier les résultats des votes.</p> <p>Exemples: Les consultations peuvent porter sur presque tous les aspects touchant une organisation: certains exemples changent le nom ou le logo de l’organisation offrant plusieurs alternatives, décidant par oui ou non de faire partie d’une organisation plus grande, validant ou rejetant une nouvelle stratégie. plan ou le résultat d’un groupe de travail, ou de définir si les postes doivent rester au maximum d’un, deux ou trois mandats.</p>\n"
|
251
|
+
page: "<p>consultations sont un espace qui vous permet de poser une question claire à toutes les personnes qui forment une organisation, de lancer un appel à participer à la consultation, de susciter et d’organiser le débat pour ou contre une réponse. Lorsque la date de consultation arrive, vous pouvez voter et publier les résultats des votes.</p> <p>Exemples: Les consultations peuvent porter sur presque tous les aspects touchant une organisation: certains exemples changent le nom ou le logo de l’organisation offrant plusieurs alternatives, décidant par oui ou non de faire partie d’une organisation plus grande, validant ou rejetant une nouvelle stratégie. plan ou le résultat d’un groupe de travail, ou de définir si les postes doivent rester au maximum d’un, deux ou trois mandats.</p>ard dans l'organisation.</p>\n"
|
252
|
+
title: Que sont les consultations?
|
249
253
|
menu:
|
250
254
|
consultations: Votations
|
251
255
|
pages:
|
data/config/locales/gl.yml
CHANGED
@@ -38,7 +38,7 @@ gl:
|
|
38
38
|
not_found: A resposta non se atopou.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: Consultas
|
44
44
|
decidim/consultations/question:
|
@@ -49,7 +49,7 @@ gl:
|
|
49
49
|
other: Respostas
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Vota
|
52
|
-
other:
|
52
|
+
other: Vota
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ gl:
|
|
76
76
|
create:
|
77
77
|
error: Produciuse un erro ao crear unha nova consulta.
|
78
78
|
success: Consulta creada con éxito.
|
79
|
-
destroy:
|
80
|
-
success: Consulta eliminada con éxito.
|
81
79
|
edit:
|
82
80
|
update: Actualización
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ gl:
|
|
246
244
|
view_results: Ver resultados
|
247
245
|
vote: Vota
|
248
246
|
unspecified: Non especificado
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>consultas son un espazo que lle permite facer unha pregunta clara a todas as persoas que forman unha organización, convocar para participar na consulta, facer chiscar e ordenar o debate a favor ou en contra dunha resposta. Cando chegue a data de consulta, podes votar e publicar os resultados dos votos.</p> <p>Exemplos: as consultas poden ser case calquera aspecto que afecta a unha organización: algúns exemplos están cambiando o nome ou o logotipo da organización que ofrece varias alternativas, decidindo que Yes ou Non formen parte dunha organización máis grande, validando ou rexeitando un novo proxecto estratéxico. plan ou o resultado dun grupo de traballo, ou definindo se as posicións deben manter un máximo de 1, 2 ou 3 mandatos.</p>\n"
|
251
|
+
page: "<p>consultas son un espazo que lle permite facer unha pregunta clara a todas as persoas que forman unha organización, convocar para participar na consulta, facer chiscar e ordenar o debate a favor ou en contra dunha resposta. Cando chegue a data de consulta, podes votar e publicar os resultados dos votos.</p> <p>Exemplos: as consultas poden ser case calquera aspecto que afecta a unha organización: algúns exemplos están cambiando o nome ou o logotipo da organización que ofrece varias alternativas, decidindo que Yes ou Non formen parte dunha organización máis grande, validando ou rexeitando un novo proxecto estratéxico. plan ou o resultado dun grupo de traballo, ou definindo se as posicións deben manter un máximo de 1, 2 ou 3 mandatos.</p>ard na organización.</p>\n"
|
252
|
+
title: Que son as consultas?
|
249
253
|
menu:
|
250
254
|
consultations: Consultas
|
251
255
|
pages:
|
data/config/locales/hu.yml
CHANGED
@@ -38,9 +38,9 @@ hu:
|
|
38
38
|
not_found: Válasz nem található.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Konzultáció
|
43
|
-
other:
|
43
|
+
other: konzultációk
|
44
44
|
decidim/consultations/question:
|
45
45
|
one: Kérdés
|
46
46
|
other: Kérdések
|
@@ -48,8 +48,8 @@ hu:
|
|
48
48
|
one: Válasz
|
49
49
|
other: Válaszok
|
50
50
|
decidim/consultations/vote:
|
51
|
-
one:
|
52
|
-
other:
|
51
|
+
one: Szavazás
|
52
|
+
other: Szavazás
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ hu:
|
|
76
76
|
create:
|
77
77
|
error: Hiba történt az új konzultáció létrehozása során.
|
78
78
|
success: Konzultáció létrehozása sikeres.
|
79
|
-
destroy:
|
80
|
-
success: Konzultáció törlése sikeres.
|
81
79
|
edit:
|
82
80
|
update: Frissítés
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ hu:
|
|
246
244
|
view_results: Eredmények megtekintése
|
247
245
|
vote: Szavazás
|
248
246
|
unspecified: Nem meghatározott
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>konzultációk egy olyan terület, amely lehetővé teszi, hogy világos kérdést tegyen fel mindazoknak, akik egy szervezetet alkotnak, hívják a konzultációban való részvételt, szikrázzák és rendezik a vitát a válaszért vagy ellen. Amikor a konzultáció időpontja megérkezik, szavazhat és közzéteheti a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan szempontra vonatkozhatnak, amelyek egy szervezetet érintenek: néhány példa megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál, döntve az Igen vagy a Nemet, hogy egy nagyobb szervezet részévé váljon, egy új stratégiai stratégia érvényesítése vagy elutasítása tervet vagy munkacsoport eredményét, vagy meghatározza, hogy a pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>\n"
|
251
|
+
page: "<p>konzultációk egy olyan terület, amely lehetővé teszi, hogy világos kérdést tegyen fel mindazoknak, akik egy szervezetet alkotnak, hívják a konzultációban való részvételt, szikrázzák és rendezik a vitát a válaszért vagy ellen. Amikor a konzultáció időpontja megérkezik, szavazhat és közzéteheti a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan szempontra vonatkozhatnak, amelyek egy szervezetet érintenek: néhány példa megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál, döntve az Igen vagy a Nemet, hogy egy nagyobb szervezet részévé váljon, egy új stratégiai stratégia érvényesítése vagy elutasítása tervet vagy munkacsoport eredményét, vagy meghatározza, hogy a pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>ard a szervezetben.</p>\n"
|
252
|
+
title: Mi a konzultáció?
|
249
253
|
menu:
|
250
254
|
consultations: Konzultációk
|
251
255
|
pages:
|
data/config/locales/id-ID.yml
CHANGED
@@ -38,14 +38,12 @@ id:
|
|
38
38
|
not_found: Tanggapan tidak ditemukan.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
other: Konsultasi
|
43
43
|
decidim/consultations/question:
|
44
44
|
other: Pertanyaan
|
45
45
|
decidim/consultations/response:
|
46
46
|
other: Tanggapan
|
47
|
-
decidim/consultations/vote:
|
48
|
-
other: Suara
|
49
47
|
decidim:
|
50
48
|
admin:
|
51
49
|
actions:
|
@@ -72,8 +70,6 @@ id:
|
|
72
70
|
create:
|
73
71
|
error: Ada kesalahan saat membuat konsultasi baru.
|
74
72
|
success: Konsultasi berhasil dibuat.
|
75
|
-
destroy:
|
76
|
-
success: Konsultasi berhasil dihapus.
|
77
73
|
edit:
|
78
74
|
update: Memperbarui
|
79
75
|
form:
|
@@ -236,6 +232,12 @@ id:
|
|
236
232
|
view_results: Lihat hasil
|
237
233
|
vote: Memilih
|
238
234
|
unspecified: Tidak ditentukan
|
235
|
+
help:
|
236
|
+
participatory_spaces:
|
237
|
+
consultations:
|
238
|
+
contextual: "<p>Konsultasi adalah ruang yang memungkinkan Anda untuk mengajukan pertanyaan yang jelas untuk semua orang yang membentuk sebuah organisasi, membuat panggilan untuk berpartisipasi dalam konsultasi, percikan dan memesan perdebatan untuk atau terhadap tanggapan. Ketika tanggal konsultasi tiba, Anda dapat memilih dan mempublikasikan hasil suara.</p> <p>Contoh: Konsultasi dapat mengenai hampir semua aspek yang mempengaruhi organisasi: beberapa contoh mengubah nama atau logo organisasi yang menawarkan beberapa alternatif, memutuskan Ya atau Tidak untuk menjadi bagian dari organisasi yang lebih besar, memvalidasi atau menolak strategi baru merencanakan atau hasil dari kelompok kerja, atau menentukan apakah posisi harus tetap maksimal 1, 2 atau 3 mandat.</p>\n"
|
239
|
+
page: "<p>Konsultasi adalah ruang yang memungkinkan Anda untuk mengajukan pertanyaan yang jelas untuk semua orang yang membentuk sebuah organisasi, membuat panggilan untuk berpartisipasi dalam konsultasi, percikan dan memesan perdebatan untuk atau terhadap tanggapan. Ketika tanggal konsultasi tiba, Anda dapat memilih dan mempublikasikan hasil suara.</p> <p>Contoh: Konsultasi dapat mengenai hampir semua aspek yang mempengaruhi organisasi: beberapa contoh mengubah nama atau logo organisasi yang menawarkan beberapa alternatif, memutuskan Ya atau Tidak untuk menjadi bagian dari organisasi yang lebih besar, memvalidasi atau menolak strategi baru merencanakan atau hasil dari kelompok kerja, atau menentukan apakah posisi harus tetap maksimal 1, 2 atau 3 mandat.</p>ard dalam organisasi.</p>\n"
|
240
|
+
title: Apa itu konsultasi?
|
239
241
|
menu:
|
240
242
|
consultations: Konsultasi
|
241
243
|
pages:
|
data/config/locales/it.yml
CHANGED
@@ -38,7 +38,7 @@ it:
|
|
38
38
|
not_found: Risposta non trovata
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consultazione
|
43
43
|
other: consultazioni
|
44
44
|
decidim/consultations/question:
|
@@ -49,7 +49,7 @@ it:
|
|
49
49
|
other: risposte
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Votazione
|
52
|
-
other:
|
52
|
+
other: Votazione
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ it:
|
|
76
76
|
create:
|
77
77
|
error: Si è verificato un errore durante la creazione di una nuova consultazione.
|
78
78
|
success: Consultazione creata con successo.
|
79
|
-
destroy:
|
80
|
-
success: Consultazione cancellata con successo.
|
81
79
|
edit:
|
82
80
|
update: Aggiornare
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ it:
|
|
246
244
|
view_results: Vedi i risultati
|
247
245
|
vote: Votazione
|
248
246
|
unspecified: Non specificato
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>consultazioni sono uno spazio che ti consente di porre una domanda chiara a tutte le persone che formano un'organizzazione, fare una chiamata per partecipare alla consultazione, accendere e ordinare il dibattito a favore o contro una risposta. Quando arriva la data della consultazione, puoi votare e pubblicare i risultati dei voti.</p> <p>Esempi: le consultazioni possono riguardare quasi tutti gli aspetti che riguardano un'organizzazione: alcuni esempi stanno cambiando il nome o il logo dell'organizzazione che offre diverse alternative, decidendo Sì o No per diventare parte di un'organizzazione più grande, convalidare o rifiutare una nuova strategia piano o il risultato di un gruppo di lavoro, o definire se le posizioni devono rimanere al massimo di 1, 2 o 3 mandati.</p>\n"
|
251
|
+
page: "<p>consultazioni sono uno spazio che ti consente di porre una domanda chiara a tutte le persone che formano un'organizzazione, fare una chiamata per partecipare alla consultazione, accendere e ordinare il dibattito a favore o contro una risposta. Quando arriva la data della consultazione, puoi votare e pubblicare i risultati dei voti.</p> <p>Esempi: le consultazioni possono riguardare quasi tutti gli aspetti che riguardano un'organizzazione: alcuni esempi stanno cambiando il nome o il logo dell'organizzazione che offre diverse alternative, decidendo Sì o No per diventare parte di un'organizzazione più grande, convalidare o rifiutare una nuova strategia piano o il risultato di un gruppo di lavoro, o definire se le posizioni devono rimanere al massimo di 1, 2 o 3 mandati.</p>ard nell'organizzazione.</p>\n"
|
252
|
+
title: Quali sono le consultazioni?
|
249
253
|
menu:
|
250
254
|
consultations: consultazioni
|
251
255
|
pages:
|
data/config/locales/nl.yml
CHANGED
@@ -38,9 +38,9 @@ nl:
|
|
38
38
|
not_found: Reactie niet gevonden.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
42
|
-
one:
|
43
|
-
other:
|
41
|
+
decidim/consultation:
|
42
|
+
one: Overleg
|
43
|
+
other: overleg
|
44
44
|
decidim/consultations/question:
|
45
45
|
one: Vraag
|
46
46
|
other: vragen
|
@@ -49,7 +49,7 @@ nl:
|
|
49
49
|
other: Antwoorden
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Stemmen
|
52
|
-
other:
|
52
|
+
other: Stemmen
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ nl:
|
|
76
76
|
create:
|
77
77
|
error: Er is een fout opgetreden bij het maken van een nieuw overleg.
|
78
78
|
success: Overleg succesvol aangemaakt.
|
79
|
-
destroy:
|
80
|
-
success: Overleg succesvol verwijderd.
|
81
79
|
edit:
|
82
80
|
update: Bijwerken
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ nl:
|
|
246
244
|
view_results: Bekijk resultaten
|
247
245
|
vote: Stemmen
|
248
246
|
unspecified: Niet gespecificeerd
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Overleg is een ruimte die u toelaat om een duidelijke vraag te stellen aan alle mensen die een organisatie vormen, een oproep doen om deel te nemen aan de raadpleging, een vonk te geven en het debat voor of tegen een reactie te bestellen. Wanneer de consultatiedatum arriveert, kunt u stemmen en de resultaten van de stemmen publiceren.</p> <p>Voorbeelden: het overleg kan gaan over bijna elk aspect dat een organisatie raakt: enkele voorbeelden veranderen de naam of het logo van de organisatie met verschillende alternatieven, beslissen Ja of Nee om deel uit te maken van een grotere organisatie, een nieuwe strategische validatie of afwijzing plan of het resultaat van een werkgroep, of definiëren of de posities maximaal 1, 2 of 3 mandaten moeten blijven.</p>\n"
|
251
|
+
page: "<p>Overleg is een ruimte die u toelaat om een duidelijke vraag te stellen aan alle mensen die een organisatie vormen, een oproep doen om deel te nemen aan de raadpleging, een vonk te geven en het debat voor of tegen een reactie te bestellen. Wanneer de consultatiedatum arriveert, kunt u stemmen en de resultaten van de stemmen publiceren.</p> <p>Voorbeelden: het overleg kan gaan over bijna elk aspect dat een organisatie raakt: enkele voorbeelden veranderen de naam of het logo van de organisatie met verschillende alternatieven, beslissen Ja of Nee om deel uit te maken van een grotere organisatie, een nieuwe strategische validatie of afwijzing plan of het resultaat van een werkgroep, of definiëren of de posities maximaal 1, 2 of 3 mandaten moeten blijven.</p>in de organisatie.</p>\n"
|
252
|
+
title: Wat zijn consulten?
|
249
253
|
menu:
|
250
254
|
consultations: Burgerinspraak
|
251
255
|
pages:
|
data/config/locales/pl.yml
CHANGED
@@ -38,7 +38,7 @@ pl:
|
|
38
38
|
not_found: Odpowiedź nie znaleziono.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Konsultacja
|
43
43
|
few: Konsultacje
|
44
44
|
many: Konsultacje
|
@@ -55,9 +55,9 @@ pl:
|
|
55
55
|
other: Odpowiedzi
|
56
56
|
decidim/consultations/vote:
|
57
57
|
one: Głosować
|
58
|
-
few:
|
59
|
-
many:
|
60
|
-
other:
|
58
|
+
few: Głosować
|
59
|
+
many: Głosować
|
60
|
+
other: Głosować
|
61
61
|
decidim:
|
62
62
|
admin:
|
63
63
|
actions:
|
@@ -84,8 +84,6 @@ pl:
|
|
84
84
|
create:
|
85
85
|
error: Wystąpił błąd podczas tworzenia nowej konsultacji.
|
86
86
|
success: Konsultacje zostały pomyślnie utworzone.
|
87
|
-
destroy:
|
88
|
-
success: Konsultacja została pomyślnie usunięta.
|
89
87
|
edit:
|
90
88
|
update: Aktualizacja
|
91
89
|
form:
|
@@ -266,6 +264,12 @@ pl:
|
|
266
264
|
view_results: Pokaż wyniki
|
267
265
|
vote: Głosować
|
268
266
|
unspecified: Nieokreślony
|
267
|
+
help:
|
268
|
+
participatory_spaces:
|
269
|
+
consultations:
|
270
|
+
contextual: "<p>Konsultacje to przestrzeń, która pozwala zadać jednoznaczne pytanie wszystkim osobom, które tworzą organizację, wezwać do wzięcia udziału w konsultacjach, nakręcić i zlecić debatę za lub przeciw odpowiedzi. Po nadejściu daty konsultacji można głosować i publikować wyniki głosowania.</p> <p>Przykłady: Konsultacje mogą dotyczyć niemal każdego aspektu, który wpływa na organizację: niektóre przykłady zmieniają nazwę lub logo organizacji oferującej kilka alternatyw, decydując Tak lub Nie, aby stać się częścią większej organizacji, zatwierdzając lub odrzucając nowy strategiczny plan lub wynik grupy roboczej, lub określenie, czy stanowiska powinny wynosić maksymalnie 1, 2, czy 3 mandatów.</p>\n"
|
271
|
+
page: "<p>Konsultacje to przestrzeń, która pozwala zadać jednoznaczne pytanie wszystkim osobom, które tworzą organizację, wezwać do wzięcia udziału w konsultacjach, nakręcić i zlecić debatę za lub przeciw odpowiedzi. Po nadejściu daty konsultacji można głosować i publikować wyniki głosowania.</p> <p>Przykłady: Konsultacje mogą dotyczyć niemal każdego aspektu, który wpływa na organizację: niektóre przykłady zmieniają nazwę lub logo organizacji oferującej kilka alternatyw, decydując Tak lub Nie, aby stać się częścią większej organizacji, zatwierdzając lub odrzucając nowy strategiczny plan lub wynik grupy roboczej, lub określenie, czy stanowiska powinny wynosić maksymalnie 1, 2, czy 3 mandatów.</p>ard w organizacji.</p>\n"
|
272
|
+
title: Czym są konsultacje?
|
269
273
|
menu:
|
270
274
|
consultations: Konsultacje
|
271
275
|
pages:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -38,7 +38,7 @@ pt-BR:
|
|
38
38
|
not_found: Resposta não encontrada.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: Consultas
|
44
44
|
decidim/consultations/question:
|
@@ -76,8 +76,6 @@ pt-BR:
|
|
76
76
|
create:
|
77
77
|
error: Ocorreu um erro ao criar uma nova consulta.
|
78
78
|
success: Consulta criada com sucesso.
|
79
|
-
destroy:
|
80
|
-
success: Consulta excluída com sucesso.
|
81
79
|
edit:
|
82
80
|
update: Atualizar
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ pt-BR:
|
|
246
244
|
view_results: Ver resultados
|
247
245
|
vote: Votar
|
248
246
|
unspecified: Não especificado
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Consultas são um espaço que permite fazer uma pergunta clara a todas as pessoas que formam uma organização, fazer uma convocação para participar da consulta, acender e ordenar o debate a favor ou contra uma resposta. Quando a data da consulta chegar, você pode votar e publicar os resultados dos votos.</p> <p>Exemplos: As consultas podem ser sobre quase qualquer aspecto que afete uma organização: alguns exemplos estão mudando o nome ou logotipo da organização oferecendo várias alternativas, decidindo que Sim ou Não se tornam parte de uma organização maior, validando ou rejeitando uma nova estratégia. planejar ou o resultado de um grupo de trabalho, ou definir se as posições devem permanecer no máximo de 1, 2 ou 3 mandatos.</p>\n"
|
251
|
+
page: "<p>Consultas são um espaço que permite fazer uma pergunta clara a todas as pessoas que formam uma organização, fazer uma convocação para participar da consulta, acender e ordenar o debate a favor ou contra uma resposta. Quando a data da consulta chegar, você pode votar e publicar os resultados dos votos.</p> <p>Exemplos: As consultas podem ser sobre quase qualquer aspecto que afete uma organização: alguns exemplos estão mudando o nome ou logotipo da organização oferecendo várias alternativas, decidindo que Sim ou Não se tornam parte de uma organização maior, validando ou rejeitando uma nova estratégia. planejar ou o resultado de um grupo de trabalho, ou definir se as posições devem permanecer no máximo de 1, 2 ou 3 mandatos.</p>ard na organização.</p>\n"
|
252
|
+
title: O que são consultas?
|
249
253
|
menu:
|
250
254
|
consultations: Consultas
|
251
255
|
pages:
|
data/config/locales/pt.yml
CHANGED
@@ -38,7 +38,7 @@ pt:
|
|
38
38
|
not_found: Resposta não encontrada.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Consulta
|
43
43
|
other: Consultas
|
44
44
|
decidim/consultations/question:
|
@@ -49,7 +49,7 @@ pt:
|
|
49
49
|
other: Respostas
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Voto
|
52
|
-
other:
|
52
|
+
other: Voto
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ pt:
|
|
76
76
|
create:
|
77
77
|
error: Ocorreu um erro ao criar uma nova consulta.
|
78
78
|
success: Consulta criada com sucesso.
|
79
|
-
destroy:
|
80
|
-
success: Consulta excluída com sucesso.
|
81
79
|
edit:
|
82
80
|
update: Atualizar
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ pt:
|
|
246
244
|
view_results: Ver resultados
|
247
245
|
vote: Voto
|
248
246
|
unspecified: Não especificado
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Consultas são um espaço que permite fazer uma pergunta clara a todas as pessoas que formam uma organização, fazer uma convocação para participar da consulta, acender e ordenar o debate a favor ou contra uma resposta. Quando a data da consulta chegar, você pode votar e publicar os resultados dos votos.</p> <p>Exemplos: As consultas podem ser sobre quase qualquer aspecto que afete uma organização: alguns exemplos estão mudando o nome ou logotipo da organização oferecendo várias alternativas, decidindo que Sim ou Não se tornam parte de uma organização maior, validando ou rejeitando uma nova estratégia. planejar ou o resultado de um grupo de trabalho, ou definir se as posições devem permanecer no máximo de 1, 2 ou 3 mandatos.</p>\n"
|
251
|
+
page: "<p>Consultas são um espaço que permite fazer uma pergunta clara a todas as pessoas que formam uma organização, fazer uma convocação para participar da consulta, acender e ordenar o debate a favor ou contra uma resposta. Quando a data da consulta chegar, você pode votar e publicar os resultados dos votos.</p> <p>Exemplos: As consultas podem ser sobre quase qualquer aspecto que afete uma organização: alguns exemplos estão mudando o nome ou logotipo da organização oferecendo várias alternativas, decidindo que Sim ou Não se tornam parte de uma organização maior, validando ou rejeitando uma nova estratégia. planejar ou o resultado de um grupo de trabalho, ou definir se as posições devem permanecer no máximo de 1, 2 ou 3 mandatos.</p>ard na organização.</p>\n"
|
252
|
+
title: O que são consultas?
|
249
253
|
menu:
|
250
254
|
consultations: Consultas
|
251
255
|
pages:
|
data/config/locales/ru.yml
CHANGED
@@ -38,11 +38,6 @@ ru:
|
|
38
38
|
not_found: Ответ не найден.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/consultations:
|
42
|
-
one: Консультация
|
43
|
-
few: Консультации
|
44
|
-
many: Консультаций
|
45
|
-
other: Консультаций
|
46
41
|
decidim/consultations/question:
|
47
42
|
one: Вопрос
|
48
43
|
few: Вопроса
|
@@ -84,8 +79,6 @@ ru:
|
|
84
79
|
create:
|
85
80
|
error: При попытке создать новую консультацию произошла ошибка.
|
86
81
|
success: Консультация успешно создана.
|
87
|
-
destroy:
|
88
|
-
success: Консультация успешно удалена.
|
89
82
|
edit:
|
90
83
|
update: Обновить
|
91
84
|
form:
|
data/config/locales/sv.yml
CHANGED
@@ -38,7 +38,7 @@ sv:
|
|
38
38
|
not_found: Svar ej hittat.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: Samråd
|
43
43
|
other: samråd
|
44
44
|
decidim/consultations/question:
|
@@ -49,7 +49,7 @@ sv:
|
|
49
49
|
other: Svar
|
50
50
|
decidim/consultations/vote:
|
51
51
|
one: Rösta
|
52
|
-
other:
|
52
|
+
other: Rösta
|
53
53
|
decidim:
|
54
54
|
admin:
|
55
55
|
actions:
|
@@ -76,8 +76,6 @@ sv:
|
|
76
76
|
create:
|
77
77
|
error: Det uppstod ett fel vid att skapa ett nytt samråd.
|
78
78
|
success: Samråd med framgångsrikt skapat.
|
79
|
-
destroy:
|
80
|
-
success: Samråd har tagits bort.
|
81
79
|
edit:
|
82
80
|
update: Uppdatera
|
83
81
|
form:
|
@@ -246,6 +244,12 @@ sv:
|
|
246
244
|
view_results: Se Resultat
|
247
245
|
vote: Rösta
|
248
246
|
unspecified: Ej angivet
|
247
|
+
help:
|
248
|
+
participatory_spaces:
|
249
|
+
consultations:
|
250
|
+
contextual: "<p>Samråd är ett utrymme som låter dig ställa en tydlig fråga till alla personer som bildar en organisation, ringa för att delta i samrådet, gnista och beställa debatten för eller mot ett svar. När samrådsdatumet anländer kan du rösta och publicera resultatet av rösterna.</p> <p>Exempel: Konsultationerna kan handla om nästan alla aspekter som påverkar en organisation: några exempel ändrar organisationens namn eller logotyp som erbjuder flera alternativ, bestämmer ja eller nej för att bli en del av en större organisation, att validera eller avvisa en ny strategisk planen eller resultatet av en arbetsgrupp, eller definiera om positionerna ska förbli högst 1, 2 eller 3 mandat.</p>\n"
|
251
|
+
page: "<p>Samråd är ett utrymme som låter dig ställa en tydlig fråga till alla personer som bildar en organisation, ringa för att delta i samrådet, gnista och beställa debatten för eller mot ett svar. När samrådsdatumet anländer kan du rösta och publicera resultatet av rösterna.</p> <p>Exempel: Konsultationerna kan handla om nästan alla aspekter som påverkar en organisation: några exempel ändrar organisationens namn eller logotyp som erbjuder flera alternativ, bestämmer ja eller nej för att bli en del av en större organisation, att validera eller avvisa en ny strategisk planen eller resultatet av en arbetsgrupp, eller definiera om positionerna ska förbli högst 1, 2 eller 3 mandat.</p>ard i organisationen.</p>\n"
|
252
|
+
title: Vad är samråd?
|
249
253
|
menu:
|
250
254
|
consultations: samråd
|
251
255
|
pages:
|
data/config/locales/tr-TR.yml
CHANGED
@@ -38,7 +38,7 @@ tr:
|
|
38
38
|
not_found: Yanıt bulunamadı.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/
|
41
|
+
decidim/consultation:
|
42
42
|
one: konsültasyon
|
43
43
|
other: istişareler
|
44
44
|
decidim/consultations/question:
|
@@ -47,9 +47,6 @@ tr:
|
|
47
47
|
decidim/consultations/response:
|
48
48
|
one: Tepki
|
49
49
|
other: Tepkiler
|
50
|
-
decidim/consultations/vote:
|
51
|
-
one: Oy yok
|
52
|
-
other: oy
|
53
50
|
decidim:
|
54
51
|
admin:
|
55
52
|
actions:
|
@@ -76,8 +73,6 @@ tr:
|
|
76
73
|
create:
|
77
74
|
error: Yeni bir danışma oluştururken bir hata oluştu.
|
78
75
|
success: Danışmanlık başarıyla oluşturuldu.
|
79
|
-
destroy:
|
80
|
-
success: Danışmanlık başarıyla silindi.
|
81
76
|
edit:
|
82
77
|
update: Güncelleştirme
|
83
78
|
form:
|
@@ -246,6 +241,12 @@ tr:
|
|
246
241
|
view_results: Sonuçları Görüntüle
|
247
242
|
vote: Oy
|
248
243
|
unspecified: Belirtilmemiş
|
244
|
+
help:
|
245
|
+
participatory_spaces:
|
246
|
+
consultations:
|
247
|
+
contextual: "<p>İstişareler, bir organizasyon oluşturan tüm kişilere net bir soru sormanızı, görüşmelere katılmak için bir çağrı yapmanızı, bir sorgunun lehine veya aleyhinde tartışma başlatmanızı ve talep etmenizi sağlayan bir alandır. Danışma tarihi geldiğinde, oyların sonuçlarını oylayabilir ve yayınlayabilirsiniz.</p> <p>Örnekler: İstişareler, bir örgütü etkileyen hemen hemen her yönüyle ilgili olabilir: bazı örnekler, organizasyonun adını veya logosunu çeşitli alternatifler sunarak değiştirir, daha büyük bir organizasyonun parçası olmak için Evet veya Hayır'a karar verir, yeni bir stratejikin geçerliliğini onaylar veya reddeder. Bir çalışma grubunun sonucu veya planı veya pozisyonların en fazla 1, 2 veya 3 mandat kalması gerekip gerekmediğini tanımlamak.</p>\n"
|
248
|
+
page: "<p>İstişareler, bir organizasyon oluşturan tüm kişilere net bir soru sormanızı, görüşmelere katılmak için bir çağrı yapmanızı, bir sorgunun lehine veya aleyhinde tartışma başlatmanızı ve talep etmenizi sağlayan bir alandır. Danışma tarihi geldiğinde, oyların sonuçlarını oylayabilir ve yayınlayabilirsiniz.</p> <p>Örnekler: İstişareler, bir örgütü etkileyen hemen hemen her yönüyle ilgili olabilir: bazı örnekler, organizasyonun adını veya logosunu çeşitli alternatifler sunarak değiştirir, daha büyük bir organizasyonun parçası olmak için Evet veya Hayır'a karar verir, yeni bir stratejikin geçerliliğini onaylar veya reddeder. Bir çalışma grubunun sonucu veya planı veya pozisyonların en fazla 1, 2 veya 3 mandat kalması gerekip gerekmediğini tanımlamak. Organizasyonda</p>ard.</p>\n"
|
249
|
+
title: Danışmalar nelerdir?
|
249
250
|
menu:
|
250
251
|
consultations: istişareler
|
251
252
|
pages:
|
data/config/locales/uk.yml
CHANGED
@@ -38,11 +38,6 @@ uk:
|
|
38
38
|
not_found: Відповідь не знайдено.
|
39
39
|
activerecord:
|
40
40
|
models:
|
41
|
-
decidim/consultations:
|
42
|
-
one: Консультація
|
43
|
-
few: Консультації
|
44
|
-
many: Консультацій
|
45
|
-
other: Консультацій
|
46
41
|
decidim/consultations/question:
|
47
42
|
one: Питання
|
48
43
|
few: Питання
|
@@ -84,8 +79,6 @@ uk:
|
|
84
79
|
create:
|
85
80
|
error: При спробі створити нову консультацію сталася помилка.
|
86
81
|
success: Консультацію успішно створено.
|
87
|
-
destroy:
|
88
|
-
success: Консультацію успішно видалено.
|
89
82
|
edit:
|
90
83
|
update: Оновити
|
91
84
|
form:
|
@@ -14,7 +14,7 @@ module Decidim
|
|
14
14
|
paths["lib/tasks"] = nil
|
15
15
|
|
16
16
|
routes do
|
17
|
-
resources :consultations, param: :slug, except: :show do
|
17
|
+
resources :consultations, param: :slug, except: [:show, :destroy] do
|
18
18
|
resource :publish, controller: "consultation_publications", only: [:create, :destroy]
|
19
19
|
resource :publish_results, controller: "consultation_results_publications", only: [:create, :destroy]
|
20
20
|
resources :questions, param: :slug, except: :show, shallow: true do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-consultations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Salvador Perez Garcia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: decidim-admin
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.16.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.16.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: decidim-comments
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.16.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 0.16.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: decidim-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
47
|
+
version: 0.16.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
54
|
+
version: 0.16.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: decidim-dev
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
61
|
+
version: 0.16.0
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.
|
68
|
+
version: 0.16.0
|
69
69
|
description: Extends Decidim adding a first level public consultation component
|
70
70
|
email:
|
71
71
|
- jsperezg@gmail.com
|
@@ -295,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
295
295
|
version: '0'
|
296
296
|
requirements: []
|
297
297
|
rubyforge_project:
|
298
|
-
rubygems_version: 2.7.
|
298
|
+
rubygems_version: 2.7.6
|
299
299
|
signing_key:
|
300
300
|
specification_version: 4
|
301
301
|
summary: Decidim consultations module
|