decidim-initiatives 0.26.10 → 0.27.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives/show.erb +2 -2
  4. data/app/commands/decidim/initiatives/admin/create_initiative_type.rb +7 -3
  5. data/app/commands/decidim/initiatives/admin/create_initiative_type_scope.rb +3 -3
  6. data/app/commands/decidim/initiatives/admin/publish_initiative.rb +1 -1
  7. data/app/commands/decidim/initiatives/admin/send_initiative_to_technical_validation.rb +2 -2
  8. data/app/commands/decidim/initiatives/admin/unpublish_initiative.rb +1 -1
  9. data/app/commands/decidim/initiatives/admin/update_initiative.rb +1 -1
  10. data/app/commands/decidim/initiatives/admin/update_initiative_answer.rb +1 -1
  11. data/app/commands/decidim/initiatives/admin/update_initiative_type.rb +19 -14
  12. data/app/commands/decidim/initiatives/admin/update_initiative_type_scope.rb +1 -1
  13. data/app/commands/decidim/initiatives/admin/update_initiatives_settings.rb +46 -0
  14. data/app/commands/decidim/initiatives/approve_membership_request.rb +1 -1
  15. data/app/commands/decidim/initiatives/create_initiative.rb +2 -3
  16. data/app/commands/decidim/initiatives/revoke_membership_request.rb +1 -1
  17. data/app/commands/decidim/initiatives/send_initiative_to_technical_validation.rb +2 -2
  18. data/app/commands/decidim/initiatives/spawn_committee_request.rb +1 -1
  19. data/app/commands/decidim/initiatives/unvote_initiative.rb +1 -1
  20. data/app/commands/decidim/initiatives/update_initiative.rb +1 -1
  21. data/app/commands/decidim/initiatives/validate_mobile_phone.rb +1 -1
  22. data/app/commands/decidim/initiatives/validate_sms_code.rb +1 -1
  23. data/app/commands/decidim/initiatives/vote_initiative.rb +2 -6
  24. data/app/constraints/decidim/initiatives/current_initiative.rb +1 -1
  25. data/app/controllers/concerns/decidim/initiatives/orderable.rb +8 -0
  26. data/app/controllers/decidim/initiatives/admin/committee_requests_controller.rb +1 -1
  27. data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +4 -3
  28. data/app/controllers/decidim/initiatives/admin/initiatives_settings_controller.rb +49 -0
  29. data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +1 -1
  30. data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +7 -4
  31. data/app/controllers/decidim/initiatives/application_controller.rb +0 -7
  32. data/app/controllers/decidim/initiatives/committee_requests_controller.rb +2 -2
  33. data/app/controllers/decidim/initiatives/create_initiative_controller.rb +4 -19
  34. data/app/controllers/decidim/initiatives/initiatives_controller.rb +17 -24
  35. data/app/controllers/decidim/initiatives/initiatives_type_scopes_controller.rb +1 -1
  36. data/app/controllers/decidim/initiatives/initiatives_type_signature_types_controller.rb +1 -1
  37. data/app/forms/decidim/initiatives/admin/initiative_form.rb +4 -4
  38. data/app/forms/decidim/initiatives/admin/initiative_type_form.rb +2 -1
  39. data/app/forms/decidim/initiatives/admin/initiatives_settings_form.rb +14 -0
  40. data/app/forms/decidim/initiatives/initiative_form.rb +0 -3
  41. data/app/forms/decidim/initiatives/vote_form.rb +0 -4
  42. data/app/helpers/decidim/initiatives/{signature_type_options_helper.rb → create_initiative_helper.rb} +4 -4
  43. data/app/helpers/decidim/initiatives/initiative_helper.rb +6 -4
  44. data/app/mailers/decidim/initiatives/initiatives_mailer.rb +2 -2
  45. data/app/models/decidim/initiative.rb +60 -9
  46. data/app/models/decidim/initiatives_settings.rb +17 -0
  47. data/app/models/decidim/initiatives_type.rb +5 -0
  48. data/app/packs/stylesheets/decidim/initiatives/print-initiative.scss +0 -16
  49. data/app/permissions/decidim/initiatives/admin/permissions.rb +10 -4
  50. data/app/permissions/decidim/initiatives/permissions.rb +1 -1
  51. data/app/presenters/decidim/initiatives/admin_log/initiatives_settings_presenter.rb +27 -0
  52. data/app/presenters/decidim/initiatives/admin_log/initiatives_type_presenter.rb +45 -0
  53. data/app/presenters/decidim/initiatives/initiative_stats_presenter.rb +4 -2
  54. data/app/queries/decidim/initiatives/admin/admin_users.rb +1 -1
  55. data/app/queries/decidim/initiatives/admin/manageable_initiatives.rb +1 -1
  56. data/app/queries/decidim/initiatives/freetext_initiative_types.rb +1 -1
  57. data/app/queries/decidim/initiatives/initiative_types.rb +1 -1
  58. data/app/queries/decidim/initiatives/initiatives_created.rb +1 -1
  59. data/app/queries/decidim/initiatives/initiatives_promoted.rb +1 -1
  60. data/app/queries/decidim/initiatives/organization_prioritized_initiatives.rb +1 -1
  61. data/app/queries/decidim/initiatives/outdated_validating_initiatives.rb +1 -1
  62. data/app/queries/decidim/initiatives/similar_initiatives.rb +1 -1
  63. data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +1 -1
  64. data/app/queries/decidim/initiatives/user_authorizations.rb +1 -1
  65. data/app/services/decidim/initiatives/initiative_search.rb +11 -102
  66. data/app/services/decidim/initiatives/pdf_signature_example.rb +15 -16
  67. data/app/services/decidim/initiatives/status_change_notifier.rb +1 -1
  68. data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +1 -1
  69. data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +0 -2
  70. data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +0 -1
  71. data/app/views/decidim/initiatives/admin/initiatives_settings/_form.html.erb +10 -0
  72. data/app/views/decidim/initiatives/admin/initiatives_settings/edit.html.erb +6 -0
  73. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +0 -1
  74. data/app/views/decidim/initiatives/admin/initiatives_type_scopes/new.html.erb +0 -1
  75. data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +5 -1
  76. data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +0 -1
  77. data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +0 -2
  78. data/app/views/decidim/initiatives/admin/initiatives_types/new.html.erb +0 -1
  79. data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +15 -28
  80. data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +1 -1
  81. data/app/views/decidim/initiatives/initiatives/_author.html.erb +1 -1
  82. data/app/views/decidim/initiatives/initiatives/_count.html.erb +1 -1
  83. data/app/views/decidim/initiatives/initiatives/_filters.html.erb +5 -5
  84. data/app/views/decidim/initiatives/initiatives/_form.html.erb +26 -30
  85. data/app/views/decidim/initiatives/initiatives/print.html.erb +2 -2
  86. data/app/views/decidim/initiatives/initiatives/show.html.erb +4 -2
  87. data/app/views/decidim/initiatives/initiatives_mailer/notify_creation.html.erb +2 -2
  88. data/app/views/layouts/decidim/_initiative_header.html.erb +1 -1
  89. data/app/views/layouts/decidim/_initiative_header_steps.html.erb +3 -1
  90. data/app/views/layouts/decidim/initiative_creation.html.erb +4 -1
  91. data/app/views/layouts/decidim/initiative_signature_creation.html.erb +4 -1
  92. data/config/locales/am-ET.yml +1 -0
  93. data/config/locales/ar.yml +14 -10
  94. data/config/locales/bg.yml +1 -0
  95. data/config/locales/ca.yml +41 -29
  96. data/config/locales/cs.yml +42 -30
  97. data/config/locales/da.yml +1 -0
  98. data/config/locales/de.yml +19 -38
  99. data/config/locales/el.yml +10 -6
  100. data/config/locales/en.yml +28 -17
  101. data/config/locales/eo.yml +1 -0
  102. data/config/locales/es-MX.yml +33 -21
  103. data/config/locales/es-PY.yml +33 -21
  104. data/config/locales/es.yml +34 -22
  105. data/config/locales/et.yml +1 -0
  106. data/config/locales/eu.yml +80 -97
  107. data/config/locales/fi-plain.yml +28 -16
  108. data/config/locales/fi.yml +29 -17
  109. data/config/locales/fr-CA.yml +20 -24
  110. data/config/locales/fr.yml +17 -21
  111. data/config/locales/ga-IE.yml +1 -0
  112. data/config/locales/gl.yml +10 -5
  113. data/config/locales/hr.yml +1 -0
  114. data/config/locales/hu.yml +29 -86
  115. data/config/locales/id-ID.yml +9 -5
  116. data/config/locales/is-IS.yml +8 -9
  117. data/config/locales/it.yml +12 -2
  118. data/config/locales/ja.yml +33 -20
  119. data/config/locales/ko.yml +1 -0
  120. data/config/locales/lb.yml +19 -15
  121. data/config/locales/lt.yml +1 -645
  122. data/config/locales/lv.yml +11 -6
  123. data/config/locales/mt.yml +1 -0
  124. data/config/locales/nl.yml +10 -5
  125. data/config/locales/no.yml +11 -1
  126. data/config/locales/om-ET.yml +1 -0
  127. data/config/locales/pl.yml +7 -3
  128. data/config/locales/pt-BR.yml +9 -6
  129. data/config/locales/pt.yml +10 -0
  130. data/config/locales/ro-RO.yml +15 -12
  131. data/config/locales/ru.yml +12 -10
  132. data/config/locales/si-LK.yml +1 -0
  133. data/config/locales/sk.yml +13 -6
  134. data/config/locales/sl.yml +1 -0
  135. data/config/locales/so-SO.yml +1 -0
  136. data/config/locales/sr-CS.yml +1 -0
  137. data/config/locales/sv.yml +15 -14
  138. data/config/locales/sw-KE.yml +1 -0
  139. data/config/locales/ti-ER.yml +1 -0
  140. data/config/locales/tr-TR.yml +12 -1
  141. data/config/locales/uk.yml +12 -10
  142. data/config/locales/val-ES.yml +1 -0
  143. data/config/locales/vi.yml +1 -0
  144. data/config/locales/zh-CN.yml +10 -6
  145. data/config/locales/zh-TW.yml +1 -616
  146. data/db/migrate/20181003082010_fix_user_groups_ids_on_initiatives.rb +3 -18
  147. data/db/migrate/20220518053612_add_comments_enabled_to_initiative_types.rb +7 -0
  148. data/db/migrate/20220527130640_create_decidim_initiatives_settings.rb +10 -0
  149. data/lib/decidim/initiatives/admin_engine.rb +17 -2
  150. data/lib/decidim/initiatives/engine.rb +1 -2
  151. data/lib/decidim/initiatives/participatory_space.rb +3 -3
  152. data/lib/decidim/initiatives/test/factories.rb +34 -1
  153. data/lib/decidim/initiatives/version.rb +1 -1
  154. data/lib/gem_overrides/origami/date.rb +47 -0
  155. metadata +29 -56
  156. data/app/controllers/decidim/initiatives/admin/exports_controller.rb +0 -14
  157. data/config/environment.rb +0 -3
  158. data/config/locales/fa-IR.yml +0 -1
  159. data/config/locales/gn-PY.yml +0 -1
  160. data/config/locales/ka-GE.yml +0 -1
  161. data/config/locales/kaa.yml +0 -1
  162. data/config/locales/lo-LA.yml +0 -1
  163. data/config/locales/oc-FR.yml +0 -1
  164. data/config/locales/sq-AL.yml +0 -1
  165. data/config/locales/th-TH.yml +0 -1
