decidim-budgets 0.26.7 → 0.26.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/decidim/budgets/admin/application_controller.rb +0 -2
- data/app/controllers/decidim/budgets/admin/attachment_collections_controller.rb +3 -1
- data/app/controllers/decidim/budgets/admin/attachments_controller.rb +7 -1
- data/app/controllers/decidim/budgets/admin/budgets_controller.rb +1 -1
- data/app/controllers/decidim/budgets/line_items_controller.rb +2 -2
- data/app/controllers/decidim/budgets/orders_controller.rb +1 -1
- data/app/controllers/decidim/budgets/projects_controller.rb +6 -2
- data/app/forms/decidim/budgets/admin/budget_form.rb +2 -1
- data/app/models/decidim/budgets/order.rb +1 -0
- data/app/models/decidim/budgets/project.rb +6 -2
- data/app/views/decidim/budgets/admin/budgets/edit.html.erb +1 -0
- data/app/views/decidim/budgets/admin/budgets/index.html.erb +1 -0
- data/app/views/decidim/budgets/admin/budgets/new.html.erb +1 -0
- data/app/views/decidim/budgets/admin/projects/edit.html.erb +1 -0
- data/app/views/decidim/budgets/admin/projects/index.html.erb +1 -0
- data/app/views/decidim/budgets/admin/projects/new.html.erb +1 -0
- data/app/views/decidim/budgets/admin/proposals_imports/new.html.erb +1 -0
- data/config/environment.rb +3 -0
- data/config/locales/ar.yml +1 -1
- data/config/locales/ca.yml +4 -1
- data/config/locales/cs.yml +7 -2
- data/config/locales/de.yml +13 -5
- data/config/locales/el.yml +33 -1
- data/config/locales/en.yml +3 -0
- data/config/locales/es-MX.yml +6 -3
- data/config/locales/es-PY.yml +6 -3
- data/config/locales/es.yml +5 -2
- data/config/locales/eu.yml +57 -45
- data/config/locales/fi-plain.yml +4 -1
- data/config/locales/fi.yml +5 -2
- data/config/locales/fr-CA.yml +4 -1
- data/config/locales/fr.yml +4 -1
- data/config/locales/ga-IE.yml +1 -1
- data/config/locales/hu.yml +42 -2
- data/config/locales/id-ID.yml +1 -1
- data/config/locales/is-IS.yml +1 -2
- data/config/locales/it.yml +2 -2
- data/config/locales/ja.yml +4 -2
- data/config/locales/kaa.yml +10 -0
- data/config/locales/lb.yml +5 -3
- data/config/locales/lt.yml +2 -1
- data/config/locales/lv.yml +1 -1
- data/config/locales/nl.yml +2 -2
- data/config/locales/no.yml +1 -1
- data/config/locales/pl.yml +24 -1
- data/config/locales/pt-BR.yml +20 -1
- data/config/locales/pt.yml +3 -1
- data/config/locales/ru.yml +1 -1
- data/config/locales/sk.yml +1 -1
- data/config/locales/sq-AL.yml +1 -0
- data/config/locales/sv.yml +3 -2
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +3 -1
- data/config/locales/uk.yml +2 -2
- data/config/locales/zh-CN.yml +3 -0
- data/lib/decidim/budgets/version.rb +1 -1
- data/lib/decidim/budgets/workflows/all.rb +1 -1
- data/lib/decidim/budgets/workflows/base.rb +1 -1
- metadata +15 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3506906bab259ff3bb030e03cab1e81511085902d607ac3844809ce508f2f043
|
4
|
+
data.tar.gz: fadcadbd0a63acc1e441a2f6a91cb85cd3460ba50a04921dd94ce4c718d075e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1939070ab18683f8e34a7ce3829a044abc723510f820e86bd08bef265acfe26dcb3b96fe9c253f9026563645de3ce85c64479da5c587df7d096c91c86d637d04
|
7
|
+
data.tar.gz: f90f65355a7c0f84bfcc63208cfc536cada20178a11189e5b784a62e992085f5cf68eded867f9fdf09ec0abfca96fe12afd6c0affd4ed29895c6633c3df2427c
|
@@ -17,7 +17,9 @@ module Decidim
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def project
|
20
|
-
@project ||= Decidim::Budgets::Project
|
20
|
+
@project ||= Decidim::Budgets::Project
|
21
|
+
.joins("INNER JOIN decidim_budgets_budgets budget ON budget.id = decidim_budgets_projects.decidim_budgets_budget_id")
|
22
|
+
.where(budget: { component: current_component }).find(params[:project_id])
|
21
23
|
end
|
22
24
|
end
|
23
25
|
end
|
@@ -17,8 +17,14 @@ module Decidim
|
|
17
17
|
project
|
18
18
|
end
|
19
19
|
|
20
|
+
def projects
|
21
|
+
@projects ||= Decidim::Budgets::Project
|
22
|
+
.joins("INNER JOIN decidim_budgets_budgets budget ON budget.id = decidim_budgets_projects.decidim_budgets_budget_id")
|
23
|
+
.where(budget: { component: current_component })
|
24
|
+
end
|
25
|
+
|
20
26
|
def project
|
21
|
-
@project ||=
|
27
|
+
@project ||= projects.find(params[:project_id])
|
22
28
|
end
|
23
29
|
end
|
24
30
|
end
|
@@ -44,11 +44,11 @@ module Decidim
|
|
44
44
|
private
|
45
45
|
|
46
46
|
def project
|
47
|
-
@project ||=
|
47
|
+
@project ||= budget&.projects&.find_by(id: params[:project_id])
|
48
48
|
end
|
49
49
|
|
50
50
|
def budget
|
51
|
-
@budget ||=
|
51
|
+
@budget ||= Budget.find_by(id: params[:budget_id], component: current_component)
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
@@ -33,7 +33,7 @@ module Decidim
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def project
|
36
|
-
@project ||=
|
36
|
+
@project ||= budget&.projects&.find_by(id: params[:id])
|
37
37
|
end
|
38
38
|
|
39
39
|
def search_klass
|
@@ -50,7 +50,11 @@ module Decidim
|
|
50
50
|
end
|
51
51
|
|
52
52
|
def default_filter_status_params
|
53
|
-
|
53
|
+
show_selected_budgets? ? %w(selected) : %w(all)
|
54
|
+
end
|
55
|
+
|
56
|
+
def show_selected_budgets?
|
57
|
+
voting_finished? && budget.projects.selected.any?
|
54
58
|
end
|
55
59
|
|
56
60
|
def context_params
|
@@ -16,7 +16,8 @@ module Decidim
|
|
16
16
|
attribute :decidim_scope_id, Integer
|
17
17
|
|
18
18
|
validates :title, translatable_presence: true
|
19
|
-
validates :weight,
|
19
|
+
validates :weight, numericality: { greater_than_or_equal_to: 0 }
|
20
|
+
validates :total_budget, numericality: { greater_than: 0 }
|
20
21
|
validates :scope, presence: true, if: ->(form) { form.decidim_scope_id.present? }
|
21
22
|
validates :decidim_scope_id, scope_belongs_to_component: true, if: ->(form) { form.decidim_scope_id.present? }
|
22
23
|
|
@@ -54,12 +54,16 @@ module Decidim
|
|
54
54
|
Decidim::Budgets::AdminLog::ProjectPresenter
|
55
55
|
end
|
56
56
|
|
57
|
+
def resource_locator
|
58
|
+
::Decidim::ResourceLocatorPresenter.new([budget, self])
|
59
|
+
end
|
60
|
+
|
57
61
|
def polymorphic_resource_path(url_params)
|
58
|
-
|
62
|
+
resource_locator.path(url_params)
|
59
63
|
end
|
60
64
|
|
61
65
|
def polymorphic_resource_url(url_params)
|
62
|
-
|
66
|
+
resource_locator.url(url_params)
|
63
67
|
end
|
64
68
|
|
65
69
|
# Public: Overrides the `comments_have_votes?` Commentable concern method.
|
@@ -1,3 +1,4 @@
|
|
1
|
+
<% add_decidim_page_title("#{translated_attribute(budget.title)} - #{t(".title")}") %>
|
1
2
|
<%= decidim_form_for([budget, @form], html: { class: "form edit_project" }) do |f| %>
|
2
3
|
<%= render partial: "form", object: f, locals: { title: "#{translated_attribute(budget.title)} > #{t(".title")}" } %>
|
3
4
|
|
@@ -1,3 +1,4 @@
|
|
1
|
+
<% add_decidim_page_title("#{translated_attribute(budget.title)} - #{t(".title")}") %>
|
1
2
|
<%= decidim_form_for([budget, @form], html: { class: "form new_project" }) do |f| %>
|
2
3
|
<%= render partial: "form", object: f, locals: { title: "#{translated_attribute(budget.title)} > #{t(".title")}" } %>
|
3
4
|
|
data/config/locales/ar.yml
CHANGED
@@ -115,6 +115,7 @@ ar:
|
|
115
115
|
description: لقد قمت بالتصويت بالفعل على الميزانية. إذا غيرت رأيك ، يمكنك %{cancel_link}.
|
116
116
|
title: اكتمال التصويت في الميزانية
|
117
117
|
title: عليك أن تقرر الميزانية
|
118
|
+
total_budget: الميزانية الإجمالية
|
118
119
|
count:
|
119
120
|
projects_count:
|
120
121
|
zero: "%{count} مشاريع"
|
@@ -128,7 +129,6 @@ ar:
|
|
128
129
|
scope: نطاق
|
129
130
|
search: بحث
|
130
131
|
filters_small_view:
|
131
|
-
close_modal: إغلاق مشروط
|
132
132
|
filter: منقي
|
133
133
|
filter_by: مصنف بواسطة
|
134
134
|
unfold: كشف
|
data/config/locales/ca.yml
CHANGED
@@ -20,6 +20,9 @@ ca:
|
|
20
20
|
scope_id: Àmbit
|
21
21
|
activerecord:
|
22
22
|
models:
|
23
|
+
decidim/budgets/budget:
|
24
|
+
one: Pressupost
|
25
|
+
other: Pressupostos
|
23
26
|
decidim/budgets/project:
|
24
27
|
one: Projecte
|
25
28
|
other: Projectes
|
@@ -222,7 +225,7 @@ ca:
|
|
222
225
|
not_selected: No seleccionat
|
223
226
|
selected: Seleccionat
|
224
227
|
filters_small_view:
|
225
|
-
close_modal: Tancar
|
228
|
+
close_modal: Tancar el modal
|
226
229
|
filter: Filtra
|
227
230
|
filter_by: Filtra per
|
228
231
|
unfold: Desplegar
|
data/config/locales/cs.yml
CHANGED
@@ -20,6 +20,11 @@ cs:
|
|
20
20
|
scope_id: Oblast působnosti
|
21
21
|
activerecord:
|
22
22
|
models:
|
23
|
+
decidim/budgets/budget:
|
24
|
+
one: Rozpočet
|
25
|
+
few: Rozpočty
|
26
|
+
many: Rozpočtů
|
27
|
+
other: Rozpočtů
|
23
28
|
decidim/budgets/project:
|
24
29
|
one: Projekt
|
25
30
|
few: Projekty
|
@@ -212,7 +217,7 @@ cs:
|
|
212
217
|
other: "%{count} projektů"
|
213
218
|
exit_modal:
|
214
219
|
cancel: Návrat k hlasování
|
215
|
-
close_modal: Zavřít
|
220
|
+
close_modal: Zavřít okno
|
216
221
|
exit: Ukončit hlasování
|
217
222
|
message: Váš hlas nebyl zaregistrován, protože jste ještě nedokončili proces hlasování. Opravdu chcete ukončit hlasování?
|
218
223
|
title: Zatím jste nehlasovali
|
@@ -226,7 +231,7 @@ cs:
|
|
226
231
|
not_selected: Nevybráno
|
227
232
|
selected: Vybrané
|
228
233
|
filters_small_view:
|
229
|
-
close_modal: Zavřít
|
234
|
+
close_modal: Zavřít okno
|
230
235
|
filter: Filtr
|
231
236
|
filter_by: Filtrovat podle
|
232
237
|
unfold: Rozbalit
|
data/config/locales/de.yml
CHANGED
@@ -16,8 +16,13 @@ de:
|
|
16
16
|
proposals: Vorschläge
|
17
17
|
selected: Zur Implementierung ausgewählt
|
18
18
|
title: Titel
|
19
|
+
proposals_import:
|
20
|
+
scope_id: Themenbereich
|
19
21
|
activerecord:
|
20
22
|
models:
|
23
|
+
decidim/budgets/budget:
|
24
|
+
one: Budget
|
25
|
+
other: Budgets
|
21
26
|
decidim/budgets/project:
|
22
27
|
one: Projekt
|
23
28
|
other: Projekte
|
@@ -73,7 +78,7 @@ de:
|
|
73
78
|
projects: Projekte
|
74
79
|
models:
|
75
80
|
budget:
|
76
|
-
name:
|
81
|
+
name: Budget
|
77
82
|
project:
|
78
83
|
name: Projekt
|
79
84
|
projects:
|
@@ -102,8 +107,10 @@ de:
|
|
102
107
|
success: "%{number} Vorschläge wurden erfolgreich in Projekte importiert"
|
103
108
|
new:
|
104
109
|
create: Importieren Sie Vorschläge in Projekte
|
110
|
+
default_budget: Standardbudget
|
105
111
|
import_all_accepted_proposals: Alle akzeptierten Vorschläge importieren
|
106
112
|
no_components: Es gibt keine weiteren Vorschlagskomponenten in diesem partizipativen Raum, um die Vorschläge in Projekte zu importieren.
|
113
|
+
origin_component_id: Ursprungskomponente
|
107
114
|
select_component: Bitte wählen Sie eine Komponente aus
|
108
115
|
title: Vorschläge importieren
|
109
116
|
admin_log:
|
@@ -160,7 +167,7 @@ de:
|
|
160
167
|
projects:
|
161
168
|
budget_confirm:
|
162
169
|
are_you_sure: Wenn du deine Meinung änderst, kannst du deine Stimme nachträglich ändern.
|
163
|
-
cancel:
|
170
|
+
cancel: Abbrechen
|
164
171
|
confirm: Bestätigen
|
165
172
|
description: Dies sind die Projekte, die Sie für das Budget ausgewählt haben.
|
166
173
|
title: Bestätigung der Abstimmung
|
@@ -193,7 +200,7 @@ de:
|
|
193
200
|
rules:
|
194
201
|
title: Budgetregeln
|
195
202
|
title: Sie entscheiden über das Budget
|
196
|
-
total_budget: Gesamtbudget
|
203
|
+
total_budget: Gesamtbudget; Gesamtetat
|
197
204
|
total_projects: Stimmen insgesamt
|
198
205
|
vote_threshold_percent_rule:
|
199
206
|
description: Welche Projekte sollen finanziert werden? Wählen Sie Projekte im Wert von mindestens %{minimum_budget} aus und stimmen Sie entsprechend Ihren Präferenzen ab, um das Budget festzulegen.
|
@@ -218,12 +225,12 @@ de:
|
|
218
225
|
not_selected: Nicht ausgewählt
|
219
226
|
selected: Ausgewählt
|
220
227
|
filters_small_view:
|
221
|
-
close_modal:
|
228
|
+
close_modal: Dialog schließen
|
222
229
|
filter: Filter
|
223
230
|
filter_by: Filtern nach
|
224
231
|
unfold: Aufklappen
|
225
232
|
order_progress:
|
226
|
-
vote:
|
233
|
+
vote: Abstimmen
|
227
234
|
order_selected_projects:
|
228
235
|
remove: Löschen
|
229
236
|
selected_projects:
|
@@ -245,6 +252,7 @@ de:
|
|
245
252
|
votes:
|
246
253
|
one: Abstimmung
|
247
254
|
other: Abstimmungen
|
255
|
+
you_voted: Sie haben dafür gestimmt
|
248
256
|
project_budget_button:
|
249
257
|
add: Zur Abstimmung hinzufügen
|
250
258
|
add_descriptive: Projekt %{resource_name} Ihrer Stimme hinzufügen
|
data/config/locales/el.yml
CHANGED
@@ -13,14 +13,29 @@ el:
|
|
13
13
|
decidim_scope_id: Πεδίο εφαρμογής
|
14
14
|
description: Περιγραφή
|
15
15
|
proposal_ids: Σχετικές προτάσεις
|
16
|
+
proposals: Προτάσεις
|
16
17
|
selected: Επιλεγμένο για εφαρμογή
|
17
18
|
title: Τίτλος
|
19
|
+
proposals_import:
|
20
|
+
scope_id: Πεδίο εφαρμογής
|
18
21
|
activerecord:
|
19
22
|
models:
|
20
23
|
decidim/budgets/project:
|
21
24
|
one: Έργο
|
22
25
|
other: Έργα
|
23
26
|
decidim:
|
27
|
+
admin:
|
28
|
+
filters:
|
29
|
+
projects:
|
30
|
+
category_id_eq:
|
31
|
+
label: Κατηγορία
|
32
|
+
scope_id_eq:
|
33
|
+
label: Πεδίο εφαρμογής
|
34
|
+
selected_at_null:
|
35
|
+
label: Επιλέχθηκε
|
36
|
+
values:
|
37
|
+
'false': Επιλέχθηκε για υλοποίηση
|
38
|
+
'true': Δεν επιλέχθηκε για υλοποίηση
|
24
39
|
budgets:
|
25
40
|
actions:
|
26
41
|
attachment_collections: Φάκελοι
|
@@ -89,7 +104,10 @@ el:
|
|
89
104
|
success: "%{number} προτάσεις εισήχθηκαν με επιτυχία σε έργα"
|
90
105
|
new:
|
91
106
|
create: Εισαγωγή προτάσεων σε έργα
|
107
|
+
default_budget: Προεπιλεγμένος προϋπολογισμός
|
108
|
+
import_all_accepted_proposals: Εισαγωγή όλων των αποδεχθείσων προτάσεων
|
92
109
|
no_components: Δεν υπάρχουν άλλα στοιχεία προτάσεων σε αυτόν τον χώρο συμμετοχής για εισαγωγή των προτάσεων σε έργα.
|
110
|
+
origin_component_id: Στοιχείο καταγωγής
|
93
111
|
select_component: Επιλέξτε ένα στοιχείο
|
94
112
|
title: Προτάσεις εισαγωγής
|
95
113
|
admin_log:
|
@@ -119,6 +137,9 @@ el:
|
|
119
137
|
highlighted_cta: Ψηφίστε για %{name}
|
120
138
|
if_change_opinion: Αν αλλάξατε γνώμη, μπορείτε να
|
121
139
|
my_budgets: Οι προϋπολογισμοί μου
|
140
|
+
progress: Ολοκλήρωση ψηφοφορίας
|
141
|
+
show: Δείτε τα έργα
|
142
|
+
vote: Ψήφος
|
122
143
|
voted_on: Έχετε ψηφίσει για %{links}
|
123
144
|
limit_announcement:
|
124
145
|
cant_vote: Δεν μπορείτε να ψηφίσετε αυτόν τον προϋπολογισμό. <a href="%{landing_path}">Δοκιμάστε έναν άλλο προϋπολογισμό</a>.
|
@@ -131,6 +152,8 @@ el:
|
|
131
152
|
total_budget: Συνολικός προϋπολογισμός
|
132
153
|
project:
|
133
154
|
fields:
|
155
|
+
category: Κατηγορία
|
156
|
+
id: ID
|
134
157
|
title: Τίτλος
|
135
158
|
order_summary_mailer:
|
136
159
|
order_summary:
|
@@ -151,6 +174,7 @@ el:
|
|
151
174
|
close: Κλείσιμο
|
152
175
|
ok: OK
|
153
176
|
projects_excess:
|
177
|
+
description: Το έργο αυτό υπερβαίνει τον μέγιστο αριθμό έργων και δεν μπορεί να προστεθεί. Εάν θέλετε, μπορείτε να διαγράψετε ένα έργο που έχετε ήδη επιλέξει, για να μπορείτε να ψηφίσετε σύμφωνα με τις προτιμήσεις σας.
|
154
178
|
title: Υπέρβαση των μέγιστων έργων
|
155
179
|
budget_summary:
|
156
180
|
are_you_sure: Είστε βέβαιοι ότι θέλετε να ακυρώσετε την ψήφο σας;
|
@@ -180,6 +204,12 @@ el:
|
|
180
204
|
projects_count:
|
181
205
|
one: 1 έργο
|
182
206
|
other: "%{count} έργα"
|
207
|
+
exit_modal:
|
208
|
+
cancel: Επιστροφή στην ψηφοφορία
|
209
|
+
close_modal: Κλείσιμο παραθύρου
|
210
|
+
exit: Έξοδος από την ψηφοφορία
|
211
|
+
message: Η ψήφος σας δεν έχει εγγραφεί επειδή δεν έχετε ολοκληρώσει ακόμα τη διαδικασία ψηφοφορίας. Είστε σίγουροι ότι θέλετε να βγείτε από την ψηφοφορία;
|
212
|
+
title: Δεν έχετε ψηφίσει ακόμα
|
183
213
|
filters:
|
184
214
|
category: Κατηγορία
|
185
215
|
scope: Πεδίο εφαρμογής
|
@@ -190,7 +220,7 @@ el:
|
|
190
220
|
not_selected: Δεν έχει επιλεγεί
|
191
221
|
selected: Επιλεγμένο
|
192
222
|
filters_small_view:
|
193
|
-
close_modal: Κλείσιμο
|
223
|
+
close_modal: Κλείσιμο παραθύρου
|
194
224
|
filter: Φίλτρο
|
195
225
|
filter_by: Φιλτράρισμα κατά
|
196
226
|
unfold: Αποκάλυψη
|
@@ -217,6 +247,7 @@ el:
|
|
217
247
|
votes:
|
218
248
|
one: ψήφος
|
219
249
|
other: ψήφοι
|
250
|
+
you_voted: Ψηφίσατε για αυτό
|
220
251
|
project_budget_button:
|
221
252
|
add: Προσθέστε στην ψήφο σας
|
222
253
|
add_descriptive: Προσθήκη του έργου %{resource_name} στην ψήφο σας
|
@@ -251,6 +282,7 @@ el:
|
|
251
282
|
total_budget: Συνολικός προϋπολογισμός
|
252
283
|
vote_minimum_budget_projects_number: Ελάχιστος αριθμός έργων προς ψηφοφορία
|
253
284
|
vote_rule_minimum_budget_projects_enabled: 'Ενεργοποίηση κανόνα: Ελάχιστος αριθμός έργων προς ψηφοφορία'
|
285
|
+
vote_rule_selected_projects_enabled: 'Ενεργοποίηση κανόνα: Ελάχιστος και μέγιστος αριθμός έργων που θα ψηφιστούν'
|
254
286
|
vote_rule_threshold_percent_enabled: 'Ενεργοποίηση κανόνα: Ελάχιστο ποσοστό προϋπολογισμού'
|
255
287
|
vote_selected_projects_maximum: Μέγιστο ποσό έργων προς επιλογή
|
256
288
|
vote_selected_projects_minimum: Ελάχιστος αριθμός έργων προς επιλογή
|
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -20,6 +20,9 @@ es-MX:
|
|
20
20
|
scope_id: Ámbito
|
21
21
|
activerecord:
|
22
22
|
models:
|
23
|
+
decidim/budgets/budget:
|
24
|
+
one: Presupuesto
|
25
|
+
other: Presupuestos
|
23
26
|
decidim/budgets/project:
|
24
27
|
one: Proyecto
|
25
28
|
other: Proyectos
|
@@ -208,7 +211,7 @@ es-MX:
|
|
208
211
|
other: "%{count} proyectos"
|
209
212
|
exit_modal:
|
210
213
|
cancel: Volver a la votación
|
211
|
-
close_modal:
|
214
|
+
close_modal: Cierra el modal
|
212
215
|
exit: Salir de la votación
|
213
216
|
message: Tu voto no ha sido registrado porque aún no has completado el proceso de votación. ¿Seguro que quieres salir de la votación?
|
214
217
|
title: Aún no has votado
|
@@ -222,12 +225,12 @@ es-MX:
|
|
222
225
|
not_selected: No seleccionado
|
223
226
|
selected: Seleccionado
|
224
227
|
filters_small_view:
|
225
|
-
close_modal:
|
228
|
+
close_modal: Cierra el modal
|
226
229
|
filter: Filtrar
|
227
230
|
filter_by: Filtrar por
|
228
231
|
unfold: Desplegar
|
229
232
|
order_progress:
|
230
|
-
vote:
|
233
|
+
vote: Votar
|
231
234
|
order_selected_projects:
|
232
235
|
remove: Eliminar
|
233
236
|
selected_projects:
|
data/config/locales/es-PY.yml
CHANGED
@@ -20,6 +20,9 @@ es-PY:
|
|
20
20
|
scope_id: Ámbito
|
21
21
|
activerecord:
|
22
22
|
models:
|
23
|
+
decidim/budgets/budget:
|
24
|
+
one: Presupuesto
|
25
|
+
other: Presupuestos
|
23
26
|
decidim/budgets/project:
|
24
27
|
one: Proyecto
|
25
28
|
other: Proyectos
|
@@ -208,7 +211,7 @@ es-PY:
|
|
208
211
|
other: "%{count} proyectos"
|
209
212
|
exit_modal:
|
210
213
|
cancel: Volver a la votación
|
211
|
-
close_modal:
|
214
|
+
close_modal: Cierra el modal
|
212
215
|
exit: Salir de la votación
|
213
216
|
message: Tu voto no ha sido registrado porque aún no has completado el proceso de votación. ¿Seguro que quieres salir de la votación?
|
214
217
|
title: Aún no has votado
|
@@ -222,12 +225,12 @@ es-PY:
|
|
222
225
|
not_selected: No seleccionado
|
223
226
|
selected: Seleccionado
|
224
227
|
filters_small_view:
|
225
|
-
close_modal:
|
228
|
+
close_modal: Cierra el modal
|
226
229
|
filter: Filtrar
|
227
230
|
filter_by: Filtrar por
|
228
231
|
unfold: Desplegar
|
229
232
|
order_progress:
|
230
|
-
vote:
|
233
|
+
vote: Votar
|
231
234
|
order_selected_projects:
|
232
235
|
remove: Eliminar
|
233
236
|
selected_projects:
|
data/config/locales/es.yml
CHANGED
@@ -20,6 +20,9 @@ es:
|
|
20
20
|
scope_id: Ámbito
|
21
21
|
activerecord:
|
22
22
|
models:
|
23
|
+
decidim/budgets/budget:
|
24
|
+
one: Presupuesto
|
25
|
+
other: Presupuestos
|
23
26
|
decidim/budgets/project:
|
24
27
|
one: Proyecto
|
25
28
|
other: Proyectos
|
@@ -208,7 +211,7 @@ es:
|
|
208
211
|
other: "%{count} proyectos"
|
209
212
|
exit_modal:
|
210
213
|
cancel: Volver a la votación
|
211
|
-
close_modal:
|
214
|
+
close_modal: Cierra el modal
|
212
215
|
exit: Salir de la votación
|
213
216
|
message: Tu voto no ha sido registrado porque aún no has completado el proceso de votación. ¿Seguro que quieres salir de la votación?
|
214
217
|
title: Aún no has votado
|
@@ -222,7 +225,7 @@ es:
|
|
222
225
|
not_selected: No seleccionado
|
223
226
|
selected: Seleccionado
|
224
227
|
filters_small_view:
|
225
|
-
close_modal:
|
228
|
+
close_modal: Cierra el modal
|
226
229
|
filter: Filtrar
|
227
230
|
filter_by: Filtrar por
|
228
231
|
unfold: Desplegar
|