decidim-elections 0.27.0 → 0.27.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/votings/content_blocks/landing_page/description_cell.rb +1 -1
- data/app/commands/decidim/elections/admin/import_proposals_to_elections.rb +4 -1
- data/app/controllers/decidim/elections/elections_controller.rb +2 -2
- data/app/controllers/decidim/votings/admin/imports_controller.rb +14 -0
- data/app/controllers/decidim/votings/votings_controller.rb +2 -2
- data/app/permissions/decidim/votings/admin/permissions.rb +4 -1
- data/config/locales/ca.yml +4 -4
- data/config/locales/cs.yml +4 -4
- data/config/locales/en.yml +4 -4
- data/config/locales/es-MX.yml +4 -4
- data/config/locales/es-PY.yml +4 -4
- data/config/locales/es.yml +4 -4
- data/config/locales/eu.yml +4 -0
- data/config/locales/fi-plain.yml +3 -3
- data/config/locales/fi.yml +3 -3
- data/config/locales/fr-CA.yml +4 -4
- data/config/locales/fr.yml +4 -4
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/ja.yml +4 -4
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/lt.yml +0 -4
- data/lib/decidim/elections/version.rb +1 -1
- data/lib/decidim/votings/admin_engine.rb +3 -0
- metadata +15 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70943e633e815f28c1717850e96dbe2d4fde1b270824addef6b4d84618ca2f8c
|
4
|
+
data.tar.gz: 4a73b7a4fbe81b0190e04331d5c977a8124850308bc3a988823b26627282ed39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ba63af413217e8e398cd71d6df1c3b62a2c3dc0263d66bdd498b850dca6b838d880187de876199b80064003f891da9e50ce8aee6996db05bef1d7491b21dd45
|
7
|
+
data.tar.gz: d1854202838d709541eeee58fd23ce863d217bb1152c197926b217a6f0533f213f5cb3be020f772a50dfde9f8288a7d752fe7769b1ff37fe0e7b90e16e6eb08e
|
@@ -77,7 +77,10 @@ module Decidim
|
|
77
77
|
end
|
78
78
|
|
79
79
|
def proposal_already_copied?(original_proposal)
|
80
|
-
|
80
|
+
# Note: we are including also answers from unpublished components
|
81
|
+
# because otherwise duplicates could be created until the component is
|
82
|
+
# published.
|
83
|
+
original_proposal.linked_resources(:answers, "related_proposals", component_published: false).any? do |answer|
|
81
84
|
answer.question == target_question
|
82
85
|
end
|
83
86
|
end
|
@@ -59,8 +59,8 @@ module Decidim
|
|
59
59
|
end
|
60
60
|
|
61
61
|
def paginated_elections
|
62
|
-
@paginated_elections ||=
|
63
|
-
@paginated_elections =
|
62
|
+
@paginated_elections ||= reorder(search.result.published)
|
63
|
+
@paginated_elections = paginate(@paginated_elections)
|
64
64
|
end
|
65
65
|
|
66
66
|
def scheduled_elections
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module Votings
|
5
|
+
module Admin
|
6
|
+
# This controller allows importing things.
|
7
|
+
# It is targeted for customizations for importing things that lives under
|
8
|
+
# a voting space.
|
9
|
+
class ImportsController < Decidim::Admin::ImportsController
|
10
|
+
include VotingAdmin
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -133,8 +133,8 @@ module Decidim
|
|
133
133
|
end
|
134
134
|
|
135
135
|
def paginated_votings
|
136
|
-
@paginated_votings ||=
|
137
|
-
@paginated_votings =
|
136
|
+
@paginated_votings ||= reorder(search.result.published)
|
137
|
+
@paginated_votings = paginate(@paginated_votings)
|
138
138
|
end
|
139
139
|
|
140
140
|
def promoted_votings
|
@@ -59,7 +59,8 @@ module Decidim
|
|
59
59
|
:monitoring_committee_verify_elections,
|
60
60
|
:monitoring_committee_election_result, :monitoring_committee_election_results,
|
61
61
|
:census,
|
62
|
-
:ballot_style, :ballot_styles
|
62
|
+
:ballot_style, :ballot_styles,
|
63
|
+
:component_data
|
63
64
|
].member? permission_action.subject
|
64
65
|
|
65
66
|
case permission_action.subject
|
@@ -118,6 +119,8 @@ module Decidim
|
|
118
119
|
when :update, :delete
|
119
120
|
toggle_allow(user.admin? && (voting.dataset.blank? || voting.dataset.init_data?) && ballot_style.present?)
|
120
121
|
end
|
122
|
+
when :component_data
|
123
|
+
toggle_allow(user.admin?) if permission_action.action == :import
|
121
124
|
end
|
122
125
|
end
|
123
126
|
|
data/config/locales/ca.yml
CHANGED
@@ -246,8 +246,8 @@ ca:
|
|
246
246
|
create_election:
|
247
247
|
census: Cens
|
248
248
|
errors:
|
249
|
-
census_codes_generated:
|
250
|
-
census_frozen:
|
249
|
+
census_codes_generated: Els codis d'accés al cens no s'han pogut generar.
|
250
|
+
census_frozen: Els codis d'accés al cens no s'han pogut exportar.
|
251
251
|
census_uploaded: No s'ha pujat el cens per a aquestes eleccions.
|
252
252
|
component_published: L'elecció <strong>no està publicada</strong>.
|
253
253
|
max_selections: Les preguntes no tenen un <strong>valor correcte per quantitat de respostes</strong>
|
@@ -263,8 +263,8 @@ ca:
|
|
263
263
|
'false': no té una <strong>clau pública</strong>
|
264
264
|
'true': té una <strong>clau pública</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated:
|
267
|
-
census_frozen:
|
266
|
+
census_codes_generated: S'han generat els codis d'accés al cens.
|
267
|
+
census_frozen: S'han exportat els codis per al cens i el cens ha quedat congelat.
|
268
268
|
census_uploaded: El cens s'ha pujat.
|
269
269
|
component_published: L'elecció està <strong>publicada</strong>.
|
270
270
|
max_selections: Totes les preguntes tenen un valor correcte per <strong>màxim de respostes</strong>.
|
data/config/locales/cs.yml
CHANGED
@@ -264,8 +264,8 @@ cs:
|
|
264
264
|
create_election:
|
265
265
|
census: Rejstřík obyvatel
|
266
266
|
errors:
|
267
|
-
census_codes_generated:
|
268
|
-
census_frozen:
|
267
|
+
census_codes_generated: Přístupové kódy pro rejstřík osob nejsou vygenerovány.
|
268
|
+
census_frozen: Přístupové kódy pro rejstřík osob nejsou exportovány.
|
269
269
|
census_uploaded: Pro tyto volby není nahrán žádný rejstřík obyvatel.
|
270
270
|
component_published: Volební složka <strong>není publikována</strong>.
|
271
271
|
max_selections: Otázky nemají <strong>správnou hodnotu pro množství odpovědí</strong>
|
@@ -281,8 +281,8 @@ cs:
|
|
281
281
|
'false': nemá <strong>veřejný klíč</strong>
|
282
282
|
'true': má <strong>veřejný klíč</strong>
|
283
283
|
requirements:
|
284
|
-
census_codes_generated:
|
285
|
-
census_frozen:
|
284
|
+
census_codes_generated: Vygenerované přístupové kódy pro rejstřík osob.
|
285
|
+
census_frozen: Přístupové kódy pro rejstřík osob jsou exportovány a sčítání je zmrazeno.
|
286
286
|
census_uploaded: Rejstřík obyvatel je nahrán.
|
287
287
|
component_published: Volební komponenta je <strong>publikována</strong>.
|
288
288
|
max_selections: Všechny otázky mají správnou hodnotu pro <strong>maximum odpovědí</strong>.
|
data/config/locales/en.yml
CHANGED
@@ -246,8 +246,8 @@ en:
|
|
246
246
|
create_election:
|
247
247
|
census: Census
|
248
248
|
errors:
|
249
|
-
census_codes_generated:
|
250
|
-
census_frozen:
|
249
|
+
census_codes_generated: Access codes for the census are not generated.
|
250
|
+
census_frozen: Access codes for the census are not exported.
|
251
251
|
census_uploaded: There is no census uploaded for this election.
|
252
252
|
component_published: The election component is <strong>not published</strong>.
|
253
253
|
max_selections: The questions do not have a <strong>correct value for amount of answers</strong>
|
@@ -263,8 +263,8 @@ en:
|
|
263
263
|
'false': does not have a <strong>public key</strong>
|
264
264
|
'true': has a <strong>public key</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated:
|
267
|
-
census_frozen:
|
266
|
+
census_codes_generated: Access codes for the census are generated.
|
267
|
+
census_frozen: Access codes for the census are exported and census is frozen.
|
268
268
|
census_uploaded: Census is uploaded.
|
269
269
|
component_published: The election component is <strong>published</strong>.
|
270
270
|
max_selections: All the questions have a correct value for <strong>maximum of answers</strong>.
|
data/config/locales/es-MX.yml
CHANGED
@@ -246,8 +246,8 @@ es-MX:
|
|
246
246
|
create_election:
|
247
247
|
census: Censo
|
248
248
|
errors:
|
249
|
-
census_codes_generated: Los códigos de acceso no se han podido generar.
|
250
|
-
census_frozen: Los códigos de acceso no se han
|
249
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
250
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
251
251
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
252
252
|
component_published: La elección <strong>no está publicada</strong>.
|
253
253
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
@@ -263,8 +263,8 @@ es-MX:
|
|
263
263
|
'false': no tiene una <strong>clave pública</strong>
|
264
264
|
'true': tiene una <strong> clave pública</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated:
|
267
|
-
census_frozen:
|
266
|
+
census_codes_generated: Se han generador los códigos de acceso al censo.
|
267
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
268
268
|
census_uploaded: El censo está subido.
|
269
269
|
component_published: La elección está <strong>publicada</strong>.
|
270
270
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/es-PY.yml
CHANGED
@@ -246,8 +246,8 @@ es-PY:
|
|
246
246
|
create_election:
|
247
247
|
census: Censo
|
248
248
|
errors:
|
249
|
-
census_codes_generated: Los códigos de acceso no se han podido generar.
|
250
|
-
census_frozen: Los códigos de acceso no se han
|
249
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
250
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
251
251
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
252
252
|
component_published: La elección <strong>no está publicada</strong>.
|
253
253
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
@@ -263,8 +263,8 @@ es-PY:
|
|
263
263
|
'false': no tiene una <strong>clave pública</strong>
|
264
264
|
'true': tiene una <strong> clave pública</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated:
|
267
|
-
census_frozen:
|
266
|
+
census_codes_generated: Se han generador los códigos de acceso al censo.
|
267
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
268
268
|
census_uploaded: El censo está subido.
|
269
269
|
component_published: La elección está <strong>publicada</strong>.
|
270
270
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/es.yml
CHANGED
@@ -246,8 +246,8 @@ es:
|
|
246
246
|
create_election:
|
247
247
|
census: Censo
|
248
248
|
errors:
|
249
|
-
census_codes_generated: Los códigos de acceso no se han podido generar.
|
250
|
-
census_frozen: Los códigos de acceso no se han
|
249
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
250
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
251
251
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
252
252
|
component_published: La elección <strong>no está publicada</strong>.
|
253
253
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
@@ -263,8 +263,8 @@ es:
|
|
263
263
|
'false': no tiene una <strong>clave pública</strong>
|
264
264
|
'true': tiene una <strong> clave pública</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated:
|
267
|
-
census_frozen:
|
266
|
+
census_codes_generated: Se han generador los códigos de acceso al censo.
|
267
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
268
268
|
census_uploaded: El censo está subido.
|
269
269
|
component_published: La elección está <strong>publicada</strong>.
|
270
270
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/eu.yml
CHANGED
@@ -223,6 +223,8 @@ eu:
|
|
223
223
|
steps:
|
224
224
|
create_election:
|
225
225
|
errors:
|
226
|
+
census_codes_generated: Erroldarako sarbide kodeak ez dira sortu.
|
227
|
+
census_frozen: Erroldarako sarbide kodeak ez dira esportatu.
|
226
228
|
max_selections: Galderek ez dute <strong>balio zuzenik </strong> galdera kopururako
|
227
229
|
minimum_answers: Galderek gutxienez eduki behar dituzte <strong> bi erantzun </strong>.
|
228
230
|
minimum_questions: <strong>aukerak gutxienez </strong> galdera bat eduki behar du.
|
@@ -235,6 +237,8 @@ eu:
|
|
235
237
|
'false': ez du <strong>gako publikorik</strong>
|
236
238
|
'true': badu <strong> gako publiko bat </strong>
|
237
239
|
requirements:
|
240
|
+
census_codes_generated: Sortu dira erroldarako sarbide kodeak.
|
241
|
+
census_frozen: Erroldarako sarbide kodeak esportatu dira eta errolda izoztu da.
|
238
242
|
max_selections: Erantzun guztiek balio zuzena dute honetarako <strong>erantzun gehien</strong>.
|
239
243
|
minimum_answers: Galdera bakoitzak badu <strong>gutxienez 2 erantzun</strong>.
|
240
244
|
minimum_questions: Aukerak badu <strong>gutxienez galdera 1</strong>.
|
data/config/locales/fi-plain.yml
CHANGED
@@ -247,7 +247,7 @@ fi-pl:
|
|
247
247
|
census: Henkilötietorekisteri
|
248
248
|
errors:
|
249
249
|
census_codes_generated: Henkilötietorekisterin äänestyskoodeja ei ole luotu.
|
250
|
-
census_frozen:
|
250
|
+
census_frozen: Henkilötietorekisterin äänestyskoodeja ei ole viety.
|
251
251
|
census_uploaded: Tälle äänestykselle ei ole luotu henkilötietorekisteriä.
|
252
252
|
component_published: Vaalikomponenttia <strong>ei ole julkaistu</strong>.
|
253
253
|
max_selections: Kysymyksillä ei ole <strong>oikeaa arvoa vastausten määrälle</strong>
|
@@ -263,8 +263,8 @@ fi-pl:
|
|
263
263
|
'false': vaalilla ei ole <strong>julkista avainta</strong>
|
264
264
|
'true': vaalilla on <strong>julkinen avain</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated: Henkilötietorekisterin
|
267
|
-
census_frozen: Henkilötietorekisterin
|
266
|
+
census_codes_generated: Henkilötietorekisterin äänestyskoodit on luotu.
|
267
|
+
census_frozen: Henkilötietorekisterin äänestyskoodit on viety ja henkilötietorekisteri on lukittu.
|
268
268
|
census_uploaded: Henkilötietorekisteri on ladattu palveluun.
|
269
269
|
component_published: Vaalikomponentti <strong>on julkaistu</strong>.
|
270
270
|
max_selections: Kaikilla kysymyksillä on oikea arvo asetukselle <strong>vastausten maksimimäärä</strong>.
|
data/config/locales/fi.yml
CHANGED
@@ -247,7 +247,7 @@ fi:
|
|
247
247
|
census: Henkilötietorekisteri
|
248
248
|
errors:
|
249
249
|
census_codes_generated: Henkilötietorekisterin äänestyskoodeja ei ole luotu.
|
250
|
-
census_frozen:
|
250
|
+
census_frozen: Henkilötietorekisterin äänestyskoodeja ei ole viety.
|
251
251
|
census_uploaded: Tälle äänestykselle ei ole luotu henkilötietorekisteriä.
|
252
252
|
component_published: Vaalikomponenttia <strong>ei ole julkaistu</strong>.
|
253
253
|
max_selections: Kysymyksillä ei ole <strong>oikeaa arvoa vastausten määrälle</strong>
|
@@ -263,8 +263,8 @@ fi:
|
|
263
263
|
'false': vaalilla ei ole <strong>julkista avainta</strong>
|
264
264
|
'true': vaalilla on <strong>julkinen avain</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated: Henkilötietorekisterin
|
267
|
-
census_frozen: Henkilötietorekisterin
|
266
|
+
census_codes_generated: Henkilötietorekisterin äänestyskoodit on luotu.
|
267
|
+
census_frozen: Henkilötietorekisterin äänestyskoodit on viety ja henkilötietorekisteri on lukittu.
|
268
268
|
census_uploaded: Henkilötietorekisteri on ladattu palveluun.
|
269
269
|
component_published: Vaalikomponentti <strong>on julkaistu</strong>.
|
270
270
|
max_selections: Kaikilla kysymyksillä on oikea arvo asetukselle <strong>vastausten maksimimäärä</strong>.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -246,8 +246,8 @@ fr-CA:
|
|
246
246
|
create_election:
|
247
247
|
census: Recensement
|
248
248
|
errors:
|
249
|
-
census_codes_generated: Les codes
|
250
|
-
census_frozen: Les codes
|
249
|
+
census_codes_generated: Les codes d'accès pour le recensement ne sont pas générés.
|
250
|
+
census_frozen: Les codes d'accès pour le recensement ne sont pas exportés.
|
251
251
|
census_uploaded: Il n'y a pas de recensement téléchargé pour cette élection.
|
252
252
|
component_published: La fonctionnalité élection n'est <strong>pas publiée</strong>.
|
253
253
|
max_selections: Les questions n'ont pas de <strong>valeur correcte pour le nombre de réponses</strong>
|
@@ -263,8 +263,8 @@ fr-CA:
|
|
263
263
|
'false': n'a pas de <strong>clé publique</strong>
|
264
264
|
'true': a une <strong>clé publique</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated: Les codes
|
267
|
-
census_frozen: Les codes sont exportés et le recensement est gelé.
|
266
|
+
census_codes_generated: Les codes d'accès pour le recensement sont générés.
|
267
|
+
census_frozen: Les codes d'accès pour le recensement sont exportés et le recensement est gelé.
|
268
268
|
census_uploaded: Le recensement a été téléchargé.
|
269
269
|
component_published: La fonctionnalité élection est <strong>publiée</strong>.
|
270
270
|
max_selections: Toutes les questions ont une valeur correcte pour <strong>le maximum de réponses</strong>.
|
data/config/locales/fr.yml
CHANGED
@@ -246,8 +246,8 @@ fr:
|
|
246
246
|
create_election:
|
247
247
|
census: Recensement
|
248
248
|
errors:
|
249
|
-
census_codes_generated: Les codes
|
250
|
-
census_frozen: Les codes
|
249
|
+
census_codes_generated: Les codes d'accès pour le recensement ne sont pas générés.
|
250
|
+
census_frozen: Les codes d'accès pour le recensement ne sont pas exportés.
|
251
251
|
census_uploaded: Il n'y a pas de recensement téléchargé pour cette élection.
|
252
252
|
component_published: La fonctionnalité élection n'est <strong>pas publiée</strong>.
|
253
253
|
max_selections: Les questions n'ont pas de <strong>valeur correcte pour le nombre de réponses</strong>
|
@@ -263,8 +263,8 @@ fr:
|
|
263
263
|
'false': n'a pas de <strong>clé publique</strong>
|
264
264
|
'true': a une <strong>clé publique</strong>
|
265
265
|
requirements:
|
266
|
-
census_codes_generated: Les codes
|
267
|
-
census_frozen: Les codes sont exportés et le recensement est gelé.
|
266
|
+
census_codes_generated: Les codes d'accès pour le recensement sont générés.
|
267
|
+
census_frozen: Les codes d'accès pour le recensement sont exportés et le recensement est gelé.
|
268
268
|
census_uploaded: Le recensement a été téléchargé.
|
269
269
|
component_published: La fonctionnalité élection est <strong>publiée</strong>.
|
270
270
|
max_selections: Toutes les questions ont une valeur correcte pour <strong>le maximum de réponses</strong>.
|
@@ -0,0 +1 @@
|
|
1
|
+
gn:
|
data/config/locales/ja.yml
CHANGED
@@ -237,8 +237,8 @@ ja:
|
|
237
237
|
create_election:
|
238
238
|
census: センサス
|
239
239
|
errors:
|
240
|
-
census_codes_generated:
|
241
|
-
census_frozen:
|
240
|
+
census_codes_generated: センサスのアクセスコードは生成されませんでした。
|
241
|
+
census_frozen: センサスのアクセスコードはエクスポートされませんでした。
|
242
242
|
census_uploaded: この選挙にアップロードされたセンサスはありません。
|
243
243
|
component_published: 選挙コンポーネントは <strong>未公開です</strong>。
|
244
244
|
max_selections: 質問が <strong>回答の数に対して正しく</strong>ありません
|
@@ -254,8 +254,8 @@ ja:
|
|
254
254
|
'false': <strong>公開鍵</strong>がありません
|
255
255
|
'true': <strong>公開鍵</strong>があります
|
256
256
|
requirements:
|
257
|
-
census_codes_generated:
|
258
|
-
census_frozen:
|
257
|
+
census_codes_generated: センサスのアクセスコードが生成されます。
|
258
|
+
census_frozen: センサスのアクセスコードはエクスポートされ、センサスは凍結されます。
|
259
259
|
census_uploaded: センサスがアップロードされました。
|
260
260
|
component_published: 選挙コンポーネントは <strong>公開済みです</strong>.
|
261
261
|
max_selections: すべての質問は正しい <strong>回答の最大値</strong> を持っています。
|
@@ -0,0 +1 @@
|
|
1
|
+
lo:
|
data/config/locales/lt.yml
CHANGED
@@ -264,8 +264,6 @@ lt:
|
|
264
264
|
create_election:
|
265
265
|
census: Surašymas
|
266
266
|
errors:
|
267
|
-
census_codes_generated: Rinkimų kodai surašymui nėra sugeneruoti.
|
268
|
-
census_frozen: Rinkimų kodai nėra eksportuoti.
|
269
267
|
census_uploaded: Šiems rinkimams nėra surašymo.
|
270
268
|
component_published: Rinkimų komponentas <strong>nėra publikuotas</strong>.
|
271
269
|
max_selections: Klausimai neturi <strong>teisingos vertės atsakymų kiekiui</strong>
|
@@ -281,8 +279,6 @@ lt:
|
|
281
279
|
'false': neturi <strong>viešo rakto</strong>
|
282
280
|
'true': turi <strong>viešą raktą</strong>
|
283
281
|
requirements:
|
284
|
-
census_codes_generated: Surašymo kodai sugeneruoti.
|
285
|
-
census_frozen: Kodai eksportuoti ir surašymas užšaldytas.
|
286
282
|
census_uploaded: Surašymas įkeliamas.
|
287
283
|
component_published: Rinkimų komponentas <strong>paskelbtas</strong>.
|
288
284
|
max_selections: Visi klausimai turi teisingą kiekį <strong>maksimalių klausimų</strong>.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-elections
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.27.
|
4
|
+
version: 0.27.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leonardo Diez
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-11-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: decidim-bulletin_board
|
@@ -59,42 +59,42 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - '='
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: 0.27.
|
62
|
+
version: 0.27.1
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - '='
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.27.
|
69
|
+
version: 0.27.1
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: decidim-forms
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - '='
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: 0.27.
|
76
|
+
version: 0.27.1
|
77
77
|
type: :runtime
|
78
78
|
prerelease: false
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
81
|
- - '='
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version: 0.27.
|
83
|
+
version: 0.27.1
|
84
84
|
- !ruby/object:Gem::Dependency
|
85
85
|
name: decidim-proposals
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
88
|
- - '='
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: 0.27.
|
90
|
+
version: 0.27.1
|
91
91
|
type: :runtime
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
95
|
- - '='
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version: 0.27.
|
97
|
+
version: 0.27.1
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: rack-attack
|
100
100
|
requirement: !ruby/object:Gem::Requirement
|
@@ -115,28 +115,28 @@ dependencies:
|
|
115
115
|
requirements:
|
116
116
|
- - '='
|
117
117
|
- !ruby/object:Gem::Version
|
118
|
-
version: 0.27.
|
118
|
+
version: 0.27.1
|
119
119
|
type: :development
|
120
120
|
prerelease: false
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
122
122
|
requirements:
|
123
123
|
- - '='
|
124
124
|
- !ruby/object:Gem::Version
|
125
|
-
version: 0.27.
|
125
|
+
version: 0.27.1
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
127
|
name: decidim-dev
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|
129
129
|
requirements:
|
130
130
|
- - '='
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 0.27.
|
132
|
+
version: 0.27.1
|
133
133
|
type: :development
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - '='
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: 0.27.
|
139
|
+
version: 0.27.1
|
140
140
|
description: The Elections module adds elections to any participatory space.
|
141
141
|
email:
|
142
142
|
- leo@codegram.com
|
@@ -288,6 +288,7 @@ files:
|
|
288
288
|
- app/controllers/decidim/votings/admin/ballot_styles_controller.rb
|
289
289
|
- app/controllers/decidim/votings/admin/component_permissions_controller.rb
|
290
290
|
- app/controllers/decidim/votings/admin/components_controller.rb
|
291
|
+
- app/controllers/decidim/votings/admin/imports_controller.rb
|
291
292
|
- app/controllers/decidim/votings/admin/monitoring_committee_election_results_controller.rb
|
292
293
|
- app/controllers/decidim/votings/admin/monitoring_committee_members_controller.rb
|
293
294
|
- app/controllers/decidim/votings/admin/monitoring_committee_polling_station_closures_controller.rb
|
@@ -667,6 +668,7 @@ files:
|
|
667
668
|
- config/locales/fr.yml
|
668
669
|
- config/locales/ga-IE.yml
|
669
670
|
- config/locales/gl.yml
|
671
|
+
- config/locales/gn-PY.yml
|
670
672
|
- config/locales/hr-HR.yml
|
671
673
|
- config/locales/hr.yml
|
672
674
|
- config/locales/hu.yml
|
@@ -679,6 +681,7 @@ files:
|
|
679
681
|
- config/locales/ko.yml
|
680
682
|
- config/locales/lb-LU.yml
|
681
683
|
- config/locales/lb.yml
|
684
|
+
- config/locales/lo-LA.yml
|
682
685
|
- config/locales/lt-LT.yml
|
683
686
|
- config/locales/lt.yml
|
684
687
|
- config/locales/lv.yml
|