decidim-budgets 0.29.1 → 0.30.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
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/project_history_cell.rb +48 -0
  4. data/app/cells/decidim/budgets/project_metadata_cell.rb +3 -3
  5. data/app/cells/decidim/budgets/project_vote_button/show.erb +4 -2
  6. data/app/cells/decidim/budgets/project_vote_button_cell.rb +4 -0
  7. data/app/commands/decidim/budgets/admin/create_budget.rb +1 -1
  8. data/app/commands/decidim/budgets/admin/create_project.rb +1 -1
  9. data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +7 -10
  10. data/app/commands/decidim/budgets/admin/update_budget.rb +1 -1
  11. data/app/commands/decidim/budgets/admin/update_project.rb +2 -2
  12. data/app/commands/decidim/budgets/admin/update_project_selection.rb +1 -1
  13. data/app/controllers/concerns/decidim/budgets/admin/filterable.rb +7 -11
  14. data/app/controllers/decidim/budgets/admin/budgets_controller.rb +12 -15
  15. data/app/controllers/decidim/budgets/admin/projects_controller.rb +61 -85
  16. data/app/controllers/decidim/budgets/orders_controller.rb +7 -3
  17. data/app/controllers/decidim/budgets/projects_controller.rb +7 -16
  18. data/app/forms/decidim/budgets/admin/budget_form.rb +1 -18
  19. data/app/forms/decidim/budgets/admin/project_form.rb +8 -34
  20. data/app/forms/decidim/budgets/admin/project_import_proposals_form.rb +0 -11
  21. data/app/helpers/decidim/budgets/projects_helper.rb +6 -31
  22. data/app/models/decidim/budgets/budget.rb +2 -0
  23. data/app/models/decidim/budgets/project.rb +21 -1
  24. data/app/packs/stylesheets/budgets.scss +0 -2
  25. data/app/permissions/decidim/budgets/admin/permissions.rb +4 -4
  26. data/app/permissions/decidim/budgets/permissions.rb +2 -0
  27. data/app/presenters/decidim/budgets/admin_log/budget_presenter.rb +1 -1
  28. data/app/presenters/decidim/budgets/admin_log/project_presenter.rb +1 -1
  29. data/app/presenters/decidim/budgets/project_presenter.rb +28 -0
  30. data/app/queries/decidim/budgets/filtered_projects.rb +2 -2
  31. data/app/queries/decidim/budgets/metrics/budget_followers_metric_measure.rb +2 -2
  32. data/app/queries/decidim/budgets/metrics/budget_participants_metric_measure.rb +2 -2
  33. data/app/serializers/decidim/budgets/download_your_data_budgets_order_serializer.rb +2 -2
  34. data/app/views/decidim/budgets/admin/budgets/_actions.html.erb +21 -0
  35. data/app/views/decidim/budgets/admin/budgets/_budget-tr.html.erb +18 -0
  36. data/app/views/decidim/budgets/admin/budgets/_budgets-thead.html.erb +8 -0
  37. data/app/views/decidim/budgets/admin/budgets/_form.html.erb +0 -6
  38. data/app/views/decidim/budgets/admin/budgets/index.html.erb +16 -48
  39. data/app/views/decidim/budgets/admin/budgets/manage_trash.html.erb +19 -0
  40. data/app/views/decidim/budgets/admin/projects/_actions.html.erb +27 -0
  41. data/app/views/decidim/budgets/admin/projects/_bulk-actions.html.erb +0 -2
  42. data/app/views/decidim/budgets/admin/projects/_form.html.erb +6 -8
  43. data/app/views/decidim/budgets/admin/projects/_project-tr.html.erb +2 -27
  44. data/app/views/decidim/budgets/admin/projects/_projects-thead.html.erb +14 -0
  45. data/app/views/decidim/budgets/admin/projects/bulk_actions/_dropdown.html.erb +7 -10
  46. data/app/views/decidim/budgets/admin/projects/bulk_actions/_taxonomy_change.html.erb +23 -0
  47. data/app/views/decidim/budgets/admin/projects/index.html.erb +19 -21
  48. data/app/views/decidim/budgets/admin/projects/manage_trash.html.erb +26 -0
  49. data/app/views/decidim/budgets/admin/projects/update_attribute.js.erb +1 -1
  50. data/app/views/decidim/budgets/admin/proposals_imports/new.html.erb +0 -5
  51. data/app/views/decidim/budgets/budgets/index.html.erb +6 -1
  52. data/app/views/decidim/budgets/order_summary_mailer/order_summary.html.erb +0 -10
  53. data/app/views/decidim/budgets/orders/status.html.erb +52 -0
  54. data/app/views/decidim/budgets/projects/_order_progress_summary_content.html.erb +3 -3
  55. data/app/views/decidim/budgets/projects/index.html.erb +10 -17
  56. data/app/views/decidim/budgets/projects/index.js.erb +10 -0
  57. data/app/views/decidim/budgets/projects/show.html.erb +19 -11
  58. data/config/locales/ar.yml +4 -13
  59. data/config/locales/bg.yml +3 -44
  60. data/config/locales/bn-BD.yml +1 -0
  61. data/config/locales/bs-BA.yml +22 -0
  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 -40
  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 +176 -114
  71. data/config/locales/fi-plain.yml +107 -54
  72. data/config/locales/fi.yml +148 -95
  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 -7
  76. data/config/locales/gl.yml +3 -14
  77. data/config/locales/hu.yml +3 -41
  78. data/config/locales/id-ID.yml +3 -6
  79. data/config/locales/is-IS.yml +0 -6
  80. data/config/locales/it.yml +3 -10
  81. data/config/locales/ja.yml +92 -42
  82. data/config/locales/kaa.yml +0 -1
  83. data/config/locales/ko.yml +0 -12
  84. data/config/locales/lb.yml +3 -9
  85. data/config/locales/lt.yml +3 -42
  86. data/config/locales/lv.yml +3 -6
  87. data/config/locales/nl.yml +3 -25
  88. data/config/locales/no.yml +3 -15
  89. data/config/locales/pl.yml +5 -44
  90. data/config/locales/pt-BR.yml +4 -44
  91. data/config/locales/pt.yml +3 -10
  92. data/config/locales/ro-RO.yml +3 -18
  93. data/config/locales/ru.yml +3 -6
  94. data/config/locales/sk.yml +3 -6
  95. data/config/locales/sq-AL.yml +0 -9
  96. data/config/locales/sv.yml +96 -43
  97. data/config/locales/tr-TR.yml +3 -10
  98. data/config/locales/uk.yml +3 -6
  99. data/config/locales/zh-CN.yml +3 -9
  100. data/config/locales/zh-TW.yml +3 -40
  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 +2 -2
  106. data/lib/decidim/api/budget_type.rb +8 -5
  107. data/lib/decidim/api/budgets_type.rb +5 -8
  108. data/lib/decidim/api/project_type.rb +19 -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 +30 -23
  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 @@ el:
3
3
  activemodel:
4
4
  attributes:
5
5
  budget:
6
- decidim_scope_id: Πεδίο εφαρμογής
7
6
  description: Περιγραφή
8
7
  title: Τίτλος
9
8
  total_budget: Συνολικός προϋπολογισμός
10
9
  weight: Θέση κατάταξης
11
10
  project:
12
11
  budget_amount: Ποσό προϋπολογισμού
13
- decidim_category_id: Κατηγορία
14
- decidim_scope_id: Πεδίο εφαρμογής
15
12
  description: Περιγραφή
16
13
  proposal_ids: Σχετικές προτάσεις
17
14
  proposals: Προτάσεις
@@ -28,10 +25,6 @@ el:
28
25
  admin:
29
26
  filters:
30
27
  projects:
31
- category_id_eq:
32
- label: Κατηγορία
33
- scope_id_eq:
34
- label: Πεδίο εφαρμογής
35
28
  selected_at_null:
36
29
  label: Επιλέχθηκε
37
30
  values:
@@ -41,8 +34,6 @@ el:
41
34
  actions:
42
35
  attachment_collections: Φάκελοι
43
36
  attachments: Συνημμένα
44
- confirm_destroy: Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το έργο;
45
- destroy: Διαγραφή
46
37
  edit: Επεξεργασία
47
38
  edit_projects: Διαχείριση έργων
48
39
  import: Εισαγωγή προτάσεων σε έργα
@@ -54,9 +45,6 @@ el:
54
45
  create:
55
46
  invalid: Υπήρξε ένα πρόβλημα στη δημιουργία αυτού του προϋπολογισμού.
56
47
  success: Ο προϋπολογισμός δημιουργήθηκε επιτυχώς.
57
- destroy:
58
- invalid: Υπήρξε πρόβλημα με τη διαγραφή αυτού του προϋπολογισμού.
59
- success: Ο προϋπολογισμός διαγράφηκε επιτυχώς.
60
48
  edit:
61
49
  title: Επεξεργασία προϋπολογισμού
62
50
  update: Ενημέρωση προϋπολογισμού
@@ -83,16 +71,12 @@ el:
83
71
  create:
84
72
  invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτού του έργου.
85
73
  success: Το έργο δημιουργήθηκε επιτυχώς.
86
- destroy:
87
- success: Το έργο διαγράφηκε επιτυχώς.
88
74
  edit:
89
75
  title: Επεξεργασία έργου
90
76
  update: Ενημέρωση
91
77
  index:
92
78
  actions: Ενέργειες
93
79
  cancel: Ακύρωση
94
- change_category: Αλλαγή κατηγορίας
95
- change_scope: Αλλαγή πεδίου εφαρμογής
96
80
  change_selected: Αλλαγή επιλεγμένης κατάστασης
97
81
  deselect_implementation: Αποεπιλογή για υλοποίηση
98
82
  finished_orders: Ολοκληρωμένες ψηφοφορίες
@@ -101,32 +85,15 @@ el:
101
85
  selected: Επιλεγμένο
102
86
  title: Έργα
103
87
  update: Ενημέρωση
104
- update_scope_button: Ενημέρωση πεδίου εφαρμογής
105
88
  new:
106
89
  create: Δημιουργία
107
90
  title: Νέο έργο
108
91
  update:
109
92
  invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του έργου.
110
93
  success: Το έργο ενημερώθηκε με επιτυχία.
111
- update_category:
112
- invalid: 'Αυτά τα έργα είχαν ήδη την %{subject_name} κατηγορία: %{projects}.'
113
- select_a_category: Παρακαλώ επιλέξτε κατηγορία.
114
- select_a_project: Παρακαλώ επιλέξτε ένα έργο.
115
- success: 'Τα έργα ενημερώθηκαν επιτυχώς στην %{subject_name} κατηγορία: %{projects}.'
116
- update_scope:
117
- invalid: 'Αυτά τα έργα είχαν ήδη %{subject_name} εμβέλεια: %{projects}.'
118
- select_a_project: Παρακαλώ επιλέξτε ένα έργο.
119
- select_a_scope: Παρακαλώ επιλέξτε ένα πεδίο εφαρμογής.
120
- success: 'Τα έργα ενημερώθηκαν με επιτυχία στο %{subject_name} πεδίο εφαρμογής: %{projects}.'
121
94
  update_selected:
122
- invalid:
123
- selected: 'Αυτά τα έργα έχουν ήδη επιλεχθεί για υλοποίηση: %{projects}.'
124
- unselected: 'Αυτά τα έργα έχουν ήδη αποεπιλεχθεί για υλοποίηση: %{projects}.'
125
95
  select_a_project: Παρακαλώ επιλέξτε ένα έργο.
126
96
  select_a_selection: Παρακαλώ επιλέξτε μια κατάσταση υλοποίησης.
127
- success:
128
- selected: 'Αυτά τα έργα επιλέχθηκαν επιτυχώς για υλοποίηση: %{projects}.'
129
- unselected: 'Αυτά τα έργα αποεπιλέχθηκαν επιτυχώς για υλοποίηση: %{projects}.'
130
97
  proposals_imports:
131
98
  create:
132
99
  invalid: Υπήρξε ένα πρόβλημα κατά την εισαγωγή των προτάσεων στα έργα.
@@ -181,15 +148,16 @@ el:
181
148
  total_budget: Συνολικός προϋπολογισμός
182
149
  project:
183
150
  fields:
184
- category: Κατηγορία
185
151
  id: ID
186
152
  title: Τίτλος
153
+ order:
154
+ status:
155
+ title: Η ψήφος σας έγινε δεκτή με επιτυχία
187
156
  order_summary_mailer:
188
157
  order_summary:
189
158
  selected_projects: 'Τα έργα που έχετε επιλέξει είναι τα εξής:'
190
159
  subject: Ψηφίσατε για τον χώρο συμμετοχής %{space_name}
191
160
  voted_on_space: Ψηφίσατε τον %{budget_name} προϋπολογισμό για τον %{space_name} συμμετοχικό χώρο.
192
- voted_on_space_with_scope: Ψηφίσατε τον %{budget_name} προϋπολογισμό για τον %{space_name} συμμετοχικό χώρο στο %{scope_name} (%{scope_type}).
193
161
  projects:
194
162
  budget_confirm:
195
163
  are_you_sure: Αν αλλάξετε γνώμη, μπορείτε να αλλάξετε την ψήφο σας αργότερα.
@@ -221,8 +189,6 @@ el:
221
189
  message: Η ψήφος σας δεν έχει εγγραφεί επειδή δεν έχετε ολοκληρώσει ακόμα τη διαδικασία ψηφοφορίας. Είστε σίγουροι ότι θέλετε να βγείτε από την ψηφοφορία;
222
190
  title: Δεν έχετε ψηφίσει ακόμα
223
191
  filters:
224
- category: Κατηγορία
225
- scope: Πεδίο εφαρμογής
226
192
  search: Αναζήτηση
227
193
  status: Κατάσταση
228
194
  status_values:
@@ -276,13 +242,10 @@ el:
276
242
  errors:
277
243
  budget_voting_rule_only_one: Μόνο ένας κανόνας ψηφοφορίας πρέπει να είναι ενεργοποιημένος.
278
244
  budget_voting_rule_required: Απαιτείται ένας κανόνας ψηφοφορίας.
279
- geocoding_enabled: Γεωκωδικοποίηση ενεργοποιημένη
280
245
  landing_page_content: Σελίδα προορισμού προϋπολογισμών
281
246
  more_information_modal: Παράθυρο για περισσότερες πληροφορίες
282
247
  projects_per_page: Έργα ανά σελίδα
283
248
  resources_permissions_enabled: Τα δικαιώματα ενεργειών μπορούν να οριστούν για κάθε έργο
284
- scope_id: Πεδίο εφαρμογής
285
- scopes_enabled: Ενεργοποιημένα πεδία εφαρμογών
286
249
  title: Τίτλος
287
250
  total_budget: Συνολικός προϋπολογισμός
288
251
  vote_minimum_budget_projects_number: Ελάχιστος αριθμός έργων προς ψηφοφορία
@@ -3,15 +3,12 @@ en:
3
3
  activemodel:
4
4
  attributes:
5
5
  budget:
6
- decidim_scope_id: Scope
7
6
  description: Description
8
7
  title: Title
9
8
  total_budget: Total budget
10
9
  weight: Order position
11
10
  project:
12
11
  budget_amount: Budget amount
13
- decidim_category_id: Category
14
- decidim_scope_id: Scope
15
12
  description: Description
16
13
  proposal_ids: Related proposals
17
14
  proposals: Proposals
@@ -21,6 +18,10 @@ en:
21
18
  scope_id: Scope
22
19
  activerecord:
23
20
  models:
21
+ decidim:
22
+ budgets:
23
+ project:
24
+ text: 'It was added to this budget: %{link}'
24
25
  decidim/budgets/budget:
25
26
  one: Budget
26
27
  other: Budgets
@@ -29,23 +30,25 @@ en:
29
30
  other: Projects
30
31
  decidim:
31
32
  admin:
33
+ admin_log:
34
+ changeset:
35
+ projects: Projects
32
36
  filters:
33
37
  projects:
34
- category_id_eq:
35
- label: Category
36
- scope_id_eq:
37
- label: Scope
38
38
  selected_at_null:
39
39
  label: Selected
40
40
  values:
41
41
  'false': Selected for implementation
42
42
  'true': Not selected for implementation
43
+ taxonomies_part_of_contains:
44
+ label: Taxonomy
43
45
  budgets:
44
46
  actions:
45
47
  attachment_collections: Folders
46
48
  attachments: Attachments
47
- confirm_destroy: Are you sure you want to delete this project?
48
- destroy: Delete
49
+ confirm_delete_budget: Are you sure you want to delete this budget?
50
+ confirm_delete_project: Are you sure you want to delete this project?
51
+ deleted_budgets_info: Deleted budgets can be restored from the trash.
49
52
  edit: Edit
50
53
  edit_projects: Manage projects
51
54
  import: Import proposals to projects
@@ -54,14 +57,13 @@ en:
54
57
  preview: Preview
55
58
  send_voting_reminders: Send voting reminders
56
59
  title: Actions
60
+ view_deleted_budgets: View deleted budgets
61
+ view_deleted_projects: View deleted projects
57
62
  admin:
58
63
  budgets:
59
64
  create:
60
65
  invalid: There was a problem creating this budget.
61
66
  success: Budget successfully created.
62
- destroy:
63
- invalid: There was a problem deleting this budget.
64
- success: Budget successfully deleted.
65
67
  edit:
66
68
  title: Edit budget
67
69
  update: Update budget
@@ -71,6 +73,8 @@ en:
71
73
  title: Budgets
72
74
  users_with_finished_orders: Users with finished votes
73
75
  users_with_pending_orders: Users with pending votes
76
+ manage_trash:
77
+ title: Deleted budgets
74
78
  new:
75
79
  create: Create budget
76
80
  title: New budget
@@ -88,8 +92,6 @@ en:
88
92
  create:
89
93
  invalid: There was a problem creating this project.
90
94
  success: Project successfully created.
91
- destroy:
92
- success: Project successfully deleted.
93
95
  edit:
94
96
  title: Edit project
95
97
  update: Update
@@ -97,9 +99,8 @@ en:
97
99
  actions: Actions
98
100
  cancel: Cancel
99
101
  change_budget: Change budget
100
- change_category: Change category
101
- change_scope: Change scope
102
102
  change_selected: Change selected state
103
+ change_taxonomies: Change taxonomies
103
104
  deselect_implementation: Unselect from implementation
104
105
  finished_orders: Finished votes
105
106
  pending_orders: Pending votes
@@ -111,7 +112,8 @@ en:
111
112
  title: Projects
112
113
  update: Update
113
114
  update_budget_button: Update project's budget
114
- update_scope_button: Update scope
115
+ manage_trash:
116
+ title: Deleted projects
115
117
  new:
116
118
  create: Create
117
119
  title: New project
@@ -119,28 +121,23 @@ en:
119
121
  invalid: There was a problem updating this project.
120
122
  success: Project successfully updated.
121
123
  update_budget:
122
- invalid: 'These projects already are in the same budget or their budgets are more than the maximum allowed: %{projects}.'
123
- select_a_project: Please select a project.
124
- success: 'Projects successfully updated to the %{subject_name} budget: %{projects}.'
125
- update_category:
126
- invalid: 'These projects already had the %{subject_name} category: %{projects}.'
127
- select_a_category: Please select a category.
124
+ invalid: 'These projects already are in the same budget or their budgets are more than the maximum allowed: %{errored}.'
128
125
  select_a_project: Please select a project.
129
- success: 'Projects successfully updated to the %{subject_name} category: %{projects}.'
130
- update_scope:
131
- invalid: 'These projects already had the %{subject_name} scope: %{projects}.'
132
- select_a_project: Please select a project.
133
- select_a_scope: Please select a scope.
134
- success: 'Projects successfully updated to the %{subject_name} scope: %{projects}.'
126
+ success: 'Projects successfully updated to the %{subject_name} budget: %{successful}.'
135
127
  update_selected:
136
128
  invalid:
137
- selected: 'These projects were already selected for implementation: %{projects}.'
138
- unselected: 'These projects were already unselected from implementation: %{projects}.'
129
+ selected: 'These projects were already selected for implementation: %{errored}.'
130
+ unselected: 'These projects were already unselected from implementation: %{errored}.'
139
131
  select_a_project: Please select a project.
140
132
  select_a_selection: Please select an implementation state.
141
133
  success:
142
- selected: 'These projects were successfully selected for implementation: %{projects}.'
143
- unselected: 'These projects were successfully unselected from implementation: %{projects}.'
134
+ selected: 'These projects were successfully selected for implementation: %{successful}.'
135
+ unselected: 'These projects were successfully unselected from implementation: %{successful}.'
136
+ update_taxonomies:
137
+ invalid: 'Taxonomies %{taxonomies} where already assigned on these projects: %{errored}.'
138
+ select_a_project: Please select a project.
139
+ select_a_taxonomy: Please select a taxonomy.
140
+ success: 'Projects successfully updated to the %{taxonomies} taxonomies: %{successful}.'
144
141
  proposals_imports:
145
142
  create:
146
143
  invalid: There was a problem importing the proposals into projects.
@@ -163,10 +160,14 @@ en:
163
160
  budget:
164
161
  create: "%{user_name} created the %{resource_name} budget in the %{space_name} space"
165
162
  delete: "%{user_name} deleted the %{resource_name} budget in the %{space_name} space"
163
+ restore: "%{user_name} restored the %{resource_name} budget in %{space_name}"
164
+ soft_delete: "%{user_name} moved the %{resource_name} budget in %{space_name} to the trash"
166
165
  update: "%{user_name} updated the %{resource_name} budget in the %{space_name} space"
167
166
  project:
168
167
  create: "%{user_name} created the %{resource_name} project in the %{space_name} space"
169
168
  delete: "%{user_name} deleted the %{resource_name} project in the %{space_name} space"
169
+ restore: "%{user_name} restored the %{resource_name} project in %{space_name}"
170
+ soft_delete: "%{user_name} moved the %{resource_name} project in %{space_name} to the trash"
170
171
  update: "%{user_name} updated the %{resource_name} project in the %{space_name} space"
171
172
  budget_information_modal:
172
173
  back_to: Back to %{component_name}
@@ -196,6 +197,8 @@ en:
196
197
  vote: Vote
197
198
  voted_budgets: Voted budgets
198
199
  voted_on: You have voted on %{links}.
200
+ creation:
201
+ text: They were added to this budget
199
202
  last_activity:
200
203
  new_vote_at: New budgeting vote at
201
204
  limit_announcement:
@@ -209,16 +212,30 @@ en:
209
212
  total_budget: Total budget
210
213
  project:
211
214
  fields:
212
- category: Category
213
215
  id: ID
214
216
  map: Map
217
+ taxonomies: Taxonomies
215
218
  title: Title
219
+ order:
220
+ status:
221
+ continue_voting: Continue voting
222
+ download_vote: Download your vote
223
+ pending_to_vote_budgets:
224
+ one: You can vote in other budget
225
+ other: You can vote in other budgets
226
+ share_vote: Share your vote
227
+ title: Your vote has been successfully accepted
228
+ view_votes:
229
+ one: View vote
230
+ other: View votes
231
+ votes_count:
232
+ one: Your vote for %{budget_name} has already been registered.
233
+ other: Your %{count} votes for %{budget_name} have already been registered.
216
234
  order_summary_mailer:
217
235
  order_summary:
218
236
  selected_projects: 'The projects that you have selected are:'
219
237
  subject: You have voted on the %{space_name} participatory space
220
238
  voted_on_space: You have voted on the %{budget_name} budget for the %{space_name} participatory space.
221
- voted_on_space_with_scope: You have voted on the %{budget_name} budget for the %{space_name} participatory space on %{scope_name} (%{scope_type}).
222
239
  projects:
223
240
  budget_confirm:
224
241
  are_you_sure: If you change your mind, you can change your vote later.
@@ -253,8 +270,6 @@ en:
253
270
  message: Your vote has not been registered because you have not yet completed the voting process. Are you sure you want to exit voting?
254
271
  title: You have not yet voted
255
272
  filters:
256
- category: Category
257
- scope: Scope
258
273
  search: Search
259
274
  status: Status
260
275
  status_values:
@@ -323,19 +338,22 @@ en:
323
338
  settings:
324
339
  global:
325
340
  announcement: Announcement
341
+ clear_all: Clear all
326
342
  comments_enabled: Comments enabled
327
343
  comments_max_length: Comments max length (Leave 0 for default value)
344
+ define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
328
345
  form:
329
346
  errors:
330
347
  budget_voting_rule_only_one: Only one voting rule must be enabled.
331
348
  budget_voting_rule_required: One voting rule is required.
332
- geocoding_enabled: Geocoding enabled
349
+ geocoding_enabled: Maps enabled
333
350
  landing_page_content: Budgets landing page
334
351
  more_information_modal: More information modal
352
+ no_taxonomy_filters_found: No taxonomy filters found.
335
353
  projects_per_page: Projects per page
336
354
  resources_permissions_enabled: Actions permissions can be set for each project
337
- scope_id: Scope
338
- scopes_enabled: Scopes enabled
355
+ taxonomy_filters: Select filters for the component
356
+ taxonomy_filters_add: Add filter
339
357
  title: Title
340
358
  total_budget: Total budget
341
359
  vote_minimum_budget_projects_number: Minimum number of projects to vote
@@ -363,6 +381,18 @@ en:
363
381
  disabled: Voting disabled
364
382
  enabled: Voting enabled
365
383
  finished: Voting finished
384
+ download_your_data:
385
+ help:
386
+ orders:
387
+ budget: The budget that the order is related to
388
+ checked_out_at: The date and time when the order was checked out
389
+ component: The component that the order is related to
390
+ created_at: The date and time when the order was created
391
+ id: The unique identifier of the order
392
+ projects: The projects that the order has voted on
393
+ updated_at: The date and time when the order was updated
394
+ show:
395
+ projects: Projects export
366
396
  events:
367
397
  budgets:
368
398
  budget_published:
@@ -370,11 +400,34 @@ en:
370
400
  email_outro: You have received this notification because you are following %{participatory_space_title}. You can stop receiving notifications following the previous link.
371
401
  email_subject: The %{resource_title} budget is now active for %{participatory_space_title}.
372
402
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> budget is now active for %{participatory_space_title}.
403
+ open_data:
404
+ help:
405
+ projects:
406
+ address: The address of the project (if any)
407
+ budget: Data regarding the budget (e.g. "2021 Budget") of the project
408
+ budget_amount: The total amount of the budget for this project
409
+ comments: The number of comments this project has received
410
+ component: The component that the project belongs to
411
+ confirmed_votes: The number of confirmed votes this project has received
412
+ created_at: The date and time when the project was created
413
+ description: The description of the project
414
+ follows_count: The number of follows the project has
415
+ id: The unique identifier of the project
416
+ latitude: The latitude of the project in case it has a physical location
417
+ longitude: The longitude of the project in case it has a physical location
418
+ participatory_space: To which space (e.g. Participatory Process, or Assembly) this project belongs to
419
+ reference: The unique reference of the project
420
+ related_proposal_titles: The titles of the related proposals
421
+ related_proposal_urls: The URLs of the related proposals
422
+ related_proposals: The related proposals to this project
423
+ selected_at: The time at which the project was selected
424
+ taxonomies: The taxonomies of the project
425
+ title: The title of the project
426
+ updated_at: The last date the project was updated
427
+ url: The URL of the project
373
428
  orders:
374
429
  checkout:
375
430
  error: There was a problem processing your vote.
376
- success_html: <p>Your vote has been successfully accepted.</p> <p class="text-sm font-normal">You can explore the <a class="text-secondary underline" href="%{rest_of_budgets_link}">rest of budgets</a>.</p>
377
- success_no_left_budgets_html: Your vote has been successfully accepted.
378
431
  destroy:
379
432
  error: There was a problem canceling your vote.
380
433
  success: Your vote has been successfully canceled.