decidim-budgets 0.26.4 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/budgets/order_activity_cell.rb +29 -0
- data/app/commands/decidim/budgets/add_line_item.rb +4 -2
- data/app/commands/decidim/budgets/admin/create_budget.rb +1 -1
- data/app/commands/decidim/budgets/admin/create_order_reminders.rb +66 -0
- data/app/commands/decidim/budgets/admin/create_project.rb +5 -2
- data/app/commands/decidim/budgets/admin/destroy_budget.rb +1 -1
- data/app/commands/decidim/budgets/admin/destroy_project.rb +1 -1
- data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +6 -6
- data/app/commands/decidim/budgets/admin/update_budget.rb +1 -1
- data/app/commands/decidim/budgets/admin/update_project.rb +5 -2
- data/app/commands/decidim/budgets/admin/update_project_category.rb +48 -0
- data/app/commands/decidim/budgets/admin/update_project_scope.rb +54 -0
- data/app/commands/decidim/budgets/admin/update_project_selection.rb +56 -0
- data/app/commands/decidim/budgets/cancel_order.rb +1 -1
- data/app/commands/decidim/budgets/checkout.rb +10 -3
- data/app/commands/decidim/budgets/remove_line_item.rb +1 -1
- data/app/controllers/decidim/budgets/admin/projects_controller.rb +149 -1
- data/app/controllers/decidim/budgets/projects_controller.rb +13 -13
- data/app/forms/decidim/budgets/admin/budget_form.rb +2 -2
- data/app/forms/decidim/budgets/admin/order_reminder_form.rb +75 -0
- data/app/forms/decidim/budgets/admin/project_form.rb +19 -3
- data/app/helpers/decidim/budgets/admin/project_bulk_actions_helper.rb +20 -0
- data/app/helpers/decidim/budgets/projects_helper.rb +29 -0
- data/app/jobs/decidim/budgets/send_vote_reminder_job.rb +16 -0
- data/app/mailers/decidim/budgets/vote_reminder_mailer.rb +39 -0
- data/app/models/decidim/budgets/order.rb +2 -3
- data/app/models/decidim/budgets/project.rb +12 -4
- data/app/packs/entrypoints/decidim_budgets_admin.js +1 -0
- data/app/packs/src/decidim/budgets/admin/projects.js +143 -0
- data/app/permissions/decidim/budgets/admin/permissions.rb +8 -3
- data/app/queries/decidim/budgets/filtered_projects.rb +1 -1
- data/app/serializers/decidim/budgets/{data_portability_budgets_order_serializer.rb → download_your_data_budgets_order_serializer.rb} +2 -2
- data/app/services/decidim/budgets/order_reminder_generator.rb +85 -0
- data/app/views/decidim/budgets/admin/budgets/index.html.erb +3 -0
- data/app/views/decidim/budgets/admin/projects/_bulk-actions.html.erb +13 -0
- data/app/views/decidim/budgets/admin/projects/_form.html.erb +6 -0
- data/app/views/decidim/budgets/admin/projects/_project-tr.html.erb +50 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_change-selected.html.erb +15 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_dropdown.html.erb +36 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_recategorize.html.erb +15 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_scope-change.html.erb +25 -0
- data/app/views/decidim/budgets/admin/projects/index.html.erb +6 -54
- data/app/views/decidim/budgets/admin/projects/update_attribute.js.erb +26 -0
- data/app/views/decidim/budgets/projects/_filters.html.erb +4 -4
- data/app/views/decidim/budgets/projects/index.html.erb +28 -1
- data/app/views/decidim/budgets/projects/show.html.erb +6 -1
- data/app/views/decidim/budgets/vote_reminder_mailer/vote_reminder.html.erb +21 -0
- data/config/assets.rb +2 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +4 -0
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +46 -0
- data/config/locales/cs.yml +50 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +43 -2
- data/config/locales/el.yml +1 -0
- data/config/locales/en.yml +45 -0
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +43 -0
- data/config/locales/es-PY.yml +46 -0
- data/config/locales/es.yml +46 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +1 -0
- data/config/locales/fi-plain.yml +46 -0
- data/config/locales/fi.yml +46 -0
- data/config/locales/fr-CA.yml +45 -0
- data/config/locales/fr.yml +46 -1
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +10 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +19 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +1 -0
- data/config/locales/ja.yml +41 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +1 -0
- data/config/locales/lt.yml +1 -338
- data/config/locales/lv.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +13 -28
- data/config/locales/no.yml +16 -0
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +1 -0
- data/config/locales/pt-BR.yml +2 -1
- data/config/locales/pt.yml +1 -0
- data/config/locales/ro-RO.yml +1 -1
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +1 -0
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +22 -0
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +1 -0
- data/config/locales/uk.yml +1 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +1 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200804175222_votes_enabled_to_votes_choices.rb +2 -2
- data/db/migrate/20220428072638_add_geolocalization_fields_to_projects.rb +9 -0
- data/lib/decidim/budgets/admin_engine.rb +3 -0
- data/lib/decidim/budgets/component.rb +7 -6
- data/lib/decidim/budgets/engine.rb +17 -0
- data/lib/decidim/budgets/test/factories.rb +11 -0
- data/lib/decidim/budgets/version.rb +1 -1
- metadata +38 -21
- data/app/services/decidim/budgets/project_search.rb +0 -45
- data/config/locales/gn-PY.yml +0 -1
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -1
data/config/locales/cs.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
cs:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -90,16 +91,40 @@ cs:
|
|
90
91
|
title: Upravit projekt
|
91
92
|
update: Aktualizace
|
92
93
|
index:
|
94
|
+
actions: Akce
|
95
|
+
cancel: Zrušit
|
96
|
+
change_category: Změnit kategorii
|
97
|
+
change_scope: Změnit rozsah
|
98
|
+
change_selected: Změnit vybrané
|
99
|
+
deselect_implementation: Zrušit výběr
|
93
100
|
finished_orders: Dokončené hlasy
|
94
101
|
pending_orders: Čeká na hlasování
|
102
|
+
select_for_implementation: Vybrat
|
95
103
|
selected: Vybrané
|
96
104
|
title: Projekty
|
105
|
+
update: Aktualizovat
|
106
|
+
update_scope_button: Aktualizovat rozsah
|
97
107
|
new:
|
98
108
|
create: Vytvořit
|
99
109
|
title: Nový projekt
|
100
110
|
update:
|
101
111
|
invalid: Při aktualizaci tohoto projektu došlo k problému
|
102
112
|
success: Projekt byl úspěšně aktualizován
|
113
|
+
update_category:
|
114
|
+
invalid: 'Tyto projekty již mají kategorii %{subject_name}: %{projects}.'
|
115
|
+
select_a_category: Vyberte prosím kategorii
|
116
|
+
select_a_project: Vyberte projekt
|
117
|
+
success: 'Projekty byly úspěšně aktualizovány do kategorie %{subject_name}: %{projects}.'
|
118
|
+
update_scope:
|
119
|
+
invalid: 'Tyto projekty již mají rozsah %{subject_name}: %{projects}.'
|
120
|
+
select_a_project: Vyberte projekt
|
121
|
+
select_a_scope: Vyberte prosím rozsah
|
122
|
+
success: 'Projekty byly úspěšně aktualizovány na rozsah %{subject_name}: %{projects}.'
|
123
|
+
update_selected:
|
124
|
+
invalid: 'Tyto projekty již mají stejný výběr: %{projects}.'
|
125
|
+
select_a_project: Vyberte projekt
|
126
|
+
select_a_selection: Vyberte prosím výběr
|
127
|
+
success: 'Výběr projektů byl úspěšně změněn: %{projects}.'
|
103
128
|
proposals_imports:
|
104
129
|
create:
|
105
130
|
invalid: Při importu návrhů do projektů došlo k problému
|
@@ -112,6 +137,14 @@ cs:
|
|
112
137
|
origin_component_id: Původ komponenty
|
113
138
|
select_component: Vyberte součást
|
114
139
|
title: Importovat návrhy
|
140
|
+
reminders:
|
141
|
+
orders:
|
142
|
+
description: Uživatelé obdrží e-mail s odkazy na rozpočty, kde se čeká na vyjádření.
|
143
|
+
title:
|
144
|
+
one: Chystáte se odeslat připomenutí e-mailu %{count} uživateli
|
145
|
+
few: Chystáte se odeslat připomenutí e-mailu %{count} uživatelům
|
146
|
+
many: Chystáte se odeslat připomenutí e-mailu %{count} uživatelům
|
147
|
+
other: Chystáte se odeslat připomenutí e-mailu %{count} uživatelům
|
115
148
|
admin_log:
|
116
149
|
budget:
|
117
150
|
create: "%{user_name} vytvořil %{resource_name} rozpočet ve skupině %{space_name}"
|
@@ -143,6 +176,8 @@ cs:
|
|
143
176
|
show: Zobrazit projekty
|
144
177
|
vote: Hlasovat
|
145
178
|
voted_on: Hlasovali jste pro %{links}
|
179
|
+
last_activity:
|
180
|
+
new_vote_at_html: "<span>Nové hlasování o rozpočtu v %{link}</span>"
|
146
181
|
limit_announcement:
|
147
182
|
cant_vote: O tomto rozpočtu nelze hlasovat. <a href="%{landing_path}">Zkuste jiný rozpočet</a>.
|
148
183
|
limit_reached: Máte aktivní hlasy v %{links}. Chcete-li hlasovat o tomto rozpočtu, musíte <a href="%{landing_path}">smazat svůj hlas a začít znovu</a>.
|
@@ -156,6 +191,7 @@ cs:
|
|
156
191
|
fields:
|
157
192
|
category: Kategorie
|
158
193
|
id: ID
|
194
|
+
scope: Rozsah
|
159
195
|
title: Titul
|
160
196
|
order_summary_mailer:
|
161
197
|
order_summary:
|
@@ -230,6 +266,8 @@ cs:
|
|
230
266
|
filter: Filtr
|
231
267
|
filter_by: Filtrovat podle
|
232
268
|
unfold: Rozbalit
|
269
|
+
index:
|
270
|
+
view_project: Zobrazit projekt
|
233
271
|
order_progress:
|
234
272
|
vote: Hlasovat
|
235
273
|
order_selected_projects:
|
@@ -267,6 +305,17 @@ cs:
|
|
267
305
|
show:
|
268
306
|
budget: Rozpočet
|
269
307
|
view_all_projects: Zobrazit všechny projekty
|
308
|
+
vote_reminder_mailer:
|
309
|
+
vote_reminder:
|
310
|
+
email_budgets: 'Oblasti, kde máte nedokončené hlasování:'
|
311
|
+
email_intro: Zahájili jste hlasování o participačním rozpočtu, ale nedokončili jste ho.
|
312
|
+
email_link: Pokračovat v hlasování
|
313
|
+
email_outro: Nezapomeňte prosím dokončit hlasování. Chcete-li hlasovat, musíte nejprve vybrat návrh nebo návrhy, o kterých chcete hlasovat, a potvrdit svůj hlas pomocí tlačítka "Hlasování".
|
314
|
+
email_subject:
|
315
|
+
one: Máte nedokončené hlasování v participativním rozpočtovém hlasování
|
316
|
+
few: Máte nedokončené hlasování v participativním rozpočtovém hlasování
|
317
|
+
many: Máte nedokončená hlasování v participativním rozpočtovém hlasování
|
318
|
+
other: Máte nedokončené hlasování v participativním rozpočtovém hlasování
|
270
319
|
components:
|
271
320
|
budgets:
|
272
321
|
actions:
|
@@ -282,6 +331,7 @@ cs:
|
|
282
331
|
errors:
|
283
332
|
budget_voting_rule_only_one: Pouze jedno hlasovací pravidlo musí být povoleno
|
284
333
|
budget_voting_rule_required: Je vyžadováno jedno pravidlo hlasování
|
334
|
+
geocoding_enabled: Geokódování aktivováno
|
285
335
|
landing_page_content: Úvodní stránka rozpočtů
|
286
336
|
more_information_modal: Více informací
|
287
337
|
projects_per_page: Počet projektů na stránku
|
data/config/locales/da.yml
CHANGED
data/config/locales/de.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
de:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -13,7 +14,6 @@ de:
|
|
13
14
|
decidim_scope_id: Umfang
|
14
15
|
description: Beschreibung
|
15
16
|
proposal_ids: Ähnliche Vorschläge
|
16
|
-
proposals: Vorschläge
|
17
17
|
selected: Zur Implementierung ausgewählt
|
18
18
|
title: Titel
|
19
19
|
activerecord:
|
@@ -86,26 +86,55 @@ de:
|
|
86
86
|
title: Projekt bearbeiten
|
87
87
|
update: Aktualisieren
|
88
88
|
index:
|
89
|
+
actions: Aktionen
|
90
|
+
cancel: Abbrechen
|
91
|
+
change_category: Kategorie ändern
|
92
|
+
change_scope: Themenbereich ändern
|
93
|
+
change_selected: Auswahl ändern
|
94
|
+
deselect_implementation: Auswahl aufheben
|
89
95
|
finished_orders: Abgeschlossene Stimmen
|
90
96
|
pending_orders: Ausstehende Stimmen
|
97
|
+
select_for_implementation: Auswählen
|
91
98
|
selected: Ausgewählt
|
92
99
|
title: Projekte
|
100
|
+
update: Aktualisieren
|
101
|
+
update_scope_button: Themenbereich aktualisieren
|
93
102
|
new:
|
94
103
|
create: Erstellen
|
95
104
|
title: Neues Projekt
|
96
105
|
update:
|
97
106
|
invalid: Beim Aktualisieren dieses Projekts ist ein Problem aufgetreten
|
98
107
|
success: Projekt erfolgreich aktualisiert
|
108
|
+
update_category:
|
109
|
+
invalid: 'Diese Projekte gehörten bereits zur Kategorie %{subject_name}: %{projects}.'
|
110
|
+
select_a_category: Bitte wählen Sie eine Kategorie aus
|
111
|
+
select_a_project: Bitte wählen Sie ein Projekt
|
112
|
+
success: 'Die folgenden Projekte wurden erfolgreich zur Kategorie %{subject_name} hinzugefügt: %{projects}.'
|
113
|
+
update_scope:
|
114
|
+
invalid: 'Diese Projekte gehörten bereits zum Themenbereich %{subject_name}: %{projects}.'
|
115
|
+
select_a_project: Bitte wählen Sie ein Projekt
|
116
|
+
select_a_scope: Bitte wählen Sie einen Themenbereich
|
117
|
+
success: 'Die folgenden Projekte wurden erfolgreich zum Themenbereich %{subject_name} hinzugefügt: %{projects}.'
|
118
|
+
update_selected:
|
119
|
+
invalid: 'Diese Projekte wurden bereits zur Umsetzung ausgewählt: %{projects}.'
|
120
|
+
select_a_project: Bitte wählen Sie ein Projekt
|
121
|
+
select_a_selection: Bitte wähle einen Umsetzungsstatus
|
122
|
+
success: 'Ausgewählte Projekte erfolgreich geändert: %{projects}.'
|
99
123
|
proposals_imports:
|
100
124
|
create:
|
101
125
|
invalid: Beim Importieren der Vorschläge in Projekte ist ein Problem aufgetreten
|
102
126
|
success: "%{number} Vorschläge wurden erfolgreich in Projekte importiert"
|
103
127
|
new:
|
104
128
|
create: Importieren Sie Vorschläge in Projekte
|
105
|
-
import_all_accepted_proposals: Alle akzeptierten Vorschläge importieren
|
106
129
|
no_components: Es gibt keine weiteren Vorschlagskomponenten in diesem partizipativen Raum, um die Vorschläge in Projekte zu importieren.
|
107
130
|
select_component: Bitte wählen Sie eine Komponente aus
|
108
131
|
title: Vorschläge importieren
|
132
|
+
reminders:
|
133
|
+
orders:
|
134
|
+
description: Benutzer erhalten eine E-Mail mit Links zu den Budgets, in denen sie ausstehende Stimmen haben.
|
135
|
+
title:
|
136
|
+
one: Sie werden eine Erinnerungs-E-Mail an %{count} Benutzer zu senden
|
137
|
+
other: Sie werden eine Erinnerungs-E-Mail an %{count} Benutzer zu senden
|
109
138
|
admin_log:
|
110
139
|
budget:
|
111
140
|
create: "%{user_name} hat das Budget %{resource_name} in %{space_name} erstellt"
|
@@ -137,6 +166,8 @@ de:
|
|
137
166
|
show: Projekte ansehen
|
138
167
|
vote: Abstimmen
|
139
168
|
voted_on: Sie haben über %{links} abgestimmt
|
169
|
+
last_activity:
|
170
|
+
new_vote_at_html: "<span>Neue Budgetverteilung unter %{link}</span>"
|
140
171
|
limit_announcement:
|
141
172
|
cant_vote: Sie können nicht über dieses Budget abstimmen. <a href="%{landing_path}">Versuchen Sie es mit einem anderen Budget</a>.
|
142
173
|
limit_reached: Sie haben aktive Stimmen in %{links}. Um über dieses Budget abstimmen zu können, müssen Sie <a href="%{landing_path}">Ihre Stimme löschen und neu </a> beginnen.
|
@@ -150,6 +181,7 @@ de:
|
|
150
181
|
fields:
|
151
182
|
category: Kategorie
|
152
183
|
id: ID
|
184
|
+
scope: Themenbereich
|
153
185
|
title: Titel
|
154
186
|
order_summary_mailer:
|
155
187
|
order_summary:
|
@@ -255,6 +287,15 @@ de:
|
|
255
287
|
show:
|
256
288
|
budget: Budget
|
257
289
|
view_all_projects: Alle Projekte anzeigen
|
290
|
+
vote_reminder_mailer:
|
291
|
+
vote_reminder:
|
292
|
+
email_budgets: 'Bereiche, in denen Sie eine unvollendete Abstimmung haben:'
|
293
|
+
email_intro: Sie haben Ihre begonnene Abstimmung zur Verteilung des partizipativen Budgets noch nicht abgeschlossen.
|
294
|
+
email_link: Mit der Abstimmung fortfahren
|
295
|
+
email_outro: Denken Sie daran, die Abstimmung vollständig abzuschließen. Wählen Sie dazu den gewünschten Vorschlag oder die gewünschten Vorschläge aus, denen Sie Ihre Stimme geben möchten. Bestätigen Sie anschliessend Ihre Auswahl, indem Sie auf "Abstimmen" klicken.
|
296
|
+
email_subject:
|
297
|
+
one: Sie haben Ihre Abstimmung bei der Verteilung des partizipativen Budgets noch nicht abgeschlossen
|
298
|
+
other: Sie haben Ihre Abstimmung bei der Verteilung des partizipativen Budgets noch nicht abgeschlossen
|
258
299
|
components:
|
259
300
|
budgets:
|
260
301
|
actions:
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
@@ -89,16 +89,40 @@ en:
|
|
89
89
|
title: Edit project
|
90
90
|
update: Update
|
91
91
|
index:
|
92
|
+
actions: Actions
|
93
|
+
cancel: Cancel
|
94
|
+
change_category: Change category
|
95
|
+
change_scope: Change scope
|
96
|
+
change_selected: Change selected
|
97
|
+
deselect_implementation: Unselect
|
92
98
|
finished_orders: Finished votes
|
93
99
|
pending_orders: Pending votes
|
100
|
+
select_for_implementation: Select
|
94
101
|
selected: Selected
|
95
102
|
title: Projects
|
103
|
+
update: Update
|
104
|
+
update_scope_button: Update scope
|
96
105
|
new:
|
97
106
|
create: Create
|
98
107
|
title: New project
|
99
108
|
update:
|
100
109
|
invalid: There was a problem updating this project
|
101
110
|
success: Project successfully updated
|
111
|
+
update_category:
|
112
|
+
invalid: 'These projects already had the %{subject_name} category: %{projects}.'
|
113
|
+
select_a_category: Please select a category
|
114
|
+
select_a_project: Please select a project
|
115
|
+
success: 'Projects successfully updated to the %{subject_name} category: %{projects}.'
|
116
|
+
update_scope:
|
117
|
+
invalid: 'These projects already had the %{subject_name} scope: %{projects}.'
|
118
|
+
select_a_project: Please select a project
|
119
|
+
select_a_scope: Please select a scope
|
120
|
+
success: 'Projects successfully updated to the %{subject_name} scope: %{projects}.'
|
121
|
+
update_selected:
|
122
|
+
invalid: 'These projects already had the same selected: %{projects}.'
|
123
|
+
select_a_project: Please select a project
|
124
|
+
select_a_selection: Please select a selection
|
125
|
+
success: 'Projects selection successfully changed: %{projects}.'
|
102
126
|
proposals_imports:
|
103
127
|
create:
|
104
128
|
invalid: There was a problem importing the proposals into projects
|
@@ -111,6 +135,12 @@ en:
|
|
111
135
|
origin_component_id: Origin component
|
112
136
|
select_component: Please select a component
|
113
137
|
title: Import proposals
|
138
|
+
reminders:
|
139
|
+
orders:
|
140
|
+
description: Users will receive an email with links to the budgets where they have pending order.
|
141
|
+
title:
|
142
|
+
one: You are about to send an email reminder to %{count} user
|
143
|
+
other: You are about to send an email reminder to %{count} users
|
114
144
|
admin_log:
|
115
145
|
budget:
|
116
146
|
create: "%{user_name} created the %{resource_name} budget in the %{space_name} space"
|
@@ -142,6 +172,8 @@ en:
|
|
142
172
|
show: See projects
|
143
173
|
vote: Vote
|
144
174
|
voted_on: You've voted on %{links}
|
175
|
+
last_activity:
|
176
|
+
new_vote_at_html: "<span>New budgeting vote at %{link}</span>"
|
145
177
|
limit_announcement:
|
146
178
|
cant_vote: You can't vote on this budget. <a href="%{landing_path}">Try on another budget</a>.
|
147
179
|
limit_reached: You have active votes in %{links}. To vote on this budget you must <a href="%{landing_path}">delete your vote and start over</a>.
|
@@ -155,6 +187,7 @@ en:
|
|
155
187
|
fields:
|
156
188
|
category: Category
|
157
189
|
id: ID
|
190
|
+
scope: Scope
|
158
191
|
title: Title
|
159
192
|
order_summary_mailer:
|
160
193
|
order_summary:
|
@@ -227,6 +260,8 @@ en:
|
|
227
260
|
filter: Filter
|
228
261
|
filter_by: Filter by
|
229
262
|
unfold: Unfold
|
263
|
+
index:
|
264
|
+
view_project: View project
|
230
265
|
order_progress:
|
231
266
|
vote: Vote
|
232
267
|
order_selected_projects:
|
@@ -260,6 +295,15 @@ en:
|
|
260
295
|
show:
|
261
296
|
budget: Budget
|
262
297
|
view_all_projects: View all projects
|
298
|
+
vote_reminder_mailer:
|
299
|
+
vote_reminder:
|
300
|
+
email_budgets: 'Areas where you have an unfinished vote:'
|
301
|
+
email_intro: You have started the participatory budgeting vote, but have not completed it.
|
302
|
+
email_link: Go to continue voting
|
303
|
+
email_outro: Please remember to complete the vote. To vote, you must first select the proposal or proposals you want to vote on and then confirm your vote with the "Vote" button.
|
304
|
+
email_subject:
|
305
|
+
one: You have an unfinished vote in the participatory budgeting vote
|
306
|
+
other: You have unfinished votes in the participatory budgeting vote
|
263
307
|
components:
|
264
308
|
budgets:
|
265
309
|
actions:
|
@@ -275,6 +319,7 @@ en:
|
|
275
319
|
errors:
|
276
320
|
budget_voting_rule_only_one: Only one voting rule must be enabled
|
277
321
|
budget_voting_rule_required: One voting rule is required
|
322
|
+
geocoding_enabled: Geocoding enabled
|
278
323
|
landing_page_content: Budgets landing page
|
279
324
|
more_information_modal: More information modal
|
280
325
|
projects_per_page: Projects per page
|
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-MX:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -88,16 +89,40 @@ es-MX:
|
|
88
89
|
title: Editar proyecto
|
89
90
|
update: Actualizar
|
90
91
|
index:
|
92
|
+
actions: Acciones
|
93
|
+
cancel: Cancelar
|
94
|
+
change_category: Cambiar categoría
|
95
|
+
change_scope: Cambiar ámbito
|
96
|
+
change_selected: Cambiar la selección
|
97
|
+
deselect_implementation: Deseleccionar
|
91
98
|
finished_orders: Votos terminados
|
92
99
|
pending_orders: Votos pendientes
|
100
|
+
select_for_implementation: Seleccionar
|
93
101
|
selected: Seleccionado
|
94
102
|
title: Proyectos
|
103
|
+
update: Actualizar
|
104
|
+
update_scope_button: Actualizar ámbito
|
95
105
|
new:
|
96
106
|
create: Crear
|
97
107
|
title: Nuevo proyecto
|
98
108
|
update:
|
99
109
|
invalid: Ha habido un problema al actualizar este proyecto
|
100
110
|
success: Proyecto actualizado correctamente
|
111
|
+
update_category:
|
112
|
+
invalid: 'Estas propuestas ya tenían la categoría %{subject_name}: %{projects}.'
|
113
|
+
select_a_category: Por favor, selecciona una categoría
|
114
|
+
select_a_project: Por favor, selecciona un proyecto
|
115
|
+
success: 'Los siguientes proyectos se han actualizado correctamente a la categoría %{subject_name}: %{projects}.'
|
116
|
+
update_scope:
|
117
|
+
invalid: 'Estos proyectos ya tenían el ámbito %{subject_name}: %{projects}.'
|
118
|
+
select_a_project: Por favor, selecciona un proyecto
|
119
|
+
select_a_scope: Por favor, selecciona un ámbito
|
120
|
+
success: 'Los siguientes proyectos se han actualizado correctamente al ámbito %{subject_name}: %{projects}.'
|
121
|
+
update_selected:
|
122
|
+
invalid: 'Estos proyectos ya estaban seleccionados: %{projects}.'
|
123
|
+
select_a_project: Por favor, selecciona un proyecto
|
124
|
+
select_a_selection: Por favor, elige un estado
|
125
|
+
success: 'Selección de proyectos cambiada con éxito: %{projects}.'
|
101
126
|
proposals_imports:
|
102
127
|
create:
|
103
128
|
invalid: Ha habido un problema al importar las propuestas en proyectos
|
@@ -110,6 +135,9 @@ es-MX:
|
|
110
135
|
origin_component_id: Componente de origen
|
111
136
|
select_component: Por favor seleccione un componente
|
112
137
|
title: Importar propuestas
|
138
|
+
reminders:
|
139
|
+
orders:
|
140
|
+
description: Las usuarias recibirán un correo electrónico con enlaces a los presupuestos en los que tienen un pedido pendiente.
|
113
141
|
admin_log:
|
114
142
|
budget:
|
115
143
|
create: "%{user_name} creó el presupuesto %{resource_name} en el espacio %{space_name}"
|
@@ -141,6 +169,8 @@ es-MX:
|
|
141
169
|
show: Ver proyectos
|
142
170
|
vote: Votar
|
143
171
|
voted_on: Has votado en %{links}
|
172
|
+
last_activity:
|
173
|
+
new_vote_at_html: "<span>Nueva votación presupiestaria en %{link}</span>"
|
144
174
|
limit_announcement:
|
145
175
|
cant_vote: No puedes votar en este presupuesto. <a href="%{landing_path}"> Prueba con otro presupuesto</a>.
|
146
176
|
limit_reached: Tienes votos activos en %{links}. Para votar en este presupuesto debes <a href="%{landing_path}">borrar tu voto y empezar de nuevo</a>.
|
@@ -154,6 +184,7 @@ es-MX:
|
|
154
184
|
fields:
|
155
185
|
category: Categoría
|
156
186
|
id: ID
|
187
|
+
scope: Ámbito
|
157
188
|
title: Título
|
158
189
|
order_summary_mailer:
|
159
190
|
order_summary:
|
@@ -226,6 +257,8 @@ es-MX:
|
|
226
257
|
filter: Filtrar
|
227
258
|
filter_by: Filtrar por
|
228
259
|
unfold: Desplegar
|
260
|
+
index:
|
261
|
+
view_project: Ver proyecto
|
229
262
|
order_progress:
|
230
263
|
vote: Dar apoyo
|
231
264
|
order_selected_projects:
|
@@ -259,6 +292,15 @@ es-MX:
|
|
259
292
|
show:
|
260
293
|
budget: Presupuesto
|
261
294
|
view_all_projects: Ver todos los proyectos
|
295
|
+
vote_reminder_mailer:
|
296
|
+
vote_reminder:
|
297
|
+
email_budgets: 'Áreas donde tienes una votación inacabada:'
|
298
|
+
email_intro: Has iniciado la votación de los presupuestos, pero no la has completado.
|
299
|
+
email_link: Ir a la votación
|
300
|
+
email_outro: Por favor, recuerda completar la votación. Para votar, primero debes seleccionar el proyecto o proyectos sobre las que deseas votar y luego confirmar tu voto con el botón "Votar".
|
301
|
+
email_subject:
|
302
|
+
one: Tienes un voto sin finalizar en la votación de los presupuestos
|
303
|
+
other: Tienes votos sin finalizar en la votación de los presupuestos
|
262
304
|
components:
|
263
305
|
budgets:
|
264
306
|
actions:
|
@@ -274,6 +316,7 @@ es-MX:
|
|
274
316
|
errors:
|
275
317
|
budget_voting_rule_only_one: Hay que activar por lo menos una norma para la votación
|
276
318
|
budget_voting_rule_required: Se requiere una norma para la votación
|
319
|
+
geocoding_enabled: Geolocalización habilitada
|
277
320
|
landing_page_content: Página de inicio de presupuestos
|
278
321
|
more_information_modal: Modal de "Más información"
|
279
322
|
projects_per_page: Proyectos por página
|
data/config/locales/es-PY.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-PY:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -88,16 +89,40 @@ es-PY:
|
|
88
89
|
title: Editar proyecto
|
89
90
|
update: Actualizar
|
90
91
|
index:
|
92
|
+
actions: Acciones
|
93
|
+
cancel: Cancelar
|
94
|
+
change_category: Cambiar categoría
|
95
|
+
change_scope: Cambiar ámbito
|
96
|
+
change_selected: Cambiar la selección
|
97
|
+
deselect_implementation: Deseleccionar
|
91
98
|
finished_orders: Votos terminados
|
92
99
|
pending_orders: Votos pendientes
|
100
|
+
select_for_implementation: Seleccionar
|
93
101
|
selected: Seleccionado
|
94
102
|
title: Proyectos
|
103
|
+
update: Actualizar
|
104
|
+
update_scope_button: Actualizar ámbito
|
95
105
|
new:
|
96
106
|
create: Crear
|
97
107
|
title: Nuevo proyecto
|
98
108
|
update:
|
99
109
|
invalid: Ha habido un problema al actualizar este proyecto
|
100
110
|
success: Proyecto actualizado correctamente
|
111
|
+
update_category:
|
112
|
+
invalid: 'Estas propuestas ya tenían la categoría %{subject_name}: %{projects}.'
|
113
|
+
select_a_category: Por favor, selecciona una categoría
|
114
|
+
select_a_project: Selecciona un proyecto
|
115
|
+
success: 'Los proyectos se han actualizado correctamente a la categoría %{subject_name}: %{projects}.'
|
116
|
+
update_scope:
|
117
|
+
invalid: 'Estos proyectos ya pertenecían al ámbito %{subject_name}: %{projects}.'
|
118
|
+
select_a_project: Por favor, selecciona un proyecto
|
119
|
+
select_a_scope: Por favor, selecciona un ámbito
|
120
|
+
success: 'Los proyectos se han actualizado correctamente al ámbito %{subject_name}: %{projects}.'
|
121
|
+
update_selected:
|
122
|
+
invalid: 'Estos proyectos ya estaban seleccionados: %{projects}.'
|
123
|
+
select_a_project: Por favor, selecciona un proyecto
|
124
|
+
select_a_selection: Por favor, elige un estado
|
125
|
+
success: 'Selección de proyectos cambiada con éxito: %{projects}.'
|
101
126
|
proposals_imports:
|
102
127
|
create:
|
103
128
|
invalid: Ha habido un problema al importar las propuestas en proyectos
|
@@ -110,6 +135,12 @@ es-PY:
|
|
110
135
|
origin_component_id: Componente de origen
|
111
136
|
select_component: Por favor seleccione un componente
|
112
137
|
title: Importar propuestas
|
138
|
+
reminders:
|
139
|
+
orders:
|
140
|
+
description: Las usuarias recibirán un correo electrónico con enlaces a los presupuestos en los que tienen un pedido pendiente.
|
141
|
+
title:
|
142
|
+
one: Estás a punto de enviar un recordatorio por correo electrónico a %{count} usuaria
|
143
|
+
other: Estás a punto de enviar un recordatorio por correo electrónico a %{count} usuarias
|
113
144
|
admin_log:
|
114
145
|
budget:
|
115
146
|
create: "%{user_name} creó el presupuesto %{resource_name} en el espacio %{space_name}"
|
@@ -141,6 +172,8 @@ es-PY:
|
|
141
172
|
show: Ver proyectos
|
142
173
|
vote: Votar
|
143
174
|
voted_on: Has votado en %{links}
|
175
|
+
last_activity:
|
176
|
+
new_vote_at_html: "<span>Nueva votación presupiestaria en %{link}</span>"
|
144
177
|
limit_announcement:
|
145
178
|
cant_vote: No puedes votar en este presupuesto. <a href="%{landing_path}"> Prueba con otro presupuesto</a>.
|
146
179
|
limit_reached: Tienes votos activos en %{links}. Para votar en este presupuesto debes <a href="%{landing_path}">borrar tu voto y empezar de nuevo</a>.
|
@@ -154,6 +187,7 @@ es-PY:
|
|
154
187
|
fields:
|
155
188
|
category: Categoría
|
156
189
|
id: ID
|
190
|
+
scope: Ámbito
|
157
191
|
title: Título
|
158
192
|
order_summary_mailer:
|
159
193
|
order_summary:
|
@@ -226,6 +260,8 @@ es-PY:
|
|
226
260
|
filter: Filtrar
|
227
261
|
filter_by: Filtrar por
|
228
262
|
unfold: Desplegar
|
263
|
+
index:
|
264
|
+
view_project: Ver proyecto
|
229
265
|
order_progress:
|
230
266
|
vote: Dar apoyo
|
231
267
|
order_selected_projects:
|
@@ -259,6 +295,15 @@ es-PY:
|
|
259
295
|
show:
|
260
296
|
budget: Presupuesto
|
261
297
|
view_all_projects: Ver todos los proyectos
|
298
|
+
vote_reminder_mailer:
|
299
|
+
vote_reminder:
|
300
|
+
email_budgets: 'Áreas donde tienes una votación inacabada:'
|
301
|
+
email_intro: Has iniciado la votación de los presupuestos, pero no la has completado.
|
302
|
+
email_link: Ir a la votación
|
303
|
+
email_outro: Por favor, recuerda completar la votación. Para votar, primero debes seleccionar el proyecto o proyectos sobre las que deseas votar y luego confirmar tu voto con el botón "Votar".
|
304
|
+
email_subject:
|
305
|
+
one: Tienes un voto sin finalizar en la votación de los presupuestos
|
306
|
+
other: Tienes votos sin finalizar en la votación de los presupuestos
|
262
307
|
components:
|
263
308
|
budgets:
|
264
309
|
actions:
|
@@ -274,6 +319,7 @@ es-PY:
|
|
274
319
|
errors:
|
275
320
|
budget_voting_rule_only_one: Hay que activar por lo menos una norma para la votación
|
276
321
|
budget_voting_rule_required: Se requiere una norma para la votación
|
322
|
+
geocoding_enabled: Geolocalización habilitada
|
277
323
|
landing_page_content: Página de inicio de presupuestos
|
278
324
|
more_information_modal: Modal de "Más información"
|
279
325
|
projects_per_page: Proyectos por página
|
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -88,16 +89,40 @@ es:
|
|
88
89
|
title: Editar proyecto
|
89
90
|
update: Actualizar
|
90
91
|
index:
|
92
|
+
actions: Acciones
|
93
|
+
cancel: Cancelar
|
94
|
+
change_category: Cambiar categoría
|
95
|
+
change_scope: Cambiar ámbito
|
96
|
+
change_selected: Cambiar la selección
|
97
|
+
deselect_implementation: Deseleccionar
|
91
98
|
finished_orders: Votos terminados
|
92
99
|
pending_orders: Votos pendientes
|
100
|
+
select_for_implementation: Seleccionar
|
93
101
|
selected: Seleccionado
|
94
102
|
title: Proyectos
|
103
|
+
update: Actualizar
|
104
|
+
update_scope_button: Actualizar ámbito
|
95
105
|
new:
|
96
106
|
create: Crear
|
97
107
|
title: Nuevo proyecto
|
98
108
|
update:
|
99
109
|
invalid: Se ha producido un error al actualizar este proyecto
|
100
110
|
success: Proyecto actualizado correctamente
|
111
|
+
update_category:
|
112
|
+
invalid: 'Estas propuestas ya tenían la categoría %{subject_name}: %{projects}.'
|
113
|
+
select_a_category: Por favor, selecciona una categoría
|
114
|
+
select_a_project: Selecciona un proyecto
|
115
|
+
success: 'Los proyectos se han actualizado correctamente a la categoría %{subject_name}: %{projects}.'
|
116
|
+
update_scope:
|
117
|
+
invalid: 'Estos proyectos ya pertenecían al ámbito %{subject_name}: %{projects}.'
|
118
|
+
select_a_project: Por favor, selecciona un proyecto
|
119
|
+
select_a_scope: Por favor, selecciona un ámbito
|
120
|
+
success: 'Los proyectos se han actualizado correctamente al ámbito %{subject_name}: %{projects}.'
|
121
|
+
update_selected:
|
122
|
+
invalid: 'Estos proyectos ya estaban seleccionados: %{projects}.'
|
123
|
+
select_a_project: Por favor, selecciona un proyecto
|
124
|
+
select_a_selection: Por favor, elige un estado
|
125
|
+
success: 'Selección de proyectos cambiada con éxito: %{projects}.'
|
101
126
|
proposals_imports:
|
102
127
|
create:
|
103
128
|
invalid: Se ha producido un error al importar las propuestas a proyectos
|
@@ -110,6 +135,12 @@ es:
|
|
110
135
|
origin_component_id: Componente de origen
|
111
136
|
select_component: Por favor seleccione un componente
|
112
137
|
title: Importar propuestas
|
138
|
+
reminders:
|
139
|
+
orders:
|
140
|
+
description: Las usuarias recibirán un correo electrónico con enlaces a los presupuestos en los que tienen un pedido pendiente.
|
141
|
+
title:
|
142
|
+
one: Estás a punto de enviar un recordatorio por correo electrónico a %{count} usuaria
|
143
|
+
other: Estás a punto de enviar un recordatorio por correo electrónico a %{count} usuarias
|
113
144
|
admin_log:
|
114
145
|
budget:
|
115
146
|
create: "%{user_name} creó el presupuesto %{resource_name} en el espacio %{space_name}"
|
@@ -141,6 +172,8 @@ es:
|
|
141
172
|
show: Ver proyectos
|
142
173
|
vote: Votar
|
143
174
|
voted_on: Has votado en %{links}
|
175
|
+
last_activity:
|
176
|
+
new_vote_at_html: "<span>Nueva votación presupiestaria en %{link}</span>"
|
144
177
|
limit_announcement:
|
145
178
|
cant_vote: No puedes votar en este presupuesto. <a href="%{landing_path}"> Prueba con otro presupuesto</a>.
|
146
179
|
limit_reached: Tienes votos activos en %{links}. Para votar en este presupuesto debes <a href="%{landing_path}">borrar tu voto y empezar de nuevo</a>.
|
@@ -154,6 +187,7 @@ es:
|
|
154
187
|
fields:
|
155
188
|
category: Categoría
|
156
189
|
id: ID
|
190
|
+
scope: Ámbito
|
157
191
|
title: Título
|
158
192
|
order_summary_mailer:
|
159
193
|
order_summary:
|
@@ -226,6 +260,8 @@ es:
|
|
226
260
|
filter: Filtrar
|
227
261
|
filter_by: Filtrar por
|
228
262
|
unfold: Desplegar
|
263
|
+
index:
|
264
|
+
view_project: Ver proyecto
|
229
265
|
order_progress:
|
230
266
|
vote: Vota
|
231
267
|
order_selected_projects:
|
@@ -259,6 +295,15 @@ es:
|
|
259
295
|
show:
|
260
296
|
budget: Presupuesto
|
261
297
|
view_all_projects: Ver todos los proyectos
|
298
|
+
vote_reminder_mailer:
|
299
|
+
vote_reminder:
|
300
|
+
email_budgets: 'Áreas donde tienes una votación inacabada:'
|
301
|
+
email_intro: Has iniciado la votación de los presupuestos, pero no la has completado.
|
302
|
+
email_link: Ir a la votación
|
303
|
+
email_outro: Por favor, recuerda completar la votación. Para votar, primero debes seleccionar el proyecto o proyectos sobre las que deseas votar y luego confirmar tu voto con el botón "Votar".
|
304
|
+
email_subject:
|
305
|
+
one: Tienes un voto sin finalizar en la votación de los presupuestos
|
306
|
+
other: Tienes votos sin finalizar en la votación de los presupuestos
|
262
307
|
components:
|
263
308
|
budgets:
|
264
309
|
actions:
|
@@ -274,6 +319,7 @@ es:
|
|
274
319
|
errors:
|
275
320
|
budget_voting_rule_only_one: Hay que activar por lo menos una norma para la votación
|
276
321
|
budget_voting_rule_required: Se requiere una norma para la votación
|
322
|
+
geocoding_enabled: Geolocalización habilitada
|
277
323
|
landing_page_content: Página de inicio de presupuestos
|
278
324
|
more_information_modal: Modal de "Más información"
|
279
325
|
projects_per_page: Proyectos por página
|
data/config/locales/et.yml
CHANGED
data/config/locales/eu.yml
CHANGED