decidim-consultations 0.11.2 → 0.12.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_consultations_manifest.css +4 -0
  3. data/app/assets/stylesheets/decidim/consultations/consultations.scss +0 -1
  4. data/app/cells/decidim/consultations/consultation_cell.rb +19 -0
  5. data/app/cells/decidim/consultations/consultation_m/data.erb +21 -0
  6. data/app/cells/decidim/consultations/consultation_m/footer.erb +5 -0
  7. data/app/cells/decidim/consultations/consultation_m_cell.rb +94 -0
  8. data/app/commands/decidim/consultations/admin/update_consultation.rb +2 -1
  9. data/app/controllers/concerns/decidim/consultations/action_authorization.rb +2 -2
  10. data/app/controllers/concerns/decidim/consultations/admin/consultation_admin.rb +7 -0
  11. data/app/controllers/concerns/decidim/consultations/admin/question_admin.rb +7 -0
  12. data/app/controllers/concerns/decidim/consultations/needs_consultation.rb +0 -4
  13. data/app/controllers/concerns/decidim/consultations/needs_question.rb +0 -7
  14. data/app/controllers/decidim/consultations/admin/application_controller.rb +15 -0
  15. data/app/controllers/decidim/consultations/admin/consultation_publications_controller.rb +3 -3
  16. data/app/controllers/decidim/consultations/admin/consultation_results_publications_controller.rb +3 -3
  17. data/app/controllers/decidim/consultations/admin/consultations_controller.rb +6 -10
  18. data/app/controllers/decidim/consultations/admin/question_attachments_controller.rb +1 -1
  19. data/app/controllers/decidim/consultations/admin/question_publications_controller.rb +3 -3
  20. data/app/controllers/decidim/consultations/admin/questions_controller.rb +6 -10
  21. data/app/controllers/decidim/consultations/admin/responses_controller.rb +7 -7
  22. data/app/controllers/decidim/consultations/application_controller.rb +25 -0
  23. data/app/controllers/decidim/consultations/consultations_controller.rb +3 -17
  24. data/app/controllers/decidim/consultations/question_votes_controller.rb +3 -3
  25. data/app/controllers/decidim/consultations/questions_controller.rb +2 -2
  26. data/app/forms/decidim/consultations/admin/consultation_form.rb +1 -0
  27. data/app/models/decidim/consultation.rb +4 -3
  28. data/app/models/decidim/consultations/question.rb +22 -1
  29. data/app/permissions/decidim/consultations/admin/permissions.rb +108 -0
  30. data/app/permissions/decidim/consultations/permissions.rb +55 -0
  31. data/app/views/decidim/consultations/admin/consultations/edit.html.erb +4 -4
  32. data/app/views/decidim/consultations/admin/consultations/index.html.erb +5 -5
  33. data/app/views/decidim/consultations/admin/questions/edit.html.erb +2 -2
  34. data/app/views/decidim/consultations/admin/questions/index.html.erb +5 -5
  35. data/app/views/decidim/consultations/admin/responses/edit.html.erb +1 -1
  36. data/app/views/decidim/consultations/admin/responses/index.html.erb +3 -3
  37. data/app/views/decidim/consultations/consultation_widgets/show.html.erb +0 -2
  38. data/app/views/decidim/consultations/consultations/_consultations.html.erb +1 -1
  39. data/app/views/decidim/consultations/consultations/_regular_questions.html.erb +2 -2
  40. data/app/views/decidim/consultations/consultations/show.html.erb +0 -8
  41. data/app/views/decidim/consultations/question_votes/update_vote_button.js.erb +3 -0
  42. data/app/views/decidim/consultations/questions/_vote_button.html.erb +15 -28
  43. data/app/views/decidim/consultations/questions/_vote_modal.html.erb +1 -1
  44. data/app/views/decidim/consultations/questions/_vote_modal_confirm.html.erb +1 -1
  45. data/app/views/layouts/decidim/_question_components.html.erb +3 -2
  46. data/app/views/layouts/decidim/admin/consultation.html.erb +7 -4
  47. data/app/views/layouts/decidim/admin/consultations.html.erb +16 -10
  48. data/app/views/layouts/decidim/admin/question.html.erb +11 -8
  49. data/app/views/layouts/decidim/consultation.html.erb +0 -2
  50. data/app/views/layouts/decidim/consultation_choose.html.erb +0 -2
  51. data/app/views/layouts/decidim/question.html.erb +0 -1
  52. data/config/locales/ca.yml +33 -11
  53. data/config/locales/en.yml +33 -11
  54. data/config/locales/es.yml +33 -11
  55. data/config/locales/eu.yml +33 -11
  56. data/config/locales/fi.yml +33 -11
  57. data/config/locales/fr.yml +33 -11
  58. data/config/locales/gl.yml +33 -11
  59. data/config/locales/it.yml +33 -11
  60. data/config/locales/nl.yml +33 -11
  61. data/config/locales/pl.yml +41 -11
  62. data/config/locales/pt-BR.yml +33 -11
  63. data/config/locales/pt.yml +33 -11
  64. data/config/locales/ru.yml +1 -3
  65. data/config/locales/sv.yml +33 -11
  66. data/config/locales/uk.yml +41 -11
  67. data/lib/decidim/consultations/admin_engine.rb +1 -11
  68. data/lib/decidim/consultations/engine.rb +6 -11
  69. data/lib/decidim/consultations/participatory_space.rb +64 -105
  70. data/lib/decidim/consultations/version.rb +1 -1
  71. metadata +20 -19
  72. data/app/assets/config/decidim_consultations_manifest.scss +0 -3
  73. data/app/models/decidim/consultations/abilities/admin/consultation_admin_ability.rb +0 -34
  74. data/app/models/decidim/consultations/abilities/admin/question_admin_ability.rb +0 -30
  75. data/app/models/decidim/consultations/abilities/admin/response_admin_ability.rb +0 -26
  76. data/app/models/decidim/consultations/abilities/current_user_ability.rb +0 -45
  77. data/app/models/decidim/consultations/abilities/everyone_ability.rb +0 -23
  78. data/app/views/decidim/consultations/consultations/finished.html.erb +0 -15
@@ -8,6 +8,7 @@ it:
8
8
  end_voting_date: Data di fine
9
9
  introductory_image: Immagine introduttiva
10
10
  introductory_video_url: URL video introduttivo
11
+ questions: Domande
11
12
  slug: Slug URL
12
13
  start_voting_date: Data d'inizio
13
14
  subtitle: Sottotitolo
@@ -35,6 +36,20 @@ it:
35
36
  vote:
36
37
  decidim_consultations_response_id:
37
38
  not_found: Risposta non trovata
39
+ activerecord:
40
+ models:
41
+ decidim/consultations:
42
+ one: Consultazione
43
+ other: consultazioni
44
+ decidim/consultations/question:
45
+ one: Domanda
46
+ other: Domande
47
+ decidim/consultations/response:
48
+ one: Risposta
49
+ other: risposte
50
+ decidim/consultations/vote:
51
+ one: Votazione
52
+ other: voti
38
53
  decidim:
39
54
  admin:
40
55
  actions:
@@ -182,11 +197,8 @@ it:
182
197
  filter: Filtro
183
198
  filter_by: Filtra per
184
199
  unfold: spiegare
185
- finished:
186
- active_consultations: Consultazioni attive
187
- past_consultations: Consultazioni precedenti
188
200
  highlighted_questions:
189
- title: Consultazioni da %{scope_name}
201
+ title: Domande da %{scope_name}
190
202
  index:
191
203
  title: consultazioni
192
204
  question:
@@ -199,11 +211,25 @@ it:
199
211
  create:
200
212
  error: Ci sono stati errori nel votare la domanda
201
213
  regular_questions:
202
- title: Altre consultazioni
214
+ title: Domande per questa consultazione
203
215
  show:
204
- see_finished_consultations: Vedi consultazioni precedenti
216
+ badge_name:
217
+ finished: Finito
218
+ open: Aperto
219
+ open_votes: Voti aperti
220
+ published_results: Risultati pubblicati
221
+ footer_button_text:
222
+ debate: Discussione
223
+ view: vista
224
+ view_results: Vedi i risultati
225
+ vote: Votazione
226
+ unspecified: Non specificato
205
227
  menu:
206
228
  consultations: consultazioni
229
+ pages:
230
+ home:
231
+ statistics:
232
+ consultations_count: consultazioni
207
233
  questions:
208
234
  results:
209
235
  title: risultati
@@ -222,7 +248,7 @@ it:
222
248
  starting_from: A partire da %{date}
223
249
  vote: Votazione
224
250
  vote_modal:
225
- contextual_help: Per favore selezionate un'opzione. Ricorda che una volta confermato il tuo supporto non può essere modificato.
251
+ contextual_help: Per favore selezionate un'opzione.
226
252
  title: 'Consultazione: domanda di supporto'
227
253
  vote_modal_confirm:
228
254
  change: Modificare
@@ -242,7 +268,3 @@ it:
242
268
  unfold: spiegare
243
269
  question_header:
244
270
  back_to_consultation: Vedi tutte le consultazioni
245
- pages:
246
- home:
247
- statistics:
248
- consultations_count: consultazioni
@@ -8,6 +8,7 @@ nl:
8
8
  end_voting_date: Einddatum
9
9
  introductory_image: Introductie afbeelding
10
10
  introductory_video_url: Introductievideo-URL
11
+ questions: vragen
11
12
  slug: URL pad
12
13
  start_voting_date: Startdatum
13
14
  subtitle: Ondertitel
@@ -35,6 +36,20 @@ nl:
35
36
  vote:
36
37
  decidim_consultations_response_id:
37
38
  not_found: Reactie niet gevonden.
39
+ activerecord:
40
+ models:
41
+ decidim/consultations:
42
+ one: Overleg
43
+ other: overleg
44
+ decidim/consultations/question:
45
+ one: Vraag
46
+ other: vragen
47
+ decidim/consultations/response:
48
+ one: antwoord
49
+ other: Antwoorden
50
+ decidim/consultations/vote:
51
+ one: Stemmen
52
+ other: stemmen
38
53
  decidim:
39
54
  admin:
40
55
  actions:
@@ -182,11 +197,8 @@ nl:
182
197
  filter: Sorteer
183
198
  filter_by: Sorteren op
184
199
  unfold: Uitklappen
185
- finished:
186
- active_consultations: Huidige burgerinspraak
187
- past_consultations: Afgelopen burgerinspraken
188
200
  highlighted_questions:
189
- title: Burgerinspraak over %{scope_name}
201
+ title: Vragen vanaf %{scope_name}
190
202
  index:
191
203
  title: Burgerinspraak
192
204
  question:
@@ -199,11 +211,25 @@ nl:
199
211
  create:
200
212
  error: Er zijn fouten opgetreden bij het stemmen op de vraag
201
213
  regular_questions:
202
- title: Andere burgerinspraken
214
+ title: Vragen voor dit consult
203
215
  show:
204
- see_finished_consultations: Bekijk vorige burgerinspraken
216
+ badge_name:
217
+ finished: Afgewerkt
218
+ open: Open
219
+ open_votes: Open stemmen
220
+ published_results: Resultaten gepubliceerd
221
+ footer_button_text:
222
+ debate: Debat
223
+ view: Uitzicht
224
+ view_results: Bekijk resultaten
225
+ vote: Stemmen
226
+ unspecified: Niet gespecificeerd
205
227
  menu:
206
228
  consultations: Burgerinspraak
229
+ pages:
230
+ home:
231
+ statistics:
232
+ consultations_count: overleg
207
233
  questions:
208
234
  results:
209
235
  title: Resultaten
@@ -222,7 +248,7 @@ nl:
222
248
  starting_from: Te beginnen op %{date}
223
249
  vote: Stem
224
250
  vote_modal:
225
- contextual_help: Maak een keuze a.u.b. Houd er rekening mee dat wanneer je eenmaal hebt bevestigd dat je je stem niet meer kan wijzigen.
251
+ contextual_help: Maak een keuze a.u.b.
226
252
  title: 'Overleg: vraagondersteuning'
227
253
  vote_modal_confirm:
228
254
  change: Wijzigen
@@ -242,7 +268,3 @@ nl:
242
268
  unfold: Uitklappen
243
269
  question_header:
244
270
  back_to_consultation: Bekijk alle burgerinspraken
245
- pages:
246
- home:
247
- statistics:
248
- consultations_count: burgerinspraak
@@ -8,6 +8,7 @@ pl:
8
8
  end_voting_date: Data końcowa
9
9
  introductory_image: Obraz wprowadzający
10
10
  introductory_video_url: Wprowadzający adres URL filmu
11
+ questions: pytania
11
12
  slug: Strumień URL
12
13
  start_voting_date: Data rozpoczęcia
13
14
  subtitle: Podtytuł
@@ -35,6 +36,28 @@ pl:
35
36
  vote:
36
37
  decidim_consultations_response_id:
37
38
  not_found: Odpowiedź nie znaleziono.
39
+ activerecord:
40
+ models:
41
+ decidim/consultations:
42
+ one: Konsultacja
43
+ few: Konsultacje
44
+ many: Konsultacje
45
+ other: Konsultacje
46
+ decidim/consultations/question:
47
+ one: Pytanie
48
+ few: pytania
49
+ many: pytania
50
+ other: pytania
51
+ decidim/consultations/response:
52
+ one: Odpowiedź
53
+ few: Odpowiedzi
54
+ many: Odpowiedzi
55
+ other: Odpowiedzi
56
+ decidim/consultations/vote:
57
+ one: Głosować
58
+ few: Głosy
59
+ many: Głosy
60
+ other: Głosy
38
61
  decidim:
39
62
  admin:
40
63
  actions:
@@ -190,11 +213,8 @@ pl:
190
213
  filter: Filtr
191
214
  filter_by: Filtruj według
192
215
  unfold: Rozwijać się
193
- finished:
194
- active_consultations: Aktywne konsultacje
195
- past_consultations: Wcześniejsze konsultacje
196
216
  highlighted_questions:
197
- title: Konsultacje od %{scope_name}
217
+ title: Pytania od %{scope_name}
198
218
  index:
199
219
  title: Konsultacje
200
220
  question:
@@ -209,11 +229,25 @@ pl:
209
229
  create:
210
230
  error: Wystąpiły błędy podczas głosowania na pytanie
211
231
  regular_questions:
212
- title: Inne konsultacje
232
+ title: Pytania do tej konsultacji
213
233
  show:
214
- see_finished_consultations: Zobacz poprzednie konsultacje
234
+ badge_name:
235
+ finished: Skończone
236
+ open: otwarty
237
+ open_votes: Otwarte głosy
238
+ published_results: Wyniki opublikowane
239
+ footer_button_text:
240
+ debate: Debata
241
+ view: Widok
242
+ view_results: Pokaż wyniki
243
+ vote: Głosować
244
+ unspecified: Nieokreślony
215
245
  menu:
216
246
  consultations: Konsultacje
247
+ pages:
248
+ home:
249
+ statistics:
250
+ consultations_count: Konsultacje
217
251
  questions:
218
252
  results:
219
253
  title: Wyniki
@@ -232,7 +266,7 @@ pl:
232
266
  starting_from: Począwszy od %{date}
233
267
  vote: Głosować
234
268
  vote_modal:
235
- contextual_help: Proszę wybrać opcję. Pamiętaj, że po potwierdzeniu Twoja pomoc techniczna nie może zostać zmieniona.
269
+ contextual_help: Proszę wybrać opcję.
236
270
  title: 'Konsultacje: wsparcie pytania'
237
271
  vote_modal_confirm:
238
272
  change: Zmiana
@@ -252,7 +286,3 @@ pl:
252
286
  unfold: Rozwijać się
253
287
  question_header:
254
288
  back_to_consultation: Zobacz wszystkie konsultacje
255
- pages:
256
- home:
257
- statistics:
258
- consultations_count: Konsultacje
@@ -8,6 +8,7 @@ pt-BR:
8
8
  end_voting_date: Data final
9
9
  introductory_image: Imagem introdutória
10
10
  introductory_video_url: URL de vídeo introdutório
11
+ questions: Perguntas
11
12
  slug: Lesma de URL
12
13
  start_voting_date: Data de início
13
14
  subtitle: Legenda
@@ -35,6 +36,20 @@ pt-BR:
35
36
  vote:
36
37
  decidim_consultations_response_id:
37
38
  not_found: Resposta não encontrada.
39
+ activerecord:
40
+ models:
41
+ decidim/consultations:
42
+ one: Consulta
43
+ other: Consultas
44
+ decidim/consultations/question:
45
+ one: Pergunta
46
+ other: Perguntas
47
+ decidim/consultations/response:
48
+ one: Resposta
49
+ other: Respostas
50
+ decidim/consultations/vote:
51
+ one: Voto
52
+ other: Votos
38
53
  decidim:
39
54
  admin:
40
55
  actions:
@@ -182,11 +197,8 @@ pt-BR:
182
197
  filter: Filtro
183
198
  filter_by: Filtrar por
184
199
  unfold: Desdobrar
185
- finished:
186
- active_consultations: Consultas ativas
187
- past_consultations: Consultas anteriores
188
200
  highlighted_questions:
189
- title: Consultas de %{scope_name}
201
+ title: Perguntas de %{scope_name}
190
202
  index:
191
203
  title: Consultas
192
204
  question:
@@ -199,11 +211,25 @@ pt-BR:
199
211
  create:
200
212
  error: Houve erros ao votar a questão
201
213
  regular_questions:
202
- title: Outras consultas
214
+ title: Perguntas para esta consulta
203
215
  show:
204
- see_finished_consultations: Veja as consultas anteriores
216
+ badge_name:
217
+ finished: Acabado
218
+ open: Abrir
219
+ open_votes: Votos abertos
220
+ published_results: Resultados publicados
221
+ footer_button_text:
222
+ debate: Debate
223
+ view: Visualizar
224
+ view_results: Ver resultados
225
+ vote: Votar
226
+ unspecified: Não especificado
205
227
  menu:
206
228
  consultations: Consultas
229
+ pages:
230
+ home:
231
+ statistics:
232
+ consultations_count: Consultas
207
233
  questions:
208
234
  results:
209
235
  title: Resultados
@@ -222,7 +248,7 @@ pt-BR:
222
248
  starting_from: A partir de %{date}
223
249
  vote: Voto
224
250
  vote_modal:
225
- contextual_help: Por favor selecione uma opção. Tenha em mente que uma vez que você confirmou seu apoio não pode ser alterado.
251
+ contextual_help: Selecione uma opção.
226
252
  title: 'Consulta: suporte a perguntas'
227
253
  vote_modal_confirm:
228
254
  change: mudança
@@ -242,7 +268,3 @@ pt-BR:
242
268
  unfold: Desdobrar
243
269
  question_header:
244
270
  back_to_consultation: Veja todas as consultas
245
- pages:
246
- home:
247
- statistics:
248
- consultations_count: Consultas
@@ -8,6 +8,7 @@ pt:
8
8
  end_voting_date: Data final
9
9
  introductory_image: Imagem introdutória
10
10
  introductory_video_url: URL de vídeo introdutório
11
+ questions: Questões
11
12
  slug: Lesma de URL
12
13
  start_voting_date: Data de início
13
14
  subtitle: Legenda
@@ -35,6 +36,20 @@ pt:
35
36
  vote:
36
37
  decidim_consultations_response_id:
37
38
  not_found: Resposta não encontrada.
39
+ activerecord:
40
+ models:
41
+ decidim/consultations:
42
+ one: Consulta
43
+ other: Consultas
44
+ decidim/consultations/question:
45
+ one: Questão
46
+ other: Questões
47
+ decidim/consultations/response:
48
+ one: Resposta
49
+ other: Respostas
50
+ decidim/consultations/vote:
51
+ one: Voto
52
+ other: Votos
38
53
  decidim:
39
54
  admin:
40
55
  actions:
@@ -182,11 +197,8 @@ pt:
182
197
  filter: Filtro
183
198
  filter_by: Filtrar por
184
199
  unfold: Desdobrar
185
- finished:
186
- active_consultations: Consultas ativas
187
- past_consultations: Consultas anteriores
188
200
  highlighted_questions:
189
- title: Consultas de %{scope_name}
201
+ title: Perguntas de %{scope_name}
190
202
  index:
191
203
  title: Consultas
192
204
  question:
@@ -199,11 +211,25 @@ pt:
199
211
  create:
200
212
  error: Houve erros ao votar a questão
201
213
  regular_questions:
202
- title: Outras consultas
214
+ title: Perguntas para esta consulta
203
215
  show:
204
- see_finished_consultations: Veja as consultas anteriores
216
+ badge_name:
217
+ finished: Acabado
218
+ open: Aberto
219
+ open_votes: Votos abertos
220
+ published_results: Resultados publicados
221
+ footer_button_text:
222
+ debate: Debate
223
+ view: Visão
224
+ view_results: Ver resultados
225
+ vote: Voto
226
+ unspecified: Não especificado
205
227
  menu:
206
228
  consultations: Consultas
229
+ pages:
230
+ home:
231
+ statistics:
232
+ consultations_count: Consultas
207
233
  questions:
208
234
  results:
209
235
  title: Resultados
@@ -222,7 +248,7 @@ pt:
222
248
  starting_from: A partir de %{date}
223
249
  vote: Voto
224
250
  vote_modal:
225
- contextual_help: Por favor selecione uma opção. Tenha em mente que uma vez que você confirmou seu apoio não pode ser alterado.
251
+ contextual_help: Por favor selecione uma opção.
226
252
  title: 'Consulta: suporte a perguntas'
227
253
  vote_modal_confirm:
228
254
  change: mudança
@@ -242,7 +268,3 @@ pt:
242
268
  unfold: Desdobrar
243
269
  question_header:
244
270
  back_to_consultation: Veja todas as consultas
245
- pages:
246
- home:
247
- statistics:
248
- consultations_count: Consultas
@@ -28,10 +28,8 @@ ru:
28
28
  consultations:
29
29
  filters:
30
30
  active: Действующие
31
- finished:
32
- active_consultations: Действующие консультации
33
31
  highlighted_questions:
34
- title: Консультации из %{scope_name}
32
+ title: Вопросы из %{scope_name}
35
33
  layouts:
36
34
  decidim:
37
35
  admin:
@@ -8,6 +8,7 @@ sv:
8
8
  end_voting_date: Slutdatum
9
9
  introductory_image: Inledande bild
10
10
  introductory_video_url: Inledande videoadress
11
+ questions: frågor
11
12
  slug: URL slug
12
13
  start_voting_date: Start datum
13
14
  subtitle: Texta
@@ -35,6 +36,20 @@ sv:
35
36
  vote:
36
37
  decidim_consultations_response_id:
37
38
  not_found: Svar ej hittat.
39
+ activerecord:
40
+ models:
41
+ decidim/consultations:
42
+ one: Samråd
43
+ other: samråd
44
+ decidim/consultations/question:
45
+ one: Fråga
46
+ other: frågor
47
+ decidim/consultations/response:
48
+ one: Svar
49
+ other: Svar
50
+ decidim/consultations/vote:
51
+ one: Rösta
52
+ other: röster
38
53
  decidim:
39
54
  admin:
40
55
  actions:
@@ -182,11 +197,8 @@ sv:
182
197
  filter: Filtrera
183
198
  filter_by: Filtrera efter
184
199
  unfold: Veckla ut
185
- finished:
186
- active_consultations: Aktiva samråd
187
- past_consultations: Tidigare samråd
188
200
  highlighted_questions:
189
- title: Samråd från %{scope_name}
201
+ title: Frågor från %{scope_name}
190
202
  index:
191
203
  title: samråd
192
204
  question:
@@ -199,11 +211,25 @@ sv:
199
211
  create:
200
212
  error: Det har förekommit fel när man röstade frågan
201
213
  regular_questions:
202
- title: Övriga samråd
214
+ title: Frågor för detta samråd
203
215
  show:
204
- see_finished_consultations: Se tidigare samråd
216
+ badge_name:
217
+ finished: Färdiga
218
+ open: Öppen
219
+ open_votes: Öppna röster
220
+ published_results: Resultat publicerade
221
+ footer_button_text:
222
+ debate: Debatt
223
+ view: Se
224
+ view_results: Se Resultat
225
+ vote: Rösta
226
+ unspecified: Ej angivet
205
227
  menu:
206
228
  consultations: samråd
229
+ pages:
230
+ home:
231
+ statistics:
232
+ consultations_count: samråd
207
233
  questions:
208
234
  results:
209
235
  title: Resultat
@@ -222,7 +248,7 @@ sv:
222
248
  starting_from: Börjar från %{date}
223
249
  vote: Rösta
224
250
  vote_modal:
225
- contextual_help: Var god välj ett alternativ. Tänk på att när du har bekräftat Ditt stöd kan inte ändras.
251
+ contextual_help: Var god välj ett alternativ.
226
252
  title: 'Samråd: Frågestöd'
227
253
  vote_modal_confirm:
228
254
  change: Byta
@@ -242,7 +268,3 @@ sv:
242
268
  unfold: Veckla ut
243
269
  question_header:
244
270
  back_to_consultation: Se alla samråd
245
- pages:
246
- home:
247
- statistics:
248
- consultations_count: samråd