@@ -1,14 +1,10 @@
1
+ ---
1
2
  cs:
2
3
  activemodel:
3
4
  attributes:
4
5
  initiative:
5
- answer: Odpověď
6
- answer_url: URL odpovědi
7
- area_id: Oblast
8
- decidim_scope_id: Oblast působnosti
9
6
  decidim_user_group_id: Autor
10
7
  description: Popis
11
- hashtag: Hashtag
12
8
  offline_votes: Osobní fyzické podpisy
13
9
  offline_votes_for_scope: Podepsané osoby pro %{scope_name}
14
10
  scope_id: Rozsah
@@ -17,21 +13,19 @@ cs:
17
13
  signature_type: Typ sbírky podpisu
18
14
  signature_type_values:
19
15
  any: Online nebo naživo
20
- offline: Osobně
16
+ offline: Z očí do očí
21
17
  online: OnLine
22
18
  state: Stav
23
19
  title: Titul
24
- type_id: Typ
25
20
  initiatives_committee_member:
26
21
  user: Člen výboru
27
- initiatives_settings:
28
- initiatives_order: Pořadí
29
22
  initiatives_type:
30
23
  area_enabled: Povolit autorům vybrat tematickou oblast pro jejich iniciativu
31
24
  attachments_enabled: Povolit přílohy
