decidim-elections 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_elections_manifest.js +2 -0
  3. data/app/assets/javascripts/decidim/elections/vote.js.es6 +170 -0
  4. data/app/assets/stylesheets/decidim/elections/elections.scss +10 -0
  5. data/app/assets/stylesheets/decidim/elections/focus/_evote.scss +279 -0
  6. data/app/assets/stylesheets/decidim/elections/focus/_focus.scss +128 -0
  7. data/app/cells/decidim/elections/election_cell.rb +22 -0
  8. data/app/cells/decidim/elections/election_m/data.erb +19 -0
  9. data/app/cells/decidim/elections/election_m/footer.erb +5 -0
  10. data/app/cells/decidim/elections/election_m_cell.rb +103 -0
  11. data/app/cells/decidim/elections/voting_step_navigation/show.erb +29 -0
  12. data/app/cells/decidim/elections/voting_step_navigation_cell.rb +42 -0
  13. data/app/commands/decidim/elections/admin/create_election.rb +14 -3
  14. data/app/commands/decidim/elections/admin/create_question.rb +2 -1
  15. data/app/commands/decidim/elections/admin/destroy_election.rb +4 -0
  16. data/app/commands/decidim/elections/admin/import_proposals_to_elections.rb +87 -0
  17. data/app/commands/decidim/elections/admin/publish_election.rb +54 -0
  18. data/app/commands/decidim/elections/admin/unpublish_election.rb +43 -0
  19. data/app/commands/decidim/elections/admin/update_election.rb +15 -3
  20. data/app/commands/decidim/elections/admin/update_question.rb +2 -1
  21. data/app/controllers/concerns/decidim/elections/orderable.rb +36 -0
  22. data/app/controllers/decidim/elections/admin/answers_controller.rb +9 -1
  23. data/app/controllers/decidim/elections/admin/elections_controller.rb +26 -0
  24. data/app/controllers/decidim/elections/admin/proposals_imports_controller.rb +53 -0
  25. data/app/controllers/decidim/elections/elections_controller.rb +68 -0
  26. data/app/controllers/decidim/elections/votes_controller.rb +50 -0
  27. data/app/events/decidim/elections/election_published_event.rb +8 -0
  28. data/app/forms/decidim/elections/admin/answer_import_proposals_form.rb +41 -0
  29. data/app/forms/decidim/elections/admin/election_form.rb +15 -2
  30. data/app/forms/decidim/elections/admin/question_form.rb +1 -0
  31. data/app/helpers/decidim/elections/application_helper.rb +12 -0
  32. data/app/helpers/decidim/elections/election_cells_helper.rb +12 -0
  33. data/app/helpers/decidim/elections/votes_helper.rb +21 -0
  34. data/app/models/decidim/elections/answer.rb +5 -1
  35. data/app/models/decidim/elections/election.rb +69 -0
  36. data/app/models/decidim/elections/question.rb +9 -2
  37. data/app/permissions/decidim/elections/admin/permissions.rb +13 -3
  38. data/app/permissions/decidim/elections/permissions.rb +35 -0
  39. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +41 -0
  40. data/app/presenters/decidim/elections/election_presenter.rb +28 -0
  41. data/app/queries/decidim/elections/filtered_elections.rb +37 -0
  42. data/app/services/decidim/elections/election_search.rb +35 -0
  43. data/app/types/decidim/elections/election_question_type.rb +2 -2
  44. data/app/types/decidim/elections/election_type.rb +2 -1
  45. data/app/types/decidim/elections/elections_type.rb +1 -1
  46. data/app/views/decidim/elections/admin/answers/index.html.erb +2 -1
  47. data/app/views/decidim/elections/admin/elections/_form.html.erb +2 -4
  48. data/app/views/decidim/elections/admin/elections/index.html.erb +23 -1
  49. data/app/views/decidim/elections/admin/proposals_imports/new.html.erb +24 -0
  50. data/app/views/decidim/elections/admin/questions/_form.html.erb +4 -0
  51. data/app/views/decidim/elections/admin/questions/index.html.erb +3 -1
  52. data/app/views/decidim/elections/elections/_count.html.erb +1 -0
  53. data/app/views/decidim/elections/elections/_election.html.erb +1 -0
  54. data/app/views/decidim/elections/elections/_elections.html.erb +24 -0
  55. data/app/views/decidim/elections/elections/_filters.html.erb +24 -0
  56. data/app/views/decidim/elections/elections/_filters_small_view.html.erb +18 -0
  57. data/app/views/decidim/elections/elections/index.html.erb +24 -0
  58. data/app/views/decidim/elections/elections/index.js.erb +10 -0
  59. data/app/views/decidim/elections/elections/show.html.erb +64 -0
  60. data/app/views/decidim/elections/votes/_election_votes_confirm.html.erb +53 -0
  61. data/app/views/decidim/elections/votes/_election_votes_confirm_footer.html.erb +24 -0
  62. data/app/views/decidim/elections/votes/_election_votes_confirmed.html.erb +26 -0
  63. data/app/views/decidim/elections/votes/_election_votes_encrypting.html.erb +20 -0
  64. data/app/views/decidim/elections/votes/_election_votes_header.html.erb +8 -0
  65. data/app/views/decidim/elections/votes/_election_votes_modal.html.erb +46 -0
  66. data/app/views/decidim/elections/votes/_election_votes_question.html.erb +49 -0
  67. data/app/views/decidim/elections/votes/_election_votes_steps_header.html.erb +12 -0
  68. data/app/views/decidim/elections/votes/new.html.erb +44 -0
  69. data/app/views/layouts/decidim/_election_votes_header.html.erb +13 -0
  70. data/app/views/layouts/decidim/election_votes.html.erb +24 -0
  71. data/config/locales/am-ET.yml +1 -0
  72. data/config/locales/bg.yml +7 -0
  73. data/config/locales/ca.yml +136 -6
  74. data/config/locales/cs.yml +133 -1
  75. data/config/locales/da.yml +1 -0
  76. data/config/locales/de.yml +134 -4
  77. data/config/locales/el.yml +11 -1
  78. data/config/locales/en.yml +131 -1
  79. data/config/locales/eo.yml +1 -0
  80. data/config/locales/es-MX.yml +131 -1
  81. data/config/locales/es-PY.yml +131 -1
  82. data/config/locales/es.yml +134 -4
  83. data/config/locales/et.yml +1 -0
  84. data/config/locales/fi-plain.yml +131 -1
  85. data/config/locales/fi.yml +131 -1
  86. data/config/locales/fr-CA.yml +131 -1
  87. data/config/locales/fr.yml +131 -1
  88. data/config/locales/gl.yml +111 -0
  89. data/config/locales/hr.yml +1 -0
  90. data/config/locales/hu.yml +18 -0
  91. data/config/locales/is.yml +1 -0
  92. data/config/locales/it.yml +98 -1
  93. data/config/locales/ja-JP.yml +95 -8
  94. data/config/locales/ja.yml +254 -0
  95. data/config/locales/ko-KR.yml +1 -0
  96. data/config/locales/ko.yml +1 -0
  97. data/config/locales/lt.yml +1 -0
  98. data/config/locales/{lv-LV.yml → lv.yml} +11 -1
  99. data/config/locales/mt.yml +1 -0
  100. data/config/locales/nl.yml +92 -1
  101. data/config/locales/no.yml +63 -0
  102. data/config/locales/om-ET.yml +1 -0
  103. data/config/locales/pl.yml +126 -1
  104. data/config/locales/pt.yml +84 -1
  105. data/config/locales/ro-RO.yml +85 -1
  106. data/config/locales/si-LK.yml +1 -0
  107. data/config/locales/so-SO.yml +1 -0
  108. data/config/locales/sv.yml +122 -2
  109. data/config/locales/sw-KE.yml +1 -0
  110. data/config/locales/ti-ER.yml +1 -0
  111. data/config/locales/tr-TR.yml +261 -0
  112. data/config/locales/vi-VN.yml +1 -0
  113. data/config/locales/vi.yml +1 -0
  114. data/config/locales/zh-CN.yml +254 -0
  115. data/config/locales/zh-TW.yml +1 -0
  116. data/db/migrate/20200601141412_add_published_at_to_elections.rb +7 -0
  117. data/db/migrate/20200807125040_remove_subtitle_from_decidim_elections.rb +7 -0
  118. data/db/migrate/20200910103648_add_min_selections_to_decidim_elections_questions.rb +7 -0
  119. data/lib/decidim/elections.rb +5 -0
  120. data/lib/decidim/elections/admin_engine.rb +7 -0
  121. data/lib/decidim/elections/bulletin_board_client.rb +35 -0
  122. data/lib/decidim/elections/component.rb +17 -12
  123. data/lib/decidim/elections/engine.rb +8 -1
  124. data/lib/decidim/elections/test/factories.rb +59 -6
  125. data/lib/decidim/elections/version.rb +1 -1
  126. data/lib/tasks/decidim_elections.rake +16 -0
  127. metadata +84 -16
@@ -10,7 +10,6 @@ ro:
10
10
  description: Descriere
11
11
  end_time: Votarea se încheie la
12
12
  start_time: Votarea începe la
13
- subtitle: Subtitrare
14
13
  title: Titlu
15
14
  question:
16
15
  description: Descriere
@@ -39,6 +38,8 @@ ro:
39
38
  decidim:
40
39
  components:
41
40
  elections:
41
+ actions:
42
+ vote: Votează
42
43
  name: Alegeri
43
44
  settings:
44
45
  global:
@@ -50,9 +51,14 @@ ro:
50
51
  confirm_destroy: Ești sigur?
51
52
  destroy: Distruge
52
53
  edit: Editare
54
+ edit_answers: Editare răspunsuri
55
+ edit_questions: Editare întrebări
56
+ import: Importă propunerile pentru răspunsuri
53
57
  new: '%{name} nou'
54
58
  preview: Previzualizare
59
+ publish: Publică
55
60
  title: Acțiuni
61
+ unpublish: De-publicare
56
62
  admin:
57
63
  answers:
58
64
  create:
@@ -87,6 +93,10 @@ ro:
87
93
  new:
88
94
  create: Creați alegeri
89
95
  title: Alegeri noi
96
+ publish:
97
+ success: Alegerile au fost publicate cu succes.
98
+ unpublish:
99
+ success: Alegerile au fost anulate cu succes.
90
100
  update:
91
101
  invalid: A apărut o eroare la actualizarea acestei alegeri
92
102
  success: Alegerile au fost actualizate
@@ -97,6 +107,14 @@ ro:
97
107
  name: Alegeri
98
108
  question:
99
109
  name: Întrebare
110
+ proposals_imports:
111
+ create:
112
+ invalid: A apărut o problemă la importarea propunerilor în răspunsuri
113
+ success: "%{number} propuneri importate cu succes în răspunsuri"
114
+ new:
115
+ create: Importă propunerile pentru răspunsuri
116
+ no_components: Nu există alte componente de propunere în acest spațiu participativ pentru a se obține răspunsuri la propuneri.
117
+ select_component: Vă rugăm să selectaţi o componentă
100
118
  questions:
101
119
  create:
102
120
  invalid: A apărut o problemă la crearea acestei întrebări
@@ -115,6 +133,24 @@ ro:
115
133
  update:
116
134
  invalid: A apărut o eroare la actualizarea acestei întrebări
117
135
  success: Întrebare actualizată cu succes
136
+ admin_log:
137
+ election:
138
+ publish: "%{user_name} a publicat alegerile pentru %{resource_name}"
139
+ unpublish: "%{user_name} nepublicat alegerea %{resource_name}"
140
+ elections:
141
+ count:
142
+ elections_count:
143
+ one: "%{count} alegeri"
144
+ few: "%{count} alegeri"
145
+ other: "%{count} alegeri"
146
+ show:
147
+ back: Toate alegerile
148
+ preview: Previzualizare
149
+ vote: Votează
150
+ voting_period_status:
151
+ finished: Votarea a început la %{start_time} și s-a încheiat la %{end_time}
152
+ ongoing: Votarea se termină la %{end_time}
153
+ upcoming: Votarea începe la %{start_time}
118
154
  models:
119
155
  answer:
120
156
  fields:
@@ -130,6 +166,54 @@ ro:
130
166
  answers: Răspunsuri
131
167
  max_selections: Selecții maxime
132
168
  title: Titlu
169
+ votes:
170
+ confirm:
171
+ answer: Răspuns
172
+ answer_number: răspunde la %{number}
173
+ confirm: Confirmare
174
+ edit: editează
175
+ header: Confirmă votul tău
176
+ intro: Iată un rezumat al votului pe care urmează să îl exprimați. <br> Vă rugăm să confirmați votul sau să editați răspunsurile.
177
+ question: Întrebarea %{count}
178
+ confirmed:
179
+ back: Înapoi la alegeri
180
+ experience: Cum a fost experiența ta?
181
+ feedback: Oferă-ne un feedback
182
+ header: Votare confirmată
183
+ lead: Votul tău a fost deja exprimat!
184
+ text: 'Poți verifica dacă votul tău a fost adăugat cu succes în urna de vot cu următorul identificator: <strong class="evote__poll-id">%{e_vote_poll_id}</strong>'
185
+ verify_text: Pentru a verifica, copiați identificatorul și lipiți-l pe pagina <a href="evote-verify">pentru verificarea votului</a>
186
+ encrypting:
187
+ header: Codificarea votului...
188
+ text: Votul tău este criptat pentru a te asigura că îl poți trimite anonim.
189
+ header:
190
+ confirm: Confirmă votul tău
191
+ confirmed: Votare confirmată
192
+ encrypting: Confirmarea votului
193
+ messages:
194
+ not_allowed: Nu aveţi voie să votaţi asupra acestor alegeri în acest moment.
195
+ modal:
196
+ close: Inchide
197
+ proposal_header: 'Propuneri:'
198
+ new:
199
+ more_information: Mai multe informații
200
+ preview_alert: Aceasta este o previzualizare a cabinei de votare.
201
+ question_steps: Întrebarea %{current_step} din %{total_steps}
202
+ selections: "%{selected} din %{max_selections}<br> selecții"
203
+ voting_step:
204
+ back: Înapoi
205
+ continue: Următoarea
206
+ events:
207
+ elections:
208
+ election_published:
209
+ email_intro: 'Alegerea %{resource_title} este acum activă pentru %{participatory_space_title}. O poți vedea de pe această pagină:'
210
+ email_outro: Ați primit această notificare deoarece urmăriți %{participatory_space_title}. Puteți înceta să primiți notificări urmând linkul anterior.
211
+ email_subject: Alegerea %{resource_title} este acum activă pentru %{participatory_space_title}.
212
+ notification_title: Alegerile <a href="%{resource_path}">%{resource_title}</a> sunt acum active pentru %{participatory_space_title}.
133
213
  participatory_processes:
134
214
  statistics:
135
215
  elections_count: Alegeri
216
+ layouts:
217
+ decidim:
218
+ election_votes_header:
219
+ exit: Ieșire
@@ -0,0 +1 @@
1
+ si:
@@ -0,0 +1 @@
1
+ so:
@@ -10,7 +10,6 @@ sv:
10
10
  description: Beskrivning
11
11
  end_time: Omröstningen slutar vid
12
12
  start_time: Röstningsstart vid
13
- subtitle: Undertext
14
13
  title: Titel
15
14
  question:
16
15
  description: Beskrivning
@@ -22,6 +21,10 @@ sv:
22
21
  attributes:
23
22
  attachment:
24
23
  needs_to_be_reattached: Måste återknytas
24
+ election:
25
+ attributes:
26
+ attachment:
27
+ needs_to_be_reattached: Måste bifogas igen
25
28
  activerecord:
26
29
  models:
27
30
  decidim/elections/answer:
@@ -36,6 +39,8 @@ sv:
36
39
  decidim:
37
40
  components:
38
41
  elections:
42
+ actions:
43
+ vote: Rösta
39
44
  name: Val
40
45
  settings:
41
46
  global:
@@ -47,9 +52,14 @@ sv:
47
52
  confirm_destroy: Är du säker?
48
53
  destroy: Förstör
49
54
  edit: Redigera
55
+ edit_answers: Redigera svar
56
+ edit_questions: Redigera frågor
57
+ import: Importera förslag till svar
50
58
  new: Ny %{name}
51
59
  preview: Förhandsgranska
60
+ publish: Publicera
52
61
  title: Åtgärder
62
+ unpublish: Avpublicera
53
63
  admin:
54
64
  answers:
55
65
  create:
@@ -84,6 +94,10 @@ sv:
84
94
  new:
85
95
  create: Skapa val
86
96
  title: Nytt val
97
+ publish:
98
+ success: Valet har publicerats framgångsrikt.
99
+ unpublish:
100
+ success: Valet har avpublicerats framgångsrikt.
87
101
  update:
88
102
  invalid: Det gick inte att uppdatera valet
89
103
  success: Val har uppdaterats
@@ -94,6 +108,14 @@ sv:
94
108
  name: Val
95
109
  question:
96
110
  name: Fråga
111
+ proposals_imports:
112
+ create:
113
+ invalid: Det gick inte att importera förslagen till svar
114
+ success: "%{number} förslag importerades till svar"
115
+ new:
116
+ create: Importera förslag till svar
117
+ no_components: Det finns inga andra förslagskomponenter i det här deltagarutrymmet för att importera förslagen till svar.
118
+ select_component: Välj en komponent
97
119
  questions:
98
120
  create:
99
121
  invalid: Det gick inte att skapa denna fråga
@@ -112,6 +134,49 @@ sv:
112
134
  update:
113
135
  invalid: Det gick inte att uppdatera denna fråga
114
136
  success: Frågan har uppdaterats
137
+ admin_log:
138
+ election:
139
+ publish: "%{user_name} publicerade valet %{resource_name}"
140
+ unpublish: "%{user_name} avpublicerade valet %{resource_name}"
141
+ election_m:
142
+ badge_name:
143
+ finished: Avslutad
144
+ ongoing: Aktiv
145
+ upcoming: Kommande
146
+ end_date: Slutar
147
+ footer:
148
+ view: Visa
149
+ vote: Omröstning
150
+ label:
151
+ date: Datum
152
+ questions: Frågor %{count}
153
+ start_date: Startar
154
+ unspecified: Ej angivet
155
+ elections:
156
+ count:
157
+ elections_count:
158
+ one: "%{count} val"
159
+ other: "%{count} val"
160
+ filters:
161
+ active: Aktiv
162
+ all: Allt
163
+ finished: Avslutad
164
+ search: Sök
165
+ state: Status
166
+ upcoming: Kommande
167
+ filters_small_view:
168
+ close_modal: Stäng fönster
169
+ filter: Filter
170
+ filter_by: Filtrera efter
171
+ unfold: Veckla ut
172
+ show:
173
+ back: Alla val
174
+ preview: Förhandsgranska
175
+ vote: Rösta
176
+ voting_period_status:
177
+ finished: Omröstningen började den %{start_time} och slutade den %{end_time}
178
+ ongoing: Omröstningen slutar den %{end_time}
179
+ upcoming: Omröstningen börjar den %{start_time}
115
180
  models:
116
181
  answer:
117
182
  fields:
@@ -127,6 +192,61 @@ sv:
127
192
  answers: Svar
128
193
  max_selections: Max. val
129
194
  title: Titel
195
+ orders:
196
+ label: Sortera omröstningar efter
197
+ older: Äldre
198
+ recent: Senaste
199
+ votes:
200
+ confirm:
201
+ answer: Svar
202
+ answer_number: svara %{number}
203
+ confirm: Bekräfta
204
+ edit: redigera
205
+ header: Bekräfta din röst
206
+ intro: Här är en sammanfattning av den röst som du ska rösta. <br> Vänligen bekräfta din röst eller redigera dina svar.
207
+ question: Fråga %{count}
208
+ confirmed:
209
+ back: Tillbaka till val
210
+ experience: Hur var din erfarenhet?
211
+ feedback: Ge oss lite feedback
212
+ header: Rösta bekräftad
213
+ lead: Din röst har redan skickats!
214
+ text: 'Du kan kontrollera att din röst har lagts till i röstsedeln med följande identifierare: <strong class="evote__poll-id">%{e_vote_poll_id}</strong>'
215
+ verify_text: För att kontrollera det, kopiera identifieraren och klistra in den på <a href="evote-verify">röstverifieringssidan</a>
216
+ encrypting:
217
+ header: Kodar omröstning...
218
+ text: Din röst krypteras så att du kan skicka den anonymt.
219
+ header:
220
+ confirm: Bekräfta din röst
221
+ confirmed: Rösta bekräftad
222
+ encrypting: Bekräftar omröstning
223
+ messages:
224
+ not_allowed: Ni får inte rösta om detta val just nu.
225
+ modal:
226
+ close: Stäng
227
+ proposal_header: 'Förslag:'
228
+ new:
229
+ more_information: Mer information
230
+ preview_alert: Detta är en förhandsvisning av röstlängden.
231
+ question_steps: Fråga %{current_step} av %{total_steps}
232
+ selections: "%{selected} av %{max_selections}<br> val"
233
+ voting_step:
234
+ back: Tillbaka
235
+ continue: Nästa
236
+ warnings:
237
+ no_elections_warning: Inga omröstningar matchar dina sökkriterier eller det finns ingen omröstning planerad.
238
+ no_scheduled_elections_warning: För närvarande finns det inga planerade omröstningar, men här hittar du alla tidigare omröstningar listade.
239
+ events:
240
+ elections:
241
+ election_published:
242
+ email_intro: 'Valet %{resource_title} är nu aktivt för %{participatory_space_title}. Du kan se det från denna sida:'
243
+ email_outro: Du har fått det här meddelandet eftersom du följer %{participatory_space_title}. Du kan sluta ta emot meddelanden via föregående länk.
244
+ email_subject: Valet %{resource_title} är nu aktivt för %{participatory_space_title}.
245
+ notification_title: Valet <a href="%{resource_path}">%{resource_title}</a> är nu aktivt för %{participatory_space_title}.
130
246
  participatory_processes:
131
247
  statistics:
132
- elections_count: Val
248
+ elections_count: Omröstningar
249
+ layouts:
250
+ decidim:
251
+ election_votes_header:
252
+ exit: Avsluta
@@ -0,0 +1 @@
1
+ sw:
@@ -0,0 +1 @@
1
+ ti:
@@ -1 +1,262 @@
1
1
  tr:
2
+ activemodel:
3
+ attributes:
4
+ answer:
5
+ description: Açıklama
6
+ image: Resim
7
+ proposals: İlgili teklifler
8
+ title: Başlık
9
+ election:
10
+ description: Açıklama
11
+ end_time: Oylama bitişi
12
+ start_time: Oylama başlangıcı
13
+ title: Başlık
14
+ question:
15
+ description: Açıklama
16
+ max_selections: Maksimum seçim sayısı
17
+ min_selections: Yukarıdakilerden hiçbiri
18
+ title: Başlık
19
+ errors:
20
+ models:
21
+ answer:
22
+ attributes:
23
+ attachment:
24
+ needs_to_be_reattached: Yeniden bağlanması gerekiyor
25
+ election:
26
+ attributes:
27
+ attachment:
28
+ needs_to_be_reattached: Yeniden bağlanması gerekiyor
29
+ activerecord:
30
+ models:
31
+ decidim/elections/answer:
32
+ one: Cevap
33
+ other: Cevaplar
34
+ decidim/elections/election:
35
+ one: Seçim
36
+ other: Seçimler
37
+ decidim/elections/question:
38
+ one: Soru
39
+ other: Sorular
40
+ decidim:
41
+ components:
42
+ elections:
43
+ actions:
44
+ vote: Oy ver
45
+ name: Seçimler
46
+ settings:
47
+ global:
48
+ announcement: Duyuru
49
+ step:
50
+ announcement: Duyuru
51
+ elections:
52
+ actions:
53
+ confirm_destroy: Emin misin?
54
+ destroy: Yok et
55
+ edit: Düzenle
56
+ edit_answers: Cevapları düzenle
57
+ edit_questions: Soruları Düzenle
58
+ import: Teklifleri yanıtlara aktarın
59
+ new: Yeni %{name}
60
+ preview: Önizleme
61
+ publish: Yayınla
62
+ title: Eylemler
63
+ unpublish: Yayımdan Kaldır
64
+ admin:
65
+ answers:
66
+ create:
67
+ invalid: Bu cevabı oluştururken bir sorunla karşılaştım
68
+ success: Cevap başarıyla oluşturuldu
69
+ destroy:
70
+ invalid: Bu cevabı silerken bir sorun oluştu
71
+ success: Yanıt başarıyla silindi
72
+ edit:
73
+ title: Cevabı düzenle
74
+ update: Cevabı güncelle
75
+ index:
76
+ invalid_max_selections: Maksimum seçimi eşleştirmek için %{missing_answers} yanıt(lar)a daha ihtiyacınız var
77
+ title: Cevaplar
78
+ new:
79
+ create: Cevap oluştur
80
+ title: Yeni cevap
81
+ update:
82
+ invalid: Bu klasör güncellenirken bir hata oluştu
83
+ success: Cevap başarıyla güncellendi
84
+ elections:
85
+ create:
86
+ invalid: Bu seçim oluşturulurken bir sorun meydana geldi
87
+ success: Seçim başarıyla oluşturuldu
88
+ destroy:
89
+ invalid: Bu seçim silinirken bir sorun oluştu
90
+ success: Seçim başarıyla silindi
91
+ edit:
92
+ title: Seçimi düzenle
93
+ update: Seçimi güncelle
94
+ index:
95
+ no_bulletin_board: Bu modülü kullanmak için gerekli olan yapılandırılmış bir <a href="https://github.com/decidim/decidim-bulletin-board"> Bulletin Board sunucusu </a> yok. Bu görev Sistem Yöneticisi tarafından yapılmalıdır.
96
+ title: Seçimler
97
+ new:
98
+ create: Seçim oluştur
99
+ title: Yeni seçim
100
+ publish:
101
+ success: Seçim başarıyla yayınlandı.
102
+ unpublish:
103
+ success: Seçim başarılı bir şekilde yayınlanmadı.
104
+ update:
105
+ invalid: Bu seçim güncellenirken bir sorun oluştu
106
+ success: Seçim başarıyla güncellendi
107
+ models:
108
+ answer:
109
+ name: Cevap
110
+ election:
111
+ name: Seçim
112
+ question:
113
+ name: Soru
114
+ proposals_imports:
115
+ create:
116
+ invalid: Teklifleri cevaplara aktarırken bir sorun oluştu
117
+ success: "%{number} teklif başarıyla yanıtlara aktarıldı"
118
+ new:
119
+ create: Teklifleri yanıtlara aktarın
120
+ no_components: Bu katılımcı alanda, teklifleri yanıtlara aktarmak için başka teklif bileşeni yoktur.
121
+ select_component: Lütfen modülü bileşeni seçin
122
+ questions:
123
+ create:
124
+ invalid: Yeni bir soru oluşturulurken bir hata oluştu
125
+ success: Soru başarıyla oluşturuldu
126
+ destroy:
127
+ invalid: Bu soru silinirken bir sorun oluştu
128
+ success: Soru başarıyla silindi
129
+ edit:
130
+ title: Soruyu Düzenle
131
+ update: Soruyu güncelle
132
+ index:
133
+ title: Sorular
134
+ new:
135
+ create: Soru Oluştur
136
+ title: Yeni soru
137
+ update:
138
+ invalid: Bu soru güncellenirken bir hata oluştu
139
+ success: Soru başarıyla güncellendi
140
+ admin_log:
141
+ election:
142
+ publish: "%{user_name}, %{resource_name} seçimini yayınladı"
143
+ unpublish: "%{user_name}, %{resource_name} seçimini yayından kaldırdı"
144
+ election_m:
145
+ badge_name:
146
+ finished: Bitti
147
+ ongoing: Aktif
148
+ upcoming: Yakında
149
+ end_date: Son
150
+ footer:
151
+ view: Görünüm
152
+ vote: Seçim
153
+ label:
154
+ date: Tarihler
155
+ questions: '%{count} soru'
156
+ start_date: Başlangıç
157
+ unspecified: Belirtilmemiş
158
+ elections:
159
+ count:
160
+ elections_count:
161
+ one: "%{count} seçim"
162
+ other: "%{count} seçim"
163
+ filters:
164
+ active: Aktif
165
+ all: Tümü
166
+ finished: Bitti
167
+ search: Arama
168
+ state: Statü
169
+ upcoming: Yakında
170
+ filters_small_view:
171
+ close_modal: Pencereyi kapat
172
+ filter: Filtrele
173
+ filter_by: Şuna göre filtrele
174
+ unfold: Aç
175
+ show:
176
+ back: Tüm seçimler
177
+ preview: Önizleme
178
+ vote: Oy ver
179
+ voting_period_status:
180
+ finished: Oylama %{start_time} tarihinde başladı ve %{end_time} tarihinde sona erdi
181
+ ongoing: Oylama %{end_time} tarihinde sona eriyor
182
+ upcoming: Oylama %{start_time} tarihinde başlıyor
183
+ models:
184
+ answer:
185
+ fields:
186
+ proposals: Teklifler
187
+ title: Başlık
188
+ election:
189
+ fields:
190
+ end_time: Bitiyor
191
+ start_time: Başlıyor
192
+ title: Başlık
193
+ question:
194
+ fields:
195
+ answers: Cevaplar
196
+ max_selections: Maks. Alan sayısı seçimler
197
+ title: Başlık
198
+ orders:
199
+ label: Seçimleri şuna göre sırala
200
+ older: Daha eski
201
+ recent: En son
202
+ votes:
203
+ confirm:
204
+ answer: Cevap
205
+ answer_number: '%{number} cevap'
206
+ confirm: Onayla
207
+ edit: düzenle
208
+ header: Oyunu onayla
209
+ intro: İşte kullanmak üzere olduğunuz oyların bir özeti. <br> Lütfen oyunuzu onaylayın veya yanıtlarınızı düzenleyin.
210
+ nota_option: Boş
211
+ question: '%{count} soru'
212
+ confirmed:
213
+ back: Seçimlere dön
214
+ experience: Şu ana kadarki deneyiminiz nasıl?
215
+ feedback: Bize geri bildirim verin
216
+ header: Oy onaylandı
217
+ lead: Oyunuz çoktan verildi!
218
+ text: 'Aşağıdaki tanımlayıcıyla oyunuzun başarıyla oy sandığına eklenip eklenmediğini kontrol edebilirsiniz: <strong class = "evote__poll-id">%{e_vote_poll_id} </strong>'
219
+ verify_text: Kontrol etmek için, tanımlayıcıyı kopyalayın ve <a href="evote-verify"> oy doğrulama sayfasına </a> yapıştırın
220
+ encrypting:
221
+ header: Oy kodlanıyor...
222
+ text: Anonim olarak kullanabilmeniz için oyunuz şifreleniyor.
223
+ header:
224
+ confirm: Oyunu onayla
225
+ confirmed: Oy onaylandı
226
+ encrypting: Onaylanan oy
227
+ messages:
228
+ not_allowed: Şu anda bu seçim için oy kullanmanıza izin verilmiyor.
229
+ modal:
230
+ close: Kapat
231
+ proposal_header: 'Teklifler:'
232
+ new:
233
+ answer_choices: En fazla %{choices} cevap seçebilirsiniz
234
+ more_information: Daha fazla bilgi
235
+ nota_option: Yukarıdakilerin hiçbiri
236
+ preview_alert: Bu, oylama kabininin bir önizlemesidir.
237
+ question_steps: Soru %{current_step}/%{total_steps}
238
+ selections: "%{selected}/%{max_selections} <br> seçim"
239
+ voting_step:
240
+ back: Geri
241
+ continue: Sonraki
242
+ warnings:
243
+ no_elections_warning: Arama kriterlerinize uyan seçim yok veya planlanmış bir seçim yok.
244
+ no_scheduled_elections_warning: Şu anda planlanmış bir seçim yok, ancak burada listelenen tüm geçmiş seçimleri bulabilirsiniz.
245
+ events:
246
+ elections:
247
+ election_published:
248
+ email_intro: '%{resource_title} seçimi artık %{participatory_space_title} için aktif. Bu sayfadan görebilirsiniz:'
249
+ email_outro: Bu bildirimi, %{participatory_space_title} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
250
+ email_subject: '%{resource_title} seçimi artık %{participatory_space_title} için aktif.'
251
+ notification_title: <a href="%{resource_path}">%{resource_title} </a> seçimi artık %{participatory_space_title} için aktif.
252
+ pages:
253
+ home:
254
+ statistics:
255
+ elections_count: Seçimler
256
+ participatory_processes:
257
+ statistics:
258
+ elections_count: Seçimler
259
+ layouts:
260
+ decidim:
261
+ election_votes_header:
262
+ exit: Çıkış