decidim-elections 0.26.3 → 0.26.4
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/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: 8ec0e86b7444f64ee3b9a825db1950f6dbfd337abf7ea93ca577d4637225d99d
|
|
4
|
+
data.tar.gz: 2303d3bad0bfc976ee51ba20cd5cc0b4722706f2a7b216cda95d47a1a6c71d63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b74806f59ce7fe4cdb2a78e3a7fe813ff345e0024a01e8cb270e865c2dbd671faef589490a9d7d5393d50ca413c8affe79ef9007861ab5f2db6436033f0ce58f
|
|
7
|
+
data.tar.gz: 2a915f400a8549614a12be707202a991376f1b732bc171b74a27e423b6c1cae88840cb837ce07f55987ef184a32e185d884dd6b0099b35c7c8c2934138a680cc
|
|
@@ -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
|
|
@@ -57,8 +57,8 @@ module Decidim
|
|
|
57
57
|
end
|
|
58
58
|
|
|
59
59
|
def paginated_elections
|
|
60
|
-
@paginated_elections ||=
|
|
61
|
-
@paginated_elections =
|
|
60
|
+
@paginated_elections ||= reorder(search.results.published)
|
|
61
|
+
@paginated_elections = paginate(@paginated_elections)
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
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
|
|
@@ -129,8 +129,8 @@ module Decidim
|
|
|
129
129
|
end
|
|
130
130
|
|
|
131
131
|
def paginated_votings
|
|
132
|
-
@paginated_votings ||=
|
|
133
|
-
@paginated_votings =
|
|
132
|
+
@paginated_votings ||= reorder(search.results.published)
|
|
133
|
+
@paginated_votings = paginate(@paginated_votings)
|
|
134
134
|
end
|
|
135
135
|
|
|
136
136
|
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
|
|
@@ -130,6 +131,8 @@ module Decidim
|
|
|
130
131
|
end
|
|
131
132
|
when :ballot_styles
|
|
132
133
|
toggle_allow(user.admin?) if permission_action.action == :read
|
|
134
|
+
when :component_data
|
|
135
|
+
toggle_allow(user.admin?) if permission_action.action == :import
|
|
133
136
|
end
|
|
134
137
|
end
|
|
135
138
|
|
data/config/locales/ca.yml
CHANGED
|
@@ -232,8 +232,8 @@ ca:
|
|
|
232
232
|
create_election:
|
|
233
233
|
census: Cens
|
|
234
234
|
errors:
|
|
235
|
-
census_codes_generated:
|
|
236
|
-
census_frozen:
|
|
235
|
+
census_codes_generated: Els codis d'accés al cens no s'han pogut generar.
|
|
236
|
+
census_frozen: Els codis d'accés al cens no s'han pogut exportar.
|
|
237
237
|
census_uploaded: No s'ha pujat el cens per a aquestes eleccions.
|
|
238
238
|
component_published: L'elecció <strong>no està publicada</strong>.
|
|
239
239
|
max_selections: Les preguntes no tenen un <strong>valor correcte per quantitat de respostes</strong>
|
|
@@ -249,8 +249,8 @@ ca:
|
|
|
249
249
|
'false': no té una <strong>clau pública</strong>
|
|
250
250
|
'true': té una <strong>clau pública</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
252
|
+
census_codes_generated: S'han generat els codis d'accés al cens.
|
|
253
|
+
census_frozen: S'han exportat els codis per al cens i el cens ha quedat congelat.
|
|
254
254
|
census_uploaded: El cens s'ha pujat.
|
|
255
255
|
component_published: L'elecció està <strong>publicada</strong>.
|
|
256
256
|
max_selections: Totes les preguntes tenen un valor correcte per <strong>màxim de respostes</strong>.
|
data/config/locales/cs.yml
CHANGED
|
@@ -250,8 +250,8 @@ cs:
|
|
|
250
250
|
create_election:
|
|
251
251
|
census: Rejstřík obyvatel
|
|
252
252
|
errors:
|
|
253
|
-
census_codes_generated:
|
|
254
|
-
census_frozen:
|
|
253
|
+
census_codes_generated: Přístupové kódy pro rejstřík osob nejsou vygenerovány.
|
|
254
|
+
census_frozen: Přístupové kódy pro rejstřík osob nejsou exportovány.
|
|
255
255
|
census_uploaded: Pro tyto volby není nahrán žádný rejstřík obyvatel.
|
|
256
256
|
component_published: Volební složka <strong>není publikována</strong>.
|
|
257
257
|
max_selections: Otázky nemají <strong>správnou hodnotu pro množství odpovědí</strong>
|
|
@@ -267,8 +267,8 @@ cs:
|
|
|
267
267
|
'false': nemá <strong>veřejný klíč</strong>
|
|
268
268
|
'true': má <strong>veřejný klíč</strong>
|
|
269
269
|
requirements:
|
|
270
|
-
census_codes_generated:
|
|
271
|
-
census_frozen:
|
|
270
|
+
census_codes_generated: Vygenerované přístupové kódy pro rejstřík osob.
|
|
271
|
+
census_frozen: Přístupové kódy pro rejstřík osob jsou exportovány a sčítání je zmrazeno.
|
|
272
272
|
census_uploaded: Rejstřík obyvatel je nahrán.
|
|
273
273
|
component_published: Volební komponenta je <strong>publikována</strong>.
|
|
274
274
|
max_selections: Všechny otázky mají správnou hodnotu pro <strong>maximum odpovědí</strong>.
|
data/config/locales/en.yml
CHANGED
|
@@ -233,8 +233,8 @@ en:
|
|
|
233
233
|
create_election:
|
|
234
234
|
census: Census
|
|
235
235
|
errors:
|
|
236
|
-
census_codes_generated:
|
|
237
|
-
census_frozen:
|
|
236
|
+
census_codes_generated: Access codes for the census are not generated.
|
|
237
|
+
census_frozen: Access codes for the census are not exported.
|
|
238
238
|
census_uploaded: There is no census uploaded for this election.
|
|
239
239
|
component_published: The election component is <strong>not published</strong>.
|
|
240
240
|
max_selections: The questions do not have a <strong>correct value for amount of answers</strong>
|
|
@@ -250,8 +250,8 @@ en:
|
|
|
250
250
|
'false': does not have a <strong>public key</strong>
|
|
251
251
|
'true': has a <strong>public key</strong>
|
|
252
252
|
requirements:
|
|
253
|
-
census_codes_generated:
|
|
254
|
-
census_frozen:
|
|
253
|
+
census_codes_generated: Access codes for the census are generated.
|
|
254
|
+
census_frozen: Access codes for the census are exported and census is frozen.
|
|
255
255
|
census_uploaded: Census is uploaded.
|
|
256
256
|
component_published: The election component is <strong>published</strong>.
|
|
257
257
|
max_selections: All the questions have a correct value for <strong>maximum of answers</strong>.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -232,8 +232,8 @@ es-MX:
|
|
|
232
232
|
create_election:
|
|
233
233
|
census: Censo
|
|
234
234
|
errors:
|
|
235
|
-
census_codes_generated: Los códigos de acceso no se han podido generar.
|
|
236
|
-
census_frozen: Los códigos de acceso no se han
|
|
235
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
|
236
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
|
237
237
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
|
238
238
|
component_published: La elección <strong>no está publicada</strong>.
|
|
239
239
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
|
@@ -249,8 +249,8 @@ es-MX:
|
|
|
249
249
|
'false': no tiene una <strong>clave pública</strong>
|
|
250
250
|
'true': tiene una <strong> clave pública</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
252
|
+
census_codes_generated: Se han generador los códigos de acceso al censo.
|
|
253
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
|
254
254
|
census_uploaded: El censo está subido.
|
|
255
255
|
component_published: La elección está <strong>publicada</strong>.
|
|
256
256
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -232,8 +232,8 @@ es-PY:
|
|
|
232
232
|
create_election:
|
|
233
233
|
census: Censo
|
|
234
234
|
errors:
|
|
235
|
-
census_codes_generated: Los códigos de acceso no se han podido generar.
|
|
236
|
-
census_frozen: Los códigos de acceso no se han
|
|
235
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
|
236
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
|
237
237
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
|
238
238
|
component_published: La elección <strong>no está publicada</strong>.
|
|
239
239
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
|
@@ -249,8 +249,8 @@ es-PY:
|
|
|
249
249
|
'false': no tiene una <strong>clave pública</strong>
|
|
250
250
|
'true': tiene una <strong> clave pública</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
252
|
+
census_codes_generated: Se han generador los códigos de acceso al censo.
|
|
253
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
|
254
254
|
census_uploaded: El censo está subido.
|
|
255
255
|
component_published: La elección está <strong>publicada</strong>.
|
|
256
256
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/es.yml
CHANGED
|
@@ -232,8 +232,8 @@ es:
|
|
|
232
232
|
create_election:
|
|
233
233
|
census: Censo
|
|
234
234
|
errors:
|
|
235
|
-
census_codes_generated: Los códigos de acceso no se han podido generar.
|
|
236
|
-
census_frozen: Los códigos de acceso no se han
|
|
235
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
|
236
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
|
237
237
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
|
238
238
|
component_published: La elección <strong>no está publicada</strong>.
|
|
239
239
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
|
@@ -249,8 +249,8 @@ es:
|
|
|
249
249
|
'false': no tiene una <strong>clave pública</strong>
|
|
250
250
|
'true': tiene una <strong> clave pública</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
252
|
+
census_codes_generated: Se han generador los códigos de acceso al censo.
|
|
253
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
|
254
254
|
census_uploaded: El censo está subido.
|
|
255
255
|
component_published: La elección está <strong>publicada</strong>.
|
|
256
256
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/eu.yml
CHANGED
|
@@ -222,6 +222,8 @@ eu:
|
|
|
222
222
|
steps:
|
|
223
223
|
create_election:
|
|
224
224
|
errors:
|
|
225
|
+
census_codes_generated: Erroldarako sarbide kodeak ez dira sortu.
|
|
226
|
+
census_frozen: Erroldarako sarbide kodeak ez dira esportatu.
|
|
225
227
|
max_selections: Galderek ez dute <strong>balio zuzenik </strong> galdera kopururako
|
|
226
228
|
minimum_answers: Galderek gutxienez eduki behar dituzte <strong> bi erantzun </strong>.
|
|
227
229
|
minimum_questions: <strong>aukerak gutxienez </strong> galdera bat eduki behar du.
|
|
@@ -234,6 +236,8 @@ eu:
|
|
|
234
236
|
'false': ez du <strong>gako publikorik</strong>
|
|
235
237
|
'true': badu <strong> gako publiko bat </strong>
|
|
236
238
|
requirements:
|
|
239
|
+
census_codes_generated: Sortu dira erroldarako sarbide kodeak.
|
|
240
|
+
census_frozen: Erroldarako sarbide kodeak esportatu dira eta errolda izoztu da.
|
|
237
241
|
max_selections: Erantzun guztiek balio zuzena dute honetarako <strong>erantzun gehien</strong>.
|
|
238
242
|
minimum_answers: Galdera bakoitzak badu <strong>gutxienez 2 erantzun</strong>.
|
|
239
243
|
minimum_questions: Aukerak badu <strong>gutxienez galdera 1</strong>.
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -233,7 +233,7 @@ fi-pl:
|
|
|
233
233
|
census: Henkilötietorekisteri
|
|
234
234
|
errors:
|
|
235
235
|
census_codes_generated: Henkilötietorekisterin äänestyskoodeja ei ole luotu.
|
|
236
|
-
census_frozen:
|
|
236
|
+
census_frozen: Henkilötietorekisterin äänestyskoodeja ei ole viety.
|
|
237
237
|
census_uploaded: Tälle äänestykselle ei ole luotu henkilötietorekisteriä.
|
|
238
238
|
component_published: Vaalikomponenttia <strong>ei ole julkaistu</strong>.
|
|
239
239
|
max_selections: Kysymyksillä ei ole <strong>oikeaa arvoa vastausten määrälle</strong>
|
|
@@ -249,8 +249,8 @@ fi-pl:
|
|
|
249
249
|
'false': vaalilla ei ole <strong>julkista avainta</strong>
|
|
250
250
|
'true': vaalilla on <strong>julkinen avain</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated: Henkilötietorekisterin
|
|
253
|
-
census_frozen: Henkilötietorekisterin
|
|
252
|
+
census_codes_generated: Henkilötietorekisterin äänestyskoodit on luotu.
|
|
253
|
+
census_frozen: Henkilötietorekisterin äänestyskoodit on viety ja henkilötietorekisteri on lukittu.
|
|
254
254
|
census_uploaded: Henkilötietorekisteri on ladattu palveluun.
|
|
255
255
|
component_published: Vaalikomponentti <strong>on julkaistu</strong>.
|
|
256
256
|
max_selections: Kaikilla kysymyksillä on oikea arvo asetukselle <strong>vastausten maksimimäärä</strong>.
|
data/config/locales/fi.yml
CHANGED
|
@@ -233,7 +233,7 @@ fi:
|
|
|
233
233
|
census: Henkilötietorekisteri
|
|
234
234
|
errors:
|
|
235
235
|
census_codes_generated: Henkilötietorekisterin äänestyskoodeja ei ole luotu.
|
|
236
|
-
census_frozen:
|
|
236
|
+
census_frozen: Henkilötietorekisterin äänestyskoodeja ei ole viety.
|
|
237
237
|
census_uploaded: Tälle äänestykselle ei ole luotu henkilötietorekisteriä.
|
|
238
238
|
component_published: Vaalikomponenttia <strong>ei ole julkaistu</strong>.
|
|
239
239
|
max_selections: Kysymyksillä ei ole <strong>oikeaa arvoa vastausten määrälle</strong>
|
|
@@ -249,8 +249,8 @@ fi:
|
|
|
249
249
|
'false': vaalilla ei ole <strong>julkista avainta</strong>
|
|
250
250
|
'true': vaalilla on <strong>julkinen avain</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated: Henkilötietorekisterin
|
|
253
|
-
census_frozen: Henkilötietorekisterin
|
|
252
|
+
census_codes_generated: Henkilötietorekisterin äänestyskoodit on luotu.
|
|
253
|
+
census_frozen: Henkilötietorekisterin äänestyskoodit on viety ja henkilötietorekisteri on lukittu.
|
|
254
254
|
census_uploaded: Henkilötietorekisteri on ladattu palveluun.
|
|
255
255
|
component_published: Vaalikomponentti <strong>on julkaistu</strong>.
|
|
256
256
|
max_selections: Kaikilla kysymyksillä on oikea arvo asetukselle <strong>vastausten maksimimäärä</strong>.
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -232,8 +232,8 @@ fr-CA:
|
|
|
232
232
|
create_election:
|
|
233
233
|
census: Recensement
|
|
234
234
|
errors:
|
|
235
|
-
census_codes_generated: Les codes
|
|
236
|
-
census_frozen: Les codes
|
|
235
|
+
census_codes_generated: Les codes d'accès pour le recensement ne sont pas générés.
|
|
236
|
+
census_frozen: Les codes d'accès pour le recensement ne sont pas exportés.
|
|
237
237
|
census_uploaded: Il n'y a pas de recensement téléchargé pour cette élection.
|
|
238
238
|
component_published: La fonctionnalité élection n'est <strong>pas publiée</strong>.
|
|
239
239
|
max_selections: Les questions n'ont pas de <strong>valeur correcte pour le nombre de réponses</strong>
|
|
@@ -249,8 +249,8 @@ fr-CA:
|
|
|
249
249
|
'false': n'a pas de <strong>clé publique</strong>
|
|
250
250
|
'true': a une <strong>clé publique</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated: Les codes
|
|
253
|
-
census_frozen: Les codes sont exportés et le recensement est gelé.
|
|
252
|
+
census_codes_generated: Les codes d'accès pour le recensement sont générés.
|
|
253
|
+
census_frozen: Les codes d'accès pour le recensement sont exportés et le recensement est gelé.
|
|
254
254
|
census_uploaded: Le recensement a été téléchargé.
|
|
255
255
|
component_published: La fonctionnalité élection est <strong>publiée</strong>.
|
|
256
256
|
max_selections: Toutes les questions ont une valeur correcte pour <strong>le maximum de réponses</strong>.
|
data/config/locales/fr.yml
CHANGED
|
@@ -232,8 +232,8 @@ fr:
|
|
|
232
232
|
create_election:
|
|
233
233
|
census: Recensement
|
|
234
234
|
errors:
|
|
235
|
-
census_codes_generated: Les codes
|
|
236
|
-
census_frozen: Les codes
|
|
235
|
+
census_codes_generated: Les codes d'accès pour le recensement ne sont pas générés.
|
|
236
|
+
census_frozen: Les codes d'accès pour le recensement ne sont pas exportés.
|
|
237
237
|
census_uploaded: Il n'y a pas de recensement téléchargé pour cette élection.
|
|
238
238
|
component_published: La fonctionnalité élection n'est <strong>pas publiée</strong>.
|
|
239
239
|
max_selections: Les questions n'ont pas de <strong>valeur correcte pour le nombre de réponses</strong>
|
|
@@ -249,8 +249,8 @@ fr:
|
|
|
249
249
|
'false': n'a pas de <strong>clé publique</strong>
|
|
250
250
|
'true': a une <strong>clé publique</strong>
|
|
251
251
|
requirements:
|
|
252
|
-
census_codes_generated: Les codes
|
|
253
|
-
census_frozen: Les codes sont exportés et le recensement est gelé.
|
|
252
|
+
census_codes_generated: Les codes d'accès pour le recensement sont générés.
|
|
253
|
+
census_frozen: Les codes d'accès pour le recensement sont exportés et le recensement est gelé.
|
|
254
254
|
census_uploaded: Le recensement a été téléchargé.
|
|
255
255
|
component_published: La fonctionnalité élection est <strong>publiée</strong>.
|
|
256
256
|
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
|
@@ -223,8 +223,8 @@ ja:
|
|
|
223
223
|
create_election:
|
|
224
224
|
census: センサス
|
|
225
225
|
errors:
|
|
226
|
-
census_codes_generated:
|
|
227
|
-
census_frozen:
|
|
226
|
+
census_codes_generated: センサスのアクセスコードは生成されませんでした。
|
|
227
|
+
census_frozen: センサスのアクセスコードはエクスポートされませんでした。
|
|
228
228
|
census_uploaded: この選挙にアップロードされたセンサスはありません。
|
|
229
229
|
component_published: 選挙コンポーネントは <strong>未公開です</strong>。
|
|
230
230
|
max_selections: 質問が <strong>回答の数に対して正しく</strong>ありません
|
|
@@ -240,8 +240,8 @@ ja:
|
|
|
240
240
|
'false': <strong>公開鍵</strong>がありません
|
|
241
241
|
'true': <strong>公開鍵</strong>があります
|
|
242
242
|
requirements:
|
|
243
|
-
census_codes_generated:
|
|
244
|
-
census_frozen:
|
|
243
|
+
census_codes_generated: センサスのアクセスコードが生成されます。
|
|
244
|
+
census_frozen: センサスのアクセスコードはエクスポートされ、センサスは凍結されます。
|
|
245
245
|
census_uploaded: センサスがアップロードされました。
|
|
246
246
|
component_published: 選挙コンポーネントは <strong>公開済みです</strong>.
|
|
247
247
|
max_selections: すべての質問は正しい <strong>回答の最大値</strong> を持っています。
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lo:
|
data/config/locales/lt.yml
CHANGED
|
@@ -250,8 +250,6 @@ lt:
|
|
|
250
250
|
create_election:
|
|
251
251
|
census: Surašymas
|
|
252
252
|
errors:
|
|
253
|
-
census_codes_generated: Rinkimų kodai surašymui nėra sugeneruoti.
|
|
254
|
-
census_frozen: Rinkimų kodai nėra eksportuoti.
|
|
255
253
|
census_uploaded: Šiems rinkimams nėra surašymo.
|
|
256
254
|
component_published: Rinkimų komponentas <strong>nėra publikuotas</strong>.
|
|
257
255
|
max_selections: Klausimai neturi <strong>teisingos vertės atsakymų kiekiui</strong>
|
|
@@ -267,8 +265,6 @@ lt:
|
|
|
267
265
|
'false': neturi <strong>viešo rakto</strong>
|
|
268
266
|
'true': turi <strong>viešą raktą</strong>
|
|
269
267
|
requirements:
|
|
270
|
-
census_codes_generated: Surašymo kodai sugeneruoti.
|
|
271
|
-
census_frozen: Kodai eksportuoti ir surašymas užšaldytas.
|
|
272
268
|
census_uploaded: Surašymas įkeliamas.
|
|
273
269
|
component_published: Rinkimų komponentas <strong>paskelbtas</strong>.
|
|
274
270
|
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.26.
|
|
4
|
+
version: 0.26.4
|
|
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.26.
|
|
62
|
+
version: 0.26.4
|
|
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.26.
|
|
69
|
+
version: 0.26.4
|
|
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.26.
|
|
76
|
+
version: 0.26.4
|
|
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.26.
|
|
83
|
+
version: 0.26.4
|
|
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.26.
|
|
90
|
+
version: 0.26.4
|
|
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.26.
|
|
97
|
+
version: 0.26.4
|
|
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.26.
|
|
118
|
+
version: 0.26.4
|
|
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.26.
|
|
125
|
+
version: 0.26.4
|
|
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.26.
|
|
132
|
+
version: 0.26.4
|
|
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.26.
|
|
139
|
+
version: 0.26.4
|
|
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
|
|
@@ -670,6 +671,7 @@ files:
|
|
|
670
671
|
- config/locales/fr.yml
|
|
671
672
|
- config/locales/ga-IE.yml
|
|
672
673
|
- config/locales/gl.yml
|
|
674
|
+
- config/locales/gn-PY.yml
|
|
673
675
|
- config/locales/hr-HR.yml
|
|
674
676
|
- config/locales/hr.yml
|
|
675
677
|
- config/locales/hu.yml
|
|
@@ -682,6 +684,7 @@ files:
|
|
|
682
684
|
- config/locales/ko.yml
|
|
683
685
|
- config/locales/lb-LU.yml
|
|
684
686
|
- config/locales/lb.yml
|
|
687
|
+
- config/locales/lo-LA.yml
|
|
685
688
|
- config/locales/lt-LT.yml
|
|
686
689
|
- config/locales/lt.yml
|
|
687
690
|
- config/locales/lv.yml
|