32
25
  banner_image: Obrázek banneru
33
26
  child_scope_threshold_enabled: Povolit podpisy podřízené oblasti působnosti
34
- collect_user_extra_fields: Shromažďovat osobní údaje účastníků při podpisu
27
+ collect_user_extra_fields: Sbírejte osobní údaje uživatelů podpisem
28
+ comments_enabled: Povolit komentáře
35
29
  custom_signature_end_date_enabled: Povolit autorům zvolit konec doby sběru podpisů
36
30
  description: Popis
37
31
  document_number_authorization_handler: Autorizace k ověření čísla dokumentu pro podpisy
@@ -40,13 +34,9 @@ cs:
40
34
  online_signature_enabled: Online podpis povolen
41
35
  only_global_scope_enabled: Umožnit pouze vytvoření iniciativ globálního rozsahu
42
36
  promoting_committee_enabled: Povolit podporu výboru
43
- signature_type: Typ podpisu
44
37
  title: Titul
45
38
  undo_online_signatures_enabled: Povolit účastníkům vrátit zpět své online podpisy
46
39
  validate_sms_code_on_votes: Přidejte krok ověření SMS kódu do procesu podpisu
47
- initiatives_type_scope:
48
- decidim_scopes_id: Oblasti působnosti
49
- supports_required: Potřebné podpory
50
40
  initiatives_vote:
51
41
  date_of_birth: Datum narození
52
42
  document_number: Číslo dokumentu
@@ -67,10 +57,10 @@ cs:
67
57
  activerecord:
68
58
  models:
69
59
  decidim/initiative:
70
- one: Iniciativa
60
+ one: Initativní
71
61
  few: Iniciativy
72
- many: Iniciativ
73
- other: Iniciativ
62
+ many: Iniciativy
63
+ other: Iniciativy
74
64
  decidim/initiative_comittee:
75
65
  one: Výbor
76
66
  few: Výbory
@@ -102,12 +92,17 @@ cs:
102
92
  label: Typ
103
93
  search_placeholder:
104
94
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Hledat %{collection} podle názvu, popisu, ID nebo jména autora.
95
+ initiatives_settings:
96
+ update:
97
+ error: Došlo k chybě
98
+ success: Nastavení iniciativ bylo úspěšně aktualizováno
105
99
  menu:
106
100
  attachments: Přílohy
107
101
  committee_members: Členové výboru
108
102
  components: Komponenty
109
103
  information: Informace
110
104
  initiatives: Iniciativy
105
+ initiatives_settings: Nastavení
111
106
  initiatives_types: Typy iniciativ
112
107
  moderations: Moderování
113
108
  models:
@@ -259,6 +254,16 @@ cs:
259
254
  update:
260
255
  error: Došlo k chybě
261
256
  success: Iniciativa občanů byla úspěšně aktualizována
257
+ initiatives_settings:
258
+ edit:
259
+ update: Aktualizovat
260
+ form:
261
+ comments: Nejvíce komentované
262
+ date: Nejnovější
263
+ publication_date: Nedávno publikované
264
+ random: Náhodně
265
+ signatures: S nejvíce podpisy
266
+ title: Nastavení pro iniciativy
262
267
  initiatives_type_scopes:
263
268
  create:
264
269
  error: Došlo k chybě
@@ -290,8 +295,8 @@ cs:
290
295
  update: Aktualizovat
291
296
  form:
292
297
  authorizations: Nastavení autorizace
