decidim-proposals 0.26.4 → 0.27.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (141) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/proposals/highlighted_proposals_for_component_cell.rb +9 -1
  3. data/app/cells/decidim/proposals/proposal_m_cell.rb +6 -8
  4. data/app/commands/decidim/proposals/accept_access_to_collaborative_draft.rb +1 -1
  5. data/app/commands/decidim/proposals/admin/answer_proposal.rb +1 -1
  6. data/app/commands/decidim/proposals/admin/assign_proposals_to_valuator.rb +1 -1
  7. data/app/commands/decidim/proposals/admin/create_proposal.rb +8 -2
  8. data/app/commands/decidim/proposals/admin/create_proposal_note.rb +2 -2
  9. data/app/commands/decidim/proposals/admin/discard_participatory_text.rb +1 -1
  10. data/app/commands/decidim/proposals/admin/import_participatory_text.rb +1 -1
  11. data/app/commands/decidim/proposals/admin/import_proposals.rb +2 -5
  12. data/app/commands/decidim/proposals/admin/merge_proposals.rb +1 -1
  13. data/app/commands/decidim/proposals/admin/notify_proposal_answer.rb +1 -1
  14. data/app/commands/decidim/proposals/admin/publish_answers.rb +1 -1
  15. data/app/commands/decidim/proposals/admin/split_proposals.rb +1 -1
  16. data/app/commands/decidim/proposals/admin/unassign_proposals_from_valuator.rb +1 -1
  17. data/app/commands/decidim/proposals/admin/update_participatory_text.rb +1 -1
  18. data/app/commands/decidim/proposals/admin/update_proposal.rb +8 -2
  19. data/app/commands/decidim/proposals/admin/update_proposal_category.rb +5 -3
  20. data/app/commands/decidim/proposals/admin/update_proposal_scope.rb +3 -3
  21. data/app/commands/decidim/proposals/create_collaborative_draft.rb +5 -5
  22. data/app/commands/decidim/proposals/create_proposal.rb +1 -1
  23. data/app/commands/decidim/proposals/destroy_proposal.rb +1 -1
  24. data/app/commands/decidim/proposals/publish_collaborative_draft.rb +1 -1
  25. data/app/commands/decidim/proposals/publish_proposal.rb +1 -1
  26. data/app/commands/decidim/proposals/reject_access_to_collaborative_draft.rb +1 -1
  27. data/app/commands/decidim/proposals/request_access_to_collaborative_draft.rb +1 -1
  28. data/app/commands/decidim/proposals/unvote_proposal.rb +1 -1
  29. data/app/commands/decidim/proposals/update_collaborative_draft.rb +1 -1
  30. data/app/commands/decidim/proposals/update_proposal.rb +8 -2
  31. data/app/commands/decidim/proposals/vote_proposal.rb +1 -1
  32. data/app/commands/decidim/proposals/withdraw_collaborative_draft.rb +1 -1
  33. data/app/commands/decidim/proposals/withdraw_proposal.rb +1 -1
  34. data/app/controllers/concerns/decidim/proposals/orderable.rb +7 -5
  35. data/app/controllers/decidim/proposals/admin/proposals_controller.rb +7 -7
  36. data/app/controllers/decidim/proposals/collaborative_drafts_controller.rb +10 -10
  37. data/app/controllers/decidim/proposals/proposal_votes_controller.rb +1 -1
  38. data/app/controllers/decidim/proposals/proposals_controller.rb +25 -18
  39. data/app/events/decidim/proposals/publish_proposal_event.rb +0 -8
  40. data/app/forms/decidim/proposals/admin/import_participatory_text_form.rb +4 -4
  41. data/app/forms/decidim/proposals/admin/proposal_base_form.rb +4 -4
  42. data/app/forms/decidim/proposals/admin/proposal_form.rb +2 -0
  43. data/app/forms/decidim/proposals/admin/proposals_fork_form.rb +2 -2
  44. data/app/forms/decidim/proposals/admin/proposals_import_form.rb +1 -1
  45. data/app/forms/decidim/proposals/proposal_form.rb +11 -4
  46. data/app/forms/decidim/proposals/proposal_wizard_create_step_form.rb +3 -0
  47. data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +4 -0
  48. data/app/helpers/decidim/proposals/application_helper.rb +4 -6
  49. data/app/helpers/decidim/proposals/proposal_cells_helper.rb +1 -3
  50. data/app/helpers/decidim/proposals/proposal_wizard_helper.rb +7 -7
  51. data/app/jobs/decidim/proposals/notify_proposals_mentioned_job.rb +1 -1
  52. data/app/models/decidim/proposals/collaborative_draft.rb +10 -0
  53. data/app/models/decidim/proposals/collaborative_draft_collaborator_request.rb +0 -2
  54. data/app/models/decidim/proposals/proposal.rb +47 -8
  55. data/app/queries/decidim/proposals/filtered_proposals.rb +1 -1
  56. data/app/queries/decidim/proposals/similar_proposals.rb +1 -1
  57. data/app/services/decidim/proposals/proposal_search.rb +16 -71
  58. data/app/validators/proposal_length_validator.rb +2 -5
  59. data/app/views/decidim/proposals/admin/proposals/_form.html.erb +1 -1
  60. data/app/views/decidim/proposals/admin/proposals/_proposal-tr.html.erb +2 -2
  61. data/app/views/decidim/proposals/admin/proposals/publish_answers.js.erb +1 -1
  62. data/app/views/decidim/proposals/admin/proposals/update_attribute.js.erb +26 -0
  63. data/app/views/decidim/proposals/collaborative_drafts/_edit_form_fields.html.erb +8 -16
  64. data/app/views/decidim/proposals/collaborative_drafts/_filters.html.erb +4 -4
  65. data/app/views/decidim/proposals/collaborative_drafts/_wizard_aside.html.erb +1 -1
  66. data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +3 -1
  67. data/app/views/decidim/proposals/collaborative_drafts/new.html.erb +3 -1
  68. data/app/views/decidim/proposals/proposals/_edit_form_fields.html.erb +13 -36
  69. data/app/views/decidim/proposals/proposals/_filters.html.erb +5 -5
  70. data/app/views/decidim/proposals/proposals/_proposals.html.erb +5 -5
  71. data/app/views/decidim/proposals/proposals/complete.html.erb +3 -1
  72. data/app/views/decidim/proposals/proposals/edit.html.erb +3 -1
  73. data/app/views/decidim/proposals/proposals/edit_draft.html.erb +3 -1
  74. data/app/views/decidim/proposals/proposals/new.html.erb +3 -1
  75. data/config/locales/am-ET.yml +1 -0
  76. data/config/locales/ar.yml +3 -9
  77. data/config/locales/bg.yml +1 -4
  78. data/config/locales/ca.yml +14 -26
  79. data/config/locales/cs.yml +32 -28
  80. data/config/locales/da.yml +1 -0
  81. data/config/locales/de.yml +3 -54
  82. data/config/locales/el.yml +3 -6
  83. data/config/locales/en.yml +12 -25
  84. data/config/locales/eo.yml +1 -0
  85. data/config/locales/es-MX.yml +13 -25
  86. data/config/locales/es-PY.yml +13 -25
  87. data/config/locales/es.yml +12 -24
  88. data/config/locales/et.yml +1 -0
  89. data/config/locales/eu.yml +3 -10
  90. data/config/locales/fi-plain.yml +12 -23
  91. data/config/locales/fi.yml +12 -23
  92. data/config/locales/fr-CA.yml +12 -25
  93. data/config/locales/fr.yml +12 -25
  94. data/config/locales/ga-IE.yml +1 -2
  95. data/config/locales/gl.yml +12 -9
  96. data/config/locales/hr.yml +1 -0
  97. data/config/locales/hu.yml +10 -9
  98. data/config/locales/id-ID.yml +3 -5
  99. data/config/locales/is-IS.yml +2 -2
  100. data/config/locales/it.yml +4 -9
  101. data/config/locales/ja.yml +53 -49
  102. data/config/locales/ko.yml +1 -0
  103. data/config/locales/lb.yml +1 -0
  104. data/config/locales/lt.yml +1 -988
  105. data/config/locales/lv.yml +3 -6
  106. data/config/locales/mt.yml +1 -0
  107. data/config/locales/nl.yml +7 -9
  108. data/config/locales/no.yml +3 -6
  109. data/config/locales/om-ET.yml +1 -0
  110. data/config/locales/pl.yml +3 -9
  111. data/config/locales/pt-BR.yml +4 -10
  112. data/config/locales/pt.yml +3 -9
  113. data/config/locales/ro-RO.yml +7 -9
  114. data/config/locales/ru.yml +1 -1
  115. data/config/locales/si-LK.yml +1 -0
  116. data/config/locales/sk.yml +3 -6
  117. data/config/locales/sl.yml +1 -0
  118. data/config/locales/so-SO.yml +1 -0
  119. data/config/locales/sr-CS.yml +1 -2
  120. data/config/locales/sv.yml +10 -9
  121. data/config/locales/sw-KE.yml +1 -0
  122. data/config/locales/ti-ER.yml +1 -0
  123. data/config/locales/tr-TR.yml +3 -9
  124. data/config/locales/uk.yml +1 -1
  125. data/config/locales/val-ES.yml +1 -0
  126. data/config/locales/vi.yml +1 -0
  127. data/config/locales/zh-CN.yml +3 -9
  128. data/config/locales/zh-TW.yml +1 -0
  129. data/db/migrate/20180529110230_move_authorships_to_coauthorships.rb +1 -0
  130. data/lib/decidim/proposals/component.rb +19 -14
  131. data/lib/decidim/proposals/import/proposal_answer_creator.rb +21 -19
  132. data/lib/decidim/proposals/test/factories.rb +1 -1
  133. data/lib/decidim/proposals/version.rb +1 -1
  134. metadata +25 -31
  135. data/app/services/decidim/proposals/collaborative_draft_search.rb +0 -59
  136. data/app/views/decidim/proposals/admin/proposals/_js-callout.html.erb +0 -6
  137. data/app/views/decidim/proposals/admin/proposals/update_category.js.erb +0 -26
  138. data/app/views/decidim/proposals/admin/proposals/update_scope.js.erb +0 -27
  139. data/config/locales/gn-PY.yml +0 -1
  140. data/config/locales/lo-LA.yml +0 -1
  141. data/config/locales/oc-FR.yml +0 -1
@@ -1,3 +1,4 @@
1
+ ---
1
2
  lv:
2
3
  activemodel:
3
4
  attributes:
@@ -36,10 +37,6 @@ lv:
36
37
  valuator_role_id: Vērtētāja vārds
37
38
  errors:
38
39
  models:
39
- participatory_text:
40
- attributes:
41
- document:
42
- invalid_document_type: 'Nederīgs dokumenta tips. Pieņemtie formāti ir: %{valid_mime_types}'
43
40
  proposal:
44
41
  attributes:
45
42
  add_documents:
@@ -226,6 +223,7 @@ lv:
226
223
  affected_user:
227
224
  email_intro: 'Jūsu priekšlikums "%{resource_title}" tika noraidīts. Jūs varat izlasīt atbildi šajā lapā:'
228
225
  email_outro: Jūs saņēmāt šo paziņojumu, jo esat "%{resource_title}" autors.
226
+ email_subject: Jūsu priekšlikums tika noraidīts
229
227
  notification_title: Jūsu priekšlikums <a href="%{resource_path}">%{resource_title}</a> tika noraidīts.
230
228
  follower:
231
229
  email_intro: 'Priekšlikums "%{resource_title}" tika noraidīts. Jūs varat izlasīt atbildi šajā lapā:'
@@ -484,7 +482,6 @@ lv:
484
482
  all: Visi
485
483
  filter_origin_values:
486
484
  all: Visi
487
- citizens: Pilsoņi
488
485
  meetings: Sanāksmes
489
486
  official: Oficiālā
490
487
  user_groups: Grupas
@@ -525,6 +522,7 @@ lv:
525
522
  one: "%{count} sadarbības projekts"
526
523
  other: "%{count} sadarbības projekti"
527
524
  create:
525
+ error: Šo sadarbības projektu izveides laikā radās problēma
528
526
  success: Sadarbības projekts ir veiksmīgi izveidots.
529
527
  edit:
530
528
  attachment_legend: "(Pēc izvēles) Pievienojiet pielikumu"
@@ -652,7 +650,6 @@ lv:
652
650
  one: "%{count} priekšlikums"
653
651
  other: "%{count} priekšlikumi"
654
652
  edit:
655
- add_documents: Dokumenti
656
653
  attachment_legend: "(Pēc izvēles) Pievienojiet pielikumu"
657
654
  back: Atpakaļ
658
655
  select_a_category: Lūdzu, izvēlieties kategoriju
@@ -1 +1,2 @@
1
+ ---
1
2
  mt:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  nl:
2
3
  activemodel:
3
4
  attributes:
@@ -42,10 +43,6 @@ nl:
42
43
  valuator_role_id: Naam beoordelaar
43
44
  errors:
44
45
  models:
45
- participatory_text:
46
- attributes:
47
- document:
48
- invalid_document_type: 'Ongeldig documenttype. Aanvaarde formaten zijn: %{valid_mime_types}'
49
46
  proposal:
50
47
  attributes:
51
48
  add_documents:
@@ -271,6 +268,7 @@ nl:
271
268
  affected_user:
272
269
  email_intro: 'Uw voorstel "%{resource_title}" is afgewezen. U kunt het antwoord op deze pagina lezen:'
273
270
  email_outro: U hebt deze melding ontvangen omdat u een auteur bent van "%{resource_title}".
271
+ email_subject: Uw voorstel is afgewezen
274
272
  notification_title: Uw voorstel <a href="%{resource_path}">%{resource_title}</a> is afgewezen.
275
273
  follower:
276
274
  email_intro: 'Het voorstel "%{resource_title}" is afgewezen. Je kan de reden hier lezen:'
@@ -363,6 +361,9 @@ nl:
363
361
  proposal_comments: Reacties
364
362
  proposals: Voorstellen
365
363
  imports:
364
+ help:
365
+ answers: 'Het importdocument moet de volgende kolommen bevatten: id, status (geaccepteerd, evalueren, afgewezen), antwoord/nl (en andere talen ingeschakeld voor de organisatie).'
366
+ proposals: Het bestand moet kolomnamen title/nl en body/nl bevatten (of een andere locale die jij verkiest, bijv. title/fr en body/fr). Ook scope/id en category/id kolommen worden ondersteund.
366
367
  label:
367
368
  answers: Importeer antwoorden vanuit een bestand
368
369
  proposals: Importeer voorstellen vanuit een bestand
@@ -553,9 +554,9 @@ nl:
553
554
  all: Alle
554
555
  filter_origin_values:
555
556
  all: Alle
556
- citizens: Burgers
557
557
  meetings: vergaderingen
558
558
  official: Officieel
559
+ participants: Deelnemers
559
560
  user_groups: Groepen
560
561
  filter_scope_values:
561
562
  all: Alle
@@ -593,6 +594,7 @@ nl:
593
594
  one: "%{count} gezamenlijk ontwerp"
594
595
  other: "%{count} gezamenlijke ontwerpen"
595
596
  create:
597
+ error: Er is een probleem opgetreden bij het maken van dit gezamenlijk ontwerp
596
598
  success: Gezamenlijk ontwerp met succes gemaakt.
597
599
  edit:
598
600
  attachment_legend: "(Optioneel) Voeg een bijlage toe"
@@ -727,12 +729,8 @@ nl:
727
729
  description: De coördinaten worden bijgewerkt bij het klikken op de 'preview' knop. Het adres verandert echter niet.
728
730
  instructions: Je kunt het punt op de kaart verplaatsen.
729
731
  edit:
730
- add_documents: Documenten
731
- add_images: Bestand
732
732
  attachment_legend: "(Optioneel) Voeg een bijlage toe"
733
733
  back: Terug
734
- delete_document: Document verwijderen
735
- delete_image: Afbeelding verwijderen
736
734
  gallery_legend: "(Optioneel) Voeg een afbeelding toe aan het voorstel"
737
735
  select_a_category: Selecteer een categorie
738
736
  send: Verzenden
@@ -1,3 +1,4 @@
1
+ ---
1
2
  "no":
2
3
  activemodel:
3
4
  attributes:
@@ -39,10 +40,6 @@
39
40
  keep_authors: Behold originale forfattere
40
41
  errors:
41
42
  models:
42
- participatory_text:
43
- attributes:
44
- document:
45
- invalid_document_type: 'Ugyldig dokumenttype. Godkjente formater er: %{valid_mime_types}'
46
43
  proposal:
47
44
  attributes:
48
45
  add_documents:
@@ -283,6 +280,7 @@
283
280
  affected_user:
284
281
  email_intro: 'Forslaget ditt "%{resource_title}" er blitt avvist. Du kan lese svaret på denne siden:'
285
282
  email_outro: Du har mottatt denne varslingen fordi du er en forfatter av "%{resource_title}".
283
+ email_subject: Forslaget ditt har blitt avvist
286
284
  notification_title: Forslaget ditt <a href="%{resource_path}">%{resource_title}</a> har blitt avvist.
287
285
  follower:
288
286
  email_intro: 'Forslaget "%{resource_title}" er blitt avvist. Du kan lese svaret på denne siden:'
@@ -536,7 +534,6 @@
536
534
  all: Alle
537
535
  filter_origin_values:
538
536
  all: Alle
539
- citizens: Borgere
540
537
  meetings: Møter
541
538
  official: Offisiell
542
539
  user_groups: Grupper
@@ -576,6 +573,7 @@
576
573
  one: "%{count} samarbeids utkast"
577
574
  other: "%{count} samarbeids utkaster"
578
575
  create:
576
+ error: Det oppsto et problem med å lage disse samarbeidsutkastene
579
577
  success: Samarbeids utkast opprettet.
580
578
  edit:
581
579
  attachment_legend: "(Valgfritt) Legg til et vedlegg"
@@ -699,7 +697,6 @@
699
697
  one: "%{count} forslag"
700
698
  other: "%{count} forslag"
701
699
  edit:
702
- add_documents: Dokumenter
703
700
  attachment_legend: "(Valgfritt) Legg til et vedlegg"
704
701
  back: Tilbake
705
702
  select_a_category: Velg en kategori
@@ -1 +1,2 @@
1
+ ---
1
2
  om:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  pl:
2
3
  activemodel:
3
4
  attributes:
@@ -41,10 +42,6 @@ pl:
41
42
  valuator_role_id: Imię weryfikatora
42
43
  errors:
43
44
  models:
44
- participatory_text:
45
- attributes:
46
- document:
47
- invalid_document_type: 'Nieprawidłowy typ dokumentu. Akceptowane formaty to: %{valid_mime_types}'
48
45
  proposal:
49
46
  attributes:
50
47
  add_documents:
@@ -266,6 +263,7 @@ pl:
266
263
  affected_user:
267
264
  email_intro: 'Twoja propozycja "%{resource_title}" została odrzucona. Możesz przeczytać odpowiedź na tej stronie:'
268
265
  email_outro: Otrzymałeś to powiadomienie, ponieważ jesteś autorem "%{resource_title}".
266
+ email_subject: Twoja propozycja została odrzucona
269
267
  notification_title: Twoja propozycja <a href="%{resource_path}">%{resource_title}</a> została odrzucona.
270
268
  follower:
271
269
  email_intro: 'Propozycja "%{resource_title}" została odrzucona. Możesz przeczytać odpowiedź na tej stronie:'
@@ -535,7 +533,6 @@ pl:
535
533
  all: Wszystko
536
534
  filter_origin_values:
537
535
  all: Wszystko
538
- citizens: Obywatele
539
536
  meetings: Spotkania
540
537
  official: Urzędnik
541
538
  user_groups: Grupy użytkowników
@@ -577,6 +574,7 @@ pl:
577
574
  many: "%{count} wspólne szkice"
578
575
  other: "%{count} wspólne szkice"
579
576
  create:
577
+ error: Podczas tworzenia wspólnych szkiców wystąpił błąd
580
578
  success: Utworzono wspólny szkic.
581
579
  edit:
582
580
  attachment_legend: "(Opcjonalnie) Dodaj załącznik"
@@ -712,12 +710,8 @@ pl:
712
710
  many: "%{count} propozycji"
713
711
  other: "%{count} propozycji"
714
712
  edit:
715
- add_documents: Dokumenty
716
- add_images: Plik
717
713
  attachment_legend: "(Opcjonalnie) Dodaj załącznik"
718
714
  back: Wróć
719
- delete_document: Usuń dokument
720
- delete_image: Usuń obraz
721
715
  gallery_legend: "(Opcjonalnie) Dodaj obraz do karty propozycji"
722
716
  select_a_category: Wybierz kategorię
723
717
  send: Wyślij
@@ -1,4 +1,5 @@
1
- pt-BR:
1
+ ---
2
+ pt:
2
3
  activemodel:
3
4
  attributes:
4
5
  collaborative_draft:
@@ -42,10 +43,6 @@ pt-BR:
42
43
  valuator_role_id: Nome do Avaliador
43
44
  errors:
44
45
  models:
45
- participatory_text:
46
- attributes:
47
- document:
48
- invalid_document_type: 'Tipo de documento inválido. Formatos aceitos são: %{valid_mime_types}'
49
46
  proposal:
50
47
  attributes:
51
48
  add_documents:
@@ -259,6 +256,7 @@ pt-BR:
259
256
  affected_user:
260
257
  email_intro: 'Sua proposta "%{resource_title}" foi rejeitada. Você pode ler a resposta nesta página:'
261
258
  email_outro: Você recebeu esta notificação porque é um autor de "%{resource_title}".
259
+ email_subject: Sua proposta foi rejeitada
262
260
  notification_title: Sua proposta <a href="%{resource_path}">%{resource_title}</a> foi rejeitada.
263
261
  follower:
264
262
  email_intro: 'A proposta "%{resource_title}" foi rejeitada. Você pode ler a resposta nesta página:'
@@ -526,7 +524,6 @@ pt-BR:
526
524
  all: Todos
527
525
  filter_origin_values:
528
526
  all: Todos
529
- citizens: Cidadãos
530
527
  meetings: Reuniões
531
528
  official: Oficial
532
529
  user_groups: Grupos de usuários
@@ -566,6 +563,7 @@ pt-BR:
566
563
  one: "%{count} rascunho colaborativo"
567
564
  other: "%{count} rascunho colaborativo"
568
565
  create:
566
+ error: Houve um problema ao criar esses rascunhos colaborativos
569
567
  success: Rascunho colaborativo criado com sucesso.
570
568
  edit:
571
569
  attachment_legend: "(Opcional) Adicione um anexo"
@@ -700,12 +698,8 @@ pt-BR:
700
698
  description: As coordenadas serão atualizadas quando clicar no botão 'visualizar'. No entanto, o endereço não muda.
701
699
  instructions: Você pode mover o ponto no mapa.
702
700
  edit:
703
- add_documents: Documentos
704
- add_images: Arquivo
705
701
  attachment_legend: "(Opcional) Adicione um anexo"
706
702
  back: Voltar
707
- delete_document: Apagar Documento
708
- delete_image: Excluir Imagem
709
703
  gallery_legend: "(Opcional) Adicione uma imagem à carta da proposta"
710
704
  select_a_category: Selecione uma categoria
711
705
  send: Enviar
@@ -1,3 +1,4 @@
1
+ ---
1
2
  pt:
2
3
  activemodel:
3
4
  attributes:
@@ -42,10 +43,6 @@ pt:
42
43
  valuator_role_id: Nome do avaliador
43
44
  errors:
44
45
  models:
45
- participatory_text:
46
- attributes:
47
- document:
48
- invalid_document_type: 'Tipo de documento inválido. Os formatos aceites são: %{valid_mime_types}'
49
46
  proposal:
50
47
  attributes:
51
48
  add_documents:
@@ -291,6 +288,7 @@ pt:
291
288
  affected_user:
292
289
  email_intro: 'A sua proposta "%{resource_title}" foi rejeitada. Pode ler a resposta nesta página:'
293
290
  email_outro: Recebeu esta notificação porque é um autor de "%{resource_title}".
291
+ email_subject: A sua proposta foi rejeitada
294
292
  notification_title: A sua proposta <a href="%{resource_path}">%{resource_title}</a> foi rejeitada.
295
293
  follower:
296
294
  email_intro: 'A proposta "%{resource_title}" foi rejeitada. Pode ler a resposta nesta página:'
@@ -560,7 +558,6 @@ pt:
560
558
  all: Todos
561
559
  filter_origin_values:
562
560
  all: Todos
563
- citizens: Cidadãos
564
561
  meetings: Reuniões
565
562
  official: Oficial
566
563
  user_groups: Grupos
@@ -600,6 +597,7 @@ pt:
600
597
  one: "%{count} rascunho colaborativo"
601
598
  other: "%{count} rascunhos colaborativos"
602
599
  create:
600
+ error: Ocorreu um problema ao criar estes rascunhos colaborativos
603
601
  success: Rascunho colaborativo criado corretamente.
604
602
  edit:
605
603
  attachment_legend: "(Opcional) Adicione um anexo"
@@ -734,12 +732,8 @@ pt:
734
732
  description: As coordenadas serão actualizadas quando clicar no botão ‘pré-visualização’. No entanto, o endereço não será alterado.
735
733
  instructions: Pode mover o ponto no mapa.
736
734
  edit:
737
- add_documents: Documentos
738
- add_images: Ficheiro
739
735
  attachment_legend: "(Opcional) Adicione um anexo"
740
736
  back: Voltar
741
- delete_document: Apagar Documento
742
- delete_image: Apagar Imagem
743
737
  gallery_legend: "(Opcional) Adicionar uma imagem ao cartão da proposta"
744
738
  select_a_category: Por favor selecione uma categoria
745
739
  send: Enviar
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ro:
2
3
  activemodel:
3
4
  attributes:
@@ -42,10 +43,6 @@ ro:
42
43
  valuator_role_id: Numele evaluatorului
43
44
  errors:
44
45
  models:
45
- participatory_text:
46
- attributes:
47
- document:
48
- invalid_document_type: 'Tip de document invalid. Formatele acceptate sunt: %{valid_mime_types}'
49
46
  proposal:
50
47
  attributes:
51
48
  add_documents:
@@ -297,6 +294,7 @@ ro:
297
294
  affected_user:
298
295
  email_intro: 'Propunerea ta "%{resource_title}" a fost respinsă. Poți citi răspunsul în această pagină:'
299
296
  email_outro: Ai primit această notificare deoarece ești autor al propunerii "%{resource_title}".
297
+ email_subject: Propunerea ta a fost respinsă
300
298
  notification_title: Propunerea ta <a href="%{resource_path}">%{resource_title}</a> a fost respinsă.
301
299
  follower:
302
300
  email_intro: 'Propunerea "%{resource_title}" a fost respinsă. Poţi citi răspunsul în această pagină:'
@@ -389,6 +387,9 @@ ro:
389
387
  proposal_comments: Comentarii
390
388
  proposals: Propuneri
391
389
  imports:
390
+ help:
391
+ answers: 'Documentul importat trebuie să conțină următoarele coloane: id, stadiu (acceptat, în evaluare, respins), răspuns/ro (și alte limbi activate pentru organizație).'
392
+ proposals: Fişierul trebuie să aibă titlu/ro şi conținut/ro (sau o altă configurație pe care o preferi, de exemplu titlu/en și conținut/en). De asemenea, sunt acceptate coloane de domeniu de interes/id și categorie/id.
392
393
  label:
393
394
  answers: Importă răspunsuri dintr-un fişier
394
395
  proposals: Importă propuneri dintr-un fişier
@@ -583,9 +584,9 @@ ro:
583
584
  all: Toate
584
585
  filter_origin_values:
585
586
  all: Toate
586
- citizens: Cetățeni
587
587
  meetings: Întâlniri
588
588
  official: Oficial
589
+ participants: Participanți
589
590
  user_groups: Grupuri
590
591
  filter_scope_values:
591
592
  all: Toate
@@ -624,6 +625,7 @@ ro:
624
625
  few: "%{count} ciorne colaborative"
625
626
  other: "%{count} ciorne colaborative"
626
627
  create:
628
+ error: A apărut o problemă la crearea acestor ciorne colaborative
627
629
  success: Ciorna colaborativă a fost creată cu succes.
628
630
  edit:
629
631
  attachment_legend: "(Opțional) Adaugă un atașament"
@@ -760,12 +762,8 @@ ro:
760
762
  description: Coordonatele vor fi actualizate când apeși pe butonul 'previzualizează'. Cu toate acestea, adresa nu se schimbă.
761
763
  instructions: Poți muta punctul de pe hartă.
762
764
  edit:
763
- add_documents: Documente
764
- add_images: Fişier
765
765
  attachment_legend: "(Opțional) Adaugă un atașament"
766
766
  back: Înapoi
767
- delete_document: Șterge documentul
768
- delete_image: Șterge imaginea
769
767
  gallery_legend: "(Opțional) Adaugă o imagine la cardul de propunere"
770
768
  select_a_category: Te rugăm selectează o categorie
771
769
  send: Trimite
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ru:
2
3
  activemodel:
3
4
  attributes:
@@ -222,7 +223,6 @@ ru:
222
223
  withdrawn: Отозван
223
224
  application_helper:
224
225
  filter_origin_values:
225
- citizens: Граждане
226
226
  official: Служебные
227
227
  filter_state_values:
228
228
  not_answered: Без ответов
@@ -1 +1,2 @@
1
+ ---
1
2
  si:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  sk:
2
3
  activemodel:
3
4
  attributes:
@@ -39,10 +40,6 @@ sk:
39
40
  valuator_role_id: Meno hodnotiteľa
40
41
  errors:
41
42
  models:
42
- participatory_text:
43
- attributes:
44
- document:
45
- invalid_document_type: 'Neplatný typ dokumentu. Prijateľné formáty sú: %{valid_mime_types} '
46
43
  proposal:
47
44
  attributes:
48
45
  add_documents:
@@ -224,6 +221,7 @@ sk:
224
221
  affected_user:
225
222
  email_intro: 'Váš návrh "%{resource_title}" bol zamietnutý. Odpoveď môžete čítať na tejto stránke: '
226
223
  email_outro: Toto oznámenie ste dostali, pretože ste autorom položky "%{resource_title}".
224
+ email_subject: Váš návrh bol zamietnutý
227
225
  notification_title: Váš návrh <a href="%{resource_path}">%{resource_title} </a> bol zamietnutý.
228
226
  follower:
229
227
  email_intro: 'Návrh "%{resource_title}" bol zamietnutý. Odpoveď môžete čítať na tejto stránke: '
@@ -488,7 +486,6 @@ sk:
488
486
  all: Všetko
489
487
  filter_origin_values:
490
488
  all: Všetko
491
- citizens: Občania
492
489
  meetings: Stretnutie
493
490
  official: Oficiálne
494
491
  user_groups: Skupiny užívateľov
@@ -530,6 +527,7 @@ sk:
530
527
  many: "%{count} návrh spolupráce"
531
528
  other: "%{count} návrh spolupráce"
532
529
  create:
530
+ error: Pri vytváraní tohto konceptu spolupráce vyskytol problém
533
531
  success: Projekt spolupráce bol úspešne vytvorený.
534
532
  edit:
535
533
  attachment_legend: "(Voliteľné) Pridanie prílohy"
@@ -660,7 +658,6 @@ sk:
660
658
  many: "%{count} návrhov"
661
659
  other: "%{count} návrhov"
662
660
  edit:
663
- add_documents: Dokumenty
664
661
  attachment_legend: "(Voliteľné) Pridanie prílohy"
665
662
  back: Zadná
666
663
  select_a_category: Vyberte kategóriu
@@ -1,3 +1,4 @@
1
+ ---
1
2
  sl:
2
3
  activemodel:
3
4
  attributes:
@@ -1 +1,2 @@
1
+ ---
1
2
  so:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  sr:
2
3
  activemodel:
3
4
  attributes:
@@ -109,8 +110,6 @@ sr:
109
110
  valuator: Procenjivač
110
111
  valuators: Procenjivači
111
112
  proposals:
112
- edit:
113
- add_documents: Dokumenti
114
113
  show:
115
114
  back_to_list: Nazad na listu
116
115
  estimated_cost: Procenjen trošak
@@ -1,3 +1,4 @@
1
+ ---
1
2
  sv:
2
3
  activemodel:
3
4
  attributes:
@@ -42,10 +43,6 @@ sv:
42
43
  valuator_role_id: Värderarens namn
43
44
  errors:
44
45
  models:
45
- participatory_text:
46
- attributes:
47
- document:
48
- invalid_document_type: 'Ogiltig dokumenttyp. Godkända format är: %{valid_mime_types}'
49
46
  proposal:
50
47
  attributes:
51
48
  add_documents:
@@ -293,6 +290,7 @@ sv:
293
290
  affected_user:
294
291
  email_intro: 'Ditt förslag "%{resource_title}" har avslagits. Du kan läsa svaret på den här sidan:'
295
292
  email_outro: Du har fått det här meddelandet eftersom du är en författare av %{resource_title}".
293
+ email_subject: Ditt förslag har avslagits
296
294
  notification_title: Ditt förslag <a href="%{resource_path}">%{resource_title}</a> har avslagits.
297
295
  follower:
298
296
  email_intro: 'Förslaget "%{resource_title}" har avslagits. Du kan läsa svaret på den här sidan:'
@@ -385,6 +383,9 @@ sv:
385
383
  proposal_comments: Kommentarer
386
384
  proposals: Förslag
387
385
  imports:
386
+ help:
387
+ answers: 'Importdokumentet ska innehålla följande kolumner: id, state (accepterat, utvärderat, avvisat), answer/sv, answer/en (och andra språk aktiverade för organisationen).'
388
+ proposals: Filen måste ha kolumnnamn title/sv och body/sv (eller ett annat språk som du föredrar t. ex.. title/en och body/en). Även scope/id och category/id kolumner stöds.
388
389
  label:
389
390
  answers: Importera svar från en fil
390
391
  proposals: Importerar förslag från en fil
@@ -576,9 +577,9 @@ sv:
576
577
  all: Alla
577
578
  filter_origin_values:
578
579
  all: Alla
579
- citizens: Medborgare
580
580
  meetings: Möten
581
581
  official: Officiella
582
+ participants: Deltagare
582
583
  user_groups: Grupper
583
584
  filter_scope_values:
584
585
  all: Alla
@@ -616,6 +617,7 @@ sv:
616
617
  one: "%{count} gemensamt utkast"
617
618
  other: "%{count} gemensamma utkast"
618
619
  create:
620
+ error: Det gick inte att skapa det gemensamma utkastet
619
621
  success: Det gemensamma utkastet har skapats.
620
622
  edit:
621
623
  attachment_legend: "(Frivilligt) Lägg till en bilaga"
@@ -640,6 +642,7 @@ sv:
640
642
  filter_by: Filtrera efter
641
643
  unfold: Veckla ut
642
644
  new:
645
+ add_file: Lägg till fil
643
646
  send: Fortsätt
644
647
  new_collaborative_draft_button:
645
648
  new_collaborative_draft: Nytt gemensamt utkast
@@ -750,12 +753,10 @@ sv:
750
753
  description: Koordinaterna uppdateras när du klickar på knappen 'Förhandsgranska'. Adressen ändras dock inte.
751
754
  instructions: Nu kan du flytta markören på kartan.
752
755
  edit:
753
- add_documents: Dokument
754
- add_images: Bild
756
+ add_documents: Lägga till dokument
755
757
  attachment_legend: "(Frivilligt) Lägg till en bilaga"
756
758
  back: Tillbaka
757
- delete_document: Radera dokument
758
- delete_image: Radera bild
759
+ edit_documents: Ändra dokument
759
760
  gallery_legend: "(Frivilligt) Lägg till en bild"
760
761
  select_a_category: Välj en kategori
761
762
  send: Skicka
@@ -1 +1,2 @@
1
+ ---
1
2
  sw:
@@ -1 +1,2 @@
1
+ ---
1
2
  ti:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  tr:
2
3
  activemodel:
3
4
  attributes:
@@ -41,10 +42,6 @@ tr:
41
42
  valuator_role_id: Bilirkişi adı
42
43
  errors:
43
44
  models:
44
- participatory_text:
45
- attributes:
46
- document:
47
- invalid_document_type: 'Geçersiz doküman tipi. Kabul edilen formatlar: %{valid_mime_types}'
48
45
  proposal:
49
46
  attributes:
50
47
  add_documents:
@@ -252,6 +249,7 @@ tr:
252
249
  affected_user:
253
250
  email_intro: 'Teklifiniz "%{resource_title}" reddedildi. Cevabı bu sayfada okuyabilirsiniz:'
254
251
  email_outro: Bu bildirimi, "%{resource_title}" ın bir yazarı olduğunuz için aldınız.
252
+ email_subject: Teklifiniz reddedildi
255
253
  notification_title: Teklifiniz <a href="%{resource_path}">%{resource_title}</a> reddedildi.
256
254
  follower:
257
255
  email_intro: '"%{resource_title}" teklifi reddedildi. Cevabı bu sayfada okuyabilirsiniz:'
@@ -518,7 +516,6 @@ tr:
518
516
  all: Tümü
519
517
  filter_origin_values:
520
518
  all: Tümü
521
- citizens: Vatandaşlar
522
519
  meetings: Toplantılar
523
520
  official: Resmi
524
521
  user_groups: Gruplar
@@ -558,6 +555,7 @@ tr:
558
555
  one: "%{count} ortak taslak"
559
556
  other: "%{count} ortak taslak"
560
557
  create:
558
+ error: Bu ortak çalışma taslakları oluşturulurken bir sorunla karşılaşıldı
561
559
  success: Ortak taslak başarıyla oluşturuldu.
562
560
  edit:
563
561
  attachment_legend: "(İsteğe bağlı) Bir ek ekleyin"
@@ -688,12 +686,8 @@ tr:
688
686
  one: "%{count} teklif"
689
687
  other: "%{count} teklif"
690
688
  edit:
691
- add_documents: Dokümanlar
692
- add_images: Dosya
693
689
  attachment_legend: "(İsteğe bağlı) Bir ek ekleyin"
694
690
  back: Geri
695
- delete_document: Doküman Sil
696
- delete_image: Resmi sil
697
691
  gallery_legend: "(İsteğe bağlı) Teklif kartına bir resim ekleyin"
698
692
  select_a_category: Lütfen bir kategori seçin
699
693
  send: Gönder
@@ -1,3 +1,4 @@
1
+ ---
1
2
  uk:
2
3
  activemodel:
3
4
  attributes:
@@ -222,7 +223,6 @@ uk:
222
223
  withdrawn: Відкликана
223
224
  application_helper:
224
225
  filter_origin_values:
225
- citizens: Громадяни
226
226
  official: Службове
227
227
  filter_state_values:
228
228
  not_answered: Без відповідей
@@ -1 +1,2 @@
1
+ ---
1
2
  val:
@@ -1 +1,2 @@
1
+ ---
1
2
  vi: