decidim-initiatives 0.29.4 → 0.30.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_settings_form/show.erb +1 -1
  3. data/app/commands/decidim/initiatives/create_initiative.rb +16 -4
  4. data/app/commands/decidim/initiatives/update_initiative.rb +23 -9
  5. data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -1
  6. data/app/controllers/decidim/initiatives/admin/application_controller.rb +2 -0
  7. data/app/controllers/decidim/initiatives/admin/component_share_tokens_controller.rb +18 -0
  8. data/app/controllers/decidim/initiatives/admin/initiative_share_tokens_controller.rb +18 -0
  9. data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +8 -8
  10. data/app/controllers/decidim/initiatives/create_initiative_controller.rb +3 -2
  11. data/app/controllers/decidim/initiatives/initiative_types_controller.rb +1 -1
  12. data/app/controllers/decidim/initiatives/initiatives_controller.rb +3 -0
  13. data/app/forms/decidim/initiatives/admin/initiative_answer_form.rb +1 -1
  14. data/app/forms/decidim/initiatives/vote_form.rb +1 -1
  15. data/app/helpers/decidim/initiatives/initiative_helper.rb +1 -39
  16. data/app/helpers/decidim/initiatives/initiatives_helper.rb +8 -5
  17. data/app/helpers/decidim/initiatives/scopes_helper.rb +43 -0
  18. data/app/jobs/decidim/initiatives/export_initiatives_job.rb +5 -1
  19. data/app/models/decidim/initiative.rb +34 -27
  20. data/app/models/decidim/initiatives_type_scope.rb +9 -0
  21. data/app/permissions/decidim/initiatives/admin/permissions.rb +7 -0
  22. data/app/permissions/decidim/initiatives/permissions.rb +10 -3
  23. data/app/queries/decidim/initiatives/outdated_validating_initiatives.rb +1 -1
  24. data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +2 -2
  25. data/app/serializers/decidim/initiatives/download_your_data_initiative_serializer.rb +15 -0
  26. data/app/serializers/decidim/initiatives/initiative_serializer.rb +5 -24
  27. data/app/serializers/decidim/initiatives/open_data_initiative_serializer.rb +54 -0
  28. data/app/services/decidim/initiatives/data_encryptor.rb +1 -1
  29. data/app/services/decidim/initiatives/pdf_signature_example.rb +0 -2
  30. data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +1 -2
  31. data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +7 -0
  32. data/app/views/decidim/initiatives/committee_requests/new.html.erb +1 -2
  33. data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +3 -3
  34. data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +10 -2
  35. data/app/views/decidim/initiatives/initiatives/_form.html.erb +3 -3
  36. data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +16 -13
  37. data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +9 -3
  38. data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +0 -1
  39. data/app/views/decidim/initiatives/initiatives/show.html.erb +7 -8
  40. data/app/views/layouts/decidim/admin/_manage_initiatives.html.erb +11 -0
  41. data/app/views/layouts/decidim/admin/initiatives.html.erb +1 -9
  42. data/config/assets.rb +1 -3
  43. data/config/locales/ar.yml +7 -8
  44. data/config/locales/bg.yml +3 -22
  45. data/config/locales/ca.yml +58 -24
  46. data/config/locales/cs.yml +56 -22
  47. data/config/locales/de.yml +57 -23
  48. data/config/locales/el.yml +2 -9
  49. data/config/locales/en.yml +53 -19
  50. data/config/locales/es-MX.yml +61 -27
  51. data/config/locales/es-PY.yml +61 -27
  52. data/config/locales/es.yml +61 -27
  53. data/config/locales/eu.yml +80 -46
  54. data/config/locales/fi-plain.yml +57 -23
  55. data/config/locales/fi.yml +55 -21
  56. data/config/locales/fr-CA.yml +13 -25
  57. data/config/locales/fr.yml +13 -25
  58. data/config/locales/ga-IE.yml +0 -3
  59. data/config/locales/gl.yml +4 -12
  60. data/config/locales/hu.yml +4 -21
  61. data/config/locales/id-ID.yml +3 -9
  62. data/config/locales/is-IS.yml +1 -13
  63. data/config/locales/it.yml +4 -17
  64. data/config/locales/ja.yml +56 -22
  65. data/config/locales/lb.yml +6 -8
  66. data/config/locales/lt.yml +3 -22
  67. data/config/locales/lv.yml +2 -9
  68. data/config/locales/nl.yml +4 -13
  69. data/config/locales/no.yml +3 -13
  70. data/config/locales/pl.yml +5 -23
  71. data/config/locales/pt-BR.yml +5 -29
  72. data/config/locales/pt.yml +3 -11
  73. data/config/locales/ro-RO.yml +3 -20
  74. data/config/locales/ru.yml +1 -13
  75. data/config/locales/sk.yml +3 -9
  76. data/config/locales/sl.yml +4 -1
  77. data/config/locales/sv.yml +18 -26
  78. data/config/locales/tr-TR.yml +5 -13
  79. data/config/locales/uk.yml +1 -13
  80. data/config/locales/zh-CN.yml +2 -10
  81. data/config/locales/zh-TW.yml +3 -21
  82. data/db/migrate/20241127104718_add_taxonomy_to_initiatives_type_scope.rb +7 -0
  83. data/decidim-initiatives.gemspec +1 -3
  84. data/lib/decidim/api/initiative_api_type.rb +9 -10
  85. data/lib/decidim/api/initiative_committee_member_type.rb +3 -4
  86. data/lib/decidim/api/initiative_type.rb +15 -21
  87. data/lib/decidim/api/initiative_type_interface.rb +1 -5
  88. data/lib/decidim/exporters/initiative_votes_pdf.rb +163 -0
  89. data/lib/decidim/initiatives/admin_engine.rb +68 -49
  90. data/lib/decidim/initiatives/application_form_pdf.rb +181 -0
  91. data/lib/decidim/initiatives/engine.rb +6 -0
  92. data/lib/decidim/initiatives/menu.rb +8 -0
  93. data/lib/decidim/initiatives/participatory_space.rb +8 -1
  94. data/lib/decidim/initiatives/test/factories.rb +5 -8
  95. data/lib/decidim/initiatives/version.rb +1 -1
  96. data/lib/decidim/initiatives.rb +7 -1
  97. metadata +25 -60
  98. data/app/cells/decidim/initiatives_votes/vote/show.erb +0 -39
  99. data/app/cells/decidim/initiatives_votes/vote_cell.rb +0 -58
  100. data/app/packs/entrypoints/decidim_initiatives_initiatives_votes.js +0 -1
  101. data/app/packs/entrypoints/decidim_initiatives_initiatives_votes.scss +0 -1
  102. data/app/packs/entrypoints/decidim_initiatives_print.js +0 -1
  103. data/app/packs/entrypoints/decidim_initiatives_print.scss +0 -1
  104. data/app/packs/stylesheets/decidim/initiatives/initiatives-votes.scss +0 -96
  105. data/app/packs/stylesheets/decidim/initiatives/print-initiative.scss +0 -172
  106. data/app/views/decidim/initiatives/admin/initiatives/_signatures.html.erb +0 -87
  107. data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.html.erb +0 -8
  108. data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.pdf.erb +0 -5
  109. data/app/views/decidim/initiatives/initiatives/_linked_initiatives.html.erb +0 -0
  110. data/app/views/decidim/initiatives/initiatives/print.html.erb +0 -161
  111. data/app/views/layouts/decidim/admin/initiatives_votes.pdf.erb +0 -11
  112. data/config/initializers/wicked_pdf.rb +0 -22
  113. data/config/locales/ca-IT.yml +0 -628
@@ -74,7 +74,6 @@ pt:
74
74
  accepted: Assinaturas suficientes
75
75
  created: Criado
76
76
  discarded: Abandonado
77
- published: Publicado
78
77
  rejected: Assinaturas insuficientes
79
78
  validating: Validação técnica
80
79
  type_id_eq:
@@ -119,8 +118,6 @@ pt:
119
118
  initiative_title: Título da iniciativa
120
119
  name_and_surname: Nome e apelido
121
120
  postal_code: Código postal
122
- scope: Âmbito
123
- time_and_date: Hora e data
124
121
  timestamp: Data e hora
125
122
  titles:
126
123
  initiatives: Iniciativas
@@ -163,8 +160,8 @@ pt:
163
160
  badges:
164
161
  initiatives:
165
162
  conditions:
166
- - Ir para o espaço de participação de Iniciativas
167
- - Siga os passos para criar uma nova iniciativa
163
+ - Ir para o espaço de participação de Iniciativas
164
+ - Siga os passos para criar uma nova iniciativa
168
165
  description: Este distintivo é concedido quando lança novas iniciativas, estabelecendo parcerias com outras pessoas para realizá-las.
169
166
  description_another: Este participante teve %{score} iniciativas publicadas.
170
167
  name: Iniciativas publicadas
@@ -256,7 +253,6 @@ pt:
256
253
  accepted: Assinaturas suficientes
257
254
  created: Criado
258
255
  discarded: Descartado
259
- published: Publicado
260
256
  rejected: Assinaturas insuficientes
261
257
  validating: Validação técnica
262
258
  application_helper:
@@ -292,6 +288,7 @@ pt:
292
288
  finish:
293
289
  back: Retroceder
294
290
  back_to_initiatives: Retroceder para as iniciativas
291
+ callout_text: Parabéns! A sua iniciativa foi criada com êxito.
295
292
  confirm: Vai enviar esta iniciativa para que um administrador a possa rever e publicar. Assim que esteja publicada não a poderá editar. Tem a certeza?
296
293
  edit_my_initiative: Editar a minha iniciativa
297
294
  go_to_my_initiatives: Ir para as minhas iniciativas
@@ -421,9 +418,7 @@ pt:
421
418
  phone_number: Número de telefone
422
419
  place_date: Local, data
423
420
  postal_code: Código postal
424
- print: Impressão
425
421
  province: Província/Estado
426
- section: 'Se for requerido pela organização, por favor imprima e preencha este formulário a submeter onde indicado:'
427
422
  signature: Assinatura
428
423
  result:
429
424
  initiative_rejected_reason: Esta iniciativa foi rejeitada devido à falta de assinaturas.
@@ -436,7 +431,6 @@ pt:
436
431
  other: " assinaturas"
437
432
  vote_cabin:
438
433
  already_voted: Já assinou
439
- verification_required: Verifique a sua conta para assinar a iniciativa
440
434
  vote: Assinar
441
435
  votes_blocked: Assinatura desativada
442
436
  votes_count:
@@ -464,7 +458,6 @@ pt:
464
458
  accepted: Assinaturas suficientes
465
459
  created: Criado
466
460
  discarded: Eliminado
467
- published: Publicado
468
461
  rejected: Assinaturas insuficientes
469
462
  validating: Verificação técnica
470
463
  states:
@@ -479,7 +472,6 @@ pt:
479
472
  comment: Comentários
480
473
  initiatives_type:
481
474
  actions:
482
- create: Criar
483
475
  title: Ações
484
476
  vote: Assinar
485
477
  layouts:
@@ -87,16 +87,12 @@ ro:
87
87
  accepted: Semnături suficiente
88
88
  created: Creat
89
89
  discarded: Respins
90
- published: Publicat
91
90
  rejected: Semnături insuficiente
92
91
  validating: Validarea tehnică
93
92
  type_id_eq:
94
93
  label: Tip
95
94
  search_placeholder:
96
95
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Caută %{collection} după titlu, descriere, ID sau numele autorului.
97
- initiatives_settings:
98
- update:
99
- error: A apărut o eroare.
100
96
  menu:
101
97
  attachments: Atașamente
102
98
  committee_members: Membrii comitetului
@@ -135,8 +131,6 @@ ro:
135
131
  initiative_title: Titlul inițiativei
136
132
  name_and_surname: Nume și prenume
137
133
  postal_code: Cod poștal
138
- scope: Domeniu de interes
139
- time_and_date: Ora și data
140
134
  timestamp: Ora
141
135
  titles:
142
136
  initiatives: Inițiative
@@ -179,8 +173,8 @@ ro:
179
173
  badges:
180
174
  initiatives:
181
175
  conditions:
182
- - Mergeți la spațiul de participare al inițiativelor
183
- - Urmează pașii necesari pentru a crea o nouă inițiativă
176
+ - Mergeți la spațiul de participare al inițiativelor
177
+ - Urmează pașii necesari pentru a crea o nouă inițiativă
184
178
  description: Această insignă este acordată atunci când lansezi noi inițiative, colaborând cu alții pentru a o realiza.
185
179
  description_another: Acest participant a publicat %{score} inițiative.
186
180
  name: Inițiative publicate
@@ -256,7 +250,6 @@ ro:
256
250
  unpublish:
257
251
  success: Inițiativa a fost ascunsă cu succes.
258
252
  update:
259
- error: A apărut o eroare.
260
253
  success: Inițiativa a fost actualizată cu succes.
261
254
  initiatives_settings:
262
255
  edit:
@@ -269,7 +262,6 @@ ro:
269
262
  title: Setări pentru inițiative
270
263
  initiatives_type_scopes:
271
264
  create:
272
- error: A apărut o eroare.
273
265
  success: A fost creat un nou domeniu de interes pentru un anumit tip de inițiativă.
274
266
  destroy:
275
267
  success: Domeniul de interes a fost eliminat cu succes.
@@ -280,7 +272,6 @@ ro:
280
272
  create: Creează
281
273
  title: Creează tipul domeniului pentru inițiative
282
274
  update:
283
- error: A apărut o eroare.
284
275
  success: Domeniul de interes a fost actualizat cu succes.
285
276
  initiatives_types:
286
277
  edit:
@@ -303,7 +294,6 @@ ro:
303
294
  accepted: Semnături suficiente
304
295
  created: Creat
305
296
  discarded: Respins
306
- published: Publicate
307
297
  rejected: Semnături insuficiente
308
298
  validating: Validarea tehnică
309
299
  application_helper:
@@ -339,7 +329,7 @@ ro:
339
329
  finish:
340
330
  back: Înapoi
341
331
  back_to_initiatives: Înapoi la inițiative
