decidim-proposals 0.29.1 → 0.29.3

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 (89) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/proposals/highlighted_proposals_for_component/show.erb +0 -12
  3. data/app/cells/decidim/proposals/proposal_g_cell.rb +21 -0
  4. data/app/cells/decidim/proposals/proposal_l_cell.rb +17 -18
  5. data/app/commands/decidim/proposals/admin/import_proposals.rb +7 -65
  6. data/app/controllers/concerns/decidim/proposals/admin/filterable.rb +1 -1
  7. data/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +7 -0
  8. data/app/controllers/decidim/proposals/admin/proposals_imports_controller.rb +2 -2
  9. data/app/controllers/decidim/proposals/proposals_controller.rb +4 -8
  10. data/app/controllers/decidim/proposals/versions_controller.rb +1 -1
  11. data/app/forms/decidim/proposals/admin/proposal_answer_form.rb +3 -18
  12. data/app/forms/decidim/proposals/admin/proposal_form.rb +1 -1
  13. data/app/forms/decidim/proposals/admin/proposals_import_form.rb +6 -9
  14. data/app/forms/decidim/proposals/admin/valuation_assignment_form.rb +4 -1
  15. data/app/helpers/decidim/proposals/admin/proposal_bulk_actions_helper.rb +1 -1
  16. data/app/helpers/decidim/proposals/application_helper.rb +1 -0
  17. data/app/helpers/decidim/proposals/map_helper.rb +1 -1
  18. data/app/helpers/decidim/proposals/proposals_helper.rb +1 -3
  19. data/app/jobs/decidim/proposals/admin/import_proposals_job.rb +91 -0
  20. data/app/mailers/decidim/proposals/admin/import_proposals_mailer.rb +30 -0
  21. data/app/models/decidim/proposals/collaborative_draft.rb +2 -3
  22. data/app/models/decidim/proposals/proposal.rb +2 -11
  23. data/app/packs/stylesheets/decidim/proposals/proposals.scss +1 -5
  24. data/app/permissions/decidim/proposals/permissions.rb +4 -3
  25. data/app/services/decidim/proposals/collaborative_draft_diff_renderer.rb +22 -0
  26. data/app/services/decidim/proposals/diff_renderer.rb +2 -0
  27. data/app/services/decidim/proposals/proposal_builder.rb +2 -1
  28. data/app/views/decidim/proposals/admin/import_proposals_mailer/notify_failure.html.erb +1 -0
  29. data/app/views/decidim/proposals/admin/import_proposals_mailer/notify_success.html.erb +2 -0
  30. data/app/views/decidim/proposals/admin/proposals/_form.html.erb +1 -1
  31. data/app/views/decidim/proposals/admin/proposals/index.html.erb +2 -2
  32. data/app/views/decidim/proposals/admin/proposals/show.html.erb +4 -4
  33. data/app/views/decidim/proposals/admin/proposals_imports/new.html.erb +2 -2
  34. data/app/views/decidim/proposals/proposals/_proposals.html.erb +1 -1
  35. data/app/views/decidim/proposals/proposals/index.html.erb +9 -2
  36. data/app/views/decidim/proposals/proposals/index.js.erb +12 -0
  37. data/app/views/decidim/proposals/proposals/show.html.erb +1 -1
  38. data/config/locales/ar.yml +8 -6
  39. data/config/locales/bg.yml +5 -12
  40. data/config/locales/bn-BD.yml +1 -0
  41. data/config/locales/bs-BA.yml +98 -0
  42. data/config/locales/ca-IT.yml +945 -0
  43. data/config/locales/ca.yml +27 -12
  44. data/config/locales/cs.yml +33 -8
  45. data/config/locales/de.yml +27 -12
  46. data/config/locales/el.yml +5 -9
  47. data/config/locales/en.yml +18 -3
  48. data/config/locales/es-MX.yml +29 -14
  49. data/config/locales/es-PY.yml +24 -9
  50. data/config/locales/es.yml +32 -17
  51. data/config/locales/eu.yml +185 -163
  52. data/config/locales/fi-plain.yml +25 -10
  53. data/config/locales/fi.yml +42 -27
  54. data/config/locales/fr-CA.yml +20 -10
  55. data/config/locales/fr.yml +19 -9
  56. data/config/locales/ga-IE.yml +2 -1
  57. data/config/locales/gl.yml +5 -6
  58. data/config/locales/he-IL.yml +7 -0
  59. data/config/locales/hu.yml +4 -9
  60. data/config/locales/id-ID.yml +12 -5
  61. data/config/locales/is-IS.yml +5 -7
  62. data/config/locales/it.yml +31 -11
  63. data/config/locales/ja.yml +22 -8
  64. data/config/locales/lt.yml +3 -8
  65. data/config/locales/lv.yml +7 -4
  66. data/config/locales/nl.yml +11 -9
  67. data/config/locales/no.yml +3 -6
  68. data/config/locales/pl.yml +2 -9
  69. data/config/locales/pt-BR.yml +3 -8
  70. data/config/locales/pt.yml +4 -6
  71. data/config/locales/ro-RO.yml +25 -11
  72. data/config/locales/ru.yml +5 -7
  73. data/config/locales/sk.yml +8 -5
  74. data/config/locales/sl.yml +0 -4
  75. data/config/locales/sr-CS.yml +0 -2
  76. data/config/locales/sv.yml +11 -8
  77. data/config/locales/tr-TR.yml +7 -9
  78. data/config/locales/uk.yml +6 -8
  79. data/config/locales/zh-CN.yml +3 -5
  80. data/config/locales/zh-TW.yml +5 -9
  81. data/db/migrate/20240110203504_create_default_proposal_states.rb +3 -2
  82. data/decidim-proposals.gemspec +1 -1
  83. data/lib/decidim/api/proposal_type.rb +13 -0
  84. data/lib/decidim/api/proposals_type.rb +1 -3
  85. data/lib/decidim/proposals/proposal_serializer.rb +7 -4
  86. data/lib/decidim/proposals/test/factories.rb +6 -5
  87. data/lib/decidim/proposals/version.rb +1 -1
  88. data/lib/tasks/proposals/upgrade/decidim_proposals_upgrade_tasks.rake +22 -0
  89. metadata +29 -21
@@ -12,9 +12,11 @@ ca:
12
12
  state: Estat
13
13
  title: Títol
14
14
  user_group_id: Crea un esborrany col·laboratiu com a
15
+ import_participatory_text:
16
+ document: Document
15
17
  proposal:
16
18
  address: Adreça
17
- answer: Resposta
19
+ answer: Respondre
18
20
  answered_at: Respost el
19
21
  automatic_hashtags: Hashtags afegits automàticament
20
22
  body: Cos
@@ -22,13 +24,15 @@ ca:
22
24
  decidim_proposals_proposal_state_id: Estat
23
25
  decidim_scope_id: Àmbit
24
26
  has_address: Té adreça
27
+ latitude: Latitud
28
+ longitude: Longitud
25
29
  scope_id: Àmbit
26
30
  state: Estat
27
31
  suggested_hashtags: Hashtags suggerits
28
32
  title: Títol
29
33
  user_group_id: Crea una proposta com a
30
34
  proposal_answer:
31
- answer: Respondre
35
+ answer: Resposta
32
36
  cost: Cost
33
37
  cost_report: Informe de cost
34
38
  execution_period: Període d'execució
@@ -48,6 +52,8 @@ ca:
48
52
  proposals_copy:
49
53
  copy_proposals: Entenc que això importarà totes les propostes del component seleccionat a l'actual i que aquesta acció no es pot desfer.
50
54
  origin_component_id: Component des d'on importar les propostes
55
+ proposals_file_import:
56
+ file: Arxiu
51
57
  proposals_import:
52
58
  import_proposals: Importar propostes
53
59
  keep_answers: Manté l'estat i les respostes
@@ -143,7 +149,7 @@ ca:
143
149
  actions:
144
150
  amend: Esmena
145
151
  comment: Comentar
146
- create: Crear
152
+ create: Crea
147
153
  endorse: Adherir-se
148
154
  vote: Donar suport
149
155
  vote_comment: Votar el comentari
@@ -194,7 +200,7 @@ ca:
194
200
  scope_id: Àmbit
195
201
  scopes_enabled: Àmbits habilitats
196
202
  threshold_per_proposal: Llindar per proposta
197
- vote_limit: Límit de propostes per participant
203
+ vote_limit: Límit de suports per participant
198
204
  step:
199
205
  amendment_creation_enabled: Creació d'esmenes habilitada
200
206
  amendment_creation_enabled_help: Les participants poden esmenar les propostes.
@@ -310,12 +316,12 @@ ca:
310
316
  notification_title: La teva proposta <a href="%{resource_path}">%{resource_title}</a>ha canviat el seu estat a "%{state}".
311
317
  proposal_update_category:
312
318
  email_intro: 'Una administradora ha actualitzat la categoria de la teva proposta "%{resource_title}", fes-hi una ullada:'
313
- email_outro: Has rebut aquesta notificació perquè vas presentar aquesta proposta.
319
+ email_outro: Has rebut aquesta notificació perquè ets l'autora de la proposta.
314
320
  email_subject: S'ha actualitzat la categoria de la proposta %{resource_title}
315
321
  notification_title: La categoria de la proposta <a href="%{resource_path}">%{resource_title}</a> ha estat actualitzada per una administradora.
316
322
  proposal_update_scope:
317
323
  email_intro: 'Una administradora ha actualitzat l''àmbit de la teva proposta "%{resource_title}", fes-hi una ullada:'
318
- email_outro: Has rebut aquesta notificació perquè vas presentar aquesta proposta.
324
+ email_outro: Has rebut aquesta notificació perquè ets l'autora de la proposta.
319
325
  email_subject: S'ha actualitzat l'àmbit de la proposta %{resource_title}
320
326
  notification_title: L'àmbit de la proposta <a href="%{resource_path}">%{resource_title}</a> ha estat actualitzat per una administradora.
321
327
  voting_enabled:
@@ -377,7 +383,6 @@ ca:
377
383
  title: Suports
378
384
  participatory_spaces:
379
385
  highlighted_proposals:
380
- last: Propostes més recents
381
386
  see_all: Veure totes les propostes
382
387
  proposals:
383
388
  actions:
@@ -398,6 +403,16 @@ ca:
398
403
  exports:
399
404
  proposal_comments: Comentaris
400
405
  proposals: Propostes
406
+ import_proposals_mailer:
407
+ notify_failure:
408
+ body: Hi ha hagut un problema en importar propostes del component %{origin_component_name} al component %{target_component_name}.
409
+ subject: S'ha produït un error en importar les propostes
410
+ notify_success:
411
+ added_proposals:
412
+ one: S'ha importat una proposta.
413
+ other: "S'han importat %{count} propostes."
414
+ body: S'han importat amb èxit les propostes des del component %{origin_component_name} al component %{target_component_name}. Pots revisar els resultats al tauler d'administració.
415
+ subject: Les propostes s'han importat correctament
401
416
  imports:
402
417
  help:
403
418
  answers: |
@@ -507,7 +522,7 @@ ca:
507
522
  title: Actualitza la proposta
508
523
  update: Actualizar
509
524
  form:
510
- attachment_legend: "(Opcional) Afegiu un fitxer adjunt"
525
+ attachment_legend: "(Opcional) Afegeix un fitxer adjunt"
511
526
  created_in_meeting: Aquesta proposta prové d'una trobada
512
527
  delete_attachment: Suprimeix l'adjunt
513
528
  select_a_category: Selecciona una categoria
@@ -531,7 +546,7 @@ ca:
531
546
  statuses: Estats
532
547
  title: Propostes
533
548
  unassign_from_valuator: Desfer assignació a avaluadora
534
- unassign_from_valuator_button: Desfer assignació
549
+ unassign_from_valuator_button: Desfer l'assignació
535
550
  update: Actualitza
536
551
  update_scope_button: Actualitzar àmbit
537
552
  new:
@@ -572,7 +587,7 @@ ca:
572
587
  proposals_imports:
573
588
  create:
574
589
  invalid: S'ha produït un error en importar les propostes.
575
- success: "%{number} propostes importades correctament."
590
+ success: El procés d'importació ha començat. T'avisarem quan hagi finalitzat.
576
591
  new:
577
592
  create: Importa propostes
578
593
  no_components: No hi ha cap altre component de propostes en aquest espai participatiu des d'on importar-les.
@@ -812,7 +827,7 @@ ca:
812
827
  text_banner: Estàs veient un llistat de propostes retirades per les seves autores. %{go_back_link}.
813
828
  new:
814
829
  send: Continua
815
- title: Crea la teva proposta
830
+ title: Crea una nova proposta
816
831
  orders:
817
832
  label: 'Ordenar propostes:'
818
833
  most_commented: Més comentades
@@ -842,7 +857,7 @@ ca:
842
857
  show:
843
858
  answer: Resposta
844
859
  changes_at_title: Esmena a "%{title}"
845
- edit_proposal: Edita proposta
860
+ edit_proposal: Edita la proposta
846
861
  estimated_cost: Cost estimat
847
862
  hidden_endorsers_count:
848
863
  one: i %{count} persona més
@@ -12,6 +12,8 @@ cs:
12
12
  state: Stav
13
13
  title: Titul
14
14
  user_group_id: Vytvořit návrh spolupráce jako
15
+ import_participatory_text:
16
+ document: Dokument
15
17
  proposal:
16
18
  address: Adresa
17
19
  answer: Odpovědět
@@ -22,6 +24,8 @@ cs:
22
24
  decidim_proposals_proposal_state_id: Stav
23
25
  decidim_scope_id: Rozsah
24
26
  has_address: Má adresu
27
+ latitude: Zeměpisná šířka
28
+ longitude: Zeměpisná délka
25
29
  scope_id: Oblast působnosti
26
30
  state: Stav
27
31
  suggested_hashtags: Navrhované hashtagy
@@ -48,6 +52,8 @@ cs:
48
52
  proposals_copy:
49
53
  copy_proposals: Rozumím, že tento krok naimportuje všechny návrhy z vybraného prvku do toho současného a že tuto akci nelze vrátit zpět.
50
54
  origin_component_id: Komponenta pro kopírování návrhů z
55
+ proposals_file_import:
56
+ file: Soubor
51
57
  proposals_import:
52
58
  import_proposals: Návrhy na dovoz
53
59
  keep_answers: Zachovat stav a odpovědi
@@ -107,6 +113,11 @@ cs:
107
113
  few: Poznámky
108
114
  many: Poznámky
109
115
  other: Poznámky
116
+ decidim/proposals/proposal_vote:
117
+ one: Hlas
118
+ few: Hlasů
119
+ many: Hlasů
120
+ other: Hlasů
110
121
  decidim:
111
122
  admin:
112
123
  filters:
@@ -121,7 +132,7 @@ cs:
121
132
  proposal_state_id_eq:
122
133
  label: Stav
123
134
  scope_id_eq:
124
- label: Oblast působnosti
135
+ label: Rozsah
125
136
  state_eq:
126
137
  label: Stav
127
138
  values:
@@ -148,6 +159,7 @@ cs:
148
159
  comment: Komentář
149
160
  create: Vytvořit
150
161
  endorse: Schválit
162
+ vote: Hlasovat
151
163
  vote_comment: Komentář hlasování
152
164
  withdraw: Ustoupit
153
165
  name: Návrhy
@@ -193,7 +205,7 @@ cs:
193
205
  proposal_wizard_step_1_help_text: Text průvodce kroku nápovědy "Vytvořit" Návrh
194
206
  proposal_wizard_step_2_help_text: Text nápovědy ke kroku "Zveřejnit" průvodce návrhem
195
207
  resources_permissions_enabled: Pro každý návrh lze nastavit oprávnění akce
196
- scope_id: Oblast působnosti
208
+ scope_id: Rozsah
197
209
  scopes_enabled: Oblasti působnosti povoleny
198
210
  threshold_per_proposal: Prah na návrh
199
211
  vote_limit: Limit hlasů na účastníka
@@ -312,12 +324,12 @@ cs:
312
324
  notification_title: Návrh <a href="%{resource_path}">%{resource_title}</a> změnil svůj stav na "%{state}".
313
325
  proposal_update_category:
314
326
  email_intro: 'Správce aktualizoval kategorii vašeho návrhu "%{resource_title}", podívejte se na něj:'
315
- email_outro: Toto oznámení jste obdrželi, protože jste autorem návrhu.
327
+ email_outro: Obdrželi jste toto oznámení, protože jste autorem návrhu.
316
328
  email_subject: Kategorie návrhů %{resource_title} byla aktualizována
317
329
  notification_title: Kategorie návrhu <a href="%{resource_path}">%{resource_title}</a> byla aktualizována administrátorem.
318
330
  proposal_update_scope:
319
331
  email_intro: 'Administrátor aktualizoval rozsah vašeho návrhu "%{resource_title}", podívejte se na tuto stránku:'
320
- email_outro: Toto oznámení jste obdrželi, protože jste autorem návrhu.
332
+ email_outro: Obdrželi jste toto oznámení, protože jste autorem návrhu.
321
333
  email_subject: Rámec návrhu %{resource_title} byl aktualizován
322
334
  notification_title: Rozsah návrhu <a href="%{resource_path}">%{resource_title}</a> byl aktualizován správcem.
323
335
  voting_enabled:
@@ -379,8 +391,7 @@ cs:
379
391
  title: Hlasy
380
392
  participatory_spaces:
381
393
  highlighted_proposals:
382
- last: Poslední návrhy
383
- see_all: Zobrazit všechny (%{count})
394
+ see_all: Zobrazit všechny
384
395
  proposals:
385
396
  actions:
386
397
  answer_proposal: Odpověď na návrh
@@ -400,6 +411,12 @@ cs:
400
411
  exports:
401
412
  proposal_comments: Komentáře
402
413
  proposals: Návrhy
414
+ import_proposals_mailer:
415
+ notify_failure:
416
+ body: Při importu návrhů ze komponenty %{origin_component_name} do komponenty %{target_component_name} došlo k chybě.
417
+ subject: Došlo k chybě při importu návrhů
418
+ notify_success:
419
+ subject: Návrhy byly úspěšně importovány
403
420
  imports:
404
421
  help:
405
422
  answers: |
@@ -580,7 +597,7 @@ cs:
580
597
  proposals_imports:
581
598
  create:
582
599
  invalid: Při importu návrhů došlo k chybě.
583
- success: "%{number} návrhů bylo úspěšně importováno."
600
+ success: Proces importu byl zahájen. Jakmile bude dokončen, dáme vám vědět.
584
601
  new:
585
602
  create: Návrhy na dovoz
586
603
  no_components: V tomto účastnickém prostoru neexistují žádné jiné komponenty návrhu, které by mohly importovat návrhy.
@@ -809,6 +826,7 @@ cs:
809
826
  search: Vyhledávání
810
827
  state: Stav
811
828
  type: Typ
829
+ voted: Hlasováno
812
830
  index:
813
831
  click_here: Zobrazit všechny návrhy
814
832
  collaborative_drafts_list: Přístup ke konceptům spolupráce
@@ -825,12 +843,13 @@ cs:
825
843
  text_banner: Zobrazujete seznam návrhů stažených jejich autory. %{go_back_link}.
826
844
  new:
827
845
  send: Pokračovat
828
- title: Vytvořte svůj návrh
846
+ title: Vytvořit nový návrh
829
847
  orders:
830
848
  label: 'Seřadit návrhy podle:'
831
849
  most_commented: Nejvíce komentované
832
850
  most_endorsed: Nejvíce schválené
833
851
  most_followed: Nejvíce sledované
852
+ most_voted: Nejvíce hlasovalo
834
853
  random: Náhodně
835
854
  recent: Nedávné
836
855
  with_more_authors: S více autory
@@ -884,6 +903,12 @@ cs:
884
903
  no_votes_remaining: Žádné zbývající hlasy
885
904
  vote: Hlasovat
886
905
  votes_blocked: Hlasování zakázáno
906
+ votes_count:
907
+ count:
908
+ one: Hlas
909
+ few: Hlasy
910
+ many: Hlasů
911
+ other: Hlasů
887
912
  voting_rules:
888
913
  can_accumulate_votes_beyond_threshold:
889
914
  description: Každý návrh může sshromáždit více než %{limit} hlasů
@@ -12,6 +12,8 @@ de:
12
12
  state: Status
13
13
  title: Titel
14
14
  user_group_id: Kollaborativen Entwurf erstellen als
15
+ import_participatory_text:
16
+ document: Dokument
15
17
  proposal:
16
18
  address: Adresse
17
19
  answer: Antworten
@@ -22,6 +24,8 @@ de:
22
24
  decidim_proposals_proposal_state_id: Status
23
25
  decidim_scope_id: Umfang
24
26
  has_address: Hat eine Adresse
27
+ latitude: Breitengrad
28
+ longitude: Längengrad
25
29
  scope_id: Bereich
26
30
  state: Status
27
31
  suggested_hashtags: Vorgeschlagene Hashtags
@@ -48,6 +52,8 @@ de:
48
52
  proposals_copy:
49
53
  copy_proposals: Ich verstehe, dass dies alle Vorschläge von der ausgewählten Komponente in die aktuelle Komponente importiert und dass diese Aktion nicht rückgängig gemacht werden kann.
50
54
  origin_component_id: Komponente zum Kopieren der Vorschläge aus
55
+ proposals_file_import:
56
+ file: Datei
51
57
  proposals_import:
52
58
  import_proposals: Vorschläge importieren
53
59
  keep_answers: Status und Antworten behalten
@@ -191,7 +197,7 @@ de:
191
197
  proposal_wizard_step_1_help_text: Hilfetext "Erstellen"-Schritt im Vorschlagsassistenten
192
198
  proposal_wizard_step_2_help_text: Hilfetext "Veröffentlichen"-Schritt im Vorschlagsassistenten
193
199
  resources_permissions_enabled: Berechtigungen können für jeden Vorschlag festgelegt werden
194
- scope_id: Bereich
200
+ scope_id: Umfang
195
201
  scopes_enabled: Bereiche aktiviert
196
202
  threshold_per_proposal: Schwellenwert pro Vorschlag
197
203
  vote_limit: Maximal mögliche Anzahl Stimmen eines Abstimmenden
@@ -310,12 +316,12 @@ de:
310
316
  notification_title: Der Status des Vorschlags <a href="%{resource_path}">%{resource_title}</a> hat sich zu "%{state}" geändert.
311
317
  proposal_update_category:
312
318
  email_intro: 'Ein Administrator hat die Kategorie Ihres Vorschlags "%{resource_title}" aktualisiert, sehen Sie es sich an:'
313
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
319
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Vorschlag verfasst haben.
314
320
  email_subject: Die Vorschlagskategorie %{resource_title} wurde aktualisiert
315
321
  notification_title: Die Vorschlagskategorie <a href="%{resource_path}">%{resource_title}</a> wurde von einem Administrator aktualisiert.
316
322
  proposal_update_scope:
317
323
  email_intro: 'Ein Administrator hat den Bereich Ihres Vorschlags „%{resource_title}“ aktualisiert, sehen Sie es sich das auf dieser Seite an:'
318
- email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
324
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Vorschlag verfasst haben.
319
325
  email_subject: Der Bereich des Vorschlags %{resource_title} wurde aktualisiert
320
326
  notification_title: Der Bereich des Vorschlags <a href="%{resource_path}">%{resource_title}</a> wurde von einem Administrator aktualisiert.
321
327
  voting_enabled:
@@ -374,11 +380,10 @@ de:
374
380
  votes:
375
381
  description: Anzahl Stimmen über Vorschläge
376
382
  object: Stimmen
377
- title: Abstimmungen
383
+ title: Stimmen
378
384
  participatory_spaces:
379
385
  highlighted_proposals:
380
- last: Letzte Vorschläge
381
- see_all: Alle anzeigen (%{count})
386
+ see_all: Alle anzeigen
382
387
  proposals:
383
388
  actions:
384
389
  answer_proposal: Vorschlag beantworten
@@ -398,6 +403,16 @@ de:
398
403
  exports:
399
404
  proposal_comments: Kommentare
400
405
  proposals: Vorschläge
406
+ import_proposals_mailer:
407
+ notify_failure:
408
+ body: Beim Importieren von Vorschlägen aus der Komponente %{origin_component_name} in die Komponente %{target_component_name} ist ein Fehler aufgetreten.
409
+ subject: Beim Importieren der Vorschläge ist ein Fehler aufgetreten
410
+ notify_success:
411
+ added_proposals:
412
+ one: Ein Vorschlag wurde importiert.
413
+ other: "%{count} Vorschläge wurden importiert."
414
+ body: Vorschläge erfolgreich aus der Komponente %{origin_component_name} zu %{target_component_name} importiert. Sie können die Ergebnisse in der Adminoberfläche überprüfen.
415
+ subject: Die Vorschläge wurden erfolgreich importiert
401
416
  imports:
402
417
  help:
403
418
  answers: |
@@ -507,7 +522,7 @@ de:
507
522
  title: Vorschlag aktualisieren
508
523
  update: Aktualisieren
509
524
  form:
510
- attachment_legend: "(Optional) Anhang hinzufügen"
525
+ attachment_legend: "(Optional) Fügen Sie einen Anhang hinzu"
511
526
  created_in_meeting: Dieser Vorschlag stammt von einer Besprechung
512
527
  delete_attachment: Anhang löschen
513
528
  select_a_category: Kategorie auswählen
@@ -531,7 +546,7 @@ de:
531
546
  statuses: Status
532
547
  title: Vorschläge
533
548
  unassign_from_valuator: Zuweisung zur Bewertung zurückziehen
534
- unassign_from_valuator_button: Zuweisung aufheben
549
+ unassign_from_valuator_button:
535
550
  update: Aktualisieren
536
551
  update_scope_button: Umfang aktualisieren
537
552
  new:
@@ -572,7 +587,7 @@ de:
572
587
  proposals_imports:
573
588
  create:
574
589
  invalid: Beim Importieren der Vorschläge ist ein Problem aufgetreten.
575
- success: "%{number} Vorschläge erfolgreich importiert."
590
+ success: Der Importprozess wurde gestartet. Sie werden benachrichtigt, sobald er beendet ist.
576
591
  new:
577
592
  create: Vorschläge importieren
578
593
  no_components: In diesem partizipatorischen Bereich gibt es keine weiteren Vorschlagskomponenten, aus denen die Vorschläge importiert werden könnten.
@@ -701,7 +716,7 @@ de:
701
716
  error: Konnte nicht als Mitarbeiter abgelehnt werden, versuche es später erneut.
702
717
  success: "@%{user} wurde als Mitwirkende erfolgreich abgelehnt."
703
718
  show:
704
- edit: Bearbeiten Sie den gemeinsamen Entwurf
719
+ edit: Gemeinsamen Entwurf bearbeiten
705
720
  final_proposal: Endgültiger Vorschlag
706
721
  final_proposal_help_text: Dieser Entwurf ist fertig. Sie können den endgültigen fertigen Vorschlag sehen
707
722
  hidden_authors_count:
@@ -750,7 +765,7 @@ de:
750
765
  scope: Umfang
751
766
  state: Status
752
767
  title: Titel
753
- valuator: BewerterIn
768
+ valuator: Bewertende
754
769
  valuators: Bewertende
755
770
  votes: Stimmen
756
771
  proposal_state:
@@ -812,7 +827,7 @@ de:
812
827
  text_banner: Hier sehen Sie alle Vorschläge, die von ihren Autoren zurückgezogen wurden. %{go_back_link}.
813
828
  new:
814
829
  send: Fortsetzen
815
- title: Ihren Vorschlag erstellen
830
+ title: Neuer Vorschlag erstellen
816
831
  orders:
817
832
  label: 'Vorschläge sortieren nach:'
818
833
  most_commented: Am meisten kommentiert
@@ -263,12 +263,10 @@ el:
263
263
  notification_title_official: Η επίσημη πρόταση <a href="%{resource_path}">%{resource_title}</a> έχει προστεθεί στο %{participatory_space_title}.
264
264
  proposal_update_category:
265
265
  email_intro: 'Ένας διαχειριστής ενημέρωσε την κατηγορία της πρότασής σας «%{resource_title}», δείτε την σε αυτήν τη σελίδα:'
266
- email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε ο συντάκτης της πρότασης.
267
266
  email_subject: Η κατηγορία της πρότασης %{resource_title} ενημερώθηκε
268
267
  notification_title: Η κατηγορία της πρότασης <a href="%{resource_path}">%{resource_title}</a> ενημερώθηκε από έναν διαχειριστή.
269
268
  proposal_update_scope:
270
269
  email_intro: 'Ένας διαχειριστής ενημέρωσε το πεδίο εφαρμογής της πρότασής σας «%{resource_title}», δείτε την σε αυτήν τη σελίδα:'
271
- email_outro: Λάβατε αυτήν την ειδοποίηση επειδή είστε ο συντάκτης της πρότασης.
272
270
  email_subject: Το πεδίο εφαρμογής της πρότασης %{resource_title} ενημερώθηκε
273
271
  notification_title: Το πεδίο εφαρμογής της πρότασης <a href="%{resource_path}">%{resource_title}</a> ενημερώθηκε από έναν διαχειριστή.
274
272
  voting_enabled:
@@ -314,9 +312,11 @@ el:
314
312
  description: Αριθμός προτάσεων
315
313
  object: προτάσεις
316
314
  title: Προτάσεις
315
+ votes:
316
+ title: Ψήφοι
317
317
  participatory_spaces:
318
318
  highlighted_proposals:
319
- see_all: Δείτε όλες τις προτάσεις (%{count})
319
+ see_all: Δείτε όλες τις προτάσεις
320
320
  proposals:
321
321
  actions:
322
322
  answer_proposal: Απάντηση σε πρόταση
@@ -426,7 +426,6 @@ el:
426
426
  index:
427
427
  actions: Ενέργειες
428
428
  assign_to_valuator: Εκχώρηση σε εκτιμητή
429
- assign_to_valuator_button: Εκχώρηση
430
429
  cancel: Ακύρωση
431
430
  change_category: Αλλαγή κατηγορίας
432
431
  change_scope: Αλλαγή πεδίου εφαρμογής
@@ -440,7 +439,6 @@ el:
440
439
  split_button: Διαχωρισμός
441
440
  title: Προτάσεις
442
441
  unassign_from_valuator: Κατάργηση εκχώρησης από εκτιμητή
443
- unassign_from_valuator_button: Κατάργηση εκχώρησης
444
442
  update: Ενημέρωση
445
443
  update_scope_button: Ενημέρωση πεδίου εφαρμογής
446
444
  new:
@@ -468,17 +466,16 @@ el:
468
466
  update_category:
469
467
  invalid: 'Αυτές οι προτάσεις είχαν ήδη την κατηγορία %{subject_name}: %{proposals}.'
470
468
  select_a_category: Παρακαλώ επιλέξτε μια κατηγορία.
471
- select_a_proposal: Επιλέξτε μια πρόταση.
469
+ select_a_proposal: Παρακαλώ επιλέξτε μια πρόταση.
472
470
  success: 'Οι προτάσεις ενημερώθηκαν με επιτυχία στην κατηγορία %{subject_name}: %{proposals}.'
473
471
  update_scope:
474
472
  invalid: 'Αυτές οι προτάσεις είχαν ήδη το πεδίο εφαρμογής %{subject_name}: %{proposals}.'
475
- select_a_proposal: Επιλέξτε μια πρόταση.
473
+ select_a_proposal: Παρακαλώ επιλέξτε μια πρόταση.
476
474
  select_a_scope: Παρακαλώ επιλέξτε ένα πεδίο εφαρμογής.
477
475
  success: 'Οι προτάσεις ενημερώθηκαν με επιτυχία στο πεδίο εφαρμογής %{subject_name}: %{proposals}.'
478
476
  proposals_imports:
479
477
  create:
480
478
  invalid: Υπήρξε ένα πρόβλημα κατά την εισαγωγή των προτάσεων.
481
- success: "%{number} προτάσεις εισήχθησαν επιτυχώς."
482
479
  new:
483
480
  create: Εισαγωγή προτάσεων
484
481
  no_components: Δεν υπάρχουν άλλα στοιχεία προτάσεων σε αυτόν τον χώρο συμμετοχής για εισαγωγή των προτάσεων.
@@ -699,7 +696,6 @@ el:
699
696
  text_banner: Βλέπετε τη λίστα των προτάσεων που αποσύρονται από τους συντάκτες τους. %{go_back_link}.
700
697
  new:
701
698
  send: Συνέχεια
702
- title: Δημιουργήστε την πρότασή σας
703
699
  orders:
704
700
  label: 'Ταξινόμηση προτάσεων κατά:'
705
701
  most_commented: Με τα περισσότερα σχόλια
@@ -12,6 +12,8 @@ en:
12
12
  state: State
13
13
  title: Title
14
14
  user_group_id: Create collaborative draft as
15
+ import_participatory_text:
16
+ document: Document
15
17
  proposal:
16
18
  address: Address
17
19
  answer: Answer
@@ -22,6 +24,8 @@ en:
22
24
  decidim_proposals_proposal_state_id: State
23
25
  decidim_scope_id: Scope
24
26
  has_address: Has address
27
+ latitude: Latitude
28
+ longitude: Longitude
25
29
  scope_id: Scope
26
30
  state: State
27
31
  suggested_hashtags: Suggested hashtags
@@ -48,6 +52,8 @@ en:
48
52
  proposals_copy:
49
53
  copy_proposals: I understand that this will import all proposals from the selected component to the current one and that this action cannot be reversed.
50
54
  origin_component_id: Component to copy the proposals from
55
+ proposals_file_import:
56
+ file: File
51
57
  proposals_import:
52
58
  import_proposals: Import proposals
53
59
  keep_answers: Keep state and answers
@@ -377,7 +383,6 @@ en:
377
383
  title: Votes
378
384
  participatory_spaces:
379
385
  highlighted_proposals:
380
- last: Last proposals
381
386
  see_all: See all proposals
382
387
  proposals:
383
388
  actions:
@@ -398,6 +403,16 @@ en:
398
403
  exports:
399
404
  proposal_comments: Comments
400
405
  proposals: Proposals
406
+ import_proposals_mailer:
407
+ notify_failure:
408
+ body: There was a problem while importing proposals from the %{origin_component_name} component to the %{target_component_name} component.
409
+ subject: There was an error importing proposals
410
+ notify_success:
411
+ added_proposals:
412
+ one: One proposal was imported.
413
+ other: "%{count} proposals were imported."
414
+ body: Successful imported proposals from the %{origin_component_name} component to the %{target_component_name} component. You can review the results in the administration interface.
415
+ subject: The proposals have been imported successfully
401
416
  imports:
402
417
  help:
403
418
  answers: |
@@ -572,7 +587,7 @@ en:
572
587
  proposals_imports:
573
588
  create:
574
589
  invalid: There was a problem importing the proposals.
575
- success: "%{number} proposals successfully imported."
590
+ success: The import process has started. We will let you know once it has finished.
576
591
  new:
577
592
  create: Import proposals
578
593
  no_components: There are no other proposal components in this participatory space to import the proposals from.
@@ -812,7 +827,7 @@ en:
812
827
  text_banner: You are viewing the list of proposals withdrawn by their authors. %{go_back_link}.
813
828
  new:
814
829
  send: Continue
815
- title: Create your proposal
830
+ title: Create new proposal
816
831
  orders:
817
832
  label: 'Order proposals by:'
818
833
  most_commented: Most commented