293
- child_scope_threshold_enabled_help: 'Tento příznak konfigurace nepodporuje offline hlasování, umožňuje podřízené oblasti působnosti a pracuje s obslužnou rutinou autorizace, která uživateli přiřazuje rozsah, Ujistěte se, že jste vybrali tuto autorizaci, níže v nastavení autorizace. Aby fungovala obblast působnosti, musí být nastavena hierarchickým způsobem: 1 nadřazený - N podřazených. Více informací o tom, jak tato konfigurace funguje, naleznete na tomto <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">odkazu</a>.'
294
- only_global_scope_enabled_help: Zaškrtněte tento příznak, pokud jste povolili "Podřazený rozsah" a nakonfigurovali globální rozsah jako váš nadřazený rozsah. Povolením této možnosti bude výběr typu iniciativy přeskočeno v průvodci vytvořením iniciativy. Více informací o tom, jak funguje tato konfigurace, naleznete v tomto <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">odkazu</a>.
298
+ child_scope_threshold_enabled_help: 'Tento konfigurační příznak nepodporuje offline hlasování. Umožňuje podrozsahy a pracuje s obslužnou rutinou autorizace, která uživateli přiřazuje rozsah. Ujistěte se, že jste vybrali toto oprávnění níže v nastavení oprávnění. Aby to fungovalo, musí být rozsahy nakonfigurovány hierarchickým způsobem: 1 nadřazený N podřízený. Další informace o tom, jak tato konfigurace funguje, najdete na <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">stránce dokumentace pro administraci iniciativ</a>.'
299
+ only_global_scope_enabled_help: Zaškrtněte tuto poznámku, pokud jste povolili "Podřazená oblast působnosti" a nakonfigurovali globální rozsah jako vaši nadřazenou oblast působnosti. Povolením této možnosti bude výběr typu iniciativy přeskočeno v průvodci vytvořením iniciativy. Více informací o tom, jak tato konfigurace funguje, naleznete na tomto <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">odkazu</a>.
295
300
  options: Možnosti
296
301
  title: Obecná informace
297
302
  initiative_type_scopes:
@@ -308,6 +313,12 @@ cs:
308
313
  send_to_technical_validation: "%{user_name} zaslala %{resource_name} iniciativu k technickému ověření"
309
314
  unpublish: "%{user_name} zrušil iniciativu %{resource_name}"
310
315
  update: "%{user_name} aktualizoval iniciativu %{resource_name}"
316
+ initiatives_settings:
317
+ update: "%{user_name} aktualizoval nastavení iniciativ"
318
+ initiatives_type:
319
+ create: "%{user_name} vytvořil typ iniciativ %{resource_name}"
320
+ delete: "%{user_name} odstranil typ iniciativ %{resource_name}"
321
+ update: "%{user_name} aktualizoval typ iniciativ %{resource_name}"
311
322
  admin_states:
312
323
  accepted: Dostatek podpisů
313
324
  created: Vytvořeno
@@ -325,7 +336,7 @@ cs:
325
336
  all: Vše
326
337
  answered: Odpovězeno
327
338
  closed: Uzavřeno
328
- open: Otevřeno
339
+ open: otevřeno
329
340
  rejected: Nedostatek podpisů
330
341
  filter_type_values:
331
342
  all: Vše
@@ -341,13 +352,13 @@ cs:
341
352
  success: Vaše žádost byla zaslána autorovi iniciativy.
342
353
  content_blocks:
343
354
  highlighted_initiatives:
344
- name: Zvýrazněné iniciativy
355
+ name: Zdůrazněné iniciativy
345
356
  create_initiative:
346
357
  fill_data:
347
358
  back: Zpět
348
359
  continue: Pokračovat
349
- decidim_user_group_id_help: Po vytvoření není možné změnit autoritu iniciativy
350
360
  fill_data_help: "<ul> <li>Přečtěte si obsah vaší iniciativy. Je váš název snadno srozumitelný? Je cíl vaší iniciativy jasný?</li> <li>Musíte zvolit typ podpisu. Osobní, on-line nebo kombinace obou</li> <li>Jaká je geografická oblast působnosti?</li> </ul>"
361
+ initiative_type: Typ iniciativy
351
362
  more_information: "(Více informací)"
352
363
  select_area: Vybrat oblast
353
364
  select_scope: Zvolte rozsah
@@ -425,10 +436,9 @@ cs:
425
436
  form:
426
437
  add_attachments: Dokumenty
427
438
  attachment_legend: "(Volitelné) Přidat přílohu"
428
- delete_attachment: Odstranit
439
+ delete_attachment: Smazat
429
440
  index:
430
441
  title: Iniciativy
431
- uninitialized: Iniciativy ještě nejsou nakonfigurovány správcem
432
442
  initiative_signatures:
433
443
  fill_personal_data:
434
444
  continue: Pokračovat
@@ -467,10 +477,10 @@ cs:
467
477
  other: a %{count} dalších lidí
468
478
  committee_members:
469
479
  approve: Schválit
470
- confirm_revoke: Jste si jisti?
480
+ confirm_revoke: Jste si jist?
471
481
  invite_to_committee_help: Sdílejte tento odkaz pro pozvání ostatních účastníků do propagačního výboru
472
482
  no_members_yet: V propagačním výboru nejsou žádní členové
473
- revoke: Zrušit
483
+ revoke: Odvolat
474
484
  title: Členové výboru
475
485
  count:
476
486
  title:
@@ -562,10 +572,10 @@ cs:
562
572
  votes_blocked: Podpis zakázán
563
573
  votes_count:
564
574
  count:
