decidim-elections 0.26.3 → 0.26.5
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 +25 -4
- data/config/locales/cs.yml +25 -4
- data/config/locales/de.yml +2 -0
- data/config/locales/en.yml +25 -4
- data/config/locales/es-MX.yml +25 -4
- data/config/locales/es-PY.yml +25 -4
- data/config/locales/es.yml +25 -4
- data/config/locales/eu.yml +18 -1
- data/config/locales/fi-plain.yml +24 -3
- data/config/locales/fi.yml +24 -3
- data/config/locales/fr-CA.yml +25 -4
- data/config/locales/fr.yml +25 -4
- data/config/locales/gn-PY.yml +1 -0
- data/config/locales/hu.yml +1 -0
- data/config/locales/ja.yml +25 -4
- data/config/locales/ka-GE.yml +1 -0
- data/config/locales/lo-LA.yml +1 -0
- data/config/locales/lt.yml +3 -4
- data/config/locales/ro-RO.yml +32 -0
- data/config/locales/sv.yml +67 -0
- data/lib/decidim/elections/version.rb +1 -1
- data/lib/decidim/votings/admin_engine.rb +3 -0
- metadata +16 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 865749e20ec73a95c6a00955e52a704742a5bf875768d2b56b33fd833537127b
|
|
4
|
+
data.tar.gz: af9be46bd008ea2c1e21a942fd4862e35c501dd360bfa9df7a45ae892363b1b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ba255e43f02e0934605a30f367cf44352554e563b2f3c1b0c897c4370feaebcb3a486a326aca114cc52ea063333cf8dbdff26e6636e034a8004881449f275f0
|
|
7
|
+
data.tar.gz: 0f255aed3a609689dba4505b5db7205577c8c3de5a8fa5ad1cc463e2409a82c741e37aa7fcc683b431a1c5c183b02282afea2b1ec934f9404177bd750782480c
|
|
@@ -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
|
@@ -6,17 +6,38 @@ ca:
|
|
|
6
6
|
image: Imatge
|
|
7
7
|
proposals: Propostes relacionades
|
|
8
8
|
title: Títol
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Codi
|
|
9
11
|
election:
|
|
10
12
|
description: Descripció
|
|
11
13
|
end_time: La votació finalitza el
|
|
12
14
|
start_time: La votació comença el
|
|
13
15
|
title: Títol
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: Correu electrònic
|
|
18
|
+
name: Nom
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: Correu electrònic
|
|
21
|
+
name: Nom
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Adreça
|
|
24
|
+
location: Ubicació
|
|
25
|
+
location_hints: Detalls d'ubicació
|
|
26
|
+
polling_station_managers: Gestores
|
|
27
|
+
polling_station_president_id: Presidència
|
|
28
|
+
title: Títol
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Número màxim d'opcions
|
|
16
31
|
min_selections: Cap de les opcions anteriors
|
|
17
32
|
title: Títol
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Participant
|
|
18
35
|
voting:
|
|
19
36
|
end_time: La votació finalitza
|
|
37
|
+
introductory_image: Imatge de presentació
|
|
38
|
+
promoted: Destacada
|
|
39
|
+
scope_id: Àmbit
|
|
40
|
+
show_check_census: Mostrar la pàgina de "comprovar el cens"
|
|
20
41
|
start_time: La votació comença
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -232,8 +253,8 @@ ca:
|
|
|
232
253
|
create_election:
|
|
233
254
|
census: Cens
|
|
234
255
|
errors:
|
|
235
|
-
census_codes_generated:
|
|
236
|
-
census_frozen:
|
|
256
|
+
census_codes_generated: Els codis d'accés al cens no s'han pogut generar.
|
|
257
|
+
census_frozen: Els codis d'accés al cens no s'han pogut exportar.
|
|
237
258
|
census_uploaded: No s'ha pujat el cens per a aquestes eleccions.
|
|
238
259
|
component_published: L'elecció <strong>no està publicada</strong>.
|
|
239
260
|
max_selections: Les preguntes no tenen un <strong>valor correcte per quantitat de respostes</strong>
|
|
@@ -249,8 +270,8 @@ ca:
|
|
|
249
270
|
'false': no té una <strong>clau pública</strong>
|
|
250
271
|
'true': té una <strong>clau pública</strong>
|
|
251
272
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
273
|
+
census_codes_generated: S'han generat els codis d'accés al cens.
|
|
274
|
+
census_frozen: S'han exportat els codis per al cens i el cens ha quedat congelat.
|
|
254
275
|
census_uploaded: El cens s'ha pujat.
|
|
255
276
|
component_published: L'elecció està <strong>publicada</strong>.
|
|
256
277
|
max_selections: Totes les preguntes tenen un valor correcte per <strong>màxim de respostes</strong>.
|
data/config/locales/cs.yml
CHANGED
|
@@ -6,17 +6,38 @@ cs:
|
|
|
6
6
|
image: Obrázek
|
|
7
7
|
proposals: Související návrhy
|
|
8
8
|
title: Název
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Kód
|
|
9
11
|
election:
|
|
10
12
|
description: Popis
|
|
11
13
|
end_time: Hlasování končí v
|
|
12
14
|
start_time: Hlasování začíná v
|
|
13
15
|
title: Název
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: E-mail
|
|
18
|
+
name: Jméno
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: E-mail
|
|
21
|
+
name: Jméno
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Adresa
|
|
24
|
+
location: Poloha
|
|
25
|
+
location_hints: Nápověda k poloze
|
|
26
|
+
polling_station_managers: Manažeři
|
|
27
|
+
polling_station_president_id: Předseda
|
|
28
|
+
title: Název
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Maximální počet výběrů
|
|
16
31
|
min_selections: Žádná z výše uvedených možností
|
|
17
32
|
title: Název
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Účastník
|
|
18
35
|
voting:
|
|
19
36
|
end_time: Hlasování končí
|
|
37
|
+
introductory_image: Úvodní obrázek
|
|
38
|
+
promoted: Propagováno
|
|
39
|
+
scope_id: Oblast působnosti
|
|
40
|
+
show_check_census: Zobrazit stránku "zkontrolovat rejstřík"
|
|
20
41
|
start_time: Hlasování začíná
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -250,8 +271,8 @@ cs:
|
|
|
250
271
|
create_election:
|
|
251
272
|
census: Rejstřík obyvatel
|
|
252
273
|
errors:
|
|
253
|
-
census_codes_generated:
|
|
254
|
-
census_frozen:
|
|
274
|
+
census_codes_generated: Přístupové kódy pro rejstřík osob nejsou vygenerovány.
|
|
275
|
+
census_frozen: Přístupové kódy pro rejstřík osob nejsou exportovány.
|
|
255
276
|
census_uploaded: Pro tyto volby není nahrán žádný rejstřík obyvatel.
|
|
256
277
|
component_published: Volební složka <strong>není publikována</strong>.
|
|
257
278
|
max_selections: Otázky nemají <strong>správnou hodnotu pro množství odpovědí</strong>
|
|
@@ -267,8 +288,8 @@ cs:
|
|
|
267
288
|
'false': nemá <strong>veřejný klíč</strong>
|
|
268
289
|
'true': má <strong>veřejný klíč</strong>
|
|
269
290
|
requirements:
|
|
270
|
-
census_codes_generated:
|
|
271
|
-
census_frozen:
|
|
291
|
+
census_codes_generated: Vygenerované přístupové kódy pro rejstřík osob.
|
|
292
|
+
census_frozen: Přístupové kódy pro rejstřík osob jsou exportovány a sčítání je zmrazeno.
|
|
272
293
|
census_uploaded: Rejstřík obyvatel je nahrán.
|
|
273
294
|
component_published: Volební komponenta je <strong>publikována</strong>.
|
|
274
295
|
max_selections: Všechny otázky mají správnou hodnotu pro <strong>maximum odpovědí</strong>.
|
data/config/locales/de.yml
CHANGED
data/config/locales/en.yml
CHANGED
|
@@ -7,17 +7,38 @@ en:
|
|
|
7
7
|
image: Image
|
|
8
8
|
proposals: Related proposals
|
|
9
9
|
title: Title
|
|
10
|
+
ballot_style:
|
|
11
|
+
code: Code
|
|
10
12
|
election:
|
|
11
13
|
description: Description
|
|
12
14
|
end_time: Voting ends at
|
|
13
15
|
start_time: Voting start at
|
|
14
16
|
title: Title
|
|
17
|
+
monitoring_committee_member:
|
|
18
|
+
email: Email
|
|
19
|
+
name: Name
|
|
20
|
+
polling_officer:
|
|
21
|
+
email: Email
|
|
22
|
+
name: Name
|
|
23
|
+
polling_station:
|
|
24
|
+
address: Address
|
|
25
|
+
location: Location
|
|
26
|
+
location_hints: Location hint
|
|
27
|
+
polling_station_managers: Managers
|
|
28
|
+
polling_station_president_id: President
|
|
29
|
+
title: Title
|
|
15
30
|
question:
|
|
16
31
|
max_selections: Maximum number of selections
|
|
17
32
|
min_selections: None of the above option
|
|
18
33
|
title: Title
|
|
34
|
+
trustees_participatory_space:
|
|
35
|
+
user_id: Participant
|
|
19
36
|
voting:
|
|
20
37
|
end_time: Voting ends
|
|
38
|
+
introductory_image: Introductory image
|
|
39
|
+
promoted: Promoted
|
|
40
|
+
scope_id: Scope
|
|
41
|
+
show_check_census: Show "check census" page
|
|
21
42
|
start_time: Voting begins
|
|
22
43
|
errors:
|
|
23
44
|
models:
|
|
@@ -233,8 +254,8 @@ en:
|
|
|
233
254
|
create_election:
|
|
234
255
|
census: Census
|
|
235
256
|
errors:
|
|
236
|
-
census_codes_generated:
|
|
237
|
-
census_frozen:
|
|
257
|
+
census_codes_generated: Access codes for the census are not generated.
|
|
258
|
+
census_frozen: Access codes for the census are not exported.
|
|
238
259
|
census_uploaded: There is no census uploaded for this election.
|
|
239
260
|
component_published: The election component is <strong>not published</strong>.
|
|
240
261
|
max_selections: The questions do not have a <strong>correct value for amount of answers</strong>
|
|
@@ -250,8 +271,8 @@ en:
|
|
|
250
271
|
'false': does not have a <strong>public key</strong>
|
|
251
272
|
'true': has a <strong>public key</strong>
|
|
252
273
|
requirements:
|
|
253
|
-
census_codes_generated:
|
|
254
|
-
census_frozen:
|
|
274
|
+
census_codes_generated: Access codes for the census are generated.
|
|
275
|
+
census_frozen: Access codes for the census are exported and census is frozen.
|
|
255
276
|
census_uploaded: Census is uploaded.
|
|
256
277
|
component_published: The election component is <strong>published</strong>.
|
|
257
278
|
max_selections: All the questions have a correct value for <strong>maximum of answers</strong>.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -6,17 +6,38 @@ es-MX:
|
|
|
6
6
|
image: Imagen
|
|
7
7
|
proposals: Propuestas relacionadas
|
|
8
8
|
title: Título
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Código
|
|
9
11
|
election:
|
|
10
12
|
description: Descripción
|
|
11
13
|
end_time: La votación termina en
|
|
12
14
|
start_time: La votación comienza a las
|
|
13
15
|
title: Título
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: Correo electrónico
|
|
18
|
+
name: Nombre
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: Correo electrónico
|
|
21
|
+
name: Nombre
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Dirección
|
|
24
|
+
location: Ubicación
|
|
25
|
+
location_hints: Detalles de ubicación
|
|
26
|
+
polling_station_managers: Gestoras
|
|
27
|
+
polling_station_president_id: Presidencia
|
|
28
|
+
title: Título
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Número máximo de opciones
|
|
16
31
|
min_selections: Ninguna de las anteriores
|
|
17
32
|
title: Título
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Participante
|
|
18
35
|
voting:
|
|
19
36
|
end_time: La votación finaliza
|
|
37
|
+
introductory_image: Imagen de presentación
|
|
38
|
+
promoted: Destacada
|
|
39
|
+
scope_id: Ámbito
|
|
40
|
+
show_check_census: Mostrar la página de "comprobar censo"
|
|
20
41
|
start_time: La votación empieza
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -232,8 +253,8 @@ es-MX:
|
|
|
232
253
|
create_election:
|
|
233
254
|
census: Censo
|
|
234
255
|
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
|
|
256
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
|
257
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
|
237
258
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
|
238
259
|
component_published: La elección <strong>no está publicada</strong>.
|
|
239
260
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
|
@@ -249,8 +270,8 @@ es-MX:
|
|
|
249
270
|
'false': no tiene una <strong>clave pública</strong>
|
|
250
271
|
'true': tiene una <strong> clave pública</strong>
|
|
251
272
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
273
|
+
census_codes_generated: Se han generado los códigos de acceso al censo.
|
|
274
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
|
254
275
|
census_uploaded: El censo está subido.
|
|
255
276
|
component_published: La elección está <strong>publicada</strong>.
|
|
256
277
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -6,17 +6,38 @@ es-PY:
|
|
|
6
6
|
image: Imagen
|
|
7
7
|
proposals: Propuestas relacionadas
|
|
8
8
|
title: Título
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Código
|
|
9
11
|
election:
|
|
10
12
|
description: Descripción
|
|
11
13
|
end_time: La votación acaba el
|
|
12
14
|
start_time: La votación empieza el
|
|
13
15
|
title: Título
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: Correo electrónico
|
|
18
|
+
name: Nombre
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: Correo electrónico
|
|
21
|
+
name: Nombre
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Dirección
|
|
24
|
+
location: Ubicación
|
|
25
|
+
location_hints: Detalles de ubicación
|
|
26
|
+
polling_station_managers: Gestoras
|
|
27
|
+
polling_station_president_id: Presidencia
|
|
28
|
+
title: Título
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Número máximo de opciones
|
|
16
31
|
min_selections: Ninguna de las anteriores
|
|
17
32
|
title: Título
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Participante
|
|
18
35
|
voting:
|
|
19
36
|
end_time: La votación finaliza
|
|
37
|
+
introductory_image: Imagen de presentación
|
|
38
|
+
promoted: Destacada
|
|
39
|
+
scope_id: Ámbito
|
|
40
|
+
show_check_census: Mostrar la página de "comprobar censo"
|
|
20
41
|
start_time: La votación empieza
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -232,8 +253,8 @@ es-PY:
|
|
|
232
253
|
create_election:
|
|
233
254
|
census: Censo
|
|
234
255
|
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
|
|
256
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
|
257
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
|
237
258
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
|
238
259
|
component_published: La elección <strong>no está publicada</strong>.
|
|
239
260
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
|
@@ -249,8 +270,8 @@ es-PY:
|
|
|
249
270
|
'false': no tiene una <strong>clave pública</strong>
|
|
250
271
|
'true': tiene una <strong> clave pública</strong>
|
|
251
272
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
273
|
+
census_codes_generated: Se han generado los códigos de acceso al censo.
|
|
274
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
|
254
275
|
census_uploaded: El censo está subido.
|
|
255
276
|
component_published: La elección está <strong>publicada</strong>.
|
|
256
277
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/es.yml
CHANGED
|
@@ -6,17 +6,38 @@ es:
|
|
|
6
6
|
image: Imagen
|
|
7
7
|
proposals: Propuestas relacionadas
|
|
8
8
|
title: Título
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Código
|
|
9
11
|
election:
|
|
10
12
|
description: Descripción
|
|
11
13
|
end_time: La votación acaba el
|
|
12
14
|
start_time: La votación empieza el
|
|
13
15
|
title: Título
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: Correo electrónico
|
|
18
|
+
name: Nombre
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: Correo electrónico
|
|
21
|
+
name: Nombre
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Dirección
|
|
24
|
+
location: Ubicación
|
|
25
|
+
location_hints: Detalles de ubicación
|
|
26
|
+
polling_station_managers: Gestoras
|
|
27
|
+
polling_station_president_id: Presidencia
|
|
28
|
+
title: Título
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Número máximo de opciones
|
|
16
31
|
min_selections: Ninguna de las opciones anteriores
|
|
17
32
|
title: Título
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Participante
|
|
18
35
|
voting:
|
|
19
36
|
end_time: La votación finaliza
|
|
37
|
+
introductory_image: Imagen de presentación
|
|
38
|
+
promoted: Destacada
|
|
39
|
+
scope_id: Ámbito
|
|
40
|
+
show_check_census: Mostrar la página de "comprobar censo"
|
|
20
41
|
start_time: La votación empieza
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -232,8 +253,8 @@ es:
|
|
|
232
253
|
create_election:
|
|
233
254
|
census: Censo
|
|
234
255
|
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
|
|
256
|
+
census_codes_generated: Los códigos de acceso al censo no se han podido generar.
|
|
257
|
+
census_frozen: Los códigos de acceso al censo no se han podido exportar.
|
|
237
258
|
census_uploaded: No se ha subido ningún censo para esta elección.
|
|
238
259
|
component_published: La elección <strong>no está publicada</strong>.
|
|
239
260
|
max_selections: Las preguntas no tienen un valor <strong>correcto para la cantidad de respuestas</strong>
|
|
@@ -249,8 +270,8 @@ es:
|
|
|
249
270
|
'false': no tiene una <strong>clave pública</strong>
|
|
250
271
|
'true': tiene una <strong> clave pública</strong>
|
|
251
272
|
requirements:
|
|
252
|
-
census_codes_generated:
|
|
253
|
-
census_frozen:
|
|
273
|
+
census_codes_generated: Se han generado los códigos de acceso al censo.
|
|
274
|
+
census_frozen: Se han exportado los códgos para el censo y el censo ha quedado congelado.
|
|
254
275
|
census_uploaded: El censo está subido.
|
|
255
276
|
component_published: La elección está <strong>publicada</strong>.
|
|
256
277
|
max_selections: Todas las preguntas tienen un valor correcto para <strong>máximo de respuestas</strong>.
|
data/config/locales/eu.yml
CHANGED
|
@@ -11,6 +11,16 @@ eu:
|
|
|
11
11
|
end_time: Bozketaren amaiera-data
|
|
12
12
|
start_time: Bozketaren hasiera-data
|
|
13
13
|
title: Izenburua
|
|
14
|
+
monitoring_committee_member:
|
|
15
|
+
email: Helbide elektronikoa
|
|
16
|
+
name: Izena
|
|
17
|
+
polling_officer:
|
|
18
|
+
email: Helbide elektronikoa
|
|
19
|
+
name: Izena
|
|
20
|
+
polling_station:
|
|
21
|
+
address: Helbidea
|
|
22
|
+
location: Kokapena
|
|
23
|
+
title: Izenburua
|
|
14
24
|
question:
|
|
15
25
|
max_selections: Gehieneko aukera kopurua
|
|
16
26
|
min_selections: Aurreko bat ere ez
|
|
@@ -181,6 +191,9 @@ eu:
|
|
|
181
191
|
exports:
|
|
182
192
|
elections: Bozketak
|
|
183
193
|
feedback_form_answers: Erantzunen feedbacka
|
|
194
|
+
mailers:
|
|
195
|
+
trustee_mailer:
|
|
196
|
+
body: "< p>Kaixo %{user_name}, </p><p> %{resource_name}-an sartu zaituzte, konfiantzazko gisa.< p>"
|
|
184
197
|
menu:
|
|
185
198
|
trustees: Bermatzaileak
|
|
186
199
|
models:
|
|
@@ -222,6 +235,8 @@ eu:
|
|
|
222
235
|
steps:
|
|
223
236
|
create_election:
|
|
224
237
|
errors:
|
|
238
|
+
census_codes_generated: Erroldarako sarbide kodeak ez dira sortu.
|
|
239
|
+
census_frozen: Erroldarako sarbide kodeak ez dira esportatu.
|
|
225
240
|
max_selections: Galderek ez dute <strong>balio zuzenik </strong> galdera kopururako
|
|
226
241
|
minimum_answers: Galderek gutxienez eduki behar dituzte <strong> bi erantzun </strong>.
|
|
227
242
|
minimum_questions: <strong>aukerak gutxienez </strong> galdera bat eduki behar du.
|
|
@@ -234,6 +249,8 @@ eu:
|
|
|
234
249
|
'false': ez du <strong>gako publikorik</strong>
|
|
235
250
|
'true': badu <strong> gako publiko bat </strong>
|
|
236
251
|
requirements:
|
|
252
|
+
census_codes_generated: Sortu dira erroldarako sarbide kodeak.
|
|
253
|
+
census_frozen: Erroldarako sarbide kodeak esportatu dira eta errolda izoztu da.
|
|
237
254
|
max_selections: Erantzun guztiek balio zuzena dute honetarako <strong>erantzun gehien</strong>.
|
|
238
255
|
minimum_answers: Galdera bakoitzak badu <strong>gutxienez 2 erantzun</strong>.
|
|
239
256
|
minimum_questions: Aukerak badu <strong>gutxienez galdera 1</strong>.
|
|
@@ -535,7 +552,7 @@ eu:
|
|
|
535
552
|
menu:
|
|
536
553
|
trustee_zone: Bermatzailearen gunea
|
|
537
554
|
no_bulletin_board:
|
|
538
|
-
body:
|
|
555
|
+
body: Atal honetarako iragarki-taula konfiguratu bat behar da. Deitu administratzaileari xehetasun gehiago izateko.
|
|
539
556
|
title: Sentitzen dugu, Iragarki Taula oraindik ez dago konfiguratuta.
|
|
540
557
|
trustees:
|
|
541
558
|
show:
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -6,17 +6,38 @@ fi-pl:
|
|
|
6
6
|
image: Kuva
|
|
7
7
|
proposals: Liittyvät ehdotukset
|
|
8
8
|
title: Otsikko
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Koodi
|
|
9
11
|
election:
|
|
10
12
|
description: Kuvaus
|
|
11
13
|
end_time: Äänestys päättyy
|
|
12
14
|
start_time: Äänestys alkaa
|
|
13
15
|
title: Otsikko
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: Sähköpostiosoite
|
|
18
|
+
name: Nimi
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: Sähköpostiosoite
|
|
21
|
+
name: Nimi
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Osoite
|
|
24
|
+
location: Sijainti
|
|
25
|
+
location_hints: Paikan tarkemmat tiedot
|
|
26
|
+
polling_station_managers: Virkailijat
|
|
27
|
+
polling_station_president_id: Esimies
|
|
28
|
+
title: Otsikko
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Valintojen enimmäismäärä
|
|
16
31
|
min_selections: Ei mikään edellä mainituista
|
|
17
32
|
title: Otsikko
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Osallistuja
|
|
18
35
|
voting:
|
|
19
36
|
end_time: Äänestyksen päättymisaika
|
|
37
|
+
introductory_image: Esittelykuva
|
|
38
|
+
promoted: Korostettu
|
|
39
|
+
scope_id: Teema
|
|
40
|
+
show_check_census: Näytä "tarkasta henkilötietorekisterin tiedot" -sivu
|
|
20
41
|
start_time: Äänestyksen alkamisaika
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -233,7 +254,7 @@ fi-pl:
|
|
|
233
254
|
census: Henkilötietorekisteri
|
|
234
255
|
errors:
|
|
235
256
|
census_codes_generated: Henkilötietorekisterin äänestyskoodeja ei ole luotu.
|
|
236
|
-
census_frozen:
|
|
257
|
+
census_frozen: Henkilötietorekisterin äänestyskoodeja ei ole viety.
|
|
237
258
|
census_uploaded: Tälle äänestykselle ei ole luotu henkilötietorekisteriä.
|
|
238
259
|
component_published: Vaalikomponenttia <strong>ei ole julkaistu</strong>.
|
|
239
260
|
max_selections: Kysymyksillä ei ole <strong>oikeaa arvoa vastausten määrälle</strong>
|
|
@@ -249,8 +270,8 @@ fi-pl:
|
|
|
249
270
|
'false': vaalilla ei ole <strong>julkista avainta</strong>
|
|
250
271
|
'true': vaalilla on <strong>julkinen avain</strong>
|
|
251
272
|
requirements:
|
|
252
|
-
census_codes_generated: Henkilötietorekisterin
|
|
253
|
-
census_frozen: Henkilötietorekisterin
|
|
273
|
+
census_codes_generated: Henkilötietorekisterin äänestyskoodit on luotu.
|
|
274
|
+
census_frozen: Henkilötietorekisterin äänestyskoodit on viety ja henkilötietorekisteri on lukittu.
|
|
254
275
|
census_uploaded: Henkilötietorekisteri on ladattu palveluun.
|
|
255
276
|
component_published: Vaalikomponentti <strong>on julkaistu</strong>.
|
|
256
277
|
max_selections: Kaikilla kysymyksillä on oikea arvo asetukselle <strong>vastausten maksimimäärä</strong>.
|
data/config/locales/fi.yml
CHANGED
|
@@ -6,17 +6,38 @@ fi:
|
|
|
6
6
|
image: Kuva
|
|
7
7
|
proposals: Liittyvät ehdotukset
|
|
8
8
|
title: Otsikko
|
|
9
|
+
ballot_style:
|
|
10
|
+
code: Koodi
|
|
9
11
|
election:
|
|
10
12
|
description: Kuvaus
|
|
11
13
|
end_time: Äänestys päättyy
|
|
12
14
|
start_time: Äänestys alkaa
|
|
13
15
|
title: Otsikko
|
|
16
|
+
monitoring_committee_member:
|
|
17
|
+
email: Sähköpostiosoite
|
|
18
|
+
name: Nimi
|
|
19
|
+
polling_officer:
|
|
20
|
+
email: Sähköpostiosoite
|
|
21
|
+
name: Nimi
|
|
22
|
+
polling_station:
|
|
23
|
+
address: Osoite
|
|
24
|
+
location: Sijainti
|
|
25
|
+
location_hints: Paikan tarkemmat tiedot
|
|
26
|
+
polling_station_managers: Virkailijat
|
|
27
|
+
polling_station_president_id: Esimies
|
|
28
|
+
title: Otsikko
|
|
14
29
|
question:
|
|
15
30
|
max_selections: Valintojen enimmäismäärä
|
|
16
31
|
min_selections: Ei mikään edellä mainituista
|
|
17
32
|
title: Otsikko
|
|
33
|
+
trustees_participatory_space:
|
|
34
|
+
user_id: Osallistuja
|
|
18
35
|
voting:
|
|
19
36
|
end_time: Äänestyksen päättymisaika
|
|
37
|
+
introductory_image: Esittelykuva
|
|
38
|
+
promoted: Korostettu
|
|
39
|
+
scope_id: Teema
|
|
40
|
+
show_check_census: Näytä "tarkasta henkilötietorekisterin tiedot" -sivu
|
|
20
41
|
start_time: Äänestyksen alkamisaika
|
|
21
42
|
errors:
|
|
22
43
|
models:
|
|
@@ -233,7 +254,7 @@ fi:
|
|
|
233
254
|
census: Henkilötietorekisteri
|
|
234
255
|
errors:
|
|
235
256
|
census_codes_generated: Henkilötietorekisterin äänestyskoodeja ei ole luotu.
|
|
236
|
-
census_frozen:
|
|
257
|
+
census_frozen: Henkilötietorekisterin äänestyskoodeja ei ole viety.
|
|
237
258
|
census_uploaded: Tälle äänestykselle ei ole luotu henkilötietorekisteriä.
|
|
238
259
|
component_published: Vaalikomponenttia <strong>ei ole julkaistu</strong>.
|
|
239
260
|
max_selections: Kysymyksillä ei ole <strong>oikeaa arvoa vastausten määrälle</strong>
|
|
@@ -249,8 +270,8 @@ fi:
|
|
|
249
270
|
'false': vaalilla ei ole <strong>julkista avainta</strong>
|
|
250
271
|
'true': vaalilla on <strong>julkinen avain</strong>
|
|
251
272
|
requirements:
|
|
252
|
-
census_codes_generated: Henkilötietorekisterin
|
|
253
|
-
census_frozen: Henkilötietorekisterin
|
|
273
|
+
census_codes_generated: Henkilötietorekisterin äänestyskoodit on luotu.
|
|
274
|
+
census_frozen: Henkilötietorekisterin äänestyskoodit on viety ja henkilötietorekisteri on lukittu.
|
|
254
275
|
census_uploaded: Henkilötietorekisteri on ladattu palveluun.
|
|
255
276
|
component_published: Vaalikomponentti <strong>on julkaistu</strong>.
|
|
256
277
|
max_selections: Kaikilla kysymyksillä on oikea arvo asetukselle <strong>vastausten maksimimäärä</strong>.
|