342
- callout_text: Felicitări! Inițiativa dvs. a fost creată cu succes.
332
+ callout_text: Felicitări! Inițiativa ta a fost creată cu succes.
343
333
  confirm: Vei trimite inițiativa unui administrator pentru a o revizui și a o publica. Odată publicată, nu o vei putea edita. Sigur dorești asta?
344
334
  edit_my_initiative: Editează inițiativa mea
345
335
  go_to_my_initiatives: Accesează inițiativele mele
@@ -397,8 +387,6 @@ ro:
397
387
  email_outro: 'Ai primit această notificare deoarece ești autorul acestei inițiative: %{resource_title}'
398
388
  email_subject: "%{applicant_nickname} vrea să se alăture inițiativei tale"
399
389
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a depus cerere pentru comitetul de promovare al inițiativa tale <a href="%{resource_url}">%{resource_title}</a>. Pentru a accepta sau respinge apasă <a href="%{resource_url}/edit">aici</a>.
400
- form:
401
- attachment_legend: "(Opțional) Adaugă un atașament"
402
390
  initiative_signatures:
403
391
  fill_personal_data:
404
392
  continue: Continuă
@@ -474,9 +462,7 @@ ro:
474
462
  phone_number: Număr de telefon
475
463
  place_date: Locul, data
476
464
  postal_code: Cod poștal
477
- print: Tipărește
478
465
  province: Județ/stat
479
- section: 'Dacă organizația solicită acest lucru, te rugăm tipărește și completează acest formular pentru a-l depune conform indicațiilor:'
480
466
  signature: Semnătură
481
467
  result:
482
468
  initiative_rejected_reason: Această inițiativă a fost respinsă din cauza lipsei de semnături.
@@ -490,7 +476,6 @@ ro:
490
476
  other: " semnături"
491
477
  vote_cabin:
492
478
  already_voted: Deja semnat
493
- verification_required: Verifică-ți contul pentru a semna inițiativa
494
479
  vote: Semnare
495
480
  votes_blocked: Semnarea este dezactivată
496
481
  votes_count:
@@ -519,7 +504,6 @@ ro:
519
504
  accepted: Semnături suficiente
520
505
  created: Creat
521
506
  discarded: Respins
522
- published: Publicat
523
507
  rejected: Semnături insuficiente
524
508
  validating: Validarea tehnică
525
509
  states:
@@ -534,7 +518,6 @@ ro:
534
518
  comment: Comentează
535
519
  initiatives_type:
536
520
  actions:
537
- create: Creează
538
521
  title: Acțiuni
539
522
  vote: Semnare
540
523
  layouts:
@@ -62,9 +62,6 @@ ru:
62
62
  created_at: 'Создано:'
63
63
  title: Виды починов
64
64
  name: Вид почина
65
- initiatives_votes:
66
- fields:
67
- scope: Охват
68
65
  titles:
69
66
  initiatives: Почины
70
67
  initiatives_types: Виды починов
@@ -132,7 +129,6 @@ ru:
132
129
  admin_states:
133
130
  created: Созданные
134
131
  discarded: Отброшенные
135
- published: Обнародовано
136
132
  validating: Техническая проверка
137
133
  application_helper:
138
134
  filter_state_values:
@@ -178,9 +174,6 @@ ru:
178
174
  email_outro: Вы получили это уведомление, потому что вы следите за «%{author_nickname}». Вы можете отписаться от уведомлений, перейдя по приведенной выше ссылке.
179
175
  email_subject: Инициатива поддержана %{author_nickname}
180
176
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> поддержал почин <a href="%{resource_path}">%{resource_title}</a>.
181
- initiative_signatures:
182
- fill_personal_data:
183
- continue: Продолжить
184
177
  initiative_votes:
185
178
  create:
186
179
  error: При попытке подписаться за этот почин произошли ошибки.
@@ -213,7 +206,6 @@ ru:
213
206
  recent: Самые последние
214
207
  print:
215
208
  city: Город
216
- print: Распечатать
217
209
  result:
218
210
  initiative_rejected_reason: Этот почин был отвергнут из-за недостатка поддержки.
219
211
  signatures_count:
@@ -247,15 +239,11 @@ ru:
247
239
  expired: Истекшие
248
240
  menu:
249
241
  initiatives: Почины
250
- resources:
251
- initiatives_type:
252
- actions:
253
- create: Создать
254
- vote: Подписать
255
242
  layouts:
256
243
  decidim:
257
244
  initiative_creation_header:
258
245
  fill_data: Создать
246
+ finish: Закончить
259
247
  promotal_committee: Рабочая группа по продвижению
260
248
  select_initiative_type: Выбрать
261
249
  initiatives:
@@ -89,8 +89,6 @@ sk:
89
89
  initiative_title: Názov iniciatívy
90
90
  name_and_surname: Meno a priezvisko
91
91
  postal_code: Poštové smerovacie číslo
92
- scope: Rozsah
93
- time_and_date: Čas a dátum
94
92
  timestamp: Časová pečiatka
95
93
  titles:
96
94
  initiatives: Iniciatívy
@@ -117,8 +115,8 @@ sk:
117
115
  badges:
118
116
  initiatives:
119
117
  conditions:
120
- - Prejsť na priestor Iniciatív
121
- - Nasledovať kroky pre vytvorenie novej iniciatívy
118
+ - Prejsť na priestor Iniciatív
119
+ - Nasledovať kroky pre vytvorenie novej iniciatívy
122
120
  help:
123
121
  participatory_spaces:
124
122
  initiatives:
@@ -176,7 +174,6 @@ sk:
176
174
  admin_states:
177
175
  created: Vytvorené
178
176
  discarded: Odstránená
179
- published: Publikované
180
177
  application_helper:
181
178
  filter_state_values:
182
179
  closed: Uzavreté
@@ -276,7 +273,6 @@ sk:
276
273
  recent: Najnovšie
277
274
  print:
278
275
  city: Mesto
279
- print: Tlač
280
276
  result:
281
277
  initiative_rejected_reason: Táto iniciatíva bola zamietnutá z dôvodu nedostatočnej podpory.
282
278
  signatures_count:
@@ -286,7 +282,6 @@ sk:
286
282
  other: "podpisy"
287
283
  vote_cabin:
288
284
  already_voted: Už ste podpísal
289
- verification_required: Overte svoj účet, aby ste podpísali iniciatívu
290
285
  vote: Podpísať
291
286
  votes_blocked: Podpis zakázaný
292
287
  votes_count:
@@ -315,9 +310,8 @@ sk:
315
310
  resources:
316
311
  initiatives_type:
317
312
  actions:
318
- create: Vytvoriť
319
313
  title: Akcia
320
- vote: Podpísať
314
+ vote: Hlasovanie
321
315
  layouts:
322
316
  decidim:
323
317
  initiative_creation_header:
@@ -1,5 +1,9 @@
1
1
  ---
2
2
  sl:
3
+ activemodel:
4
+ attributes:
5
+ initiative:
6
+ decidim_user_group_id: Avtor
3
7
  decidim:
4
8
  admin:
5
9
  filters:
@@ -10,7 +14,6 @@ sl:
10
14
  values:
11
15
  created: Ustvarjeno
12
16
  discarded: Zavrženo
13
- published: Objavljeno
14
17
  type_id_eq:
15
18
  label: Tip
16
19
  initiatives:
@@ -92,7 +92,7 @@ sv:
92
92
  accepted: Tillräckligt många underskrifter
93
93
  created: Skapad
94
94
  discarded: Avvisad
95
- published: Publicerad
95
+ open: Öppna
96
96
  rejected: För få underskrifter
97
97
  validating: Teknisk validering
98
98
  type_id_eq:
@@ -101,7 +101,7 @@ sv:
101
101
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Sök %{collection} med titel, beskrivning, ID eller författarnamn.
102
102
  initiatives_settings:
103
103
  update:
104
- error: Ett fel har inträffat.
104
+ error: Det gick inte att uppdatera inställningarna för initiativ.
105
105
  success: Initiativets inställningar har uppdaterats.
106
106
  menu:
107
107
  attachments: Bilagor
@@ -147,8 +147,6 @@ sv:
147
147
  initiative_title: Initiativets titel
148
148
  name_and_surname: Namn och efternamn
149
149
  postal_code: Postnummer
150
- scope: Indelning
151
- time_and_date: Tid och datum
152
150
  timestamp: Tidsstämpel
153
151
  titles:
154
152
  initiatives: Initiativ
@@ -191,8 +189,8 @@ sv:
191
189
  badges:
192
190
  initiatives:
193
191
  conditions:
194
- - Gå till deltagarutrymmet för initiativ
195
- - Följ stegen för att skapa ett nytt initiativ
192
+ - Gå till deltagarutrymmet för initiativ
193
+ - Följ stegen för att skapa ett nytt initiativ
196
194
  description: Detta märke beviljas när du startar nya initiativ och samarbetar med andra för att genomföra dem.
197
195
  description_another: Användaren har publicerat %{score} initiativ.
198
196
  description_own: Du har publicerat %{score} initiativ.
@@ -266,7 +264,7 @@ sv:
266
264
  new: Ny
267
265
  photos: Foton
268
266
  update:
269
- error: Ett fel har inträffat.
267
+ error: Det gick inte att uppdatera initiativet.
270
268
  success: Initiativet har uppdaterats.
271
269
  initiatives_settings:
272
270
  edit:
@@ -280,7 +278,7 @@ sv:
280
278
  title: Inställningar för initiativ
281
279
  initiatives_type_scopes:
282
280
  create:
