decidim-budgets 0.5.1 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/images/decidim/budgets/icon.svg +10 -15
- data/app/commands/decidim/budgets/add_line_item.rb +1 -1
- data/app/forms/decidim/budgets/admin/project_form.rb +1 -1
- data/app/models/decidim/budgets/project.rb +7 -6
- data/app/views/decidim/budgets/admin/projects/_form.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_filters.html.erb +1 -1
- data/app/views/decidim/budgets/projects/show.html.erb +1 -0
- data/config/locales/ca.yml +3 -0
- data/config/locales/en.yml +4 -10
- data/config/locales/es.yml +7 -4
- data/config/locales/eu.yml +11 -9
- data/config/locales/fi.yml +12 -0
- data/config/locales/fr.yml +7 -4
- data/config/locales/it.yml +6 -0
- data/config/locales/nl.yml +127 -0
- data/config/locales/pl.yml +130 -0
- data/config/locales/uk.yml +138 -0
- data/lib/decidim/budgets/feature.rb +5 -5
- data/lib/decidim/budgets/test/factories.rb +4 -4
- metadata +13 -13
- data/config/i18n-tasks.yml +0 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3aa9d97866c6be307d057826ec9a3362ed8c378
|
4
|
+
data.tar.gz: 5f500bd37ba32900452a1860bd512cd6cade61c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc2990165c24a2684ff5faccf76ce138bf5817c93154a7a311ccdee4ddf66812634b6e5c5247baf5ba2a30d6af82bd51656c60de5de74c1aa9c9d494c547aa1f
|
7
|
+
data.tar.gz: 65a1ac4759f568370eb35ce4e02ee21a184cbffa2c09efcc50db87151a7e1740e2cad122df4019b475d5511b6da45a2a2cc62c1d7b04a30a863da441535521f8
|
@@ -1,16 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<
|
4
|
-
|
5
|
-
<g>
|
6
|
-
|
7
|
-
|
8
|
-
</g>
|
9
|
-
<
|
10
|
-
|
11
|
-
<path d="M17.1,28.3c-5.3,0-9.9-4.4-9.9-9.8c0-5.5,4.9-9.5,9.3-9.5H18v9h9v0.9C27,23.2,22.7,28.3,17.1,28.3z M16,10.7
|
12
|
-
c-4,0.6-6.5,3.7-6.5,7.6c0,4.3,3.6,8,7.7,8c3.9,0,7-3.3,7.6-6.3H16V10.7z"/>
|
13
|
-
</g>
|
14
|
-
<path d="M30,16H20V6h0.6c4.5,0,9.4,4.4,9.4,8.9V16z M22,14h5.5C27,11,24,8.6,22,8V14z"/>
|
15
|
-
</g>
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" xml:space="preserve">
|
2
|
+
<g>
|
3
|
+
<path d="M18,36C8.1,36,0,27.9,0,18S8.1,0,18,0s18,8.1,18,18S27.9,36,18,36z M18,2C9.2,2,2,9.2,2,18s7.2,16,16,16s16-7.2,16-16 S26.8,2,18,2z"/>
|
4
|
+
</g>
|
5
|
+
<g>
|
6
|
+
<g>
|
7
|
+
<path d="M17.1,28.3c-5.3,0-9.9-4.4-9.9-9.8c0-5.5,4.9-9.5,9.3-9.5H18v9h9v0.9C27,23.2,22.7,28.3,17.1,28.3z M16,10.7 c-4,0.6-6.5,3.7-6.5,7.6c0,4.3,3.6,8,7.7,8c3.9,0,7-3.3,7.6-6.3H16V10.7z"/>
|
8
|
+
</g>
|
9
|
+
<path d="M30,16H20V6h0.6c4.5,0,9.4,4.4,9.4,8.9V16z M22,14h5.5C27,11,24,8.6,22,8V14z"/>
|
10
|
+
</g>
|
16
11
|
</svg>
|
@@ -11,6 +11,7 @@ module Decidim
|
|
11
11
|
include Decidim::HasCategory
|
12
12
|
include Decidim::HasAttachments
|
13
13
|
include Decidim::HasReference
|
14
|
+
include Decidim::Followable
|
14
15
|
include Decidim::Comments::Commentable
|
15
16
|
|
16
17
|
feature_manifest_name "budgets"
|
@@ -24,7 +25,7 @@ module Decidim
|
|
24
25
|
|
25
26
|
# Public: Overrides the `accepts_new_comments?` Commentable concern method.
|
26
27
|
def accepts_new_comments?
|
27
|
-
commentable? && !feature.
|
28
|
+
commentable? && !feature.current_settings.comments_blocked
|
28
29
|
end
|
29
30
|
|
30
31
|
# Public: Overrides the `comments_have_votes?` Commentable concern method.
|
@@ -32,15 +33,15 @@ module Decidim
|
|
32
33
|
true
|
33
34
|
end
|
34
35
|
|
36
|
+
# Public: Overrides the `users_to_notify_on_comment_created` Commentable concern method.
|
37
|
+
def users_to_notify_on_comment_created
|
38
|
+
followers
|
39
|
+
end
|
40
|
+
|
35
41
|
# Public: Returns the number of times an specific project have been checked out.
|
36
42
|
def confirmed_orders_count
|
37
43
|
orders.finished.count
|
38
44
|
end
|
39
|
-
|
40
|
-
# Public: Overrides the `notifiable?` Notifiable concern method.
|
41
|
-
def notifiable?(_context)
|
42
|
-
false
|
43
|
-
end
|
44
45
|
end
|
45
46
|
end
|
46
47
|
end
|
@@ -16,14 +16,14 @@
|
|
16
16
|
<%= form.number_field :budget %>
|
17
17
|
</div>
|
18
18
|
|
19
|
-
<% if
|
19
|
+
<% if current_participatory_space.has_subscopes? %>
|
20
20
|
<div class="row column" >
|
21
|
-
<%= form.scopes_select :decidim_scope_id, prompt: I18n.t("decidim.scopes.global"), remote_path: decidim.scopes_search_path(root:
|
21
|
+
<%= form.scopes_select :decidim_scope_id, prompt: I18n.t("decidim.scopes.global"), remote_path: decidim.scopes_search_path(root: current_participatory_space.scope) %>
|
22
22
|
</div>
|
23
23
|
<% end %>
|
24
24
|
|
25
25
|
<div class="row column" >
|
26
|
-
<%= form.categories_select :decidim_category_id,
|
26
|
+
<%= form.categories_select :decidim_category_id, current_participatory_space.categories, include_blank: true, disable_parents: false %>
|
27
27
|
</div>
|
28
28
|
|
29
29
|
<div class="row column">
|
@@ -12,7 +12,7 @@
|
|
12
12
|
</div>
|
13
13
|
</div>
|
14
14
|
|
15
|
-
<% if
|
15
|
+
<% if current_participatory_space.has_subscopes? %>
|
16
16
|
<%= form.scopes_select :scope_id, legend_title: t(".scopes"), label: false, prompt: t('.scope_prompt'), remote_path: decidim.scopes_search_path(include_root: true) %>
|
17
17
|
<% end %>
|
18
18
|
|
@@ -30,6 +30,7 @@
|
|
30
30
|
<div id="project-<%= project.id %>-budget-button">
|
31
31
|
<%= render partial: 'project_budget_button', locals: { project: project } %>
|
32
32
|
</div>
|
33
|
+
<%= render partial: "decidim/shared/follow_button", locals: { followable: project } %>
|
33
34
|
</div>
|
34
35
|
</div>
|
35
36
|
<%= feature_reference(project) %>
|
data/config/locales/ca.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ca:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -108,10 +109,12 @@ ca:
|
|
108
109
|
name: Pressupostos
|
109
110
|
settings:
|
110
111
|
global:
|
112
|
+
announcement: Avís
|
111
113
|
comments_enabled: Comentaris habilitats
|
112
114
|
total_budget: Pressupost total
|
113
115
|
vote_threshold_percent: Percentatge del pressupost mínim per fer el vot
|
114
116
|
step:
|
117
|
+
announcement: Avís
|
115
118
|
comments_blocked: Comentaris bloquejats
|
116
119
|
show_votes: Mostra vots
|
117
120
|
votes_enabled: Suports habilitats
|
data/config/locales/en.yml
CHANGED
@@ -48,17 +48,14 @@ en:
|
|
48
48
|
title: Title
|
49
49
|
projects:
|
50
50
|
budget_confirm:
|
51
|
-
are_you_sure: Do you agree? Once you have confirmed your vote, you can not
|
52
|
-
change it.
|
51
|
+
are_you_sure: Do you agree? Once you have confirmed your vote, you can not change it.
|
53
52
|
cancel: Cancel
|
54
53
|
confirm: Confirm
|
55
54
|
description: These are the projects you have chosen to be part of the budget.
|
56
55
|
title: Confirm vote
|
57
56
|
budget_excess:
|
58
57
|
close: Close
|
59
|
-
description: This project exceeds the maximum budget and can not be added.
|
60
|
-
If you want, you can delete a project you have already selected to add,
|
61
|
-
or make your vote with your preferences.
|
58
|
+
description: This project exceeds the maximum budget and can not be added. If you want, you can delete a project you have already selected to add, or make your vote with your preferences.
|
62
59
|
ok: OK
|
63
60
|
title: Maximum budget exceeded
|
64
61
|
budget_summary:
|
@@ -66,12 +63,9 @@ en:
|
|
66
63
|
assigned: 'Assigned:'
|
67
64
|
cancel_order: delete your vote and start over
|
68
65
|
checked_out:
|
69
|
-
description: You've already voted for the budget. If you've changed your
|
70
|
-
mind, you can %{cancel_link}.
|
66
|
+
description: You've already voted for the budget. If you've changed your mind, you can %{cancel_link}.
|
71
67
|
title: Budget vote completed
|
72
|
-
description: What projects do you think we should allocate budget for? Assign
|
73
|
-
at least %{minimum_budget} to the projects you want and vote with your
|
74
|
-
preferences to define the budget.
|
68
|
+
description: What projects do you think we should allocate budget for? Assign at least %{minimum_budget} to the projects you want and vote with your preferences to define the budget.
|
75
69
|
title: You decide the budget
|
76
70
|
count:
|
77
71
|
projects_count:
|
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -12,7 +13,7 @@ es:
|
|
12
13
|
budgets:
|
13
14
|
actions:
|
14
15
|
attachments: Archivos adjuntos
|
15
|
-
confirm_destroy:
|
16
|
+
confirm_destroy: "¿Estás seguro de que deseas eliminar este proyecto?"
|
16
17
|
destroy: Borrar
|
17
18
|
edit: Editar
|
18
19
|
new: Nuevo
|
@@ -47,7 +48,7 @@ es:
|
|
47
48
|
title: Título
|
48
49
|
projects:
|
49
50
|
budget_confirm:
|
50
|
-
are_you_sure:
|
51
|
+
are_you_sure: "¿Estás de acuerdo? Una vez que hayas confirmado tu voto, no puedes cambiarlo."
|
51
52
|
cancel: Cancelar
|
52
53
|
confirm: Confirmar
|
53
54
|
description: Estos son los proyectos que has elegido para formar parte del presupuesto.
|
@@ -58,13 +59,13 @@ es:
|
|
58
59
|
ok: De acuerdo
|
59
60
|
title: Presupuesto excedido
|
60
61
|
budget_summary:
|
61
|
-
are_you_sure:
|
62
|
+
are_you_sure: "¿Estás seguro de que deseas cancelar tu voto?"
|
62
63
|
assigned: 'Asignado:'
|
63
64
|
cancel_order: eliminar tu voto y empezar de nuevo
|
64
65
|
checked_out:
|
65
66
|
description: Ya has votado para el presupuesto. Si has cambiado de idea, puedes %{cancel_link}.
|
66
67
|
title: Voto enviado correctamente
|
67
|
-
description:
|
68
|
+
description: "¿Qué proyectos crees que deberíamos asignar el presupuesto? Asigna por lo menos %{minimum_budget} a los proyectos que desees y vota para definir el presupuesto."
|
68
69
|
title: Tú decides el presupuesto
|
69
70
|
count:
|
70
71
|
projects_count:
|
@@ -108,10 +109,12 @@ es:
|
|
108
109
|
name: Presupuestos
|
109
110
|
settings:
|
110
111
|
global:
|
112
|
+
announcement: Aviso
|
111
113
|
comments_enabled: Comentarios habilitados
|
112
114
|
total_budget: Presupuesto total
|
113
115
|
vote_threshold_percent: Porcentaje mínimo del presupuesto
|
114
116
|
step:
|
117
|
+
announcement: Aviso
|
115
118
|
comments_blocked: Comentarios bloqueados
|
116
119
|
show_votes: Mostrar votos
|
117
120
|
votes_enabled: Votos habilitados
|
data/config/locales/eu.yml
CHANGED
@@ -5,15 +5,15 @@ eu:
|
|
5
5
|
budget: Aurrekontua
|
6
6
|
decidim_category_id: Kategoria
|
7
7
|
decidim_scope_id: Esparrua
|
8
|
-
description:
|
8
|
+
description: Descripción
|
9
9
|
proposal_ids: Honekin lotutako proposamenak
|
10
|
-
title:
|
10
|
+
title: Titulua
|
11
11
|
decidim:
|
12
12
|
budgets:
|
13
13
|
actions:
|
14
14
|
attachments: Fitxategi erantsiak
|
15
15
|
confirm_destroy: Ziur zaude proiektu hau ezabatu nahi duzula?
|
16
|
-
destroy:
|
16
|
+
destroy: Ezabatu
|
17
17
|
edit: Editatu
|
18
18
|
new: Berria
|
19
19
|
preview: Aurreikusi
|
@@ -27,7 +27,7 @@ eu:
|
|
27
27
|
invalid: Arazo bat izan da proiektu hau sortzean
|
28
28
|
success: Proiektua ongi sortu da
|
29
29
|
destroy:
|
30
|
-
success:
|
30
|
+
success: Proiektua ongi ezabatu da
|
31
31
|
edit:
|
32
32
|
title: Editatu proiektua
|
33
33
|
update: Eguneratu
|
@@ -44,19 +44,19 @@ eu:
|
|
44
44
|
models:
|
45
45
|
project:
|
46
46
|
fields:
|
47
|
-
title:
|
47
|
+
title: Titulua
|
48
48
|
projects:
|
49
49
|
budget_confirm:
|
50
|
-
are_you_sure: Ados zaude? Behin zure botoa baieztatuta, ezin izanen duzu aldatu.
|
50
|
+
are_you_sure: Ados zaude? Behin zure botoa baieztatuta, ezin izanen duzu aldatu.
|
51
51
|
cancel: Utzi
|
52
52
|
confirm: Baieztatu
|
53
|
-
description: Proiektu hauek hautatu dituzu aurrekontuan sartzeko
|
53
|
+
description: Proiektu hauek hautatu dituzu aurrekontuan sartzeko.
|
54
54
|
title: Baieztatu botoa
|
55
55
|
budget_excess:
|
56
56
|
close: Itxi
|
57
57
|
description: Proiektu honek gehieneko aurrekontua gainditzen du, eta ezin da gehitu. Nahi baduzu, jada hautatua duzun proiektu bat ezaba dezakezu edo botoa eman zure lehenespenekin bat.
|
58
58
|
ok: Ados
|
59
|
-
title: Aurrekontua gainditu da
|
59
|
+
title: Aurrekontua gainditu da
|
60
60
|
budget_summary:
|
61
61
|
are_you_sure: Ziur zaude zure botoa ezeztatu nahi duzula?
|
62
62
|
assigned: 'Esleituta:'
|
@@ -82,7 +82,7 @@ eu:
|
|
82
82
|
filter_by: 'Iragazi honen arabera:'
|
83
83
|
unfold: Zabaldu
|
84
84
|
order_progress:
|
85
|
-
vote:
|
85
|
+
vote: Proiektuaren alde egin
|
86
86
|
order_selected_projects:
|
87
87
|
remove: Kendu
|
88
88
|
selected_projects:
|
@@ -108,10 +108,12 @@ eu:
|
|
108
108
|
name: Aurrekontuak
|
109
109
|
settings:
|
110
110
|
global:
|
111
|
+
announcement: Oharra
|
111
112
|
comments_enabled: Iruzkinak gaituta
|
112
113
|
total_budget: Guztizko aurrekontua
|
113
114
|
vote_threshold_percent: Aurrekontuaren gutxieneko ehunekoa
|
114
115
|
step:
|
116
|
+
announcement: Oharra
|
115
117
|
comments_blocked: Iruzkinak blokeatuta
|
116
118
|
show_votes: Erakutsi botoak
|
117
119
|
votes_enabled: Botoak gaituta
|
data/config/locales/fi.yml
CHANGED
@@ -15,6 +15,8 @@ fi:
|
|
15
15
|
confirm_destroy: Haluatko varmasti poistaa tämän projektin?
|
16
16
|
destroy: Poista
|
17
17
|
edit: Muokkaa
|
18
|
+
new: Uusi
|
19
|
+
preview: Esikatsele
|
18
20
|
title: Toiminnot
|
19
21
|
admin:
|
20
22
|
models:
|
@@ -28,11 +30,13 @@ fi:
|
|
28
30
|
success: Projekti tuhottu onnistuneesti
|
29
31
|
edit:
|
30
32
|
title: Muokkaa projektia
|
33
|
+
update: Päivitä
|
31
34
|
index:
|
32
35
|
finished_orders: Valmiit tilaukset
|
33
36
|
pending_orders: Odottavat tilaukset
|
34
37
|
title: Projektit
|
35
38
|
new:
|
39
|
+
create: Luo
|
36
40
|
title: Uusi tulos
|
37
41
|
update:
|
38
42
|
invalid: Tämän projektin päivityksessä tapahtui virhe
|
@@ -68,6 +72,8 @@ fi:
|
|
68
72
|
other: "%{count} projektia"
|
69
73
|
filters:
|
70
74
|
category: Kategoria
|
75
|
+
category_prompt: Valitse kategoria
|
76
|
+
scope_prompt: Valitse konteksti
|
71
77
|
scopes: Konteksti
|
72
78
|
search: Haku
|
73
79
|
filters_small_view:
|
@@ -102,11 +108,14 @@ fi:
|
|
102
108
|
name: Budjetit
|
103
109
|
settings:
|
104
110
|
global:
|
111
|
+
announcement: Ilmoitus
|
105
112
|
comments_enabled: Kommentointi sallittu
|
106
113
|
total_budget: Koko budjetti
|
107
114
|
vote_threshold_percent: Äänestyskynnyksen prosentti
|
108
115
|
step:
|
116
|
+
announcement: Ilmoitus
|
109
117
|
comments_blocked: Kommentointi kielletty
|
118
|
+
show_votes: Näytä äänet
|
110
119
|
votes_enabled: Äänestys sallittu
|
111
120
|
orders:
|
112
121
|
checkout:
|
@@ -115,6 +124,9 @@ fi:
|
|
115
124
|
destroy:
|
116
125
|
error: Äänesi peruutuksen yhteydessä tapahtui virhe
|
117
126
|
success: Äänesi on peruttu onnistuneesti
|
127
|
+
resource_links:
|
128
|
+
included_proposals:
|
129
|
+
project_proposals: 'Tähän projektiin liittyvät ehdotukset:'
|
118
130
|
index:
|
119
131
|
confirmed_orders_count: Tilauksien määrä
|
120
132
|
total_budget: Koko budjetti
|
data/config/locales/fr.yml
CHANGED
@@ -11,7 +11,7 @@ fr:
|
|
11
11
|
decidim:
|
12
12
|
budgets:
|
13
13
|
actions:
|
14
|
-
attachments:
|
14
|
+
attachments: Documents liés
|
15
15
|
confirm_destroy: Êtes-vous certain de vouloir supprimer ce projet?
|
16
16
|
destroy: Supprimer
|
17
17
|
edit: Modifier
|
@@ -53,7 +53,7 @@ fr:
|
|
53
53
|
description: Voici les projets que vous avez choisis pour le budget.
|
54
54
|
title: Confirmez votre vote
|
55
55
|
budget_excess:
|
56
|
-
close:
|
56
|
+
close: Clore
|
57
57
|
description: Ce projet dépasse le budget maximum et ne peut pas être ajouté. Si vous le souhaitez, vous pouvez supprimer un projet que vous avez déjà sélectionné ou voter selon vos préférences.
|
58
58
|
ok: D'accord
|
59
59
|
title: Budget maximum dépassé
|
@@ -73,10 +73,11 @@ fr:
|
|
73
73
|
filters:
|
74
74
|
category: Catégorie
|
75
75
|
category_prompt: Sélectionner une catégorie
|
76
|
-
|
76
|
+
scope_prompt: Sélectionnez une portée
|
77
|
+
scopes: Zone d'application
|
77
78
|
search: Rechercher
|
78
79
|
filters_small_view:
|
79
|
-
close_modal: Fermer la
|
80
|
+
close_modal: Fermer la fenêtre de dialogue
|
80
81
|
filter: Filtrer
|
81
82
|
filter_by: Filtrer par
|
82
83
|
unfold: Déplier
|
@@ -107,10 +108,12 @@ fr:
|
|
107
108
|
name: Budgets
|
108
109
|
settings:
|
109
110
|
global:
|
111
|
+
announcement: Annonce
|
110
112
|
comments_enabled: Commentaires activés
|
111
113
|
total_budget: Budget total
|
112
114
|
vote_threshold_percent: Pourcentage de seuil de vote
|
113
115
|
step:
|
116
|
+
announcement: Annonce
|
114
117
|
comments_blocked: Commentaires bloqués
|
115
118
|
show_votes: Afficher les votes
|
116
119
|
votes_enabled: Votes activés
|
data/config/locales/it.yml
CHANGED
@@ -2,6 +2,7 @@ it:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
project:
|
5
|
+
budget: Budget
|
5
6
|
decidim_category_id: Categoria
|
6
7
|
decidim_scope_id: Visibilità/ambito
|
7
8
|
description: Descrizione
|
@@ -54,6 +55,7 @@ it:
|
|
54
55
|
budget_excess:
|
55
56
|
close: Chiudi
|
56
57
|
description: Questo progetto supera il budget e non può essere aggiunto. Se vuoi puoi cancellare un progetto che hai già scelto di aggiungere, oppure votare in base alle tue preferenze.
|
58
|
+
ok: Ok
|
57
59
|
title: Budget superato
|
58
60
|
budget_summary:
|
59
61
|
are_you_sure: Sei certo di voler cancellare il tuo voto?
|
@@ -71,6 +73,7 @@ it:
|
|
71
73
|
filters:
|
72
74
|
category: Categoria
|
73
75
|
category_prompt: Scegli una categoria
|
76
|
+
scope_prompt: Selezionare un ambito
|
74
77
|
scopes: Visibilità/ambito
|
75
78
|
search: Cerca
|
76
79
|
filters_small_view:
|
@@ -96,6 +99,7 @@ it:
|
|
96
99
|
add: Aggiungi
|
97
100
|
added: Aggiunto
|
98
101
|
show:
|
102
|
+
budget: Budget
|
99
103
|
view_all_projects: Visualizza tutti i progetti
|
100
104
|
features:
|
101
105
|
budgets:
|
@@ -104,10 +108,12 @@ it:
|
|
104
108
|
name: Investimenti
|
105
109
|
settings:
|
106
110
|
global:
|
111
|
+
announcement: Annuncio
|
107
112
|
comments_enabled: Commenti abilitati
|
108
113
|
total_budget: Budget totale
|
109
114
|
vote_threshold_percent: Soglia voti (percentuale)
|
110
115
|
step:
|
116
|
+
announcement: Annuncio
|
111
117
|
comments_blocked: Commenti bloccati
|
112
118
|
show_votes: Visualizza voti
|
113
119
|
votes_enabled: Voti abilitati
|
data/config/locales/nl.yml
CHANGED
@@ -2,4 +2,131 @@ nl:
|
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
4
|
project:
|
5
|
+
budget: Begroting
|
6
|
+
decidim_category_id: Categorie
|
7
|
+
decidim_scope_id: Reikwijdte
|
5
8
|
description: Beschrijving
|
9
|
+
proposal_ids: Verwante voorstellen
|
10
|
+
title: Titel
|
11
|
+
decidim:
|
12
|
+
budgets:
|
13
|
+
actions:
|
14
|
+
attachments: Bijlagen
|
15
|
+
confirm_destroy: Weet u zeker dat u dit project wilt verwijderen?
|
16
|
+
destroy: Verwijderen
|
17
|
+
edit: Bewerk
|
18
|
+
new: nieuwe
|
19
|
+
preview: Voorbeeld
|
20
|
+
title: Acties
|
21
|
+
admin:
|
22
|
+
models:
|
23
|
+
project:
|
24
|
+
name: Project
|
25
|
+
projects:
|
26
|
+
create:
|
27
|
+
invalid: Er is een probleem opgetreden met het creëren van dit project
|
28
|
+
success: Project succesvol gemaakt
|
29
|
+
destroy:
|
30
|
+
success: Project succesvol vernietigd
|
31
|
+
edit:
|
32
|
+
title: Bewerk project
|
33
|
+
update: Bijwerken
|
34
|
+
index:
|
35
|
+
finished_orders: Afgewerkte bestellingen
|
36
|
+
pending_orders: Openstaande bestellingen
|
37
|
+
title: Projecten
|
38
|
+
new:
|
39
|
+
create: Creëren
|
40
|
+
title: Nieuw resultaat
|
41
|
+
update:
|
42
|
+
invalid: Er is een probleem opgetreden bij het bijwerken van dit project
|
43
|
+
success: Project succesvol bijgewerkt
|
44
|
+
models:
|
45
|
+
project:
|
46
|
+
fields:
|
47
|
+
title: Titel
|
48
|
+
projects:
|
49
|
+
budget_confirm:
|
50
|
+
are_you_sure: Bent u het eens? Zodra u uw stem heeft bevestigd, kunt u het niet wijzigen.
|
51
|
+
cancel: Annuleer
|
52
|
+
confirm: Bevestigen
|
53
|
+
description: Dit zijn de projecten die u hebt gekozen om deel uit te maken van de begroting.
|
54
|
+
title: Bevestig de stem
|
55
|
+
budget_excess:
|
56
|
+
close: Sluit
|
57
|
+
description: Dit project overschrijdt het maximale budget en kan niet worden toegevoegd. Als u wilt, kunt u een project verwijderen dat u al hebt geselecteerd om toe te voegen of uw stem te maken met uw voorkeuren.
|
58
|
+
ok: OK
|
59
|
+
title: Maximum budget overschreden
|
60
|
+
budget_summary:
|
61
|
+
are_you_sure: Weet u zeker dat u uw stem wilt annuleren?
|
62
|
+
assigned: 'Toegewezen:'
|
63
|
+
cancel_order: Verwijder uw stem en begin opnieuw
|
64
|
+
checked_out:
|
65
|
+
description: Je hebt al voor de begroting gestemd. Als u van mening bent, kunt u %{cancel_link}.
|
66
|
+
title: Begrotingsstemming voltooid
|
67
|
+
description: Welke projecten denk je dat we budget moeten voordelen? Geef ten minste %{minimum_budget} toe aan de projecten die u wilt en stem met uw voorkeuren om het budget te definiëren.
|
68
|
+
title: U bepaalt het budget
|
69
|
+
count:
|
70
|
+
projects_count:
|
71
|
+
one: 1 project
|
72
|
+
other: "%{count} projecten"
|
73
|
+
filters:
|
74
|
+
category: Categorie
|
75
|
+
category_prompt: Kies een categorie
|
76
|
+
scope_prompt: Selecteer een bereik
|
77
|
+
scopes: Scopes
|
78
|
+
search: Zoeken
|
79
|
+
filters_small_view:
|
80
|
+
close_modal: Dicht modaal
|
81
|
+
filter: Filter
|
82
|
+
filter_by: Filteren op
|
83
|
+
unfold: Ontvouwen
|
84
|
+
order_progress:
|
85
|
+
vote: Stemmen
|
86
|
+
order_selected_projects:
|
87
|
+
remove: Verwijderen
|
88
|
+
selected_projects:
|
89
|
+
one: Geselecteerd project
|
90
|
+
other: Geselecteerde projecten
|
91
|
+
view: Uitzicht
|
92
|
+
project:
|
93
|
+
add: Toevoegen
|
94
|
+
count:
|
95
|
+
one: 1 ondersteuning
|
96
|
+
other: "%{count} ondersteunt"
|
97
|
+
remove: Verwijderen
|
98
|
+
project_budget_button:
|
99
|
+
add: Toevoegen
|
100
|
+
added: Toegevoegd
|
101
|
+
show:
|
102
|
+
budget: Begroting
|
103
|
+
view_all_projects: Bekijk alle projecten
|
104
|
+
features:
|
105
|
+
budgets:
|
106
|
+
actions:
|
107
|
+
vote: Stemmen
|
108
|
+
name: Begrotingen
|
109
|
+
settings:
|
110
|
+
global:
|
111
|
+
announcement: Aankondiging
|
112
|
+
comments_enabled: Reacties ingeschakeld
|
113
|
+
total_budget: Totale budget
|
114
|
+
vote_threshold_percent: Stem drempel percentage
|
115
|
+
step:
|
116
|
+
announcement: Aankondiging
|
117
|
+
comments_blocked: Reacties geblokkeerd
|
118
|
+
show_votes: T
|
119
|
+
votes_enabled: Stemmen ingeschakeld
|
120
|
+
orders:
|
121
|
+
checkout:
|
122
|
+
error: Er is een fout opgetreden tijdens het verwerken van uw stem
|
123
|
+
success: Uw stem is succesvol geaccepteerd
|
124
|
+
destroy:
|
125
|
+
error: Er is een fout opgetreden tijdens het annuleren van uw stem
|
126
|
+
success: Uw stem is succesvol geannuleerd
|
127
|
+
resource_links:
|
128
|
+
included_proposals:
|
129
|
+
project_proposals: 'Voorstellen opgenomen in dit project:'
|
130
|
+
index:
|
131
|
+
confirmed_orders_count: Bestellingen tellen
|
132
|
+
total_budget: Totale budget
|
data/config/locales/pl.yml
CHANGED
@@ -1,5 +1,135 @@
|
|
1
1
|
pl:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
project:
|
5
|
+
budget: Budżet
|
6
|
+
decidim_category_id: Kategoria
|
7
|
+
decidim_scope_id: Zakres
|
8
|
+
description: Opis
|
9
|
+
proposal_ids: Proponowane propozycje
|
10
|
+
title: Tytuł
|
2
11
|
decidim:
|
3
12
|
budgets:
|
4
13
|
actions:
|
14
|
+
attachments: Załączniki
|
15
|
+
confirm_destroy: Czy na pewno chcesz usunąć ten projekt?
|
16
|
+
destroy: Kasować
|
17
|
+
edit: Edytować
|
5
18
|
new: Nowy
|
19
|
+
preview: Zapowiedź
|
20
|
+
title: działania
|
21
|
+
admin:
|
22
|
+
models:
|
23
|
+
project:
|
24
|
+
name: Projekt
|
25
|
+
projects:
|
26
|
+
create:
|
27
|
+
invalid: Podczas tworzenia tego projektu wystąpił problem
|
28
|
+
success: Projekt został pomyślnie utworzony
|
29
|
+
destroy:
|
30
|
+
success: Projekt pomyślnie zniszczony
|
31
|
+
edit:
|
32
|
+
title: Edytuj projekt
|
33
|
+
update: Aktualizacja
|
34
|
+
index:
|
35
|
+
finished_orders: Zakończono zamówienia
|
36
|
+
pending_orders: Oczekujące zamówienia
|
37
|
+
title: Projektowanie
|
38
|
+
new:
|
39
|
+
create: Stwórz
|
40
|
+
title: Nowy wynik
|
41
|
+
update:
|
42
|
+
invalid: Wystąpił problem z aktualizacją tego projektu
|
43
|
+
success: Zaktualizowano projekt
|
44
|
+
models:
|
45
|
+
project:
|
46
|
+
fields:
|
47
|
+
title: Tytuł
|
48
|
+
projects:
|
49
|
+
budget_confirm:
|
50
|
+
are_you_sure: Czy sie zgadzasz? Po zatwierdzeniu swojego głosu nie możesz go zmienić.
|
51
|
+
cancel: Anuluj
|
52
|
+
confirm: Potwierdzać
|
53
|
+
description: Są to projekty, które wybrałeś jako część budżetu.
|
54
|
+
title: Potwierdź głosowanie
|
55
|
+
budget_excess:
|
56
|
+
close: Blisko
|
57
|
+
description: Ten projekt przekracza maksymalny budżet i nie można go dodać. Jeśli chcesz, możesz usunąć projekt, który został już wybrany, aby dodać lub sprawić, aby głosował z Twoimi preferencjami.
|
58
|
+
ok: ok
|
59
|
+
title: Przekroczono maksymalny budżet
|
60
|
+
budget_summary:
|
61
|
+
are_you_sure: Czy na pewno chcesz anulować swój głos?
|
62
|
+
assigned: 'Przydzielony:'
|
63
|
+
cancel_order: Usuń głos i zacznij od nowa
|
64
|
+
checked_out:
|
65
|
+
description: Już głosowałeś na budżet. Jeśli zmieniłeś zdanie, możesz %{cancel_link}.
|
66
|
+
title: Ukończono budżet budżetowy
|
67
|
+
description: Jakie projekty myślisz, powinniśmy przeznaczyć budżet? Przyznaj co najmniej %{minimum_budget} projekty, które chcesz i głosuj zgodnie z Twoimi preferencjami, aby określić budżet.
|
68
|
+
title: Ty decydujesz budżet
|
69
|
+
count:
|
70
|
+
projects_count:
|
71
|
+
one: 1 projekt
|
72
|
+
few: "%{count} projektów"
|
73
|
+
other: "%{count} projektów"
|
74
|
+
filters:
|
75
|
+
category: Kategoria
|
76
|
+
category_prompt: Wybierz kategorię
|
77
|
+
scope_prompt: Wybierz zakres
|
78
|
+
scopes: Zakresy
|
79
|
+
search: Szukanie
|
80
|
+
filters_small_view:
|
81
|
+
close_modal: Zamknij modal
|
82
|
+
filter: Filtr
|
83
|
+
filter_by: Filtruj według
|
84
|
+
unfold: Rozwijać się
|
85
|
+
order_progress:
|
86
|
+
vote: Głosować
|
87
|
+
order_selected_projects:
|
88
|
+
remove: Usunąć
|
89
|
+
selected_projects:
|
90
|
+
one: Wybrany projekt
|
91
|
+
few: Wybranych projektów
|
92
|
+
other: Wybranych projektów
|
93
|
+
view: Widok
|
94
|
+
project:
|
95
|
+
add: Dodaj
|
96
|
+
count:
|
97
|
+
one: 1
|
98
|
+
few: "%{count} obsługuje"
|
99
|
+
other: "%{count} obsługuje"
|
100
|
+
remove: Usunąć
|
101
|
+
project_budget_button:
|
102
|
+
add: Dodaj
|
103
|
+
added: W dodatku
|
104
|
+
show:
|
105
|
+
budget: Budżet
|
106
|
+
view_all_projects: Wyświetl wszystkie projekty
|
107
|
+
features:
|
108
|
+
budgets:
|
109
|
+
actions:
|
110
|
+
vote: Głosować
|
111
|
+
name: Budżety
|
112
|
+
settings:
|
113
|
+
global:
|
114
|
+
announcement: Ogłoszenie
|
115
|
+
comments_enabled: Włączone komentarze
|
116
|
+
total_budget: Cały budżet
|
117
|
+
vote_threshold_percent: Procentowy procent głosu
|
118
|
+
step:
|
119
|
+
announcement: Ogłoszenie
|
120
|
+
comments_blocked: Komentarze zablokowane
|
121
|
+
show_votes: Pokaż głosy
|
122
|
+
votes_enabled: Głosy włączone
|
123
|
+
orders:
|
124
|
+
checkout:
|
125
|
+
error: Podczas przetwarzania Twojego głosu wystąpił błąd
|
126
|
+
success: Twój głos został pomyślnie przyjęty
|
127
|
+
destroy:
|
128
|
+
error: Podczas anulowania Twojego głosu wystąpił błąd
|
129
|
+
success: Twój głos został pomyślnie zakończony
|
130
|
+
resource_links:
|
131
|
+
included_proposals:
|
132
|
+
project_proposals: 'Propozycje zawarte w tym projekcie:'
|
133
|
+
index:
|
134
|
+
confirmed_orders_count: Liczba zleceń
|
135
|
+
total_budget: Cały budżet
|
@@ -0,0 +1,138 @@
|
|
1
|
+
uk:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
project:
|
5
|
+
budget: Бюджет
|
6
|
+
decidim_category_id: Розділ
|
7
|
+
decidim_scope_id: Обсяг
|
8
|
+
description: Опис
|
9
|
+
proposal_ids: Супутні пропозиції
|
10
|
+
title: Назва
|
11
|
+
decidim:
|
12
|
+
budgets:
|
13
|
+
actions:
|
14
|
+
attachments: Вкладені файли
|
15
|
+
confirm_destroy: Ви дійсно бажаєте видалити цей проект?
|
16
|
+
destroy: Видалити
|
17
|
+
edit: Редагувати
|
18
|
+
new: Нові
|
19
|
+
preview: Попередній перегляд
|
20
|
+
title: Дії
|
21
|
+
admin:
|
22
|
+
models:
|
23
|
+
project:
|
24
|
+
name: Проект
|
25
|
+
projects:
|
26
|
+
create:
|
27
|
+
invalid: При створенні цього проекту сталася помилка
|
28
|
+
success: Проект успішно створено
|
29
|
+
destroy:
|
30
|
+
success: Проект успішно видалено
|
31
|
+
edit:
|
32
|
+
title: Редагувати проект
|
33
|
+
update: Оновити
|
34
|
+
index:
|
35
|
+
finished_orders: Завершені голосування
|
36
|
+
pending_orders: Голосування, що зараз тривають
|
37
|
+
title: Проекти
|
38
|
+
new:
|
39
|
+
create: Створити
|
40
|
+
title: Нові підсумки
|
41
|
+
update:
|
42
|
+
invalid: При оновленні цього проекту сталася помилка
|
43
|
+
success: Проект успішно оновлено
|
44
|
+
models:
|
45
|
+
project:
|
46
|
+
fields:
|
47
|
+
title: Назва
|
48
|
+
projects:
|
49
|
+
budget_confirm:
|
50
|
+
are_you_sure: Чи ви згодні? Підтвердивши свій голос, ви не зможете його потім змінити.
|
51
|
+
cancel: Скасувати
|
52
|
+
confirm: Підтвердити
|
53
|
+
description: Ось проекти, які ви обрали складовими бюджету.
|
54
|
+
title: Підтвердьте голос
|
55
|
+
budget_excess:
|
56
|
+
close: Закрити
|
57
|
+
description: Додавання цього проекту перевищить максимальний бюджет, і тому його не можна зараз додати. За бажанням ви можете видалити якийсь з тих проектів, що ви раніше вибрали для додавання, або проголосувати згідно ваших уподобань.
|
58
|
+
ok: Гаразд
|
59
|
+
title: Перевищено максимальний бюджет
|
60
|
+
budget_summary:
|
61
|
+
are_you_sure: Ви дійсно бажаєте скасувати ваш голос?
|
62
|
+
assigned: 'Надано:'
|
63
|
+
cancel_order: видалити ваш голос і почати все спочатку
|
64
|
+
checked_out:
|
65
|
+
description: Ви вже проголосували за бюджет. Якщо ви змінили свою думку, ви можете %{cancel_link}.
|
66
|
+
title: Голосування щодо бюджету завершено
|
67
|
+
description: На які проекти, на вашу думку, ми маємо виділити кошти? Надавайте принаймні %{minimum_budget} бажаним для вас проектам та голосуйте згідно своїх уподобань, щоб визначити бюджет.
|
68
|
+
title: Ви приймаєте рішення щодо бюджету
|
69
|
+
count:
|
70
|
+
projects_count:
|
71
|
+
one: 1 проект
|
72
|
+
few: "%{count} проекти"
|
73
|
+
many: "%{count} проектів"
|
74
|
+
other: "%{count} проектів"
|
75
|
+
filters:
|
76
|
+
category: Розділ
|
77
|
+
category_prompt: Оберіть розділ
|
78
|
+
scope_prompt: Оберіть обсяг
|
79
|
+
scopes: Обсяги
|
80
|
+
search: Шукати
|
81
|
+
filters_small_view:
|
82
|
+
close_modal: Закрити віконце
|
83
|
+
filter: Відібрати
|
84
|
+
filter_by: 'Відібрати за ознакою:'
|
85
|
+
unfold: Розгорнути
|
86
|
+
order_progress:
|
87
|
+
vote: Голосувати
|
88
|
+
order_selected_projects:
|
89
|
+
remove: Видалити
|
90
|
+
selected_projects:
|
91
|
+
one: обраний проект
|
92
|
+
few: обрані проекти
|
93
|
+
many: обраних проектів
|
94
|
+
other: обраних проектів
|
95
|
+
view: Переглянути
|
96
|
+
project:
|
97
|
+
add: Додати
|
98
|
+
count:
|
99
|
+
one: 1 людина підтримує
|
100
|
+
few: "%{count} людей підтримує"
|
101
|
+
many: "%{count} людей підтримують"
|
102
|
+
other: "%{count} людей підтримують"
|
103
|
+
remove: Вилучити
|
104
|
+
project_budget_button:
|
105
|
+
add: Додати
|
106
|
+
added: Додано
|
107
|
+
show:
|
108
|
+
budget: Бюджет
|
109
|
+
view_all_projects: Переглянути всi проекти
|
110
|
+
features:
|
111
|
+
budgets:
|
112
|
+
actions:
|
113
|
+
vote: Голосувати
|
114
|
+
name: Бюджети
|
115
|
+
settings:
|
116
|
+
global:
|
117
|
+
announcement: Оголошення
|
118
|
+
comments_enabled: Коментарі ввімкнено
|
119
|
+
total_budget: Загальний бюджет
|
120
|
+
vote_threshold_percent: Поріг відсотків голосів
|
121
|
+
step:
|
122
|
+
announcement: Оголошення
|
123
|
+
comments_blocked: Коментарі заблоковано
|
124
|
+
show_votes: Показати голоси
|
125
|
+
votes_enabled: Голосування ввімкнене
|
126
|
+
orders:
|
127
|
+
checkout:
|
128
|
+
error: При обробці вашого голосу сталася помилка
|
129
|
+
success: Ваш голос успішно прийнято
|
130
|
+
destroy:
|
131
|
+
error: При скасуванні вашого голосу сталася помилка
|
132
|
+
success: Ваш голос було успішно скасовано
|
133
|
+
resource_links:
|
134
|
+
included_proposals:
|
135
|
+
project_proposals: 'Пропозиції, включені до цього проекту:'
|
136
|
+
index:
|
137
|
+
confirmed_orders_count: Кількість голосів
|
138
|
+
total_budget: Загальний бюджет
|
@@ -49,19 +49,19 @@ Decidim.register_feature(:budgets) do |feature|
|
|
49
49
|
settings.attribute :announcement, type: :text, translated: true, editor: true
|
50
50
|
end
|
51
51
|
|
52
|
-
feature.seeds do |
|
52
|
+
feature.seeds do |participatory_space|
|
53
53
|
feature = Decidim::Feature.create!(
|
54
|
-
name: Decidim::Features::Namer.new(
|
54
|
+
name: Decidim::Features::Namer.new(participatory_space.organization.available_locales, :budgets).i18n_name,
|
55
55
|
manifest_name: :budgets,
|
56
56
|
published_at: Time.current,
|
57
|
-
|
57
|
+
participatory_space: participatory_space
|
58
58
|
)
|
59
59
|
|
60
60
|
3.times do
|
61
61
|
project = Decidim::Budgets::Project.create!(
|
62
62
|
feature: feature,
|
63
|
-
scope:
|
64
|
-
category:
|
63
|
+
scope: participatory_space.organization.scopes.sample,
|
64
|
+
category: participatory_space.categories.sample,
|
65
65
|
title: Decidim::Faker::Localized.sentence(2),
|
66
66
|
description: Decidim::Faker::Localized.wrapped("<p>", "</p>") do
|
67
67
|
Decidim::Faker::Localized.paragraph(3)
|
@@ -5,9 +5,9 @@ require "decidim/dev"
|
|
5
5
|
|
6
6
|
FactoryGirl.define do
|
7
7
|
factory :budget_feature, parent: :feature do
|
8
|
-
name { Decidim::Features::Namer.new(
|
8
|
+
name { Decidim::Features::Namer.new(participatory_space.organization.available_locales, :budgets).i18n_name }
|
9
9
|
manifest_name :budgets
|
10
|
-
|
10
|
+
participatory_space { create(:participatory_process, :with_steps, organization: organization) }
|
11
11
|
|
12
12
|
trait :with_total_budget_and_vote_threshold_percent do
|
13
13
|
transient do
|
@@ -26,7 +26,7 @@ FactoryGirl.define do
|
|
26
26
|
trait :with_votes_disabled do
|
27
27
|
step_settings do
|
28
28
|
{
|
29
|
-
|
29
|
+
participatory_space.active_step.id => {
|
30
30
|
votes_enabled: false
|
31
31
|
}
|
32
32
|
}
|
@@ -36,7 +36,7 @@ FactoryGirl.define do
|
|
36
36
|
trait :with_show_votes_enabled do
|
37
37
|
step_settings do
|
38
38
|
{
|
39
|
-
|
39
|
+
participatory_space.active_step.id => {
|
40
40
|
show_votes: true
|
41
41
|
}
|
42
42
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-budgets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2017-
|
13
|
+
date: 2017-09-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-core
|
@@ -18,28 +18,28 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: 0.6.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.
|
28
|
+
version: 0.6.0
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: decidim-comments
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - '='
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0.
|
35
|
+
version: 0.6.0
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - '='
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.
|
42
|
+
version: 0.6.0
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: rectify
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,42 +88,42 @@ dependencies:
|
|
88
88
|
requirements:
|
89
89
|
- - '='
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: 0.
|
91
|
+
version: 0.6.0
|
92
92
|
type: :development
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - '='
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: 0.
|
98
|
+
version: 0.6.0
|
99
99
|
- !ruby/object:Gem::Dependency
|
100
100
|
name: decidim-admin
|
101
101
|
requirement: !ruby/object:Gem::Requirement
|
102
102
|
requirements:
|
103
103
|
- - '='
|
104
104
|
- !ruby/object:Gem::Version
|
105
|
-
version: 0.
|
105
|
+
version: 0.6.0
|
106
106
|
type: :development
|
107
107
|
prerelease: false
|
108
108
|
version_requirements: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - '='
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 0.
|
112
|
+
version: 0.6.0
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: decidim-proposals
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
117
|
- - '='
|
118
118
|
- !ruby/object:Gem::Version
|
119
|
-
version: 0.
|
119
|
+
version: 0.6.0
|
120
120
|
type: :development
|
121
121
|
prerelease: false
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
123
123
|
requirements:
|
124
124
|
- - '='
|
125
125
|
- !ruby/object:Gem::Version
|
126
|
-
version: 0.
|
126
|
+
version: 0.6.0
|
127
127
|
description: A budgets component for decidim's participatory processes.
|
128
128
|
email:
|
129
129
|
- josepjaume@gmail.com
|
@@ -187,7 +187,6 @@ files:
|
|
187
187
|
- app/views/decidim/budgets/projects/index.html.erb
|
188
188
|
- app/views/decidim/budgets/projects/index.js.erb
|
189
189
|
- app/views/decidim/budgets/projects/show.html.erb
|
190
|
-
- config/i18n-tasks.yml
|
191
190
|
- config/locales/ca.yml
|
192
191
|
- config/locales/en.yml
|
193
192
|
- config/locales/es.yml
|
@@ -197,6 +196,7 @@ files:
|
|
197
196
|
- config/locales/it.yml
|
198
197
|
- config/locales/nl.yml
|
199
198
|
- config/locales/pl.yml
|
199
|
+
- config/locales/uk.yml
|
200
200
|
- db/migrate/20170127114122_create_projects.rb
|
201
201
|
- db/migrate/20170130095615_create_orders.rb
|
202
202
|
- db/migrate/20170130101825_create_line_items.rb
|
data/config/i18n-tasks.yml
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
base_locale: en
|
2
|
-
|
3
|
-
ignore_unused:
|
4
|
-
- "decidim.features.budgets.name"
|
5
|
-
- "decidim.features.budgets.settings.*"
|
6
|
-
- "decidim.features.budgets.actions.*"
|
7
|
-
- "activemodel.attributes.project.*"
|
8
|
-
- "decidim.resource_links.*"
|
9
|
-
ignore_missing:
|
10
|
-
- decidim.scopes.global
|
11
|
-
search:
|
12
|
-
strict: false
|