decidim-consultations 0.19.0 → 0.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/decidim/consultations/icon.svg +1 -3
  3. data/app/assets/images/decidim/consultations/icon2.svg +1 -88
  4. data/app/assets/javascripts/decidim/consultations/utils_multiple.js +1 -1
  5. data/app/assets/stylesheets/decidim/consultations/_question.scss +0 -6
  6. data/app/assets/stylesheets/decidim/consultations/_question_multiple_votes.scss +22 -0
  7. data/app/assets/stylesheets/decidim/consultations/consultations.scss +1 -0
  8. data/app/assets/stylesheets/decidim/consultations/consultations/_consultations-header.scss +0 -1
  9. data/app/cells/decidim/consultations/consultation_m/data.erb +1 -1
  10. data/app/cells/decidim/consultations/consultation_m/footer.erb +1 -1
  11. data/app/cells/decidim/consultations/content_blocks/highlighted_consultations/show.erb +3 -3
  12. data/app/commands/decidim/consultations/admin/create_response.rb +2 -1
  13. data/app/commands/decidim/consultations/admin/create_response_group.rb +40 -0
  14. data/app/commands/decidim/consultations/admin/destroy_response_group.rb +39 -0
  15. data/app/commands/decidim/consultations/admin/update_response.rb +3 -2
  16. data/app/commands/decidim/consultations/admin/update_response_group.rb +46 -0
  17. data/app/controllers/concerns/decidim/consultations/admin/filterable.rb +27 -0
  18. data/app/controllers/decidim/consultations/admin/consultations_controller.rb +2 -1
  19. data/app/controllers/decidim/consultations/admin/response_groups_controller.rb +88 -0
  20. data/app/controllers/decidim/consultations/admin/responses_controller.rb +1 -0
  21. data/app/controllers/decidim/consultations/consultations_controller.rb +1 -1
  22. data/app/forms/decidim/consultations/admin/response_form.rb +5 -0
  23. data/app/forms/decidim/consultations/admin/response_group_form.rb +18 -0
  24. data/app/helpers/decidim/consultations/admin/questions_helper.rb +11 -0
  25. data/app/models/decidim/consultation.rb +16 -0
  26. data/app/models/decidim/consultations/question.rb +22 -0
  27. data/app/models/decidim/consultations/response.rb +7 -0
  28. data/app/models/decidim/consultations/response_group.rb +19 -0
  29. data/app/permissions/decidim/consultations/admin/permissions.rb +16 -0
  30. data/app/permissions/decidim/consultations/permissions.rb +2 -0
  31. data/app/types/decidim/consultations/consultation_question_type.rb +57 -0
  32. data/app/types/decidim/consultations/consultation_type.rb +32 -0
  33. data/app/views/decidim/consultations/admin/consultations/index.html.erb +3 -2
  34. data/app/views/decidim/consultations/admin/response_groups/_form.html.erb +11 -0
  35. data/app/views/decidim/consultations/admin/response_groups/edit.html.erb +18 -0
  36. data/app/views/decidim/consultations/admin/response_groups/index.html.erb +56 -0
  37. data/app/views/decidim/consultations/admin/response_groups/new.html.erb +13 -0
  38. data/app/views/decidim/consultations/admin/responses/_form.html.erb +3 -0
  39. data/app/views/decidim/consultations/admin/responses/index.html.erb +12 -1
  40. data/app/views/decidim/consultations/consultations/_consultation_card.html.erb +3 -3
  41. data/app/views/decidim/consultations/consultations/_consultation_details.html.erb +2 -2
  42. data/app/views/decidim/consultations/consultations/_filters.html.erb +9 -4
  43. data/app/views/decidim/consultations/consultations/_question.html.erb +2 -2
  44. data/app/views/decidim/consultations/consultations/index.html.erb +3 -3
  45. data/app/views/decidim/consultations/question_multiple_votes/_form.html.erb +14 -10
  46. data/app/views/decidim/consultations/question_multiple_votes/show.html.erb +8 -2
  47. data/app/views/decidim/consultations/questions/_vote_button.html.erb +70 -67
  48. data/app/views/decidim/consultations/questions/_vote_modal.html.erb +1 -1
  49. data/app/views/decidim/consultations/questions/_vote_modal_confirm.html.erb +1 -1
  50. data/app/views/decidim/consultations/questions/show.html.erb +4 -4
  51. data/app/views/layouts/decidim/_question_components.html.erb +3 -3
  52. data/app/views/layouts/decidim/_question_header.html.erb +1 -1
  53. data/app/views/layouts/decidim/admin/question.html.erb +1 -1
  54. data/config/locales/ar.yml +45 -1
  55. data/config/locales/bg-BG.yml +1 -0
  56. data/config/locales/ca.yml +29 -1
  57. data/config/locales/cs.yml +35 -7
  58. data/config/locales/da-DK.yml +1 -0
  59. data/config/locales/de.yml +82 -1
  60. data/config/locales/el-GR.yml +1 -0
  61. data/config/locales/el.yml +377 -0
  62. data/config/locales/en.yml +29 -1
  63. data/config/locales/es-MX.yml +67 -1
  64. data/config/locales/es-PY.yml +67 -1
  65. data/config/locales/es.yml +29 -1
  66. data/config/locales/et-EE.yml +1 -0
  67. data/config/locales/eu.yml +0 -1
  68. data/config/locales/fi-plain.yml +29 -1
  69. data/config/locales/fi.yml +38 -10
  70. data/config/locales/fr-CA.yml +377 -0
  71. data/config/locales/fr.yml +31 -2
  72. data/config/locales/ga-IE.yml +1 -0
  73. data/config/locales/gl.yml +0 -1
  74. data/config/locales/hr-HR.yml +1 -0
  75. data/config/locales/hu.yml +31 -7
  76. data/config/locales/id-ID.yml +0 -1
  77. data/config/locales/is-IS.yml +185 -0
  78. data/config/locales/it.yml +115 -51
  79. data/config/locales/ja-JP.yml +367 -0
  80. data/config/locales/lt-LT.yml +1 -0
  81. data/config/locales/lv-LV.yml +383 -0
  82. data/config/locales/mt-MT.yml +1 -0
  83. data/config/locales/nl.yml +29 -1
  84. data/config/locales/no.yml +366 -0
  85. data/config/locales/pl.yml +177 -96
  86. data/config/locales/pt-BR.yml +1 -2
  87. data/config/locales/pt.yml +156 -75
  88. data/config/locales/ro-RO.yml +338 -0
  89. data/config/locales/ru.yml +0 -1
  90. data/config/locales/sk-SK.yml +394 -0
  91. data/config/locales/sk.yml +393 -0
  92. data/config/locales/sl.yml +5 -0
  93. data/config/locales/sr-CS.yml +1 -0
  94. data/config/locales/sv.yml +78 -8
  95. data/config/locales/tr-TR.yml +0 -1
  96. data/config/locales/uk.yml +0 -1
  97. data/db/migrate/20190708114204_create_decidim_consultations_response_groups.rb +16 -0
  98. data/db/migrate/20190708120345_add_response_groups_count_to_decidim_consultations_questions.rb +7 -0
  99. data/db/migrate/20190708121643_add_response_groups_to_decidim_consultations_responses.rb +10 -0
  100. data/db/migrate/20200320105916_index_foreign_keys_in_decidim_consultations_votes.rb +7 -0
  101. data/db/seeds/city.jpeg +0 -0
  102. data/db/seeds/city2.jpeg +0 -0
  103. data/lib/decidim/consultations/admin_engine.rb +1 -0
  104. data/lib/decidim/consultations/participatory_space.rb +6 -0
  105. data/lib/decidim/consultations/test/factories.rb +5 -0
  106. data/lib/decidim/consultations/version.rb +1 -1
  107. metadata +47 -11
@@ -32,9 +32,10 @@ fr:
32
32
  scope: Périmètre d'application
33
33
  slug: Identifiant
34
34
  subtitle: Sous-titre
35
- title: Titre
36
35
  vote: Système de vote externe
37
36
  what_is_decided: Objectifs
37
+ response:
38
+ decidim_consultations_response_group_id: Groupe
38
39
  errors:
39
40
  models:
40
41
  question:
@@ -67,10 +68,13 @@ fr:
67
68
  decidim:
68
69
  admin:
69
70
  actions:
71
+ back_to_responses: Retour aux résultats
70
72
  new_consultation: Nouvelle votation
71
73
  new_question: Nouvelle question
72
74
  new_response: Nouvelle réponse
75
+ new_response_group: Nouveau groupe
73
76
  publish_results: Publier les résultats
77
+ response_groups: Gérer les groupes de réponses
74
78
  unpublish_results: Dépublier des résultats
75
79
  consultation_publications:
76
80
  create:
@@ -140,6 +144,7 @@ fr:
140
144
  response:
141
145
  fields:
142
146
  created_at: Créée le
147
+ response_group: Groupe
143
148
  title: Titre
144
149
  name:
145
150
  one: Réponse
@@ -147,6 +152,7 @@ fr:
147
152
  question_configuration:
148
153
  disable_external_voting: Veuillez désactiver le vote externe pour les configurations avancées
149
154
  form:
155
+ help: Configurez plusieurs choix de questions en augmentant le nombre maximum de réponses qu'un participant peut sélectionner. La valeur maximale par défaut est 1, ce qui signifie qu'une seule réponse peut être sélectionnée.
150
156
  title: Configuration avancée
151
157
  question_publications:
152
158
  create:
@@ -174,6 +180,24 @@ fr:
174
180
  update:
175
181
  error: Une erreur s'est produite lors de la mise à jour de cette question.
176
182
  success: Question mise à jour avec succès.
183
+ response_groups:
184
+ create:
185
+ error: Une erreur s'est produite lors de la création d'un nouveau groupe de réponses.
186
+ success: Le groupe de réponses a été créé avec succès.
187
+ destroy:
188
+ error: Il y a eu un problème lors de la suppression du groupe de réponse. Vérifiez qu'aucune réponse ne dépend d'elle.
189
+ success: Le groupe de réponses a bien été supprimé.
190
+ edit:
191
+ update: Mettre à jour
192
+ form:
193
+ title: Informations générales
194
+ help: Utiliser des groupes pour organiser des questions à choix multiples dans des blocs.
195
+ new:
196
+ create: Créer
197
+ title: Nouveau groupe de réponse
198
+ update:
199
+ error: Il y a eu un problème lors de la mise à jour de cette réponse.
200
+ success: Réponse mise à jour avec succès.
177
201
  responses:
178
202
  create:
179
203
  error: Une erreur s'est produite lors de la création d'une nouvelle réponse.
@@ -194,6 +218,7 @@ fr:
194
218
  titles:
195
219
  consultations: Votations
196
220
  questions: Questions
221
+ response_groups: Groupes de réponses
197
222
  responses: Réponses
198
223
  results: Résultats
199
224
  consultations:
@@ -211,6 +236,8 @@ fr:
211
236
  label: 'Trier les votations par :'
212
237
  random: Aléatoire
213
238
  recent: Les plus récentes
239
+ show:
240
+ dates: Dates
214
241
  content_blocks:
215
242
  highlighted_consultations:
216
243
  name: Votations mises en avant
@@ -267,7 +294,7 @@ fr:
267
294
  vote_limit:
268
295
  description: Vous pouvez voter jusqu'à %{limit} options.
269
296
  left: Restant
270
- votes: Voix
297
+ votes: Votes
271
298
  question_votes:
272
299
  create:
273
300
  error: Il y a eu des erreurs lors du vote sur la question
@@ -321,10 +348,12 @@ fr:
321
348
  verification_required: Vérifier votre compte pour voter
322
349
  vote: Voter
323
350
  vote_modal:
351
+ close_modal: Fermer la fenêtre modale
324
352
  contextual_help: Veuillez sélectionner une option.
325
353
  title: 'Votation : soutien aux questions'
326
354
  vote_modal_confirm:
327
355
  change: Modifier
356
+ close_modal: Fermer la fenêtre modale
328
357
  confirm: Confirmer
329
358
  contextual_help: Veuillez confirmer l'option sélectionnée.
330
359
  title: 'Consultation : confirmer le soutien'
@@ -0,0 +1 @@
1
+ ga:
@@ -29,7 +29,6 @@ gl:
29
29
  scope: Área municipal
30
30
  slug: URL slug
31
31
  subtitle: Subtítulo
32
- title: Título
33
32
  vote: Sistema de votación externa
34
33
  what_is_decided: O que se decide
35
34
  errors:
@@ -0,0 +1 @@
1
+ hr:
@@ -32,9 +32,10 @@ hu:
32
32
  scope: Helyhatósági terület
33
33
  slug: URL slug
34
34
  subtitle: Felirat
35
- title: Cím
36
35
  vote: Külső szavazási rendszer
37
36
  what_is_decided: Mi a döntés
37
+ response:
38
+ decidim_consultations_response_group_id: Csoport
38
39
  errors:
39
40
  models:
40
41
  question:
@@ -54,7 +55,7 @@ hu:
54
55
  models:
55
56
  decidim/consultation:
56
57
  one: Konzultáció
57
- other: konzultációk
58
+ other: Konzultációk
58
59
  decidim/consultations/question:
59
60
  one: Kérdés
60
61
  other: Kérdések
@@ -67,10 +68,13 @@ hu:
67
68
  decidim:
68
69
  admin:
69
70
  actions:
71
+ back_to_responses: Vissza a válaszokhoz
70
72
  new_consultation: Új konzultáció
71
73
  new_question: Új kérdés
72
74
  new_response: Új válasz
75
+ new_response_group: Új csoport
73
76
  publish_results: Eredmények közzététele
77
+ response_groups: Válaszcsoportok kezelése
74
78
  unpublish_results: Eredmények visszavonása
75
79
  consultation_publications:
76
80
  create:
@@ -140,6 +144,7 @@ hu:
140
144
  response:
141
145
  fields:
142
146
  created_at: 'Létrehozva:'
147
+ response_group: Csoport
143
148
  title: Cím
144
149
  name:
145
150
  one: Válasz
@@ -147,7 +152,7 @@ hu:
147
152
  question_configuration:
148
153
  disable_external_voting: Kérjük, tiltsa le a külső szavazást speciális konfigurációkhoz
149
154
  form:
150
- help: Állítson be több választási kérdést azáltal, hogy növeli a résztvevő által választható válaszok maximális számát. Az alapértelmezett maximális érték 1, azaz csak egy választ lehet megszavazni.
155
+ help: Állítson be több lehetséges válasszal rendelkező kérdést azáltal, hogy növeli a résztvevő által választható válaszok maximális számát. Az alapértelmezett maximális érték 1, azaz csak egy választ lehet megszavazni.
151
156
  title: Haladó konfiguráció
152
157
  question_publications:
153
158
  create:
@@ -175,6 +180,24 @@ hu:
175
180
  update:
176
181
  error: Hiba történt a kérdés frissítése során.
177
182
  success: Kérdés frissítése sikeres.
183
+ response_groups:
184
+ create:
185
+ error: Hiba történt az új válaszcsoport létrehozása során.
186
+ success: A válaszcsoport sikeresen létrehozva.
187
+ destroy:
188
+ error: Probléma merült fel a válaszcsoport eltávolításánál. Ellenőrizze, hogy nincsenek függő válaszok.
189
+ success: A válaszcsoport sikeresen törölve.
190
+ edit:
191
+ update: Frissítés
192
+ form:
193
+ title: Általános információ
194
+ help: Használj csoportokat, hogy többválaszos kérdéseket csoportokba szervezz.
195
+ new:
196
+ create: Létrehoz
197
+ title: Új válaszcsoport
198
+ update:
199
+ error: Hiba történt a válasz frissítése során.
200
+ success: A válasz sikeresen frissült.
178
201
  responses:
179
202
  create:
180
203
  error: Hiba történt az új válasz létrehozása során.
@@ -195,6 +218,7 @@ hu:
195
218
  titles:
196
219
  consultations: Konzultációk
197
220
  questions: Kérdések
221
+ response_groups: Válaszcsoportok
198
222
  responses: Válaszok
199
223
  results: Eredmények
200
224
  consultations:
@@ -256,7 +280,7 @@ hu:
256
280
  question_multiple_votes:
257
281
  results_rules:
258
282
  minimum_votes_per_user:
259
- description: A résztvevők legalább %{votes} szavazatot oszthatnak el lehetőségek között.
283
+ description: A résztvevők legalább %{votes} szavazatot oszthatnak el a lehetőségek között.
260
284
  title: Ebben a kérdésben több választás lehetséges
261
285
  total_participants: Összesen %{count} ember vett részt a szavazásban.
262
286
  vote_limit:
@@ -274,7 +298,7 @@ hu:
274
298
  error: Hiba történt a kérdésre való szavazás során
275
299
  success: Megváltoztathatod a konzultáció végéig. Csak az utolsó szavazás kerül elfogadásra.
276
300
  title_error: Szavazati hiba!
277
- title_success: Sikeres szavazat regisztráció
301
+ title_success: Szavazat sikeresen regisztrálva
278
302
  regular_questions:
279
303
  title: Konzultációra vonatkozó kérdések
280
304
  show:
@@ -292,8 +316,8 @@ hu:
292
316
  help:
293
317
  participatory_spaces:
294
318
  consultations:
295
- contextual: "<p>A konzultációk egy olyan terület, amely lehetővé teszi, hogy világos kérdést tegyél fel mindazoknak, akik egy szervezetet alkotnak, felhívást tegyél közzé a konzultációban való részvételre, vitát generáljanak egy kérdésben. Amikor a konzultáció időpontja megérkezik, lehetőség van szavazni és közzétenni a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan területre vonatkozhatnak, amelyek egy szervezetet érintenek. Néhány példa: megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál, igennel vagy nemmel döntve arról, hogy a szervezet egy megállapodást írjon alá, nagyobb szervezet részévé váljon, egy új stratégiai stratégia érvényesítése vagy elutasítása kérdésében, vagy munkacsoport eredményét, vagy adott esetben meghatározni, hogy a pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>\n"
296
- page: "<p>konzultációk olyan teret jelentenek, amely lehetővé teszi, hogy egyértelmű kérdéseket tegyenek fel a szervezetet alkotó embereknek, hívjanak fel a konzultációban való részvételre, szikrázzanak és megrendeljék a vitát egy válasz ellen vagy ellen. Amikor a konzultáció időpontja megérkezik, szavazhat és közzéteszi a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte minden olyan aspektusra vonatkozhatnak, amely a szervezetet érinti: néhány példa megváltoztatja a több alternatívát kínáló szervezet nevét vagy logóját, úgy dönt, hogy igen vagy nem, hogy egy nagyobb szervezet részévé váljon, új stratégiai jóváhagyást vagy elutasítást kapjon vagy egy munkacsoport eredménye, vagy meghatározza, hogy a pozíciók maximálisan 1, 2 vagy 3 mandátumot kell-e maradniuk a szervezetben.</p>\n"
319
+ contextual: "<p><strong>A konzultációk</strong> egy olyan terület, amely lehetővé teszi, hogy világos kérdést tegyél fel mindazoknak, akik egy szervezetet alkotnak, felhívást tegyél közzé a konzultációban való részvételre, vitát generálj egy kérdésben. Amikor a konzultáció időpontja megérkezik, lehetőség van szavazni és közzétenni a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan területre vonatkozhatnak, amelyek egy szervezetet érintenek. Néhány példa: megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál. Igennel vagy nemmel dönteni arról, hogy a szervezet egy megállapodást aláírjon vagy sem, egy nagyobb szervezet részévé váljon, egy új stratégiai terv érvényesítése vagy elutasítása kérdésében állást foglaljon, vagy egy munkacsoport munkájának eredményét elfogadja, vagy adott esetben meghatározni, hogy az adott pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>\n"
320
+ page: "<p><strong>A konzultációk</strong> egy olyan terület, amely lehetővé teszi, hogy világos kérdést tegyél fel mindazoknak, akik egy szervezetet alkotnak, felhívást tegyél közzé a konzultációban való részvételre, vitát generálj egy kérdésben. Amikor a konzultáció időpontja megérkezik, lehetőség van szavazni és közzétenni a szavazatok eredményeit.</p> <p>Példák: A konzultációk szinte bármely olyan területre vonatkozhatnak, amelyek egy szervezetet érintenek. Néhány példa: megváltoztatja a szervezet nevét vagy logóját, amely számos alternatívát kínál. Igennel vagy nemmel dönteni arról, hogy a szervezet egy megállapodást aláírjon vagy sem, egy nagyobb szervezet részévé váljon, egy új stratégiai terv érvényesítése vagy elutasítása kérdésében állást foglaljon, vagy egy munkacsoport munkájának eredményét elfogadja, vagy adott esetben meghatározni, hogy az adott pozícióknak legfeljebb 1, 2 vagy 3 mandátumnak kell-e maradnia.</p>\n"
297
321
  title: Mi a konzultáció?
298
322
  menu:
299
323
  consultations: Konzultációk
@@ -29,7 +29,6 @@ id:
29
29
  scope: Daerah kota
30
30
  slug: Siput URL
31
31
  subtitle: Subtitle
32
- title: Judul
33
32
  vote: Sistem pemungutan suara eksternal
34
33
  what_is_decided: Apa yang diputuskan
35
34
  errors:
@@ -0,0 +1,185 @@
1
+ is-IS:
2
+ activemodel:
3
+ attributes:
4
+ consultation:
5
+ banner_image: Banner image
6
+ decidim_highlighted_scope_id: Hápunktur sviðsins
7
+ description: Lýsing
8
+ introductory_image: Inngangs mynd
9
+ introductory_video_url: Inngangur vídeó URL
10
+ slug: URL slug
11
+ subtitle: Texti
12
+ title: Titill
13
+ question:
14
+ banner_image: Banner image
15
+ decidim_scope_id: Borgarsvæði
16
+ hashtag: Kassamerki
17
+ hero_image: Heimsmynd
18
+ i_frame_url: Vefslóð fyrir utanaðkomandi atkvæðagreiðslur
19
+ origin_scope: Umfang
20
+ origin_title: Uppruni
21
+ origin_url: Uppruni vefslóð
22
+ participatory_scope: Þátttökuskilyrði
23
+ promoter_group: Framkvæmdarhópur
24
+ question_context: Samhengi
25
+ reference: Tilvísun
26
+ scope: Borgarsvæði
27
+ slug: URL slug
28
+ subtitle: Texti
29
+ vote: Ytri atkvæðakerfi
30
+ what_is_decided: Hvað er ákveðið
31
+ errors:
32
+ vote:
33
+ decidim_consultations_response_id:
34
+ not_found: Svar fannst ekki.
35
+ decidim:
36
+ admin:
37
+ actions:
38
+ publish_results: Birta niðurstöður
39
+ unpublish_results: Afritaðu niðurstöðurnar
40
+ consultations:
41
+ create:
42
+ success: Samráð hefur verið búið til.
43
+ edit:
44
+ update: Uppfæra
45
+ form:
46
+ slug_help: 'Vefslóðir eru notaðir til að búa til slóðir sem benda til þessa samráðs. Aðeins viðurkennir stafir, tölur og bindur og verður að byrja með stafi. Dæmi: %{url}'
47
+ title: Almennar upplýsingar
48
+ index:
49
+ not_published: Ekki birt
50
+ published: Published
51
+ new:
52
+ create: Búa til
53
+ title: Nýtt samráð
54
+ update:
55
+ success: Samráð uppfærður með góðum árangri.
56
+ menu:
57
+ consultations: Samráð
58
+ consultations_submenu:
59
+ info: Upplýsingar
60
+ questions: Spurningar
61
+ questions_submenu:
62
+ components: Hluti
63
+ consultation: Samráð
64
+ info: Upplýsingar
65
+ responses: Svör
66
+ models:
67
+ consultation:
68
+ fields:
69
+ created_at: Búið til á
70
+ published: Published
71
+ title: Titill
72
+ name:
73
+ one: Samráð
74
+ other: Samráð
75
+ question:
76
+ fields:
77
+ created_at: Búið til á
78
+ published: Published
79
+ title: Titill
80
+ name:
81
+ one: Spurning
82
+ other: Spurningar
83
+ response:
84
+ fields:
85
+ created_at: Búið til á
86
+ title: Titill
87
+ name:
88
+ one: Svar
89
+ other: Svör
90
+ questions:
91
+ create:
92
+ success: Spurning búin til.
93
+ edit:
94
+ update: Uppfæra
95
+ form:
96
+ title: Almennar upplýsingar
97
+ index:
98
+ not_published: Ekki birt
99
+ published: Published
100
+ new:
101
+ create: Búa til
102
+ title: Ný spurning
103
+ responses:
104
+ create:
105
+ success: Svar búin til.
106
+ edit:
107
+ update: Uppfæra
108
+ form:
109
+ title: Almennar upplýsingar
110
+ new:
111
+ create: Búa til
112
+ title: Nýtt svar
113
+ titles:
114
+ consultations: Samráð
115
+ questions: Spurningar
116
+ responses: Svör
117
+ consultations:
118
+ consultation:
119
+ view_results: Skoða niðurstöður
120
+ consultation_card:
121
+ view_results: Skoða niðurstöður
122
+ consultations:
123
+ orders:
124
+ label: 'Raða samráð með:'
125
+ random: Handahófi
126
+ recent: Síðast
127
+ count:
128
+ title:
129
+ one: "%{count} samráð"
130
+ other: "%{count} samráð"
131
+ filters:
132
+ active: Virkur
133
+ all: Allt
134
+ finished: Lokið
135
+ search: Leita
136
+ upcoming: Næstu
137
+ filters_small_view:
138
+ close_modal: Lokaðu glugga
139
+ filter: Sía
140
+ filter_by: Sía eftir
141
+ unfold: Fella út
142
+ index:
143
+ title: Samráð
144
+ pages:
145
+ home:
146
+ highlighted_consultations:
147
+ active_consultations: Virkt samráð
148
+ question:
149
+ take_part: Taka þátt
150
+ view_results: Skoða niðurstöður
151
+ votes_out_of:
152
+ one: kjósa út úr
153
+ other: atkvæði úr
154
+ menu:
155
+ consultations: Samráð
156
+ questions:
157
+ results:
158
+ title: Niðurstöður
159
+ show:
160
+ read_more: Lestu meira
161
+ statistics:
162
+ assistants_count_title: Aðstoðarmenn
163
+ comments_count_title: Athugasemdir
164
+ meetings_count_title: Fundir
165
+ technical_info:
166
+ technical_data: Tæknilegar upplýsingar
167
+ vote_button:
168
+ already_voted: Already kusu
169
+ starting_from: Byrjar frá %{date}
170
+ vote: Kjósa
171
+ vote_modal_confirm:
172
+ change: Breyta
173
+ confirm: Staðfesta
174
+ contextual_help: Vinsamlegast staðfestu valinn valkost.
175
+ layouts:
176
+ decidim:
177
+ admin:
178
+ question:
179
+ attachments: Viðhengi
180
+ categories: Flokkar
181
+ question_components:
182
+ question_menu_item: Spurningin
183
+ unfold: Fella út
184
+ question_header:
185
+ back_to_consultation: Sjá öll samráð
@@ -5,47 +5,60 @@ it:
5
5
  banner_image: Immagine banner
6
6
  decidim_highlighted_scope_id: Ambito evidenziato
7
7
  description: Descrizione
8
- end_voting_date: La votazione finisce
8
+ end_voting_date: La votazione termina il
9
9
  introductory_image: Immagine introduttiva
10
10
  introductory_video_url: URL video introduttivo
11
- questions: Domande
11
+ questions: Quesiti
12
12
  slug: Slug URL
13
- start_voting_date: Inizia la votazione
13
+ start_voting_date: La votazione inizia il
14
14
  subtitle: Sottotitolo
15
15
  title: Titolo
16
16
  question:
17
- banner_image: Immagine banner
18
- decidim_scope_id: Area comunale
17
+ banner_image: Immagine del banner
18
+ decidim_scope_id: Area territoriale
19
19
  hashtag: hashtag
20
20
  hero_image: Immagine della home page
21
21
  i_frame_url: URL del sistema di votazione esterno
22
+ instructions: Istruzioni aggiuntive per la votazione
22
23
  max_votes: Massimo numero di voti
23
24
  min_votes: Minimo numero di voti
24
- origin_scope: Scopo
25
+ origin_scope: Obiettivo
25
26
  origin_title: Origine
26
27
  origin_url: URL di origine
27
- participatory_scope: Scopo partecipativo
28
+ participatory_scope: Obiettivo partecipativo
28
29
  promoter_group: Promotore
29
30
  question_context: Contesto
30
31
  reference: Riferimento
31
- scope: Area comunale
32
+ scope: Area territoriale
32
33
  slug: Slug URL
33
34
  subtitle: Sottotitolo
34
- title: Titolo
35
35
  vote: Sistema di voto esterno
36
- what_is_decided: Cosa è deciso
36
+ what_is_decided: Che cosa si decide
37
+ response:
38
+ decidim_consultations_response_group_id: Gruppo
37
39
  errors:
40
+ models:
41
+ question:
42
+ attributes:
43
+ max_votes:
44
+ lower_than_min: Il numero massimo di voti deve essere maggiore o uguale al minimo.
38
45
  vote:
39
46
  decidim_consultations_response_id:
40
47
  not_found: Risposta non trovata
41
48
  activerecord:
49
+ errors:
50
+ models:
51
+ decidim/consultations/vote:
52
+ attributes:
53
+ question:
54
+ invalid_num_votes: Numero di voti non valido
42
55
  models:
43
56
  decidim/consultation:
44
57
  one: Consultazione
45
58
  other: consultazioni
46
59
  decidim/consultations/question:
47
- one: Domanda
48
- other: Domande
60
+ one: Quesito
61
+ other: Quesiti
49
62
  decidim/consultations/response:
50
63
  one: Risposta
51
64
  other: risposte
@@ -55,10 +68,13 @@ it:
55
68
  decidim:
56
69
  admin:
57
70
  actions:
71
+ back_to_responses: Torna alle risposte
58
72
  new_consultation: Nuova consultazione
59
- new_question: Nuova domanda
73
+ new_question: Nuovo quesito
60
74
  new_response: Nuova risposta
75
+ new_response_group: Nuovo gruppo
61
76
  publish_results: Pubblica risultati
77
+ response_groups: Gestione gruppi di risposte
62
78
  unpublish_results: Annulla pubblicazione dei risultati
63
79
  consultation_publications:
64
80
  create:
@@ -91,6 +107,7 @@ it:
91
107
  title: Nuova consultazione
92
108
  results:
93
109
  not_visible: I risultati saranno disponibili alla chiusura delle consultazioni
110
+ participants: "%{count} partecipanti"
94
111
  total_votes: 'Totale: %{count} voti'
95
112
  update:
96
113
  error: Si è verificato un errore durante l'aggiornamento di questa consultazione.
@@ -99,13 +116,14 @@ it:
99
116
  consultations: consultazioni
100
117
  consultations_submenu:
101
118
  info: Informazione
102
- questions: Domande
119
+ questions: Quesiti
103
120
  results: Risultati
104
121
  questions_submenu:
105
- components: componenti
122
+ components: Elementi
123
+ configuration: Configurazione
106
124
  consultation: Consultazione
107
- info: Informazione
108
- responses: risposte
125
+ info: Informazioni
126
+ responses: Risposte
109
127
  models:
110
128
  consultation:
111
129
  fields:
@@ -117,45 +135,69 @@ it:
117
135
  other: consultazioni
118
136
  question:
119
137
  fields:
120
- created_at: Creato a
138
+ created_at: Creato il
121
139
  published: Pubblicato
122
140
  title: Titolo
123
141
  name:
124
- one: Domanda
125
- other: Domande
142
+ one: Quesito
143
+ other: Quesiti
126
144
  response:
127
145
  fields:
128
146
  created_at: Creato a
147
+ response_group: Gruppo
129
148
  title: Titolo
130
149
  name:
131
150
  one: Risposta
132
151
  other: risposte
152
+ question_configuration:
153
+ disable_external_voting: Si prega di disabilitare il voto esterno per configurazioni avanzate
154
+ form:
155
+ help: Imposta i quesiti a risposta multipla aumentando il numero massimo di risposte che un partecipante può scegliere. Valore massimo predefinito è 1, il che significa che può essere votata solo una risposta.
156
+ title: Configurazione avanzata
133
157
  question_publications:
134
158
  create:
135
- error: Si è verificato un errore durante la pubblicazione di questa domanda.
136
- success: Domanda pubblicata con successo.
159
+ error: Si è verificato un errore durante la pubblicazione del quesito.
160
+ success: Quesito pubblicato con successo.
137
161
  destroy:
138
- error: Si è verificato un errore durante la pubblicazione di questa domanda.
139
- success: Domanda non pubblicata con successo.
162
+ error: Si è verificato un errore durante la pubblicazione del quesito.
163
+ success: Quesito ritirato con successo.
140
164
  questions:
141
165
  create:
142
- error: Si è verificato un errore durante la creazione di una nuova domanda.
143
- success: Domanda creata con successo.
166
+ error: Si è verificato un errore durante la creazione di un nuovo quesito.
167
+ success: Quesito creato con successo.
144
168
  destroy:
145
- success: Domanda eliminata con successo.
169
+ success: Quesito eliminato con successo.
146
170
  edit:
147
171
  update: Aggiornare
148
172
  form:
149
- title: Informazione generale
173
+ title: Informazioni Generali
150
174
  index:
151
175
  not_published: Non pubblicato
152
176
  published: Pubblicato
153
177
  new:
154
- create: Creare
155
- title: Nuova domanda
178
+ create: Crea
179
+ title: Nuovo quesito
180
+ update:
181
+ error: Si è verificato un errore durante l'aggiornamento del quesito.
182
+ success: Quesito aggiornato correttamente.
183
+ response_groups:
184
+ create:
185
+ error: Si è verificato un problema durante la creazione di un nuovo gruppo di risposta.
186
+ success: Gruppo di risposta creato con successo.
187
+ destroy:
188
+ error: Si è verificato un problema durante la rimozione del gruppo di risposta. Controlla che nessuna risposta dipenda da esso.
189
+ success: Gruppo di varianti rimosso con successo.
190
+ edit:
191
+ update: Aggiorna
192
+ form:
193
+ title: Informazioni Generali
194
+ help: Utilizza i gruppi per organizzare quesiti a scelta multipla in pacchetti.
195
+ new:
196
+ create: Crea
197
+ title: Nuovo gruppo di risposta
156
198
  update:
157
- error: Si è verificato un errore durante l'aggiornamento di questa domanda.
158
- success: Domanda aggiornata correttamente.
199
+ error: C'è stato un problema durante l'aggiornamento di questa risposta.
200
+ success: Risposta aggiornata correttamente.
159
201
  responses:
160
202
  create:
161
203
  error: Si è verificato un errore durante la creazione di una nuova risposta.
@@ -166,7 +208,7 @@ it:
166
208
  edit:
167
209
  update: Aggiornare
168
210
  form:
169
- title: Informazione generale
211
+ title: Informazioni Generali
170
212
  new:
171
213
  create: Creare
172
214
  title: Nuova risposta
@@ -175,7 +217,8 @@ it:
175
217
  success: Risposta aggiornata correttamente.
176
218
  titles:
177
219
  consultations: consultazioni
178
- questions: Domande
220
+ questions: Quesiti
221
+ response_groups: Gruppi di risposta
179
222
  responses: risposte
180
223
  results: Risultati
181
224
  consultations:
@@ -193,6 +236,8 @@ it:
193
236
  label: 'Ordina le consultazioni per:'
194
237
  random: Casuale
195
238
  recent: Piu recente
239
+ show:
240
+ dates: Date
196
241
  content_blocks:
197
242
  highlighted_consultations:
198
243
  name: Consultazioni evidenziate
@@ -213,12 +258,12 @@ it:
213
258
  filter_by: Filtra per
214
259
  unfold: spiegare
215
260
  highlighted_questions:
216
- title: Domande da %{scope_name}
261
+ title: Quesiti da %{scope_name}
217
262
  index:
218
263
  title: consultazioni
219
264
  last_activity:
220
265
  new_consultation: Nuova consultazione
221
- new_question_at_html: "<span>Nuova domanda al %{link}</span>"
266
+ new_question_at_html: "<span>Nuovo quesito al %{link}</span>"
222
267
  pages:
223
268
  home:
224
269
  highlighted_consultations:
@@ -229,19 +274,35 @@ it:
229
274
  other: La votazione termina tra <strong>%{count} giorni</strong>
230
275
  voting_ends_today: La votazione termina <strong>oggi</strong>
231
276
  question:
232
- take_part: Prendere parte
233
- view_results: Vedi i risultati
277
+ take_part: Vota
278
+ view_results: Visualizza i risultati
234
279
  votes_out_of:
235
- one: votare fuori
236
- other: voti fuori
280
+ one: voto su
281
+ other: voti su
282
+ question_multiple_votes:
283
+ results_rules:
284
+ minimum_votes_per_user:
285
+ description: I partecipanti potrebbero distribuire un minimo di %{votes} voti tra diverse opzioni.
286
+ title: Al quesito sono consentite risposte multiple
287
+ total_participants: Un totale di %{count} persone hanno partecipato alla votazione.
288
+ vote_limit:
289
+ description: I partecipanti possono votare fino a %{limit} opzioni.
290
+ voting_rules:
291
+ minimum_votes_per_user:
292
+ description: Devi distribuire un minimo di %{votes} voti tra diverse proposte.
293
+ title: 'Il voto è soggetto alle seguenti regole:'
294
+ vote_limit:
295
+ description: Puoi votare fino a %{limit} proposte.
296
+ left: Restano
297
+ votes: Voti
237
298
  question_votes:
238
299
  create:
239
- error: Ci sono stati errori nel votare la domanda
300
+ error: Ci sono stati errori nel votare il quesito
240
301
  success: La modifica può essere effettuata fino al termine della consultazione. Solo l'ultimo voto sarà accettato.
241
302
  title_error: Errore di voto!
242
303
  title_success: Voto registrato con successo
243
304
  regular_questions:
244
- title: Domande per questa consultazione
305
+ title: Quesiti per questa consultazione
245
306
  show:
246
307
  badge_name:
247
308
  finished: Finito
@@ -257,8 +318,8 @@ it:
257
318
  help:
258
319
  participatory_spaces:
259
320
  consultations:
260
- contextual: "<p>consultazioni sono uno spazio che ti consente di porre una domanda chiara a tutte le persone che formano un'organizzazione, fare una chiamata per partecipare alla consultazione, accendere e ordinare il dibattito a favore o contro una risposta. Quando arriva la data della consultazione, puoi votare e pubblicare i risultati dei voti.</p> <p>Esempi: le consultazioni possono riguardare quasi tutti gli aspetti che riguardano un'organizzazione: alcuni esempi stanno cambiando il nome o il logo dell'organizzazione che offre diverse alternative, decidendo Sì o No per diventare parte di un'organizzazione più grande, convalidare o rifiutare una nuova strategia piano o il risultato di un gruppo di lavoro, o definire se le posizioni devono rimanere al massimo di 1, 2 o 3 mandati.</p>\n"
261
- page: "<p>consultazioni sono uno spazio che ti permette di porre una domanda chiara a tutte le persone che formano un'organizzazione, fare una chiamata a partecipare alla consultazione, accendere e ordinare il dibattito a favore o contro una risposta. Quando arriva la data della consultazione, puoi votare e pubblicare i risultati dei voti.</p> <p>Esempi: le consultazioni possono riguardare quasi tutti gli aspetti che riguardano un'organizzazione: alcuni esempi stanno cambiando il nome o il logo dell'organizzazione che offre diverse alternative, decidendo Sì o No per diventare parte di un'organizzazione più grande, convalidare o rifiutare una nuova strategia piano o il risultato di un gruppo di lavoro, o definire se le posizioni dovrebbero rimanere al massimo di 1, 2 o 3 mandati nell'organizzazione.</p>\n"
321
+ contextual: "<p>Le <strong>Consultazioni</strong> sono uno spazio che ti consente di porre una domanda chiara, a tutte le persone che partecipano ad una organizzazione, ordinando il dibattito a favore o contro i vari quesiti. Alla data della consultazione, puoi votare e pubblicare i risultati dei voti.</p> <p>Esempi: le consultazioni possono affrontare quasi tutte le decisioni che riguardano un'organizzazione: per esempio per cambiare il nome o il logo dell'organizzazione che offre diverse alternative, per decidere Sì o No a fondersi in un'organizzazione più grande, per convalidare o rifiutare un nuovo piano strategico o per definire se le cariche elettive si possono rinnovare al massimo per 1, 2 o 3 mandati.</p>\n"
322
+ page: "<p>Le <strong>Consultazioni</strong> sono uno spazio che ti consente di porre una domanda chiara, a tutte le persone che partecipano ad una organizzazione, ordinando il dibattito a favore o contro i vari quesiti. Alla data della consultazione, puoi votare e pubblicare i risultati dei voti.</p> <p>Esempi: le consultazioni possono affrontare quasi tutte le decisioni che riguardano un'organizzazione: per esempio per cambiare il nome o il logo dell'organizzazione che offre diverse alternative, per decidere Sì o No a fondersi in un'organizzazione più grande, per convalidare o rifiutare un nuovo piano strategico o per definire se le cariche elettive si possono rinnovare al massimo per 1, 2 o 3 mandati.</p>\n"
262
323
  title: Quali sono le consultazioni?
263
324
  menu:
264
325
  consultations: consultazioni
@@ -267,17 +328,17 @@ it:
267
328
  statistics:
268
329
  consultations_count: consultazioni
269
330
  questions:
270
- next_button: Domanda successiva
271
- previous_button: Domanda precedente
331
+ next_button: Quesito successivo
332
+ previous_button: Quesito precedente
272
333
  results:
273
334
  title: risultati
274
335
  show:
275
336
  read_more: Leggi di più
276
337
  statistics:
277
- assistants_count_title: assistenti
338
+ assistants_count_title: Assistenti
278
339
  comments_count_title: Commenti
279
340
  meetings_count_title: Incontri
280
- supports_count_title: supporti
341
+ supports_count_title: Voti
281
342
  technical_info:
282
343
  technical_data: Dati tecnici
283
344
  vote_button:
@@ -287,10 +348,12 @@ it:
287
348
  verification_required: Verifica il tuo account per votare
288
349
  vote: Votazione
289
350
  vote_modal:
351
+ close_modal: Chiudi modalità
290
352
  contextual_help: Per favore selezionate un'opzione.
291
- title: 'Consultazione: domanda di supporto'
353
+ title: 'Consultazione: voto del quesito'
292
354
  vote_modal_confirm:
293
355
  change: Modificare
356
+ close_modal: Chiudi modalità
294
357
  confirm: Confermare
295
358
  contextual_help: Si prega di confermare l'opzione selezionata.
296
359
  title: 'Consultazione: conferma il supporto'
@@ -303,11 +366,12 @@ it:
303
366
  admin:
304
367
  question:
305
368
  attachments: allegati
306
- categories: categorie
369
+ categories: Categorie
307
370
  consultation_voting_data:
308
371
  start_voting_date: Inizia la votazione
309
372
  question_components:
310
- question_menu_item: La domanda
373
+ question_menu_item: Il quesito
311
374
  unfold: spiegare
312
375
  question_header:
313
376
  back_to_consultation: Vedi tutte le consultazioni
377
+ back_to_question: Torna al quesito