565
- one: Podpis
566
- few: Podpisy
567
- many: Podpisů
568
- other: Podpisů
575
+ one: PODPIS
576
+ few: PODPISY
577
+ many: PODPISY
578
+ other: PODPISY
569
579
  most_popular_initiative: Nejoblíbenější iniciativa
570
580
  need_more_votes: Potřebujete další podpisy
571
581
  initiatives_mailer:
@@ -594,6 +604,8 @@ cs:
594
604
  published: Publikováno
595
605
  rejected: Nedostatek podpisů
596
606
  validating: Technické ověření
607
+ signature_interval:
608
+ title: Doba sběru podpisů
597
609
  states:
598
610
  accepted: Přijato
599
611
  expired: Platnost vypršela
@@ -1 +1,2 @@
1
+ ---
1
2
  da:
@@ -1,14 +1,10 @@
1
+ ---
1
2
  de:
2
3
  activemodel:
3
4
  attributes:
4
5
  initiative:
5
- answer: Antwort
6
- answer_url: Antwort-URL
7
- area_id: Gebiet
8
- decidim_scope_id: Thema
9
6
  decidim_user_group_id: Autor
10
7
  description: Beschreibung
11
- hashtag: Hashtag
12
8
  offline_votes: Face-to-Face-Unterstützung
13
9
  offline_votes_for_scope: Persönliche Unterschriften für %{scope_name}
14
10
  scope_id: Umfang
@@ -21,11 +17,8 @@ de:
21
17
  online: Online
22
18
  state: Zustand
23
19
  title: Titel
24
- type_id: Typ
25
20
  initiatives_committee_member:
26
21
  user: Ausschussmitglied
27
- initiatives_settings:
28
- initiatives_order: Reihenfolge
29
22
  initiatives_type:
30
23
  area_enabled: Die Auswahl des Bereichs von Initiativen für Autoren freigeben
31
24
  attachments_enabled: Anhänge freigeben
@@ -40,13 +33,9 @@ de:
40
33
  online_signature_enabled: Online-Signatur aktiviert
41
34
  only_global_scope_enabled: Nur die Erstellung globaler Initiativen zulassen
42
35
  promoting_committee_enabled: Förderkomitee freigeben
43
- signature_type: Unterschrifttyp
44
36
  title: Titel
45
37
  undo_online_signatures_enabled: Ermöglichen Sie Benutzern, ihre Online-Signaturen rückgängig zu machen
46
38
  validate_sms_code_on_votes: Fügen Sie dem Signaturprozess einen SMS-Validierungsschritt hinzu
47
- initiatives_type_scope:
48
- decidim_scopes_id: Themen
49
- supports_required: Erforderliche Unterstützungen
50
39
  initiatives_vote:
51
40
  date_of_birth: Geburtsdatum
52
41
  document_number: Dokumentnummer
@@ -67,7 +56,7 @@ de:
67
56
  activerecord:
68
57
  models:
69
58
  decidim/initiative:
70
- one: Initiative
59
+ one: Initativ
71
60
  other: Initiativen
72
61
  decidim/initiative_comittee:
73
62
  one: Komitee
@@ -107,8 +96,8 @@ de:
107
96
  models:
108
97
  initiatives:
109
98
  fields:
110
- created_at: Erstellt am
111
- id: ID
99
+ created_at: Hergestellt in
100
+ id: ICH WÜRDE
112
101
  published_at: Veröffentlicht am
113
102
  state: Zustand
114
103
  supports_count: Unterschriften
@@ -120,7 +109,7 @@ de:
120
109
  name: Typ der Initiative
121
110
  initiatives_types:
122
111
  fields:
123
- created_at: Erstellt am
112
+ created_at: Hergestellt in
124
113
  title: Arten von Initiativen
125
114
  name: Art der Initiative
126
115
  initiatives_votes:
@@ -183,7 +172,7 @@ de:
183
172
  - Befolgen Sie die Schritte, um eine neue Initiative zu erstellen
184
173
  description: Dieses Abzeichen wird gewährt, wenn Sie neue Initiativen starten und mit anderen zusammenarbeiten, um sie durchzuführen.
185
174
  description_another: Dieser Benutzer hat %{score} Initiativen veröffentlicht.
186
- description_own: Sie haben %{score} Initiativen veröffentlicht.
175
+ description_own: Du hast %{score} Initiativen veröffentlicht.
187
176
  name: Veröffentlichte Initiativen
188
177
  next_level_in: Holen Sie sich %{score} weitere Initiativen veröffentlicht, um das nächste Level zu erreichen!
189
178
  unearned_another: Dieser Benutzer hat noch keine Initiativen veröffentlicht.
@@ -203,7 +192,7 @@ de:
203
192
  answer: Antworten
204
193
  title: Antwort für %{title}
205
194
  info_initiative:
206
- created_at: Erstellt am
195
+ created_at: Hergestellt in
207
196
  description: Beschreibung
208
197
  initiative_votes_count: Stimmen zählen
209
198
  initiatives: Initiativen
@@ -211,7 +200,7 @@ de:
211
200
  committee_requests:
212
201
  index:
213
202
  approve: Genehmigen
214
- confirm_revoke: Sind Sie sicher?
203
+ confirm_revoke: Bist du sicher?
215
204
  invite_to_committee_help: Teilen Sie diesen Link, um andere Benutzer zum Promotionskomitee einzuladen
216
205
  no_members_yet: Es gibt keine Mitglieder im Promoter-Ausschuss
217
206
  revoke: Widerrufen
@@ -228,8 +217,8 @@ de:
228
217
  initiatives:
229
218
  edit:
230
219
  accept: Initiative akzeptieren
231
- confirm: Sind Sie sich sicher?
232
- confirm_send_to_technical_validation: Sind Sie sich sicher?
220
+ confirm: Bist du sicher?
221
+ confirm_send_to_technical_validation: Sind Sie sicher?
233
222
  discard: Verwerfen Sie die Initiative
234
223
  export_pdf_signatures: Exportieren von PDF-Signaturen
235
224
  export_votes: Export unterstützt
@@ -238,7 +227,7 @@ de:
238
227
  success: Die Initiative wurde an die technische Validierung gesendet
239
228
  update: Aktualisieren
240
229
  form:
241
- attachments: Anhänge
230
+ attachments: Beilagen
242
231
  settings: Einstellungen
243
232
  title: Allgemeine Information
244
233
  index:
@@ -261,7 +250,7 @@ de:
261
250
  success: Der Bereich wurde erfolgreich entfernt
262
251
  edit:
263
252
  back: Zurück
264
- confirm_destroy: Sind Sie sicher?
253
+ confirm_destroy: Bist du sicher?
265
254
  destroy: Löschen
266
255
  title: Initiativentyp bearbeiten
267
256
  update: Aktualisieren
@@ -279,13 +268,11 @@ de:
279
268
  destroy:
280
269
  success: Der Initiativentyp wurde erfolgreich entfernt
281
270
  edit:
282
- confirm_destroy: Sind Sie sicher?
271
+ confirm_destroy: Bist du sicher?
283
272
  destroy: Löschen
284
273
  update: Aktualisieren
285
274
  form:
286
275
  authorizations: Autorisierungseinstellungen
287
- child_scope_threshold_enabled_help: 'Diese Einstellung unterstützt keine Offline-Abstimmungen. Es aktiviert Unter-Themenbereiche und arbeitet mit einem Autorisierungs-Handler zusammen, der dem Teilnehmenden einen Themenbereich zuordnet. Stellen Sie sicher, dass Sie diese Autorisierung unten in den Autorisierungseinstellungen auswählen. Hierfür müssen die Themenbereiche auf hierarchische Weise konfiguriert werden: 1 Überthema - N Unterthemen. Weitere Informationen wie diese Konfiguration funktioniert, finden Sie unter diesem <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">Link</a>.'
288
- only_global_scope_enabled_help: Aktivieren Sie diese Einstellung, wenn Sie "Unterthemen-Signaturen" aktiviert haben und den globalen Themenbereich als Ihren Elternbereich konfiguriert haben. Dadurch wird die Auswahl des Initialtyps im Assistenten zur Erstellung der Initiative übersprungen. Weitere Informationen darüber, wie diese Konfiguration funktioniert, finden Sie <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">hier</a>.
289
276
  options: Optionen
290
277
  title: Allgemeine Information
291
278
  initiative_type_scopes:
@@ -340,8 +327,8 @@ de:
340
327
  fill_data:
341
328
  back: Zurück
342
329
  continue: Fortsetzen
343
- decidim_user_group_id_help: Es ist nicht möglich, die Autorschaft der Initiative nach der Erstellung zu ändern
344
330
  fill_data_help: "<ul> <li>Inhalt Ihrer Initiative überprüfen. Ist Ihr Titel leicht verständlich? Ist das Ziel Ihrer Initiative klar?</li> <li>Sie müssen die Art der Unterschrift wählen. Persönlich, online oder eine Kombination aus beidem</li> <li>Was ist die geografische Reichweite der Initiative? Stadt, Bezirk?</li> </ul>"
331
+ initiative_type: Art der Initiative
345
332
  more_information: "(Weitere Informationen)"
346
333
  select_area: Wählen Sie einen Bereich aus
347
334
  select_scope: Wählen Sie einen Bereich aus
@@ -383,7 +370,7 @@ de:
383
370
  edit:
384
371
  accept: Initiative akzeptieren
385
372
  back: Zurück
386
- confirm: Sind Sie sich sicher?
373
+ confirm: Bist du dir sicher?
387
374
  discard: Initiative verwerfen
388
375
  export_pdf_signatures: PDF der Unterschriften exportieren
389
376
  export_votes: Unterschriften exportieren
@@ -417,12 +404,10 @@ de:
417
404
  email_subject: "%{applicant_nickname} möchte Ihrer Initiative beitreten"
418
405
  notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> hat sich für das Promoter-Komittee Ihrer Initiative <a href="%{resource_url}">%{resource_title}</a> beworben. Um anzunehmen oder abzulehnen, klicken Sie <a href="%{resource_url}/edit">hier</a>.
419
406
  form:
420
- add_attachments: Unterlagen
421
- attachment_legend: "(Optional) Anhang hinzufügen"
407
+ add_attachments: Dokumente
422
408
  delete_attachment: Löschen
423
409
  index:
424
410
  title: Initiativen
425
- uninitialized: Initiativen sind noch nicht von einem Admin konfiguriert
426
411
  initiative_signatures:
427
412
  fill_personal_data:
428
413
  continue: Fortsetzen
@@ -459,7 +444,7 @@ de:
459
444
  other: und %{count} weitere Leute
460
445
  committee_members:
461
446
  approve: Genehmigen
462
- confirm_revoke: Sind Sie sicher?
447
+ confirm_revoke: Bist du dir sicher?
463
448
  invite_to_committee_help: Teilen Sie diesen Link, um andere Benutzer zum Promotionskomitee einzuladen
464
449
  no_members_yet: Es gibt keine Mitglieder im Promoter-Ausschuss
465
450
  revoke: Widerrufen
@@ -518,7 +503,6 @@ de:
518
503
  title: 'Titel:'
519
504
  type: Art der Initiative
520
505
  legal_text: Die erhobenen personenbezogenen Daten werden von der Organisation entsprechend der geltenden Gesetzgebung vertraulich behandelt und aufgenommen.
521
- members_header: Mitglieder des Unterstützungskomitees der Initiative
522
506
  phone_number: Telefonnummer
523
507
  place_date: Ort, Datum
524
508
  postal_code: Postleitzahl
@@ -569,7 +553,7 @@ de:
569
553
  home:
570
554
  highlighted_initiatives:
571
555
  active_initiatives: Aktive Initiativen
572
- see_all_initiatives: Alle Initiativen anzeigen
556
+ see_all_initiatives: Sehen Sie alle Initiativen
573
557
  show:
574
558
  badge_name:
575
559
  accepted: Ausreichend Unterschriften
@@ -591,9 +575,6 @@ de:
591
575
  menu:
592
576
  initiatives: Initiativen
593
577
  resources:
594
- initiative:
595
- actions:
596
- comment: Kommentar
597
578
  initiatives_type:
598
579
  actions:
599
580
  title: Aktionen
@@ -625,7 +606,7 @@ de:
625
606
  title: Zeichen %{initiative_title}
626
607
  initiatives:
627
608
  initiative:
628
- check: Mehr erfahren
609
+ check: Hör zu
629
610
  check_and_support: Überprüfe es und unterschreibe es
630
611
  no_initiatives_yet:
631
612
  no_initiatives_yet: Keine Initiativen bisher!
@@ -1,3 +1,4 @@
1
+ ---
1
2
  el:
2
3
  activemodel:
3
4
  attributes:
@@ -51,6 +52,9 @@ el:
51
52
  title: Ο τίτλος δεν πρέπει να είναι κενός
52
53
  activerecord:
53
54
  models:
55
+ decidim/initiative:
56
+ one: Πρωτοβουλία
57
+ other: Πρωτοβουλίες
54
58
  decidim/initiative_comittee:
55
59
  one: Επιτροπή
56
60
  other: Επιτροπές
@@ -281,6 +285,7 @@ el:
281
285
  fill_data:
282
286
  back: Πίσω
283
287
  continue: Συνέχεια
288
+ initiative_type: Τύπος πρωτοβουλίας
284
289
  more_information: "(Περισσότερες πληροφορίες)"
285
290
  select_area: Επιλέξτε τομέα
286
291
  select_scope: Επιλέξτε πεδίο εφαρμογής
@@ -321,9 +326,6 @@ el:
321
326
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_nickname}. Μπορείτε να διακόψετε τη λήψη ειδοποιήσεων ακολουθώντας τον προηγούμενο σύνδεσμο.
322
327
  email_subject: Η πρωτοβουλία επιδοκιμάστηκε από τον συντάκτη %{author_nickname}
323
328
  notification_title: Η <a href="%{resource_path}">%{resource_title}</a> πρωτοβουλία επιδοκιμάστηκε από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
324
- form:
325
- add_attachments: Έγγραφα
326
- delete_attachment: Διαγραφή
327
329
  index:
328
330
  title: Πρωτοβουλίες
329
331
  initiative_signatures:
@@ -360,9 +362,6 @@ el:
360
362
  hidden_authors_count:
361
363
  one: και 1 ακόμη άτομο
362
364
  other: και %{count} ακόμη άτομα
363
- committee_members:
364
- confirm_revoke: Είστε βέβαιοι;
365
- revoke: Ανάκληση
366
365
  count:
367
366
  title:
368
367
  one: "%{count} πρωτοβουλία"
@@ -429,6 +428,11 @@ el:
429
428
  status_change_for: Η κατάσταση της πρωτοβουλίας %{title} άλλαξε
430
429
  last_activity:
431
430
  new_initiative: Νέα πρωτοβουλία
431
+ pages:
432
+ home:
433
+ highlighted_initiatives:
434
+ active_initiatives: Ενεργές πρωτοβουλίες
435
+ see_all_initiatives: Δείτε όλες τις πρωτοβουλίες
432
436
  show:
433
437
  badge_name:
434
438
  accepted: Αρκετές υπογραφές
@@ -3,13 +3,8 @@ en:
3
3
  activemodel:
4
4
  attributes:
5
5
  initiative:
6
- answer: Answer
7
- answer_url: Answer URL
8
- area_id: Area
9
- decidim_scope_id: Scope
10
6
  decidim_user_group_id: Author
11
7
  description: Description
12
- hashtag: Hashtag
13
8
  offline_votes: In-person signatures
14
9
  offline_votes_for_scope: In-person signatures for %{scope_name}
15
10
  scope_id: Scope
@@ -22,17 +17,15 @@ en:
22
17
  online: Online
23
18
  state: Status
24
19
  title: Title
25
- type_id: Type
26
20
  initiatives_committee_member:
27
21
  user: Committee member
28
- initiatives_settings:
29
- initiatives_order: Order
30
22
  initiatives_type:
31
23
  area_enabled: Enable authors to choose the area for their initiative
32
24
  attachments_enabled: Enable attachments
33
25
  banner_image: Banner image
34
26
  child_scope_threshold_enabled: Enable child scope signatures
35
27
  collect_user_extra_fields: Collect participant personal data on signature
28
+ comments_enabled: Enable comments
36
29
  custom_signature_end_date_enabled: Enable authors to choose the end of signature collection period
37
30
  description: Description
38
31
  document_number_authorization_handler: Authorization to verify document number on signatures
@@ -41,13 +34,9 @@ en:
41
34
  online_signature_enabled: Online signature enabled
42
35
  only_global_scope_enabled: Only allow global scope initiatives creation
43
36
  promoting_committee_enabled: Enable promoting committee
44
- signature_type: Signature type
45
37
  title: Title
46
38
  undo_online_signatures_enabled: Enable participants to undo their online signatures
47
39
  validate_sms_code_on_votes: Add SMS code validation step to signature process
48
- initiatives_type_scope:
49
- decidim_scopes_id: Scopes
50
- supports_required: Supports required
51
40
  initiatives_vote:
52
41
  date_of_birth: Date of birth
53
42
  document_number: Document number
@@ -68,8 +57,8 @@ en:
68
57
  activerecord:
69
58
  models:
70
59
  decidim/initiative:
71
- one: Initiative
72
- other: Initiatives
60
+ one: Initative
61
+ other: Initatives
73
62
  decidim/initiative_comittee:
74
63
  one: Comittee
75
64
  other: Comittees
@@ -97,12 +86,17 @@ en:
97
86
  label: Type
98
87
  search_placeholder:
99
88
  title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Search %{collection} by title, description, ID or author name.
89
+ initiatives_settings:
90
+ update:
91
+ error: An error has occured
92
+ success: The initiatives settings have been successfully updated
100
93
  menu:
101
94
  attachments: Attachments
102
95
  committee_members: Committee members
103
96
  components: Components
104
97
  information: Information
105
98
  initiatives: Initiatives
99
+ initiatives_settings: Settings
106
100
  initiatives_types: Initiative types
107
101
  moderations: Moderations
108
102
  models:
@@ -254,6 +248,16 @@ en:
254
248
  update:
255
249
  error: An error has occurred
256
250
  success: The initiative has been successfully updated
251
+ initiatives_settings:
252
+ edit:
253
+ update: Update
254
+ form:
255
+ comments: Most commented
256
+ date: Most recent
257
+ publication_date: Most recently published
258
+ random: Random
259
+ signatures: Most signed
260
+ title: Settings for initiatives
257
261
  initiatives_type_scopes:
258
262
  create:
259
263
  error: An error has occurred
@@ -285,7 +289,7 @@ en:
285
289
  update: Update
286
290
  form:
287
291
  authorizations: Authorization settings
288
- child_scope_threshold_enabled_help: 'This config flag doesn''t support offline votes, it enables sub-scopes and works with an authorization handler that associates a scope to the user, make sure you select that authorization, bellow in authorization settings. For it to work scopes need to be configured in hierarchical way : 1 Parent - N Child. For more info on how this configuration works, see this <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">link</a>.'
292
+ child_scope_threshold_enabled_help: 'This config flag doesn''t support offline votes. It enables sub-scopes and works with an authorization handler that associates a scope to the user. Make sure you select that authorization, below in authorization settings. For it to work, scopes need to be configured in a hierarchical way: 1 Parent - N Child. For more info on how this configuration works, see <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">initiatives'' admin documentation page</a>.'
289
293
  only_global_scope_enabled_help: Tick this flag if you enabled "Child scope signature" and configured the global scope as your parent scope. By enabling this, initiative type selection will be skipped in the initiative creation wizard. For more info on how this configuration works, see this <a href="https://docs.decidim.org/en/admin/spaces/initiatives/" target="_blank">link</a>.
290
294
  options: Options
291
295
  title: General information
@@ -303,6 +307,12 @@ en:
303
307
  send_to_technical_validation: "%{user_name} sent the %{resource_name} initiative to technical validation"
304
308
  unpublish: "%{user_name} discarded the %{resource_name} initiative"
305
309
  update: "%{user_name} updated the %{resource_name} initiative"
310
+ initiatives_settings:
311
+ update: "%{user_name} updated the initiatives settings"
312
+ initiatives_type:
313
+ create: "%{user_name} created the %{resource_name} initiatives type"
314
+ delete: "%{user_name} deleted the %{resource_name} initiatives type"
315
+ update: "%{user_name} updated the %{resource_name} initiatives type"
306
316
  admin_states:
307
317
  accepted: Enough signatures
308
318
  created: Created
@@ -341,8 +351,8 @@ en:
341
351
  fill_data:
342
352
  back: Back
343
353
  continue: Continue
344
- decidim_user_group_id_help: It's not possible to change initiative authorship after creation
345
354
  fill_data_help: "<ul> <li>Review the content of your initiative. Is your title easy to understand? Is the objective of your initiative clear?</li> <li>You have to choose the type of signature. In-person, online or a combination of both</li> <li>Which is the geographic scope of the initiative?</li> </ul>"
355
+ initiative_type: Initiative type
346
356
  more_information: "(More information)"
347
357
  select_area: Select an area
348
358
  select_scope: Select a scope
@@ -423,7 +433,6 @@ en:
423
433
  delete_attachment: Delete
424
434
  index:
425
435
  title: Initiatives
426
- uninitialized: Initiatives are not yet configured by an administrator
427
436
  initiative_signatures:
428
437
  fill_personal_data:
429
438
  continue: Continue
@@ -579,6 +588,8 @@ en:
579
588
  published: Published
580
589
  rejected: Not enough signatures
581
590
  validating: Technical validation
591
+ signature_interval:
592
+ title: Signature collection period
582
593
  states:
583
594
  accepted: Accepted
584
595
  expired: Expired
@@ -1 +1,2 @@
1
+ ---
1
2
  eo: