decidim-budgets 0.29.2 → 0.30.0.rc2

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 (123) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/budgets/budget_list_item/vote_action.erb +2 -2
  3. data/app/cells/decidim/budgets/budgets_list/main_list.erb +1 -1
  4. data/app/cells/decidim/budgets/budgets_list/show.erb +1 -1
  5. data/app/cells/decidim/budgets/project_history_cell.rb +48 -0
  6. data/app/cells/decidim/budgets/project_metadata_cell.rb +3 -3
  7. data/app/cells/decidim/budgets/project_vote_button/show.erb +4 -2
  8. data/app/cells/decidim/budgets/project_vote_button_cell.rb +4 -0
  9. data/app/commands/decidim/budgets/admin/create_budget.rb +1 -1
  10. data/app/commands/decidim/budgets/admin/create_project.rb +1 -1
  11. data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +1 -8
  12. data/app/commands/decidim/budgets/admin/update_budget.rb +1 -1
  13. data/app/commands/decidim/budgets/admin/update_project.rb +2 -2
  14. data/app/commands/decidim/budgets/admin/update_project_selection.rb +1 -1
  15. data/app/controllers/concerns/decidim/budgets/admin/filterable.rb +7 -11
  16. data/app/controllers/decidim/budgets/admin/budgets_controller.rb +12 -15
  17. data/app/controllers/decidim/budgets/admin/projects_controller.rb +61 -85
  18. data/app/controllers/decidim/budgets/orders_controller.rb +7 -3
  19. data/app/controllers/decidim/budgets/projects_controller.rb +7 -16
  20. data/app/forms/decidim/budgets/admin/budget_form.rb +0 -17
  21. data/app/forms/decidim/budgets/admin/project_form.rb +7 -33
  22. data/app/forms/decidim/budgets/admin/project_import_proposals_form.rb +0 -11
  23. data/app/helpers/decidim/budgets/projects_helper.rb +6 -31
  24. data/app/models/decidim/budgets/budget.rb +2 -0
  25. data/app/models/decidim/budgets/project.rb +21 -1
  26. data/app/packs/stylesheets/budgets.scss +6 -4
  27. data/app/permissions/decidim/budgets/admin/permissions.rb +4 -4
  28. data/app/presenters/decidim/budgets/admin_log/budget_presenter.rb +1 -1
  29. data/app/presenters/decidim/budgets/admin_log/project_presenter.rb +1 -1
  30. data/app/presenters/decidim/budgets/project_presenter.rb +28 -0
  31. data/app/queries/decidim/budgets/filtered_projects.rb +2 -2
  32. data/app/queries/decidim/budgets/metrics/budget_followers_metric_measure.rb +2 -2
  33. data/app/queries/decidim/budgets/metrics/budget_participants_metric_measure.rb +2 -2
  34. data/app/serializers/decidim/budgets/download_your_data_budgets_order_serializer.rb +2 -2
  35. data/app/views/decidim/budgets/admin/budgets/_actions.html.erb +21 -0
  36. data/app/views/decidim/budgets/admin/budgets/_budget-tr.html.erb +18 -0
  37. data/app/views/decidim/budgets/admin/budgets/_budgets-thead.html.erb +8 -0
  38. data/app/views/decidim/budgets/admin/budgets/_form.html.erb +0 -6
  39. data/app/views/decidim/budgets/admin/budgets/index.html.erb +16 -48
  40. data/app/views/decidim/budgets/admin/budgets/manage_trash.html.erb +19 -0
  41. data/app/views/decidim/budgets/admin/projects/_actions.html.erb +27 -0
  42. data/app/views/decidim/budgets/admin/projects/_bulk-actions.html.erb +0 -2
  43. data/app/views/decidim/budgets/admin/projects/_form.html.erb +6 -8
  44. data/app/views/decidim/budgets/admin/projects/_project-tr.html.erb +2 -27
  45. data/app/views/decidim/budgets/admin/projects/_projects-thead.html.erb +14 -0
  46. data/app/views/decidim/budgets/admin/projects/bulk_actions/_dropdown.html.erb +7 -10
  47. data/app/views/decidim/budgets/admin/projects/bulk_actions/_taxonomy_change.html.erb +23 -0
  48. data/app/views/decidim/budgets/admin/projects/index.html.erb +19 -21
  49. data/app/views/decidim/budgets/admin/projects/manage_trash.html.erb +26 -0
  50. data/app/views/decidim/budgets/admin/projects/update_attribute.js.erb +1 -1
  51. data/app/views/decidim/budgets/admin/proposals_imports/new.html.erb +0 -5
  52. data/app/views/decidim/budgets/budgets/index.html.erb +7 -2
  53. data/app/views/decidim/budgets/order_summary_mailer/order_summary.html.erb +0 -10
  54. data/app/views/decidim/budgets/orders/status.html.erb +52 -0
  55. data/app/views/decidim/budgets/projects/_order.html.erb +1 -1
  56. data/app/views/decidim/budgets/projects/_order_progress_summary_content.html.erb +4 -4
  57. data/app/views/decidim/budgets/projects/index.html.erb +11 -18
  58. data/app/views/decidim/budgets/projects/index.js.erb +1 -1
  59. data/app/views/decidim/budgets/projects/show.html.erb +20 -10
  60. data/config/locales/ar.yml +3 -10
  61. data/config/locales/bg.yml +3 -43
  62. data/config/locales/ca.yml +95 -42
  63. data/config/locales/cs.yml +101 -42
  64. data/config/locales/de.yml +95 -42
  65. data/config/locales/el.yml +3 -39
  66. data/config/locales/en.yml +95 -42
  67. data/config/locales/es-MX.yml +95 -42
  68. data/config/locales/es-PY.yml +95 -42
  69. data/config/locales/es.yml +95 -42
  70. data/config/locales/eu.yml +95 -42
  71. data/config/locales/fi-plain.yml +95 -42
  72. data/config/locales/fi.yml +94 -41
  73. data/config/locales/fr-CA.yml +38 -44
  74. data/config/locales/fr.yml +38 -44
  75. data/config/locales/ga-IE.yml +0 -3
  76. data/config/locales/gl.yml +3 -7
  77. data/config/locales/hu.yml +3 -40
  78. data/config/locales/id-ID.yml +3 -3
  79. data/config/locales/is-IS.yml +0 -3
  80. data/config/locales/it.yml +3 -5
  81. data/config/locales/ja.yml +92 -42
  82. data/config/locales/kaa.yml +0 -1
  83. data/config/locales/ko.yml +0 -20
  84. data/config/locales/lb.yml +3 -5
  85. data/config/locales/lt.yml +3 -41
  86. data/config/locales/lv.yml +3 -3
  87. data/config/locales/nl.yml +3 -24
  88. data/config/locales/no.yml +3 -8
  89. data/config/locales/pl.yml +5 -43
  90. data/config/locales/pt-BR.yml +4 -43
  91. data/config/locales/pt.yml +3 -5
  92. data/config/locales/ro-RO.yml +3 -17
  93. data/config/locales/ru.yml +3 -3
  94. data/config/locales/sk.yml +3 -3
  95. data/config/locales/sq-AL.yml +0 -16
  96. data/config/locales/sv.yml +94 -41
  97. data/config/locales/tr-TR.yml +3 -5
  98. data/config/locales/uk.yml +3 -3
  99. data/config/locales/zh-CN.yml +3 -4
  100. data/config/locales/zh-TW.yml +3 -39
  101. data/db/migrate/20200827154129_add_commentable_counter_cache_to_projects.rb +1 -1
  102. data/db/migrate/20210310120613_add_followable_counter_cache_to_budgets.rb +1 -1
  103. data/db/migrate/20240828103724_add_deleted_at_to_decidim_budgets_budgets.rb +8 -0
  104. data/db/migrate/20240916135141_add_deleted_at_to_decidim_budgets_projects.rb +8 -0
  105. data/decidim-budgets.gemspec +1 -1
  106. data/lib/decidim/api/budget_type.rb +3 -6
  107. data/lib/decidim/api/budgets_type.rb +4 -5
  108. data/lib/decidim/api/project_type.rb +6 -8
  109. data/lib/decidim/budgets/admin_engine.rb +16 -2
  110. data/lib/decidim/budgets/component.rb +4 -5
  111. data/lib/decidim/budgets/engine.rb +1 -0
  112. data/lib/decidim/budgets/project_serializer.rb +16 -14
  113. data/lib/decidim/budgets/seeds.rb +0 -2
  114. data/lib/decidim/budgets/version.rb +1 -1
  115. metadata +27 -22
  116. data/app/cells/decidim/budgets/project_tags/show.erb +0 -5
  117. data/app/cells/decidim/budgets/project_tags_cell.rb +0 -18
  118. data/app/commands/decidim/budgets/admin/destroy_budget.rb +0 -17
  119. data/app/commands/decidim/budgets/admin/update_project_category.rb +0 -48
  120. data/app/commands/decidim/budgets/admin/update_project_scope.rb +0 -54
  121. data/app/helpers/decidim/budgets/admin/application_helper.rb +0 -13
  122. data/app/views/decidim/budgets/admin/projects/bulk_actions/_recategorize.html.erb +0 -15
  123. data/app/views/decidim/budgets/admin/projects/bulk_actions/_scope-change.html.erb +0 -22
@@ -3,15 +3,12 @@ nl:
3
3
  activemodel:
4
4
  attributes:
5
5
  budget:
6
- decidim_scope_id: Scope
7
6
  description: Omschrijving
8
7
  title: Titel
9
8
  total_budget: Totale budget
10
9
  weight: Bestelpositie
11
10
  project:
12
11
  budget_amount: Budget bedrag
13
- decidim_category_id: Categorie
14
- decidim_scope_id: Scope
15
12
  description: Beschrijving
16
13
  proposal_ids: Verwante voorstellen
17
14
  proposals: Voorstellen
@@ -28,10 +25,6 @@ nl:
28
25
  admin:
29
26
  filters:
30
27
  projects:
31
- category_id_eq:
32
- label: Categorie
33
- scope_id_eq:
34
- label: Scope
35
28
  selected_at_null:
36
29
  label: Geselecteerd
37
30
  values:
@@ -41,7 +34,6 @@ nl:
41
34
  actions:
42
35
  attachment_collections: Mappen
43
36
  attachments: Bijlagen
44
- destroy: Verwijderen
45
37
  edit: Bewerk
46
38
  edit_projects: Beheer projecten
47
39
  import: Voorstellen importeren in projecten
@@ -75,23 +67,14 @@ nl:
75
67
  index:
76
68
  actions: Acties
77
69
  cancel: Annuleren
78
- change_category: Categorie wijzigen
79
- change_scope: Scope wijzigen
80
70
  finished_orders: Voltooide stemmen
81
71
  pending_orders: Afwachtende stemmen
82
72
  selected: Geselecteerd
83
73
  title: Projecten
84
74
  update: Bijwerken
85
- update_scope_button: Scope bijwerken
86
75
  new:
87
76
  create: Creëren
88
77
  title: Nieuw project
89
- update_category:
90
- invalid: 'Deze voorstellen hadden al categorie %{subject_name}: %{projects}.'
91
- success: 'Voorstellen succesvol bijgewerkt naar categorie %{subject_name}: %{projects}.'
92
- update_scope:
93
- invalid: 'Deze voorstellen hadden al scope %{subject_name}: %{projects}.'
94
- success: 'Voorstellen succesvol bijgewerkt naar categorie %{subject_name}: %{projects}.'
95
78
  proposals_imports:
96
79
  new:
97
80
  create: Voorstellen importeren in projecten
@@ -137,15 +120,16 @@ nl:
137
120
  total_budget: Totale budget
138
121
  project:
139
122
  fields:
140
- category: Categorie
141
123
  id: ID
142
124
  title: Titel
125
+ order:
126
+ status:
127
+ title: Uw stem is aanvaard
143
128
  order_summary_mailer:
144
129
  order_summary:
145
130
  selected_projects: 'De projecten die je hebt geselecteerd zijn:'
146
131
  subject: Je hebt gestemd in %{space_name}
147
132
  voted_on_space: Je hebt gestemd op het %{budget_name} budget voor de %{space_name} inspraakruimte.
148
- voted_on_space_with_scope: Je hebt gestemd op het %{budget_name} budget voor de %{space_name} inspraakruimte op %{scope_name} (%{scope_type}).
149
133
  projects:
150
134
  budget_confirm:
151
135
  are_you_sure: Als je van gedachten verandert, kun je later je stem wijzigen.
@@ -175,8 +159,6 @@ nl:
175
159
  message: Je stem is niet geregistreerd omdat je het stemproces nog niet hebt voltooid. Weet je zeker dat je stemmen wil verlaten?
176
160
  title: Je hebt nog niet gestemd
177
161
  filters:
178
- category: Categorie
179
- scope: Scope
180
162
  search: Zoeken
181
163
  status: Status
182
164
  status_values:
@@ -221,13 +203,10 @@ nl:
221
203
  announcement: Aankondiging
222
204
  comments_enabled: Reacties ingeschakeld
223
205
  comments_max_length: Commentaar maximale lengte (laat 0 voor standaardwaarde)
224
- geocoding_enabled: Geocoding ingeschakeld
225
206
  landing_page_content: Budgetten landingspagina
226
207
  more_information_modal: Meer informatie
227
208
  projects_per_page: Projecten per pagina
228
209
  resources_permissions_enabled: Actiemachtigingen kunnen voor elk project worden ingesteld
229
- scope_id: Scope
230
- scopes_enabled: Scopes ingeschakeld
231
210
  title: Titel
232
211
  total_budget: Totale budget
233
212
  vote_minimum_budget_projects_number: Minimumaantal projecten waarvoor moet worden gestemd
@@ -9,7 +9,6 @@
9
9
  weight: Prioritert rekkefølge
10
10
  project:
11
11
  budget_amount: Budsjettbeløp
12
- decidim_category_id: Kategori
13
12
  description: Beskrivelse
14
13
  proposal_ids: Relaterte forslag
15
14
  selected: Utvalgt for implementering
@@ -23,8 +22,6 @@
23
22
  admin:
24
23
  filters:
25
24
  projects:
26
- category_id_eq:
27
- label: Kategori
28
25
  selected_at_null:
29
26
  label: Valgt
30
27
  values:
@@ -34,7 +31,6 @@
34
31
  actions:
35
32
  attachment_collections: Mapper
36
33
  attachments: Vedlegg
37
- destroy: Slett
38
34
  edit: Editar
39
35
  edit_projects: Administrer prosjekter
40
36
  import: Importer forslag til prosjekter
@@ -115,15 +111,16 @@
115
111
  total_budget: Totalt budsjett
116
112
  project:
117
113
  fields:
118
- category: Kategori
119
114
  id: ID
120
115
  title: Tittel
116
+ order:
117
+ status:
118
+ title: Stemmen din ble godtatt
121
119
  order_summary_mailer:
122
120
  order_summary:
123
121
  selected_projects: 'Prosjektene du har valgt er:'
124
122
  subject: Du har stemt på %{space_name} i deltakelsesrommet
125
123
  voted_on_space: Du har stemt på %{budget_name} budsjettet for %{space_name} medvirkningsrom.
126
- voted_on_space_with_scope: Du har stemt på %{budget_name} budsjettet for %{space_name} medvirkningsrommet på %{scope_name} (%{scope_type}).
127
124
  projects:
128
125
  budget_confirm:
129
126
  are_you_sure: Hvis du ombestemmer deg, kan du endre stemmen din senere.
@@ -152,7 +149,6 @@
152
149
  message: Stemmen din er ikke registrert fordi du ikke har fullført avstemmingen. Er du sikker på at du vil avslutte avstemming?
153
150
  title: Du har ikke stemt enda
154
151
  filters:
155
- category: Kategori
156
152
  search: Søk
157
153
  status: Status
158
154
  status_values:
@@ -201,7 +197,6 @@
201
197
  more_information_modal: Mer informasjon
202
198
  projects_per_page: Prosjekter per side
203
199
  resources_permissions_enabled: Handlingstillatelser kan settes for hvert prosjekt
204
- scopes_enabled: Temaer aktivert
205
200
  title: Tittel
206
201
  total_budget: Totalt budsjett
207
202
  vote_minimum_budget_projects_number: Minimum antall prosjekter å stemme på
@@ -3,15 +3,12 @@ pl:
3
3
  activemodel:
4
4
  attributes:
5
5
  budget:
6
- decidim_scope_id: Zakres
7
6
  description: Opis
8
7
  title: Tytuł
9
8
  total_budget: Całkowity budżet
10
9
  weight: Kolejność na stronie
11
10
  project:
12
11
  budget_amount: Kwota budżetu
13
- decidim_category_id: Kategoria
14
- decidim_scope_id: Zakres
15
12
  description: Opis
16
13
  proposal_ids: Powiązane propozycje
17
14
  proposals: Propozycje
@@ -30,10 +27,6 @@ pl:
30
27
  admin:
31
28
  filters:
32
29
  projects:
33
- category_id_eq:
34
- label: Kategoria
35
- scope_id_eq:
36
- label: Zakres
37
30
  selected_at_null:
38
31
  label: Wybrane
39
32
  values:
@@ -43,7 +36,6 @@ pl:
43
36
  actions:
44
37
  attachment_collections: Foldery
45
38
  attachments: Załączniki
46
- destroy: Usuń
47
39
  edit: Edytuj
48
40
  edit_projects: Zarządzaj budżetem
49
41
  import: Importuj propozycje do projektów
@@ -57,9 +49,6 @@ pl:
57
49
  create:
58
50
  invalid: Podczas tworzenia tego budżetu wystąpił błąd.
59
51
  success: Budżet został utworzony.
60
- destroy:
61
- invalid: Wystąpił błąd podczas usuwania budżetu.
62
- success: Budżet został usunięty.
63
52
  edit:
64
53
  title: Edytuj budżet
65
54
  update: Aktualizuj budżet
@@ -86,8 +75,6 @@ pl:
86
75
  create:
87
76
  invalid: Podczas tworzenia tego projektu wystąpił błąd.
88
77
  success: Projekt został utworzony.
89
- destroy:
90
- success: Projekt został usunięty.
91
78
  edit:
92
79
  title: Edytuj projekt
93
80
  update: Aktualizuj
@@ -95,8 +82,6 @@ pl:
95
82
  actions: Działania
96
83
  cancel: Anuluj
97
84
  change_budget: Zmień budżet
98
- change_category: Zmień kategorię
99
- change_scope: Zmień zakres
100
85
  change_selected: Zmień wybrany status
101
86
  deselect_implementation: Odznacz ze wdrożenia
102
87
  finished_orders: Ukończone głosowania
@@ -109,7 +94,6 @@ pl:
109
94
  title: Projekty
110
95
  update: Aktualizuj
111
96
  update_budget_button: Aktualizuj budżet projektu
112
- update_scope_button: Aktualizuj zakres
113
97
  new:
114
98
  create: Utwórz
115
99
  title: Nowy projekt
@@ -117,28 +101,10 @@ pl:
117
101
  invalid: Podczas aktualizacji tego projektu wystąpił błąd.
118
102
  success: Zaktualizowano projekt.
119
103
  update_budget:
120
- invalid: 'Te projekty są już w tym samym budżecie lub ich budżety są większe niż maksymalny dozwolony: %{projects}.'
121
104
  select_a_project: Proszę wybrać projekt.
122
- success: 'Projekty zaktualizowane do budżetu o nazwie %{subject_name}: %{projects}.'
123
- update_category:
124
- invalid: 'Te projekty już miały kategorię %{subject_name}: %{projects}.'
125
- select_a_category: Proszę wybrać kategorię.
126
- select_a_project: Proszę wybrać projekt.
127
- success: 'Projekty zostały zaktualizowane do kategorii %{subject_name}: %{projects}.'
128
- update_scope:
129
- invalid: 'Te projekty już miały zakres %{subject_name}: %{projects}.'
130
- select_a_project: Proszę wybrać projekt.
131
- select_a_scope: Proszę wybrać zakres.
132
- success: 'Projekty zostały zaktualizowane do zakresu o nazwie %{subject_name}: %{projects}.'
133
105
  update_selected:
134
- invalid:
135
- selected: 'Te projekty zostały już wybrane do wdrożenia: %{projects}.'
136
- unselected: 'Te projekty zostały już odznaczone od wdrożenia: %{projects}.'
137
106
  select_a_project: Proszę wybrać projekt.
138
107
  select_a_selection: Proszę wybrać stan wdrożenia.
139
- success:
140
- selected: 'Te projekty zostały pomyślnie wybrane do wdrożenia: %{projects}.'
141
- unselected: 'Te projekty zostały pomyślnie odznaczone od wdrożenia: %{projects}.'
142
108
  proposals_imports:
143
109
  create:
144
110
  invalid: Wystąpił błąd podczas importowania propozycji do projektów.
@@ -201,16 +167,19 @@ pl:
201
167
  total_budget: Całkowity budżet
202
168
  project:
203
169
  fields:
204
- category: Kategoria
205
170
  id: Identyfikator
206
171
  map: Mapa
207
172
  title: Tytuł
173
+ order:
174
+ status:
175
+ continue_voting: Kontynuuj głosowanie
176
+ download_vote: Pobierz swój głos
177
+ title: Twój głos został przyjęty
208
178
  order_summary_mailer:
209
179
  order_summary:
210
180
  selected_projects: 'Wybrane przez Ciebie projekty to:'
211
181
  subject: Zagłosowałeś(-aś) w przestrzeni partycypacyjnej %{space_name}
212
182
  voted_on_space: Zagłosowałeś na budżet %{budget_name} w przestrzeni partycypacyjnej %{space_name}.
213
- voted_on_space_with_scope: Zagłosowałeś na budżet %{budget_name} w przestrzeni partycypacyjnej %{space_name} w %{scope_name} (%{scope_type}).
214
183
  projects:
215
184
  budget_confirm:
216
185
  are_you_sure: Jeśli zmienisz zdanie, możesz zmienić swój głos później.
@@ -247,8 +216,6 @@ pl:
247
216
  message: Twój głos nie został zarejestrowany, ponieważ nie ukończyłeś/aś jeszcze procesu głosowania. Czy na pewno chcesz zakończyć głosowanie?
248
217
  title: Jeszcze nie głosowałeś/aś
249
218
  filters:
250
- category: Kategoria
251
- scope: Zakres
252
219
  search: Szukaj
253
220
  status: Status
254
221
  status_values:
@@ -322,13 +289,10 @@ pl:
322
289
  errors:
323
290
  budget_voting_rule_only_one: Może być włączona tylko jedna reguła głosowania.
324
291
  budget_voting_rule_required: Wymagana jest jedna reguła głosowania.
325
- geocoding_enabled: Włączono geokodowanie
326
292
  landing_page_content: Strona główna budżetów
327
293
  more_information_modal: Więcej informacji
328
294
  projects_per_page: Projektów na stronie
329
295
  resources_permissions_enabled: Uprawnienia działań można ustawić dla każdego projektu
330
- scope_id: Zakres
331
- scopes_enabled: Zakresy włączone
332
296
  title: Tytuł
333
297
  total_budget: Całkowity budżet
334
298
  vote_minimum_budget_projects_number: Minimalna liczba projektów, na które można głosować
@@ -366,8 +330,6 @@ pl:
366
330
  orders:
367
331
  checkout:
368
332
  error: Podczas przetwarzania Twojego głosu wystąpił błąd.
369
- success_html: <p>Twój głos został zaakceptowany.</p> <p class="text-sm font-normal">Możesz zobaczyć <a class="text-secondary underline" href="%{rest_of_budgets_link}">pozostałe budżety</a>.</p>
370
- success_no_left_budgets_html: Twój głos został przyjęty.
371
333
  destroy:
372
334
  error: Podczas anulowania Twojego głosu wystąpił błąd.
373
335
  success: Twój głos został anulowany.
@@ -3,15 +3,12 @@ pt-BR:
3
3
  activemodel:
4
4
  attributes:
5
5
  budget:
6
- decidim_scope_id: Escopo
7
6
  description: Descrição
8
7
  title: Título
9
8
  total_budget: Orçamento total
10
9
  weight: Posição do pedido
11
10
  project:
12
11
  budget_amount: Valor do orçamento
13
- decidim_category_id: Categoria
14
- decidim_scope_id: Escopo
15
12
  description: Descrição
16
13
  proposal_ids: Propostas relacionadas
17
14
  proposals: Propostas
@@ -31,10 +28,6 @@ pt-BR:
31
28
  admin:
32
29
  filters:
33
30
  projects:
34
- category_id_eq:
35
- label: Categoria
36
- scope_id_eq:
37
- label: Escopo
38
31
  selected_at_null:
39
32
  label: Selecionado
40
33
  values:
@@ -44,7 +37,6 @@ pt-BR:
44
37
  actions:
45
38
  attachment_collections: Pastas
46
39
  attachments: Anexos
47
- destroy: Excluir
48
40
  edit: Editar
49
41
  edit_projects: Gerenciar projetos
50
42
  import: Importar propostas para os projetos
@@ -58,9 +50,6 @@ pt-BR:
58
50
  create:
59
51
  invalid: Ocorreu um erro ao criar este orçamento.
60
52
  success: Orçamento criado com sucesso.
61
- destroy:
62
- invalid: Ocorreu um erro ao deletar este orçamento.
63
- success: Orçamento deletado com sucesso.
64
53
  edit:
65
54
  title: Editar orçamento
66
55
  update: Atualizar orçamento
@@ -87,8 +76,6 @@ pt-BR:
87
76
  create:
88
77
  invalid: Ocorreu um erro ao criar este projeto.
89
78
  success: Projeto criado com sucesso.
90
- destroy:
91
- success: Projeto deletado com sucesso.
92
79
  edit:
93
80
  title: Editar projeto
94
81
  update: Atualizar
@@ -96,8 +83,6 @@ pt-BR:
96
83
  actions: Ações
97
84
  cancel: Cancelar
98
85
  change_budget: Alterar orçamento
99
- change_category: Mudar categoria
100
- change_scope: Mudar escopo
101
86
  change_selected: Alterar estado selecionado
102
87
  deselect_implementation: Desselecionar da implementação
103
88
  finished_orders: Votos finais
@@ -110,7 +95,6 @@ pt-BR:
110
95
  title: Projetos
111
96
  update: Atualizar
112
97
  update_budget_button: Atualizar orçamento do projeto
113
- update_scope_button: Atualizar escopo
114
98
  new:
115
99
  create: Criar
116
100
  title: Novo projeto
@@ -118,28 +102,10 @@ pt-BR:
118
102
  invalid: Houve um problema ao atualizar este projeto.
119
103
  success: Projeto atualizado com sucesso.
120
104
  update_budget:
121
- invalid: 'Esses projetos já estão no mesmo orçamento ou seus orçamentos são mais que o máximo permitido: %{projects}.'
122
105
  select_a_project: Por favor, selecione um projeto.
123
- success: 'Projetos atualizados com sucesso no scopo %{subject_name}: %{projects}.'
124
- update_category:
125
- invalid: 'Estes projetos já tinham a categoria %{subject_name}: %{projects}.'
126
- select_a_category: Por favor, selecione uma categoria.
127
- select_a_project: Por favor, selecione um projeto.
128
- success: 'Projetos atualizados com sucesso para a categoria %{subject_name}: %{projects}.'
129
- update_scope:
130
- invalid: 'Estes projetos já tinham o escopo %{subject_name}: %{projects}.'
131
- select_a_project: Por favor, selecione um projeto.
132
- select_a_scope: Por favor, selecione um escopo.
133
- success: 'Projetos atualizados com sucesso no scopo %{subject_name}: %{projects}.'
134
106
  update_selected:
135
- invalid:
136
- selected: 'Estes projetos já foram selecionados para a implementação: %{projects}.'
137
- unselected: 'Estes projetos já foram desselecionados da implementação: %{projects}.'
138
107
  select_a_project: Por favor, selecione um projeto.
139
108
  select_a_selection: Por favor, selecione um estado de implementação.
140
- success:
141
- selected: 'Estes projetos foram selecionados com sucesso para a implementação: %{projects}.'
142
- unselected: 'Estes projetos foram desselecionados da implementação com sucesso: %{projects}.'
143
109
  proposals_imports:
144
110
  create:
145
111
  invalid: Houve um problema ao importar as propostas para projetos.
@@ -208,16 +174,17 @@ pt-BR:
208
174
  total_budget: Orçamento total
209
175
  project:
210
176
  fields:
211
- category: Categoria
212
177
  id: ID
213
178
  map: Mapa
214
179
  title: Título
180
+ order:
181
+ status:
182
+ title: Seu voto foi aceito com sucesso
215
183
  order_summary_mailer:
216
184
  order_summary:
217
185
  selected_projects: 'Os projetos que você selecionou são:'
218
186
  subject: Você votou no espaço participativo %{space_name}
219
187
  voted_on_space: Você votou no orçamento %{budget_name} para o espaço participativo %{space_name}.
220
- voted_on_space_with_scope: Você votou no orçamento %{budget_name} para o espaço participativo %{space_name} em %{scope_name} (%{scope_type}).
221
188
  projects:
222
189
  budget_confirm:
223
190
  are_you_sure: Se mudar de ideia, você pode mudar de voto mais tarde.
@@ -252,8 +219,6 @@ pt-BR:
252
219
  message: Seu voto não foi registrado porque você ainda não concluiu o processo de votação. Tem certeza que deseja sair da votação?
253
220
  title: Você ainda não votou
254
221
  filters:
255
- category: Categoria
256
- scope: Escopo
257
222
  search: Pesquisa
258
223
  status: Status
259
224
  status_values:
@@ -328,13 +293,11 @@ pt-BR:
328
293
  errors:
329
294
  budget_voting_rule_only_one: Apenas uma regra de votação deve estar habilitada.
330
295
  budget_voting_rule_required: Uma regra de votação é necessária.
331
- geocoding_enabled: Geocoding habilitado
296
+ geocoding_enabled: Mapas ativados
332
297
  landing_page_content: Página inicial dos orçamentos
333
298
  more_information_modal: Modal de mais informação
334
299
  projects_per_page: Projetos por página
335
300
  resources_permissions_enabled: Permissões de ações podem ser definidas para cada projeto
336
- scope_id: Escopo
337
- scopes_enabled: Escopos habilitados
338
301
  title: Título
339
302
  total_budget: Orçamento total
340
303
  vote_minimum_budget_projects_number: Número mínimo de projetos para votar
@@ -372,8 +335,6 @@ pt-BR:
372
335
  orders:
373
336
  checkout:
374
337
  error: Ocorreu um erro ao processar seu voto.
375
- success_html:
376
- success_no_left_budgets_html: Seu voto foi aceito com sucesso.
377
338
  destroy:
378
339
  error: Ocorreu um erro ao cancelar o seu voto.
379
340
  success: Seu voto foi cancelado com sucesso.
@@ -9,7 +9,6 @@ pt:
9
9
  weight: Posição de ordenamento
10
10
  project:
11
11
  budget_amount: Valor do orçamento
12
- decidim_category_id: Categoria
13
12
  description: Descrição
14
13
  proposal_ids: Propostas relacionadas
15
14
  selected: Seleccionado para implementação
@@ -24,7 +23,6 @@ pt:
24
23
  actions:
25
24
  attachment_collections: Pastas
26
25
  attachments: Anexos
27
- destroy: Eliminar
28
26
  edit: Editar
29
27
  edit_projects: Gerir projectos
30
28
  import: Importar propostas para projetos
@@ -100,12 +98,14 @@ pt:
100
98
  project:
101
99
  fields:
102
100
  title: Título
101
+ order:
102
+ status:
103
+ title: O seu voto foi aceite corretamente
103
104
  order_summary_mailer:
104
105
  order_summary:
105
106
  selected_projects: 'Os projetos que selecionou são:'
106
107
  subject: Votou no espaço participativo %{space_name}
107
108
  voted_on_space: Votou no orçamento %{budget_name} para o espaço participativo %{space_name}.
108
- voted_on_space_with_scope: Votou no orçamento %{budget_name} para o espaço participativo %{space_name} em %{scope_name} (%{scope_type}).
109
109
  projects:
110
110
  budget_confirm:
111
111
  are_you_sure: Se mudar de ideias, pode alterar o seu voto mais tarde.
@@ -129,7 +129,6 @@ pt:
129
129
  one: 1 projeto
130
130
  other: "%{count} projetos"
131
131
  filters:
132
- category: Categoria
133
132
  search: Pesquisar
134
133
  status: Estado
135
134
  status_values:
@@ -169,7 +168,6 @@ pt:
169
168
  more_information_modal: Mais informações modal
170
169
  projects_per_page: Projetos por página
171
170
  resources_permissions_enabled: Permissões de acções podem ser definidas para cada projecto
172
- scopes_enabled: Âmbitos activados
173
171
  title: Título
174
172
  total_budget: Orçamento total
175
173
  vote_minimum_budget_projects_number: Número mínimo de projetos a votar
@@ -3,15 +3,12 @@ ro:
3
3
  activemodel:
4
4
  attributes:
5
5
  budget:
6
- decidim_scope_id: Domeniu de interes
7
6
  description: Descriere
8
7
  title: Titlu
9
8
  total_budget: Total budget
10
9
  weight: Ordinea în poziționare
11
10
  project:
12
11
  budget_amount: Sumă bugetară
13
- decidim_category_id: Categorie
14
- decidim_scope_id: Domeniu de interes
15
12
  description: Descriere
16
13
  proposal_ids: Propuneri asociate
17
14
  proposals: Propuneri
@@ -29,10 +26,6 @@ ro:
29
26
  admin:
30
27
  filters:
31
28
  projects:
32
- category_id_eq:
33
- label: Categorie
34
- scope_id_eq:
35
- label: Domeniu de interes
36
29
  selected_at_null:
37
30
  label: Selectate
38
31
  values:
@@ -42,7 +35,6 @@ ro:
42
35
  actions:
43
36
  attachment_collections: Dosare
44
37
  attachments: Atașamente
45
- destroy: Ștergere
46
38
  edit: Editare
47
39
  edit_projects: Gestionați proiectele
48
40
  import: Importă propuneri în proiecte
@@ -77,8 +69,6 @@ ro:
77
69
  index:
78
70
  actions: Acțiuni
79
71
  cancel: Anulează
80
- change_category: Schimbă categoria
81
- change_scope: Schimbă domeniul
82
72
  change_selected: Schimbă starea selectată
83
73
  finished_orders: Voturi terminate
84
74
  pending_orders: Voturi în așteptare
@@ -86,7 +76,6 @@ ro:
86
76
  selected: Selectate
87
77
  title: Proiecte
88
78
  update: Actualizare
89
- update_scope_button: Actualizează domeniu
90
79
  new:
91
80
  create: Creează
92
81
  title: Proiect nou
@@ -126,15 +115,16 @@ ro:
126
115
  total_budget: Buget total
127
116
  project:
128
117
  fields:
129
- category: Categorie
130
118
  id: ID
131
119
  title: Titlu
120
+ order:
121
+ status:
122
+ title: Votul tău a fost acceptat cu succes
132
123
  order_summary_mailer:
133
124
  order_summary:
134
125
  selected_projects: 'Proiectele pe care le-ai selectat sunt:'
135
126
  subject: Ai votat pentru spațiul participativ %{space_name}
136
127
  voted_on_space: Ai votat pentrul bugetul %{budget_name} aferent spațiului participativ %{space_name}.
137
- voted_on_space_with_scope: Ai votat pentrul bugetul %{budget_name} aferent spațiului participativ %{space_name} pentru %{scope_name} (%{scope_type}).
138
128
  projects:
139
129
  budget_confirm:
140
130
  are_you_sure: Dacă te răzgândești, poți modifica votul mai târziu.
@@ -164,8 +154,6 @@ ro:
164
154
  message: Votul tău nu a fost înregistrat încă pentru că nu ai finalizat procesul de votare. Sigur dorești să ieși din secțiunea de votare?
165
155
  title: Nu ai votat încă
166
156
  filters:
167
- category: Categorie
168
- scope: Domeniu de interes
169
157
  search: Caută
170
158
  status: Stadiu
171
159
  status_values:
@@ -206,8 +194,6 @@ ro:
206
194
  more_information_modal: Mai multe informații
207
195
  projects_per_page: Proiecte pe pagină
208
196
  resources_permissions_enabled: Pentru fiecare proiect pot fi setate drepturi pentru acțiuni
209
- scope_id: Domeniu de interes
210
- scopes_enabled: Domenii activate
211
197
  title: Titlu
212
198
  total_budget: Buget total
213
199
  vote_minimum_budget_projects_number: Numărul minim de proiecte de votat
@@ -3,7 +3,6 @@ ru:
3
3
  activemodel:
4
4
  attributes:
5
5
  project:
6
- decidim_category_id: Категория
7
6
  description: Описание
8
7
  proposal_ids: Подобные предложения
9
8
  title: Название
@@ -19,7 +18,6 @@ ru:
19
18
  actions:
20
19
  attachment_collections: Папки
21
20
  attachments: Прикрепленные файлы
22
- destroy: Удалить
23
21
  edit: Редактировать
24
22
  import: Внести в проекты позаимствованные предложения
25
23
  preview: Предпросмотр
@@ -53,6 +51,9 @@ ru:
53
51
  project:
54
52
  fields:
55
53
  title: Название
54
+ order:
55
+ status:
56
+ title: Ваш голос был успешно принят
56
57
  projects:
57
58
  budget_confirm:
58
59
  cancel: Отменить
@@ -75,7 +76,6 @@ ru:
75
76
  many: "%{count} проектов"
76
77
  other: "%{count} проектов"
77
78
  filters:
78
- category: Категория
79
79
  search: Поиск
80
80
  project_budget_button:
81
81
  add: Добавить
@@ -3,7 +3,6 @@ sk:
3
3
  activemodel:
4
4
  attributes:
5
5
  project:
6
- decidim_category_id: Kategória
7
6
  description: Popis
8
7
  proposal_ids: Súvisiace návrhy
9
8
  title: Názov
@@ -19,7 +18,6 @@ sk:
19
18
  actions:
20
19
  attachment_collections: Priečinky
21
20
  attachments: Prílohy
22
- destroy: Odstrániť
23
21
  edit: Upraviť
24
22
  import: Importovať návrhy do projektov
25
23
  preview: Ukážka
@@ -53,6 +51,9 @@ sk:
53
51
  project:
54
52
  fields:
55
53
  title: Názov
54
+ order:
55
+ status:
56
+ title: Váš hlas bol úspešne schválený
56
57
  order_summary_mailer:
57
58
  order_summary:
58
59
  selected_projects: 'Vybrali ste tieto projekty:'
@@ -79,7 +80,6 @@ sk:
79
80
  many: "%{count} projekty"
80
81
  other: "%{count} projekty"
81
82
  filters:
82
- category: Kategória
83
83
  search: Hľadať
84
84
  orders:
85
85
  highest_cost: Najvyššie náklady