283
- error: Ett fel har inträffat.
281
+ error: Det gick inte att skapa ett nytt utrymme för initiativet.
284
282
  success: En ny indelning har skapats för initiativtypen.
285
283
  destroy:
286
284
  success: Indelningen har tagit borts.
@@ -291,11 +289,11 @@ sv:
291
289
  create: Skapa
292
290
  title: Skapa indelning till initiativtyp
293
291
  update:
294
- error: Ett fel har inträffat.
292
+ error: Det gick inte att uppdatera indelningen.
295
293
  success: Indelningen har uppdaterats.
296
294
  initiatives_types:
297
295
  create:
298
- error: Ett fel har inträffat.
296
+ error: Det gick inte att skapa initiativtypen.
299
297
  success: En ny initiativtyp har skapats. Du måste ange minst ett utrymme för denna initiativtyp för att den ska användas.
300
298
  destroy:
301
299
  success: Initiativtypen har tagits bort.
@@ -312,7 +310,7 @@ sv:
312
310
  create: Skapa
313
311
  title: Ny initiativtyp
314
312
  update:
315
- error: Ett fel har inträffat.
313
+ error: Det gick inte att skapa initiativtypen.
316
314
  success: Initiativtypen har uppdaterats.
317
315
  admin_log:
318
316
  initiative:
@@ -330,7 +328,7 @@ sv:
330
328
  accepted: Tillräckligt många underskrifter
331
329
  created: Skapad
332
330
  discarded: Bortagna
333
- published: Publicerade
331
+ open: Öppna
334
332
  rejected: För få underskrifter
335
333
  validating: Teknisk validering
336
334
  application_helper:
@@ -367,6 +365,7 @@ sv:
367
365
  finish:
368
366
  back: Tillbaka
369
367
  back_to_initiatives: Tillbaka till initiativ
368
+ callout_text: Grattis! Ditt medborgarinitiativ har skapats.
370
369
  confirm: Du kommer att skicka initiativet till en administratör för att granska och publicera det. När det har publicerats kommer du inte att kunna redigera det. Vill du gå vidare?
371
370
  edit_my_initiative: Redigera mitt initiativ
372
371
  go_to_my_initiatives: Gå till mina initiativ
@@ -376,7 +375,7 @@ sv:
376
375
  publish_helper_text: Kom ihåg att för att ditt initiativ ska publiceras måste du fylla i obligatoriska uppgifter och <strong>skicka det till teknisk validering</strong> för att en administratör ska kunna granska det.
377
376
  previous_form:
378
377
  back: Tillbaka
379
- continue: Fortsätta
378
+ continue: Fortsätt
380
379
  promotal_committee:
381
380
  individual_help_text: Den här typen av medborgarinitiativ kräver att kampanjgruppen består av minst %{committee_size} personer (attesterare). Du måste dela följande länk med andra personer som är del av initiativet. När dina kontakter får denna länk måste de följa de angivna stegen.
382
381
  more_information: "(Mer information)"
@@ -413,7 +412,7 @@ sv:
413
412
  notification_title: Initiativet <a href="%{resource_path}">%{resource_title}</a> skapades av <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
414
413
  endorse_initiative_event:
415
414
  email_intro: "%{author_name} %{author_nickname}, som du följer, gillar följande initiativ. Kanske du vill bidra till diskussionen:"
416
- email_outro: Du har fått det här meddelandet eftersom du följer %{author_nickname}. Du kan sluta ta att emot meddelanden via föregående länk.
415
+ email_outro: Du har fått det här meddelandet eftersom du följer %{author_nickname}. Du kan sluta att ta emot meddelanden via föregående länk.
417
416
  email_subject: '%{author_nickname} gillar Initiativet'
418
417
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> gillar initiativet <a href="%{resource_path}">%{resource_title}</a>.
419
418
  revoke_membership_request:
@@ -427,17 +426,14 @@ sv:
427
426
  email_subject: "%{applicant_nickname} vill gå med i ditt initiativ"
428
427
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> ansökte om att gå med i kampanjgruppen för ditt initiativ <a href="%{resource_url}">%{resource_title}</a>. För att acceptera eller avvisa klickar du <a href="%{resource_url}/edit">här</a>.
429
428
  form:
430
- add_documents: Lägg till dokument
431
429
  add_image: Lägg till bild
432
- attachment_legend: "(Valfritt) Lägg till en bilaga"
433
- edit_documents: Redigera dokument
434
430
  edit_image: Redigera bild
435
431
  image_legend: "(Valfritt) Lägg till en bild"
436
432
  index:
437
433
  uninitialized: Initiativ är ännu inte konfigurerade av en administratör.
438
434
  initiative_signatures:
439
435
  fill_personal_data:
440
- continue: Fortsätta
436
+ continue: Fortsätt
441
437
  help: Skriv under initiativet genom att fylla i följande fält med dina uppgifter.
442
438
  finish:
443
439
  back_to_initiative: Tillbaka till initiativet
@@ -519,9 +515,7 @@ sv:
519
515
  phone_number: Telefonnummer
520
516
  place_date: Plats, datum
521
517
  postal_code: Postnummer
522
- print: Skriv ut
523
518
  province: Region/Land
524
- section: 'Om det begärs av organisationen, skriv ut och fyll i detta formulär för att skicka där det anges:'
525
519
  signature: Underskrift
526
520
  result:
527
521
  answer_title: Initiativet har besvarats.
@@ -543,7 +537,6 @@ sv:
543
537
  other: " underskrifter"
544
538
  vote_cabin:
545
539
  already_voted: Redan undertecknad
546
- verification_required: Verifiera ditt konto för att skriva under initiativet
547
540
  vote: Signera
548
541
  votes_blocked: Underskrifter är avaktiverade
549
542
  votes_count:
@@ -578,7 +571,7 @@ sv:
578
571
  accepted: Tillräckligt många underskrifter
579
572
  created: Skapad
580
573
  discarded: Bortagen
581
- published: Publicerad
574
+ open: Öppna
582
575
  rejected: För få underskrifter
583
576
  validating: Teknisk validering
584
577
  states:
@@ -586,7 +579,7 @@ sv:
586
579
  expired: Utgångna
587
580
  unavailable_scope: Ej tillgänglig indelning
588
581
  update:
589
- error: Ett fel har inträffat.
582
+ error: Det gick inte att uppdatera initiativet.
590
583
  success: Initiativet har uppdaterats.
591
584
  menu:
592
585
  initiatives: Initiativ
@@ -596,14 +589,13 @@ sv:
596
589
  comment: Kommentera
597
590
  initiatives_type:
598
591
  actions:
599
- create: Skapa
600
592
  title: Åtgärder
601
- vote: Signera
593
+ vote: Underteckna
602
594
  layouts:
603
595
  decidim:
604
596
  initiative_creation_header:
605
597
  fill_data: Skapa
606
- finish: Slutför
598
+ finish: Avsluta
607
599
  promotal_committee: Kampanjgrupp
608
600
  select_initiative_type: Välj
609
601
  initiative_signature_creation_header:
@@ -75,7 +75,6 @@ tr:
75
75
  accepted: Yeterince imza
76
76
  created: Oluşturuldu
77
77
  discarded: Yok sayıldı
78
- published: Yayınlandı
79
78
  rejected: Yeterince imza yok
80
79
  validating: Teknik doğrulama
81
80
  type_id_eq:
@@ -117,8 +116,6 @@ tr:
117
116
  initiative_title: Girişim başlığı
118
117
  name_and_surname: Ad ve soyadı
119
118
  postal_code: Posta kodu
120
- scope: Kapsam
121
- time_and_date: Saat ve tarih
122
119
  timestamp: Zaman Damgası
123
120
  titles:
124
121
  initiatives: Girişimler
@@ -158,8 +155,8 @@ tr:
158
155
  badges:
159
156
  initiatives:
160
157
  conditions:
161
- - Intiatives'in katılım alanına git
162
- - Yeni bir girişim oluşturmak için adımları izleyin
158
+ - Intiatives'in katılım alanına git
159
+ - Yeni bir girişim oluşturmak için adımları izleyin
163
160
  description: Bu rozet, yeni girişimler başlattığınızda, bunları gerçekleştirmek için başkalarıyla ortaklık kurduğunuzda verilir.
164
161
  description_another: Bu katılımcı, yayınlanan %{score} girişimi aldı.
165
162
  name: Yayınlanmış girişimler
@@ -247,7 +244,6 @@ tr:
247
244
  accepted: Yeterince imza
248
245
  created: Oluşturuldu
249
246
  discarded: Yok sayıldı
250
- published: Yayınlandı
251
247
  rejected: Yeterince imza yok
252
248
  validating: Teknik doğrulama
253
249
  application_helper:
@@ -279,6 +275,7 @@ tr:
279
275
  finish:
280
276
  back: Geri
281
277
  back_to_initiatives: Girişimlere geri dön
278
+ callout_text: Tebrikler! Girişiminiz başarıyla oluşturuldu.
282
279
  confirm: Bir yöneticinin gözden geçirmesi ve yayınlaması için inisiyatif göndereceksiniz. Yayınlandıktan sonra onu düzenleyemezsiniz. Emin misiniz?
283
280
  edit_my_initiative: Girişimimi düzenle
284
281
  go_to_my_initiatives: Benim girişimlerime git
@@ -318,7 +315,7 @@ tr:
318
315
  notification_title: <a href="%{resource_path}">%{resource_title} </a> girişimi <a href="%{author_path}">%{author_name} %{author_nickname} </a> tarafından oluşturuldu.
319
316
  endorse_initiative_event:
320
317
  email_intro: "Takip ettiğiniz %{author_name} %{author_nickname} aşağıdaki girişimi onayladı, belki sohbete katkıda bulunmak istersiniz:"
321
- email_outro: Bu bildirimi, %{author_nickname}izlediğiniz için aldınız. Önceki bağlantıyı takip ederek bildirimleri almayı durdurabilirsiniz.
318
+ email_outro: Bu bildirimi %{author_nickname} adlı kişiyi takip ettiğiniz için aldınız. Önceki bağlantıyı izleyerek bildirim almayı durdurabilirsiniz.
322
319
  email_subject: Girişim %{author_nickname} tarafından onaylandı
323
320
  notification_title: <a href="%{resource_path}">%{resource_title} </a> girişimi <a href="%{author_path}">%{author_name} %{author_nickname} </a> tarafından onaylandı.
324
321
  initiative_signatures:
@@ -393,9 +390,7 @@ tr:
393
390
  phone_number: Telefon numarası
394
391
  place_date: Yer, Tarih
395
392
  postal_code: Posta Kodu
396
- print: baskı
397
393
  province: İlçe / İl
398
- section: 'Kuruluş tarafından istenirse, lütfen belirtilen yerlerde göndermek için bu formu yazdırın ve doldurun:'
399
394
  signature: İmza
400
395
  result:
401
396
  initiative_rejected_reason: Bu girişim, imza eksikliği nedeniyle reddedildi.
@@ -410,7 +405,6 @@ tr:
410
405
  other: " imzalar"
411
406
  vote_cabin:
412
407
  already_voted: Zaten imzalanmış
413
- verification_required: Girişimi imzalamak için hesabınızı doğrulayın
414
408
  vote: İmza
415
409
  votes_blocked: İmzalama devre dışı
416
410
  votes_count:
@@ -438,7 +432,6 @@ tr:
438
432
  accepted: Yeterince imza
439
433
  created: Oluşturuldu
440
434
  discarded: Yok sayıldı
441
- published: Yayınlandı
442
435
  rejected: Yeterince imza yok
443
436
  validating: Teknik doğrulama
444
437
  states:
@@ -450,14 +443,13 @@ tr:
450
443
  resources:
451
444
  initiatives_type:
452
445
  actions:
453
- create: Oluştur
454
446
  title: Eylemler
455
447
  vote: İmza
456
448
  layouts:
457
449
  decidim:
458
450
  initiative_creation_header:
459
451
  fill_data: Oluştur
460
- finish: Bitiş
452
+ finish: Bitir
461
453
  promotal_committee: Tanıtım komitesi
462
454
  select_initiative_type: Seç
463
455
  initiative_signature_creation_header:
@@ -62,9 +62,6 @@ uk:
62
62
  created_at: 'Створено:'
63
63
  title: Різновиди починів
64
64
  name: Різновид почину
65
- initiatives_votes:
66
- fields:
67
- scope: Обсяг
68
65
  titles:
69
66
  initiatives: Почини
70
67
  initiatives_types: Різновиди починів
@@ -132,7 +129,6 @@ uk:
132
129
  admin_states:
133
130
  created: Створені
134
131
  discarded: Відкинуті
135
- published: Оприлюднено
136
132
  validating: Технічна перевірка
137
133
  application_helper:
138
134
  filter_state_values:
@@ -178,9 +174,6 @@ uk:
178
174
  email_outro: Ви отримали це сповіщення, тому що ви стежите за %{author_nickname}. Ви можете відписатися від цих сповіщень, перейшовши за наведеним вище посиланням.
179
175
  email_subject: '%{author_nickname} підтримав почин'
180
176
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> підтримав почин <a href="%{resource_path}">%{resource_title}</a>.
181
- initiative_signatures:
182
- fill_personal_data:
183
- continue: Продовжити
184
177
  initiative_votes:
185
178
  create:
186
179
  error: При підписанні цього почину сталися помилки.
@@ -213,7 +206,6 @@ uk:
213
206
  recent: Найновіші
214
207
  print:
215
208
  city: Місто
216
- print: Друк
217
209
  result:
218
210
  initiative_rejected_reason: Цей почин був відхилений через недостатню підтримку.
219
211
  signatures_count:
@@ -247,15 +239,11 @@ uk:
247
239
  expired: Строк дії яких закінчився
248
240
  menu:
249
241
  initiatives: Почини
250
- resources:
251
- initiatives_type:
252
- actions:
253
- create: Створити
254
- vote: Підписати
255
242
  layouts:
256
243
  decidim:
257
244
  initiative_creation_header:
258
245
  fill_data: Внести
246
+ finish: Завершити
259
247
  promotal_committee: Робочий гурт з просування
260
248
  select_initiative_type: Обрати
261
249
  initiatives: