decidim-consultations 0.18.1 → 0.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_consultations_manifest.css +0 -1
- data/app/assets/config/decidim_consultations_manifest.js +1 -1
- data/app/assets/javascripts/decidim/consultations/utils_multiple.js +21 -0
- data/app/assets/javascripts/decidim/consultations/vote_dialog.js +13 -0
- data/app/cells/decidim/consultations/consultation_m/data.erb +2 -2
- data/app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb +1 -0
- data/app/commands/decidim/consultations/admin/create_consultation.rb +2 -0
- data/app/commands/decidim/consultations/admin/create_question.rb +2 -0
- data/app/commands/decidim/consultations/admin/create_response.rb +1 -0
- data/app/commands/decidim/consultations/admin/update_consultation.rb +1 -0
- data/app/commands/decidim/consultations/admin/update_question.rb +1 -0
- data/app/commands/decidim/consultations/admin/update_question_configuration.rb +55 -0
- data/app/commands/decidim/consultations/admin/update_response.rb +1 -0
- data/app/commands/decidim/consultations/multiple_vote_question.rb +47 -0
- data/app/controllers/concerns/decidim/consultations/admin/question_admin.rb +1 -0
- data/app/controllers/concerns/decidim/consultations/needs_question.rb +24 -2
- data/app/controllers/concerns/decidim/consultations/orderable.rb +1 -21
- data/app/controllers/decidim/consultations/admin/consultations_controller.rb +7 -1
- data/app/controllers/decidim/consultations/admin/question_configuration_controller.rb +54 -0
- data/app/controllers/decidim/consultations/admin/question_permissions_controller.rb +36 -0
- data/app/controllers/decidim/consultations/admin/questions_controller.rb +1 -0
- data/app/controllers/decidim/consultations/authorization_vote_modals_controller.rb +26 -0
- data/app/controllers/decidim/consultations/consultations_controller.rb +1 -1
- data/app/controllers/decidim/consultations/question_multiple_votes_controller.rb +39 -0
- data/app/controllers/decidim/consultations/question_votes_controller.rb +1 -1
- data/app/forms/decidim/consultations/admin/question_configuration_form.rb +27 -0
- data/app/forms/decidim/consultations/multi_vote_form.rb +41 -0
- data/app/forms/decidim/consultations/vote_form.rb +1 -0
- data/app/helpers/decidim/consultations/questions_helper.rb +25 -4
- data/app/models/decidim/consultation.rb +9 -7
- data/app/models/decidim/consultations/question.rb +26 -7
- data/app/models/decidim/consultations/vote.rb +11 -1
- data/app/permissions/decidim/consultations/admin/permissions.rb +1 -1
- data/app/permissions/decidim/consultations/permissions.rb +10 -0
- data/app/views/decidim/consultations/admin/consultations/edit.html.erb +4 -1
- data/app/views/decidim/consultations/admin/consultations/index.html.erb +2 -2
- data/app/views/decidim/consultations/admin/consultations/results.html.erb +42 -0
- data/app/views/decidim/consultations/admin/question_configuration/_form.html.erb +19 -0
- data/app/views/decidim/consultations/admin/question_configuration/edit.html.erb +12 -0
- data/app/views/decidim/consultations/admin/questions/edit.html.erb +1 -0
- data/app/views/decidim/consultations/admin/questions/index.html.erb +6 -2
- data/app/views/decidim/consultations/consultations/_consultations.html.erb +1 -1
- data/app/views/decidim/consultations/consultations/_highlighted_questions.html.erb +7 -5
- data/app/views/decidim/consultations/question_multiple_votes/_form.html.erb +14 -0
- data/app/views/decidim/consultations/question_multiple_votes/_results_rules.html.erb +14 -0
- data/app/views/decidim/consultations/question_multiple_votes/_voting_rules.html.erb +29 -0
- data/app/views/decidim/consultations/question_multiple_votes/show.html.erb +36 -0
- data/app/views/decidim/consultations/question_votes/update_vote_button.js.erb +9 -0
- data/app/views/decidim/consultations/questions/_results.html.erb +4 -0
- data/app/views/decidim/consultations/questions/_vote_button.html.erb +29 -4
- data/app/views/decidim/consultations/questions/_vote_modal_confirm.html.erb +1 -0
- data/app/views/decidim/consultations/questions/show.html.erb +1 -1
- data/app/views/layouts/decidim/_question_header.html.erb +2 -14
- data/app/views/layouts/decidim/_question_header_buttons.html.erb +11 -0
- data/app/views/layouts/decidim/admin/consultation.html.erb +4 -0
- data/app/views/layouts/decidim/admin/question.html.erb +66 -44
- data/app/views/layouts/decidim/question.html.erb +3 -3
- data/app/views/layouts/decidim/question_multivote.html.erb +9 -0
- data/config/locales/ar.yml +8 -0
- data/config/locales/ca.yml +51 -0
- data/config/locales/cs.yml +51 -0
- data/config/locales/en.yml +51 -0
- data/config/locales/es-MX.yml +13 -0
- data/config/locales/es-PY.yml +13 -0
- data/config/locales/es.yml +51 -0
- data/config/locales/fi-plain.yml +51 -0
- data/config/locales/fi.yml +51 -0
- data/config/locales/fr.yml +50 -0
- data/config/locales/hu.yml +51 -0
- data/config/locales/it.yml +15 -0
- data/config/locales/nl.yml +52 -1
- data/config/locales/sv.yml +9 -0
- data/config/locales/tr-TR.yml +5 -0
- data/db/migrate/20190702162755_add_options_to_decidim_consultations_questions.rb +8 -0
- data/db/migrate/20190710121122_add_free_instructions_field_to_consultations_questions.rb +7 -0
- data/lib/decidim/consultations/admin_engine.rb +3 -0
- data/lib/decidim/consultations/engine.rb +4 -0
- data/lib/decidim/consultations/participatory_space.rb +5 -0
- data/lib/decidim/consultations/test/factories.rb +5 -0
- data/lib/decidim/consultations/version.rb +1 -1
- metadata +29 -11
- data/app/assets/javascripts/decidim/consultations/social_share.js +0 -2
- data/app/assets/stylesheets/decidim/consultations/social_share.css.scss +0 -18
data/config/locales/es-PY.yml
CHANGED
@@ -87,6 +87,9 @@ es-PY:
|
|
87
87
|
new:
|
88
88
|
create: Crear
|
89
89
|
title: Nueva consulta
|
90
|
+
results:
|
91
|
+
not_visible: Los resultados estarán disponibles cuando la consulta cierre
|
92
|
+
total_votes: 'Total: %{count} votos'
|
90
93
|
update:
|
91
94
|
error: Hubo un error al actualizar esta consulta.
|
92
95
|
success: Consulta actualizada con éxito
|
@@ -95,6 +98,7 @@ es-PY:
|
|
95
98
|
consultations_submenu:
|
96
99
|
info: Información
|
97
100
|
questions: Preguntas
|
101
|
+
results: Resultados
|
98
102
|
questions_submenu:
|
99
103
|
components: Componentes
|
100
104
|
consultation: Consulta
|
@@ -171,6 +175,7 @@ es-PY:
|
|
171
175
|
consultations: Consultas
|
172
176
|
questions: Preguntas
|
173
177
|
responses: Respuestas
|
178
|
+
results: Resultados
|
174
179
|
consultations:
|
175
180
|
admin:
|
176
181
|
content_blocks:
|
@@ -230,6 +235,9 @@ es-PY:
|
|
230
235
|
question_votes:
|
231
236
|
create:
|
232
237
|
error: Ha habido errores al votar la pregunta
|
238
|
+
success: Puedes cambiarlo hasta el final de la consulta. Sólo se aceptará el último voto.
|
239
|
+
title_error: '¡Error de voto!'
|
240
|
+
title_success: Voto registrado correctamente
|
233
241
|
regular_questions:
|
234
242
|
title: Preguntas para esta consulta
|
235
243
|
show:
|
@@ -274,6 +282,7 @@ es-PY:
|
|
274
282
|
already_voted: Ya votado
|
275
283
|
already_voted_hover: Revocar apoyo
|
276
284
|
starting_from: A partir de %{date}
|
285
|
+
verification_required: Verifica tu cuenta para votar
|
277
286
|
vote: Votar
|
278
287
|
vote_modal:
|
279
288
|
contextual_help: Por favor, selecciona una opción.
|
@@ -283,6 +292,10 @@ es-PY:
|
|
283
292
|
confirm: Confirmar
|
284
293
|
contextual_help: Por favor confirma la opción seleccionada.
|
285
294
|
title: 'Consulta: confirma el apoyo'
|
295
|
+
resources:
|
296
|
+
consultations:
|
297
|
+
actions:
|
298
|
+
vote: Votar
|
286
299
|
layouts:
|
287
300
|
decidim:
|
288
301
|
admin:
|
data/config/locales/es.yml
CHANGED
@@ -19,6 +19,9 @@ es:
|
|
19
19
|
hashtag: Hashtag
|
20
20
|
hero_image: Imagen de la pagina de inicio
|
21
21
|
i_frame_url: URL del sistema de votación externa
|
22
|
+
instructions: Instrucciones adicionales para votar
|
23
|
+
max_votes: Número máximo de votos
|
24
|
+
min_votes: Número mínimo de votos
|
22
25
|
origin_scope: Ámbito
|
23
26
|
origin_title: Origen
|
24
27
|
origin_url: URL de origen
|
@@ -33,10 +36,21 @@ es:
|
|
33
36
|
vote: Sistema de votación externa
|
34
37
|
what_is_decided: Qué se decide
|
35
38
|
errors:
|
39
|
+
models:
|
40
|
+
question:
|
41
|
+
attributes:
|
42
|
+
max_votes:
|
43
|
+
lower_than_min: El número máximo de votos debe ser mayor o igual que el mínimo.
|
36
44
|
vote:
|
37
45
|
decidim_consultations_response_id:
|
38
46
|
not_found: Respuesta no encontrada.
|
39
47
|
activerecord:
|
48
|
+
errors:
|
49
|
+
models:
|
50
|
+
decidim/consultations/vote:
|
51
|
+
attributes:
|
52
|
+
question:
|
53
|
+
invalid_num_votes: Número de votos no es válido
|
40
54
|
models:
|
41
55
|
decidim/consultation:
|
42
56
|
one: Consulta
|
@@ -87,6 +101,10 @@ es:
|
|
87
101
|
new:
|
88
102
|
create: Crear
|
89
103
|
title: Nueva consulta
|
104
|
+
results:
|
105
|
+
not_visible: Los resultados estarán disponibles cuando la consulta cierre
|
106
|
+
participants: "%{count} participantes"
|
107
|
+
total_votes: 'Total: %{count} votos'
|
90
108
|
update:
|
91
109
|
error: Se ha producido un error al actualizar esta consulta.
|
92
110
|
success: La consulta se ha actualizado correctamente.
|
@@ -95,8 +113,10 @@ es:
|
|
95
113
|
consultations_submenu:
|
96
114
|
info: Información
|
97
115
|
questions: Preguntas
|
116
|
+
results: Resultados
|
98
117
|
questions_submenu:
|
99
118
|
components: Componentes
|
119
|
+
configuration: Configuración
|
100
120
|
consultation: Consulta
|
101
121
|
info: Información
|
102
122
|
responses: Respuestas
|
@@ -124,6 +144,11 @@ es:
|
|
124
144
|
name:
|
125
145
|
one: Respuesta
|
126
146
|
other: Respuestas
|
147
|
+
question_configuration:
|
148
|
+
disable_external_voting: Por favor, desactiva la votación externa para configuraciones avanzadas
|
149
|
+
form:
|
150
|
+
help: Configura preguntas con opciones de respuesta múltiples aumentando el número máximo de respuestas que puede elegir un participante. El valor máximo predeterminado es 1, lo que significa que sólo se puede seleccionar una respuesta.
|
151
|
+
title: Configuración avanzada
|
127
152
|
question_publications:
|
128
153
|
create:
|
129
154
|
error: Se ha producido un error al publicar esta pregunta.
|
@@ -171,6 +196,7 @@ es:
|
|
171
196
|
consultations: Consultas
|
172
197
|
questions: Preguntas
|
173
198
|
responses: Respuestas
|
199
|
+
results: Resultados
|
174
200
|
consultations:
|
175
201
|
admin:
|
176
202
|
content_blocks:
|
@@ -227,9 +253,28 @@ es:
|
|
227
253
|
votes_out_of:
|
228
254
|
one: votar fuera de
|
229
255
|
other: votos de
|
256
|
+
question_multiple_votes:
|
257
|
+
results_rules:
|
258
|
+
minimum_votes_per_user:
|
259
|
+
description: Las participantes pueden distribuir un mínimo de %{votes} apoyos entre las diferentes opciones.
|
260
|
+
title: En esta pregunta, se permiten múltiples respuestas
|
261
|
+
total_participants: Un total de %{count} personas han participado en la consulta.
|
262
|
+
vote_limit:
|
263
|
+
description: Las participantes pueden votar hasta %{limit} opciones.
|
264
|
+
voting_rules:
|
265
|
+
minimum_votes_per_user:
|
266
|
+
description: Tienes que repartir un mínimo de %{votes} votos entre las diferentes opciones.
|
267
|
+
title: 'La votación se rige por la normativa siguiente:'
|
268
|
+
vote_limit:
|
269
|
+
description: Puedes votar hasta %{limit} opciones.
|
270
|
+
left: Restantes
|
271
|
+
votes: Votos
|
230
272
|
question_votes:
|
231
273
|
create:
|
232
274
|
error: Se ha producido un error al votar la pregunta
|
275
|
+
success: Puedes cambiarlo hasta el final de la consulta. Sólo se aceptará el último voto.
|
276
|
+
title_error: '¡Error de voto!'
|
277
|
+
title_success: Voto registrado correctamente
|
233
278
|
regular_questions:
|
234
279
|
title: Preguntas para esta consulta
|
235
280
|
show:
|
@@ -274,6 +319,7 @@ es:
|
|
274
319
|
already_voted: Ya votado
|
275
320
|
already_voted_hover: Revocar el voto
|
276
321
|
starting_from: A partir de %{date}
|
322
|
+
verification_required: Verifica tu cuenta para votar
|
277
323
|
vote: Votar
|
278
324
|
vote_modal:
|
279
325
|
contextual_help: Por favor, selecciona una opción.
|
@@ -283,6 +329,10 @@ es:
|
|
283
329
|
confirm: Confirma
|
284
330
|
contextual_help: Por favor, confirma la opción seleccionada.
|
285
331
|
title: 'Consulta: confirma el voto'
|
332
|
+
resources:
|
333
|
+
consultations:
|
334
|
+
actions:
|
335
|
+
vote: Votar
|
286
336
|
layouts:
|
287
337
|
decidim:
|
288
338
|
admin:
|
@@ -296,3 +346,4 @@ es:
|
|
296
346
|
unfold: Desplegar
|
297
347
|
question_header:
|
298
348
|
back_to_consultation: Ver todas las consultas
|
349
|
+
back_to_question: Volver a la pregunta
|
data/config/locales/fi-plain.yml
CHANGED
@@ -19,6 +19,9 @@ fi-pl:
|
|
19
19
|
hashtag: Hashtag
|
20
20
|
hero_image: Etusivun kuva
|
21
21
|
i_frame_url: Ulkopuolisen äänestysjärjestelmän URL-osoite
|
22
|
+
instructions: Lisäohjeet äänestykseen
|
23
|
+
max_votes: Äänten enimmäismäärä
|
24
|
+
min_votes: Äänten vähimmäismäärä
|
22
25
|
origin_scope: Teema
|
23
26
|
origin_title: Alkuperä
|
24
27
|
origin_url: Alkuperän URL-osoite
|
@@ -33,10 +36,21 @@ fi-pl:
|
|
33
36
|
vote: Ulkoinen äänestysjärjestelmä
|
34
37
|
what_is_decided: Mitä päätetään
|
35
38
|
errors:
|
39
|
+
models:
|
40
|
+
question:
|
41
|
+
attributes:
|
42
|
+
max_votes:
|
43
|
+
lower_than_min: Äänten enimmäismäärä tulee olla suurempi kuin vähimmäismäärä.
|
36
44
|
vote:
|
37
45
|
decidim_consultations_response_id:
|
38
46
|
not_found: Vastausta ei löytynyt.
|
39
47
|
activerecord:
|
48
|
+
errors:
|
49
|
+
models:
|
50
|
+
decidim/consultations/vote:
|
51
|
+
attributes:
|
52
|
+
question:
|
53
|
+
invalid_num_votes: Äänten määrä on virheellinen
|
40
54
|
models:
|
41
55
|
decidim/consultation:
|
42
56
|
one: Kuuleminen
|
@@ -87,6 +101,10 @@ fi-pl:
|
|
87
101
|
new:
|
88
102
|
create: Luo
|
89
103
|
title: Uusi kuuleminen
|
104
|
+
results:
|
105
|
+
not_visible: Tulokset tulee näkyviin, kun kuuleminen sulkeutuu
|
106
|
+
participants: "%{count} osallistujaa"
|
107
|
+
total_votes: 'Yhteensä: %{count} ääntä'
|
90
108
|
update:
|
91
109
|
error: Virhe päivitettäessä tätä kuulemista.
|
92
110
|
success: Kuuleminen päivitetty onnistuneesti.
|
@@ -95,8 +113,10 @@ fi-pl:
|
|
95
113
|
consultations_submenu:
|
96
114
|
info: Tiedot
|
97
115
|
questions: Kysymykset
|
116
|
+
results: Tulokset
|
98
117
|
questions_submenu:
|
99
118
|
components: Komponentit
|
119
|
+
configuration: Asetukset
|
100
120
|
consultation: Kuuleminen
|
101
121
|
info: Tiedot
|
102
122
|
responses: Vastaukset
|
@@ -124,6 +144,11 @@ fi-pl:
|
|
124
144
|
name:
|
125
145
|
one: Vastaus
|
126
146
|
other: Vastaukset
|
147
|
+
question_configuration:
|
148
|
+
disable_external_voting: Poista ulkoinen äänestys käytöstä lisäasetuksille
|
149
|
+
form:
|
150
|
+
help: Aseta useita vastausvaihtoehtoja nostamalla enimmäisvastausten määrää. Oletuksena enimmäismäärä on 1, mikä tarkoittaa, että vain yhtä vastausvaihtoehtoa voi äänestää.
|
151
|
+
title: Lisäasetukset
|
127
152
|
question_publications:
|
128
153
|
create:
|
129
154
|
error: Virhe julkaistaessa tätä kysymystä.
|
@@ -171,6 +196,7 @@ fi-pl:
|
|
171
196
|
consultations: Kuulemiset
|
172
197
|
questions: Kysymykset
|
173
198
|
responses: Vastaukset
|
199
|
+
results: Tulokset
|
174
200
|
consultations:
|
175
201
|
admin:
|
176
202
|
content_blocks:
|
@@ -227,9 +253,28 @@ fi-pl:
|
|
227
253
|
votes_out_of:
|
228
254
|
one: ääni yhteismäärästä
|
229
255
|
other: ääntä yhteismäärästä
|
256
|
+
question_multiple_votes:
|
257
|
+
results_rules:
|
258
|
+
minimum_votes_per_user:
|
259
|
+
description: Osallistujat voivat antaa vähintään %{votes} ääntä eri vaihtoehtojen kesken.
|
260
|
+
title: Useampi vastausvaihtoehto sallittiin tässä kysymyksessä
|
261
|
+
total_participants: '%{count} ihmistä osallistui tähän äänestykseen.'
|
262
|
+
vote_limit:
|
263
|
+
description: Osallistujat voivat äänestää enintään %{limit} vaihtoehtoa.
|
264
|
+
voting_rules:
|
265
|
+
minimum_votes_per_user:
|
266
|
+
description: Sinun tulee antaa vähintään %{votes} ääntä eri vaihtoehdoille.
|
267
|
+
title: 'Äänestykseen sovelletaan seuraavia sääntöjä:'
|
268
|
+
vote_limit:
|
269
|
+
description: Voit äänestää enintään %{limit} vaihtoehtoa.
|
270
|
+
left: Jäljellä
|
271
|
+
votes: Äänet
|
230
272
|
question_votes:
|
231
273
|
create:
|
232
274
|
error: Kysymystä äänestäessä tapahtui virheitä
|
275
|
+
success: Voit muuttaa sitä kuulemisen loppuun saakka. Ainoastaan viimeisin ääni hyväksytään.
|
276
|
+
title_error: Virhe äänestettäessä!
|
277
|
+
title_success: Äänestys onnistui
|
233
278
|
regular_questions:
|
234
279
|
title: Tätä kuulemista koskevat kysymykset
|
235
280
|
show:
|
@@ -274,6 +319,7 @@ fi-pl:
|
|
274
319
|
already_voted: Äänestetty aikaisemmin
|
275
320
|
already_voted_hover: Peruuta kannatus
|
276
321
|
starting_from: Alkaa %{date}
|
322
|
+
verification_required: Varmenna käyttäjätilisi äänestääksesi
|
277
323
|
vote: Äänestä
|
278
324
|
vote_modal:
|
279
325
|
contextual_help: Valitse vaihtoehto.
|
@@ -283,6 +329,10 @@ fi-pl:
|
|
283
329
|
confirm: Vahvista
|
284
330
|
contextual_help: Vahvista valittu vaihtoehto.
|
285
331
|
title: 'Kuuleminen: vahvista kannatus'
|
332
|
+
resources:
|
333
|
+
consultations:
|
334
|
+
actions:
|
335
|
+
vote: Äänestä
|
286
336
|
layouts:
|
287
337
|
decidim:
|
288
338
|
admin:
|
@@ -296,3 +346,4 @@ fi-pl:
|
|
296
346
|
unfold: Avaa
|
297
347
|
question_header:
|
298
348
|
back_to_consultation: Näytä kaikki kuulemiset
|
349
|
+
back_to_question: Takaisin kysymykseen
|
data/config/locales/fi.yml
CHANGED
@@ -19,6 +19,9 @@ fi:
|
|
19
19
|
hashtag: Hashtag
|
20
20
|
hero_image: Etusivun kuva
|
21
21
|
i_frame_url: Ulkopuolisen äänestysjärjestelmän URL-osoite
|
22
|
+
instructions: Lisäohjeet äänestykseen
|
23
|
+
max_votes: Äänten enimmäismäärä
|
24
|
+
min_votes: Äänten vähimmäismäärä
|
22
25
|
origin_scope: Teema
|
23
26
|
origin_title: Alkuperä
|
24
27
|
origin_url: Alkuperän URL-osoite
|
@@ -33,10 +36,21 @@ fi:
|
|
33
36
|
vote: Ulkoinen äänestysjärjestelmä
|
34
37
|
what_is_decided: Mitä päätetään
|
35
38
|
errors:
|
39
|
+
models:
|
40
|
+
question:
|
41
|
+
attributes:
|
42
|
+
max_votes:
|
43
|
+
lower_than_min: Äänten enimmäismäärä tulee olla suurempi kuin vähimmäismäärä.
|
36
44
|
vote:
|
37
45
|
decidim_consultations_response_id:
|
38
46
|
not_found: Vastausta ei löytynyt.
|
39
47
|
activerecord:
|
48
|
+
errors:
|
49
|
+
models:
|
50
|
+
decidim/consultations/vote:
|
51
|
+
attributes:
|
52
|
+
question:
|
53
|
+
invalid_num_votes: Äänten määrä on virheellinen
|
40
54
|
models:
|
41
55
|
decidim/consultation:
|
42
56
|
one: Kuuleminen
|
@@ -87,6 +101,10 @@ fi:
|
|
87
101
|
new:
|
88
102
|
create: Luo
|
89
103
|
title: Uusi kuuleminen
|
104
|
+
results:
|
105
|
+
not_visible: Tulokset tulee näkyviin, kun kuuleminen sulkeutuu
|
106
|
+
participants: "%{count} osallistujaa"
|
107
|
+
total_votes: 'Yhteensä: %{count} ääntä'
|
90
108
|
update:
|
91
109
|
error: Kuulemisen päivitys epäonnistui.
|
92
110
|
success: Kuuleminen päivitetty onnistuneesti.
|
@@ -95,8 +113,10 @@ fi:
|
|
95
113
|
consultations_submenu:
|
96
114
|
info: Tiedot
|
97
115
|
questions: Kysymykset
|
116
|
+
results: Tulokset
|
98
117
|
questions_submenu:
|
99
118
|
components: Komponentit
|
119
|
+
configuration: Asetukset
|
100
120
|
consultation: Kuuleminen
|
101
121
|
info: Tiedot
|
102
122
|
responses: Vastaukset
|
@@ -124,6 +144,11 @@ fi:
|
|
124
144
|
name:
|
125
145
|
one: Vastaus
|
126
146
|
other: Vastaukset
|
147
|
+
question_configuration:
|
148
|
+
disable_external_voting: Poista ulkoinen äänestys käytöstä lisäasetuksille
|
149
|
+
form:
|
150
|
+
help: Aseta useita vastausvaihtoehtoja nostamalla enimmäisvastausten määrää. Oletuksena enimmäismäärä on 1, mikä tarkoittaa, että vain yhtä vastausvaihtoehtoa voi äänestää.
|
151
|
+
title: Lisäasetukset
|
127
152
|
question_publications:
|
128
153
|
create:
|
129
154
|
error: Kysymyksen julkaisu epäonnistui.
|
@@ -171,6 +196,7 @@ fi:
|
|
171
196
|
consultations: Kuulemiset
|
172
197
|
questions: Kysymykset
|
173
198
|
responses: Vastaukset
|
199
|
+
results: Tulokset
|
174
200
|
consultations:
|
175
201
|
admin:
|
176
202
|
content_blocks:
|
@@ -227,9 +253,28 @@ fi:
|
|
227
253
|
votes_out_of:
|
228
254
|
one: ääni yhteismäärästä
|
229
255
|
other: ääntä yhteismäärästä
|
256
|
+
question_multiple_votes:
|
257
|
+
results_rules:
|
258
|
+
minimum_votes_per_user:
|
259
|
+
description: Osallistujat voivat antaa vähintään %{votes} ääntä eri vaihtoehtojen kesken.
|
260
|
+
title: Useampi vastausvaihtoehto sallittiin tässä kysymyksessä
|
261
|
+
total_participants: '%{count} ihmistä osallistui tähän äänestykseen.'
|
262
|
+
vote_limit:
|
263
|
+
description: Osallistujat voivat äänestää enintään %{limit} vaihtoehtoa.
|
264
|
+
voting_rules:
|
265
|
+
minimum_votes_per_user:
|
266
|
+
description: Sinun tulee antaa vähintään %{votes} ääntä eri vaihtoehdoille.
|
267
|
+
title: 'Äänestykseen sovelletaan seuraavia sääntöjä:'
|
268
|
+
vote_limit:
|
269
|
+
description: Voit äänestää enintään %{limit} vaihtoehtoa.
|
270
|
+
left: Jäljellä
|
271
|
+
votes: Äänet
|
230
272
|
question_votes:
|
231
273
|
create:
|
232
274
|
error: Kysymyksen äänestäminen epäonnistui
|
275
|
+
success: Voit muuttaa sitä kuulemisen loppuun saakka. Ainoastaan viimeisin ääni hyväksytään.
|
276
|
+
title_error: Virhe äänestettäessä!
|
277
|
+
title_success: Äänestys onnistui
|
233
278
|
regular_questions:
|
234
279
|
title: Tätä kuulemista koskevat kysymykset
|
235
280
|
show:
|
@@ -274,6 +319,7 @@ fi:
|
|
274
319
|
already_voted: Äänestetty aikaisemmin
|
275
320
|
already_voted_hover: Peruuta ääni
|
276
321
|
starting_from: Alkaa %{date}
|
322
|
+
verification_required: Varmenna käyttäjätilisi äänestääksesi
|
277
323
|
vote: Äänestä
|
278
324
|
vote_modal:
|
279
325
|
contextual_help: Valitse vaihtoehto.
|
@@ -283,6 +329,10 @@ fi:
|
|
283
329
|
confirm: Vahvista
|
284
330
|
contextual_help: Vahvista valittu vaihtoehto.
|
285
331
|
title: 'Kuuleminen: vahvista ääni'
|
332
|
+
resources:
|
333
|
+
consultations:
|
334
|
+
actions:
|
335
|
+
vote: Äänestä
|
286
336
|
layouts:
|
287
337
|
decidim:
|
288
338
|
admin:
|
@@ -296,3 +346,4 @@ fi:
|
|
296
346
|
unfold: Avaa
|
297
347
|
question_header:
|
298
348
|
back_to_consultation: Näytä kaikki kuulemiset
|
349
|
+
back_to_question: Takaisin kysymykseen
|
data/config/locales/fr.yml
CHANGED
@@ -19,6 +19,9 @@ fr:
|
|
19
19
|
hashtag: Hashtag
|
20
20
|
hero_image: Image de la page d'accueil
|
21
21
|
i_frame_url: URL du système de vote externe
|
22
|
+
instructions: Instructions supplémentaires pour le vote
|
23
|
+
max_votes: Nombre maximal de votes
|
24
|
+
min_votes: Nombre minimal de votes
|
22
25
|
origin_scope: Périmètre
|
23
26
|
origin_title: Origine
|
24
27
|
origin_url: URL d'origine
|
@@ -33,10 +36,21 @@ fr:
|
|
33
36
|
vote: Système de vote externe
|
34
37
|
what_is_decided: Objectifs
|
35
38
|
errors:
|
39
|
+
models:
|
40
|
+
question:
|
41
|
+
attributes:
|
42
|
+
max_votes:
|
43
|
+
lower_than_min: Le nombre maximum de voix doit être supérieur ou égal au minimum.
|
36
44
|
vote:
|
37
45
|
decidim_consultations_response_id:
|
38
46
|
not_found: Réponse introuvable.
|
39
47
|
activerecord:
|
48
|
+
errors:
|
49
|
+
models:
|
50
|
+
decidim/consultations/vote:
|
51
|
+
attributes:
|
52
|
+
question:
|
53
|
+
invalid_num_votes: Nombre de voix invalide
|
40
54
|
models:
|
41
55
|
decidim/consultation:
|
42
56
|
one: Consultation
|
@@ -87,6 +101,10 @@ fr:
|
|
87
101
|
new:
|
88
102
|
create: Créer
|
89
103
|
title: Nouvelle votation
|
104
|
+
results:
|
105
|
+
not_visible: Les résultats seront disponibles lorsque la consultation sera close
|
106
|
+
participants: "%{count} participant·e·s"
|
107
|
+
total_votes: 'Total : %{count} votes'
|
90
108
|
update:
|
91
109
|
error: Une erreur s'est produite lors de la mise à jour de cette votation.
|
92
110
|
success: Votation mise à jour avec succès.
|
@@ -95,8 +113,10 @@ fr:
|
|
95
113
|
consultations_submenu:
|
96
114
|
info: Informations
|
97
115
|
questions: Questions
|
116
|
+
results: Résultats
|
98
117
|
questions_submenu:
|
99
118
|
components: Fonctionnalités
|
119
|
+
configuration: Configuration
|
100
120
|
consultation: Votation
|
101
121
|
info: Informations
|
102
122
|
responses: Réponses
|
@@ -124,6 +144,10 @@ fr:
|
|
124
144
|
name:
|
125
145
|
one: Réponse
|
126
146
|
other: Réponses
|
147
|
+
question_configuration:
|
148
|
+
disable_external_voting: Veuillez désactiver le vote externe pour les configurations avancées
|
149
|
+
form:
|
150
|
+
title: Configuration avancée
|
127
151
|
question_publications:
|
128
152
|
create:
|
129
153
|
error: Une erreur s'est produite lors de la publication de cette question.
|
@@ -171,6 +195,7 @@ fr:
|
|
171
195
|
consultations: Votations
|
172
196
|
questions: Questions
|
173
197
|
responses: Réponses
|
198
|
+
results: Résultats
|
174
199
|
consultations:
|
175
200
|
admin:
|
176
201
|
content_blocks:
|
@@ -227,9 +252,28 @@ fr:
|
|
227
252
|
votes_out_of:
|
228
253
|
one: vote sur
|
229
254
|
other: votes sur
|
255
|
+
question_multiple_votes:
|
256
|
+
results_rules:
|
257
|
+
minimum_votes_per_user:
|
258
|
+
description: Les participants pourraient distribuer un minimum de %{votes} votes parmi différentes options.
|
259
|
+
title: Dans cette question plusieurs choix sont permis
|
260
|
+
total_participants: Un total de %{count} personnes ont participé au vote.
|
261
|
+
vote_limit:
|
262
|
+
description: Les participants peuvent voter jusqu'à %{limit} options.
|
263
|
+
voting_rules:
|
264
|
+
minimum_votes_per_user:
|
265
|
+
description: Vous devez répartir un minimum de %{votes} voix entre différentes questions.
|
266
|
+
title: 'Les votes sont soumis aux règles suivantes :'
|
267
|
+
vote_limit:
|
268
|
+
description: Vous pouvez voter jusqu'à %{limit} options.
|
269
|
+
left: Restant
|
270
|
+
votes: Voix
|
230
271
|
question_votes:
|
231
272
|
create:
|
232
273
|
error: Il y a eu des erreurs lors du vote sur la question
|
274
|
+
success: Vous pouvez le modifier jusqu'à la fin de la consultation. Seul le dernier vote sera accepté.
|
275
|
+
title_error: Erreur de vote !
|
276
|
+
title_success: Vote enregistré avec succès
|
233
277
|
regular_questions:
|
234
278
|
title: Questions pour cette votation
|
235
279
|
show:
|
@@ -274,6 +318,7 @@ fr:
|
|
274
318
|
already_voted: Déjà voté
|
275
319
|
already_voted_hover: Retirer le vote
|
276
320
|
starting_from: À partir de %{date}
|
321
|
+
verification_required: Vérifier votre compte pour voter
|
277
322
|
vote: Voter
|
278
323
|
vote_modal:
|
279
324
|
contextual_help: Veuillez sélectionner une option.
|
@@ -283,6 +328,10 @@ fr:
|
|
283
328
|
confirm: Confirmer
|
284
329
|
contextual_help: Veuillez confirmer l'option sélectionnée.
|
285
330
|
title: 'Consultation : confirmer le soutien'
|
331
|
+
resources:
|
332
|
+
consultations:
|
333
|
+
actions:
|
334
|
+
vote: Voter
|
286
335
|
layouts:
|
287
336
|
decidim:
|
288
337
|
admin:
|
@@ -296,3 +345,4 @@ fr:
|
|
296
345
|
unfold: Voir la suite
|
297
346
|
question_header:
|
298
347
|
back_to_consultation: Voir toutes les votations
|
348
|
+
back_to_question: Retour à la question
|