decidim-budgets 0.22.0 → 0.23.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +38 -3
- data/app/assets/stylesheets/decidim/budgets/budget/_budget-list.scss +5 -0
- data/app/cells/decidim/budgets/base_cell.rb +22 -0
- data/app/cells/decidim/budgets/budget_cell.rb +21 -0
- data/app/cells/decidim/budgets/budget_information_modal/show.erb +28 -0
- data/app/cells/decidim/budgets/budget_information_modal_cell.rb +22 -0
- data/app/cells/decidim/budgets/budget_list_item/show.erb +22 -0
- data/app/cells/decidim/budgets/budget_list_item_cell.rb +40 -0
- data/app/cells/decidim/budgets/budget_m/data.erb +12 -0
- data/app/cells/decidim/budgets/budget_m/footer.erb +5 -0
- data/app/cells/decidim/budgets/budget_m_cell.rb +16 -0
- data/app/cells/decidim/budgets/budgets_header/show.erb +7 -0
- data/app/cells/decidim/budgets/budgets_header_cell.rb +14 -0
- data/app/cells/decidim/budgets/budgets_list/card_list.erb +7 -0
- data/app/cells/decidim/budgets/budgets_list/highlighted.erb +11 -0
- data/app/cells/decidim/budgets/budgets_list/show.erb +20 -0
- data/app/cells/decidim/budgets/budgets_list/voted.erb +43 -0
- data/app/cells/decidim/budgets/budgets_list_cell.rb +39 -0
- data/app/cells/decidim/budgets/limit_announcement_cell.rb +52 -0
- data/app/cells/decidim/budgets/project_list_item/project_data.erb +17 -3
- data/app/cells/decidim/budgets/project_list_item/project_data_vote_button.erb +2 -2
- data/app/cells/decidim/budgets/project_list_item/project_text.erb +11 -5
- data/app/cells/decidim/budgets/project_list_item/show.erb +3 -3
- data/app/cells/decidim/budgets/project_list_item_cell.rb +8 -28
- data/app/cells/decidim/budgets/project_m/data.erb +1 -1
- data/app/cells/decidim/budgets/project_m_cell.rb +4 -0
- data/app/cells/decidim/budgets/project_selected_status_cell.rb +28 -0
- data/app/cells/decidim/budgets/project_tags/show.erb +5 -0
- data/app/cells/decidim/budgets/project_tags_cell.rb +18 -0
- data/app/cells/decidim/budgets/project_voted_hint_cell.rb +33 -0
- data/app/cells/decidim/budgets/project_votes_count_cell.rb +44 -0
- data/app/commands/decidim/budgets/add_line_item.rb +7 -10
- data/app/commands/decidim/budgets/admin/create_budget.rb +48 -0
- data/app/commands/decidim/budgets/admin/create_project.rb +12 -7
- data/app/commands/decidim/budgets/admin/destroy_budget.rb +42 -0
- data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +26 -25
- data/app/commands/decidim/budgets/admin/update_budget.rb +48 -0
- data/app/commands/decidim/budgets/admin/update_project.rb +8 -1
- data/app/commands/decidim/budgets/checkout.rb +6 -6
- data/app/commands/decidim/budgets/remove_line_item.rb +3 -2
- data/app/controllers/concerns/decidim/budgets/needs_current_order.rb +14 -2
- data/app/controllers/concerns/decidim/budgets/orderable.rb +3 -7
- data/app/controllers/decidim/budgets/admin/application_controller.rb +10 -2
- data/app/controllers/decidim/budgets/admin/attachment_collections_controller.rb +1 -1
- data/app/controllers/decidim/budgets/admin/attachments_controller.rb +2 -2
- data/app/controllers/decidim/budgets/admin/budgets_controller.rb +82 -0
- data/app/controllers/decidim/budgets/admin/projects_controller.rb +7 -7
- data/app/controllers/decidim/budgets/admin/proposals_imports_controller.rb +10 -2
- data/app/controllers/decidim/budgets/application_controller.rb +23 -0
- data/app/controllers/decidim/budgets/budgets_controller.rb +24 -0
- data/app/controllers/decidim/budgets/line_items_controller.rb +9 -5
- data/app/controllers/decidim/budgets/orders_controller.rb +20 -6
- data/app/controllers/decidim/budgets/projects_controller.rb +19 -18
- data/app/forms/decidim/budgets/admin/budget_form.rb +39 -0
- data/app/forms/decidim/budgets/admin/project_form.rb +14 -10
- data/app/forms/decidim/budgets/admin/project_import_proposals_form.rb +4 -0
- data/app/helpers/decidim/budgets/admin/application_helper.rb +13 -0
- data/app/helpers/decidim/budgets/application_helper.rb +10 -0
- data/app/helpers/decidim/budgets/projects_helper.rb +0 -4
- data/app/mailers/decidim/budgets/order_summary_mailer.rb +5 -3
- data/app/models/decidim/budgets/budget.rb +34 -0
- data/app/models/decidim/budgets/line_item.rb +4 -4
- data/app/models/decidim/budgets/order.rb +23 -19
- data/app/models/decidim/budgets/project.rb +34 -5
- data/app/permissions/decidim/budgets/admin/permissions.rb +23 -10
- data/app/permissions/decidim/budgets/permissions.rb +28 -6
- data/app/presenters/decidim/budgets/admin_log/budget_presenter.rb +42 -0
- data/app/queries/decidim/budgets/filtered_projects.rb +9 -1
- data/app/queries/decidim/budgets/metrics/budget_followers_metric_measure.rb +3 -2
- data/app/queries/decidim/budgets/metrics/budget_participants_metric_measure.rb +6 -5
- data/app/serializers/decidim/budgets/data_portability_budgets_order_serializer.rb +3 -2
- data/app/services/decidim/budgets/project_search.rb +12 -24
- data/app/types/decidim/budgets/budget_type.rb +24 -0
- data/app/types/decidim/budgets/budgets_type.rb +6 -6
- data/app/types/decidim/budgets/project_type.rb +2 -1
- data/app/views/decidim/budgets/admin/budgets/_form.html.erb +23 -0
- data/app/views/decidim/budgets/admin/budgets/edit.html.erb +7 -0
- data/app/views/decidim/budgets/admin/budgets/index.html.erb +58 -0
- data/app/views/decidim/budgets/admin/budgets/new.html.erb +7 -0
- data/app/views/decidim/budgets/admin/projects/_form.html.erb +12 -4
- data/app/views/decidim/budgets/admin/projects/edit.html.erb +2 -2
- data/app/views/decidim/budgets/admin/projects/index.html.erb +20 -7
- data/app/views/decidim/budgets/admin/projects/new.html.erb +2 -2
- data/app/views/decidim/budgets/admin/proposals_imports/new.html.erb +1 -1
- data/app/views/decidim/budgets/budgets/index.html.erb +5 -0
- data/app/views/decidim/budgets/order_summary_mailer/order_summary.html.erb +1 -0
- data/app/views/decidim/budgets/projects/_budget_confirm.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_budget_summary.html.erb +19 -6
- data/app/views/decidim/budgets/projects/_filters.html.erb +6 -2
- data/app/views/decidim/budgets/projects/_linked_projects.html.erb +1 -1
- data/app/views/decidim/budgets/projects/_order_progress.html.erb +10 -6
- data/app/views/decidim/budgets/projects/_order_selected_projects.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_project_budget_button.html.erb +36 -7
- data/app/views/decidim/budgets/projects/index.html.erb +12 -4
- data/app/views/decidim/budgets/projects/show.html.erb +22 -13
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +2 -11
- data/config/locales/bg.yml +6 -0
- data/config/locales/ca.yml +102 -10
- data/config/locales/cs.yml +108 -16
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +120 -28
- data/config/locales/el.yml +3 -9
- data/config/locales/en.yml +101 -9
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +101 -9
- data/config/locales/es-PY.yml +101 -9
- data/config/locales/es.yml +102 -10
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +5 -8
- data/config/locales/fi-plain.yml +102 -10
- data/config/locales/fi.yml +103 -11
- data/config/locales/fr-CA.yml +101 -9
- data/config/locales/fr.yml +101 -9
- data/config/locales/gl.yml +70 -10
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +2 -7
- data/config/locales/id-ID.yml +2 -6
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/is.yml +114 -0
- data/config/locales/it.yml +71 -9
- data/config/locales/ja-JP.yml +1 -0
- data/config/locales/ja.yml +262 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/{lv-LV.yml → lv.yml} +2 -10
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +88 -10
- data/config/locales/no.yml +25 -9
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +114 -22
- data/config/locales/pt-BR.yml +2 -7
- data/config/locales/pt.yml +3 -9
- data/config/locales/ro-RO.yml +3 -10
- data/config/locales/ru.yml +2 -9
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +2 -11
- data/config/locales/sl.yml +0 -4
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +0 -2
- data/config/locales/sv.yml +101 -9
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +153 -34
- data/config/locales/uk.yml +2 -9
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +260 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200617105120_create_decidim_budgets.rb +15 -0
- data/db/migrate/20200629072626_rename_budget_to_budget_ammount.rb +7 -0
- data/db/migrate/20200629134013_add_budget_reference_to_project.rb +7 -0
- data/db/migrate/20200706142609_add_budget_reference_to_order.rb +7 -0
- data/db/migrate/20200714103519_move_budgets_to_own_model.rb +109 -0
- data/db/migrate/20200717140012_add_scope_to_budgets.rb +7 -0
- data/db/migrate/20200728075039_add_selected_at_to_project.rb +7 -0
- data/db/migrate/20200804175222_votes_enabled_to_votes_choices.rb +35 -0
- data/db/migrate/20200827154129_add_commentable_counter_cache_to_projects.rb +9 -0
- data/lib/decidim/budgets.rb +1 -0
- data/lib/decidim/budgets/admin_engine.rb +10 -5
- data/lib/decidim/budgets/component.rb +83 -38
- data/lib/decidim/budgets/engine.rb +8 -6
- data/lib/decidim/budgets/test/factories.rb +42 -13
- data/lib/decidim/budgets/version.rb +1 -1
- data/lib/decidim/budgets/workflows.rb +17 -0
- data/lib/decidim/budgets/workflows/all.rb +20 -0
- data/lib/decidim/budgets/workflows/base.rb +132 -0
- data/lib/decidim/budgets/workflows/one.rb +33 -0
- metadata +89 -20
- data/app/cells/decidim/budgets/project_list_item/project_data_number.erb +0 -3
- data/app/cells/decidim/budgets/project_list_item/project_data_votes.erb +0 -7
data/config/locales/fi-plain.yml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
fi-pl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
budget:
|
5
|
+
decidim_scope_id: Teema
|
6
|
+
description: Kuvaus
|
7
|
+
title: Otsikko
|
8
|
+
total_budget: Kokonaisbudjetti
|
9
|
+
weight: Painoarvo
|
4
10
|
project:
|
5
|
-
|
11
|
+
budget_amount: Budjetti
|
6
12
|
decidim_category_id: Aihepiiri
|
7
13
|
decidim_scope_id: Teema
|
8
14
|
description: Kuvaus
|
9
15
|
proposal_ids: Liittyvät ehdotukset
|
16
|
+
selected: Valittu toteutukseen
|
10
17
|
title: Otsikko
|
11
18
|
activerecord:
|
12
19
|
models:
|
@@ -21,12 +28,33 @@ fi-pl:
|
|
21
28
|
confirm_destroy: Haluatko varmasti poistaa tämän suunnitelman?
|
22
29
|
destroy: Poista
|
23
30
|
edit: Muokkaa
|
31
|
+
edit_projects: Hallinnoi projekteja
|
24
32
|
import: Tuo ehdotuksia suunnitelmiin
|
25
|
-
new: Uusi
|
33
|
+
new: Uusi %{name}
|
26
34
|
preview: Esikatsele
|
27
35
|
title: Toiminnot
|
28
36
|
admin:
|
37
|
+
budgets:
|
38
|
+
create:
|
39
|
+
invalid: Budjetin luonti epäonnistui
|
40
|
+
success: Budjetin luonti onnistui
|
41
|
+
destroy:
|
42
|
+
invalid: Budjetin poisto epäonnistui
|
43
|
+
success: Budjetin poisto onnistui
|
44
|
+
edit:
|
45
|
+
title: Muokkaa budjettia
|
46
|
+
update: Päivitä budjetti
|
47
|
+
index:
|
48
|
+
title: Budjetit
|
49
|
+
new:
|
50
|
+
create: Luo budjetti
|
51
|
+
title: Uusi budjetti
|
52
|
+
update:
|
53
|
+
invalid: Budjetin päivitys epäonnistui
|
54
|
+
success: Budjetin päivitys onnistui
|
29
55
|
models:
|
56
|
+
budget:
|
57
|
+
name: Budjetti
|
30
58
|
project:
|
31
59
|
name: Suunnitelma
|
32
60
|
projects:
|
@@ -41,6 +69,7 @@ fi-pl:
|
|
41
69
|
index:
|
42
70
|
finished_orders: Valmiit äänet
|
43
71
|
pending_orders: Odottavat äänet
|
72
|
+
selected: Valittu
|
44
73
|
title: Suunnitelmat
|
45
74
|
new:
|
46
75
|
create: Luo
|
@@ -57,11 +86,39 @@ fi-pl:
|
|
57
86
|
no_components: Tässä osallisuustilassa ei ole ole muita ehdotuskomponentteja, joista voitaisiin tuoda ehdotuksia suunnitelmiin.
|
58
87
|
select_component: Valitse komponentti
|
59
88
|
admin_log:
|
89
|
+
budget:
|
90
|
+
create: "%{user_name} loi budjetin %{resource_name} osallistumistilassa %{space_name}"
|
91
|
+
delete: "%{user_name} poisti budjetin %{resource_name} osallistumistilassa %{space_name}"
|
92
|
+
update: "%{user_name} päivitti budjettia %{resource_name} osallistumistilassa %{space_name}"
|
60
93
|
project:
|
61
94
|
create: "%{user_name} loi %{resource_name} -suunnitelman %{space_name} -tilassa"
|
62
95
|
delete: "%{user_name} poisti %{resource_name} -suunnitelman %{space_name} -tilassa"
|
63
96
|
update: "%{user_name} päivitti %{resource_name} -suunnitelman %{space_name} -tilassa"
|
97
|
+
budget:
|
98
|
+
view: Näytä kaikki budjetin projektit
|
99
|
+
budget_information_modal:
|
100
|
+
back_to: Takaisin %{component_name}
|
101
|
+
close_modal: Sulje ikkuna
|
102
|
+
continue: Jatka
|
103
|
+
more_information: Lisätietoa
|
104
|
+
budgets_list:
|
105
|
+
cancel_order:
|
106
|
+
more_than_one: poista äänesi budjetista %{name} ja aloita alusta
|
107
|
+
only_one: poista äänesi ja aloita alusta.
|
108
|
+
finished_message: Olet suorittanut äänestysprosessin. Kiitos osallistumisesta!
|
109
|
+
highlighted_cta: Äänestä budjetista %{name}
|
110
|
+
if_change_opinion: Jos olet muuttanut mieltäsi, voit
|
111
|
+
my_budgets: Omat budjetit
|
112
|
+
voted_on: Olet äänestänyt budjeteissa %{links}
|
113
|
+
limit_announcement:
|
114
|
+
cant_vote: Et voi äänestää tästä budjetista. <a href="%{landing_path}">Kokeile toista budjettia</a>.
|
115
|
+
limit_reached: Sinulla on ääniä kohteessa %{links}. Äänestääksesi tästä budjetista <a href="%{landing_path}">poista äänesi ja aloita alusta</a>.
|
64
116
|
models:
|
117
|
+
budget:
|
118
|
+
fields:
|
119
|
+
name: Nimi
|
120
|
+
projects_count: Projektien määrä
|
121
|
+
total_budget: Kokonaisbudjetti
|
65
122
|
project:
|
66
123
|
fields:
|
67
124
|
title: Otsikko
|
@@ -69,11 +126,11 @@ fi-pl:
|
|
69
126
|
order_summary:
|
70
127
|
selected_projects: 'Hankkeet, jotka olet valinnut:'
|
71
128
|
subject: Olet äänestänyt osallistumistilassa %{space_name}
|
72
|
-
voted_on_space: Olet äänestänyt budjetista osallistumistilassa %{space_name}.
|
73
|
-
voted_on_space_with_scope: Olet äänestänyt
|
129
|
+
voted_on_space: Olet äänestänyt budjetista %{budget_name} osallistumistilassa %{space_name}.
|
130
|
+
voted_on_space_with_scope: Olet äänestänyt budjetista %{budget_name} osallistumistilassa %{space_name} koskien teemaa %{scope_name} (%{scope_type}).
|
74
131
|
projects:
|
75
132
|
budget_confirm:
|
76
|
-
are_you_sure:
|
133
|
+
are_you_sure: Jos muutat mieltäsi, voit muuttaa ääntäsi myöhemmin.
|
77
134
|
cancel: Peruuta
|
78
135
|
confirm: Vahvista
|
79
136
|
description: Olet valinnut nämä suunnitelmat osaksi budjettia.
|
@@ -101,6 +158,11 @@ fi-pl:
|
|
101
158
|
category: Aihepiiri
|
102
159
|
scope: Teema
|
103
160
|
search: Haku
|
161
|
+
status: Tila
|
162
|
+
status_values:
|
163
|
+
all: Kaikki
|
164
|
+
not_selected: Ei valittu
|
165
|
+
selected: Valittu
|
104
166
|
filters_small_view:
|
105
167
|
close_modal: Sulje ikkuna
|
106
168
|
filter: Suodata
|
@@ -120,18 +182,22 @@ fi-pl:
|
|
120
182
|
lowest_cost: Edullisin ensin
|
121
183
|
most_voted: Eniten ääniä saaneet ensin
|
122
184
|
random: Satunnainen järjestys
|
185
|
+
selected: Valitut
|
123
186
|
project:
|
124
187
|
add: Lisää hanke %{resource_name} ääneesi
|
125
|
-
count:
|
126
|
-
one: 1 kannatus
|
127
|
-
other: "%{count} kannatusta"
|
128
188
|
remove: Poista hanke %{resource_name} äänestäsi
|
189
|
+
selected: Valitut
|
129
190
|
view: Näytä
|
191
|
+
votes:
|
192
|
+
one: ääni
|
193
|
+
other: ääntä
|
194
|
+
you_voted: Sinä äänestit
|
130
195
|
project_budget_button:
|
131
196
|
add: Lisää ääneesi
|
132
197
|
add_descriptive: Lisää hanke %{resource_name} ääneesi
|
133
198
|
added: Lisätty ääneesi
|
134
199
|
added_descriptive: Hanke %{resource_name} lisätty ääneesi
|
200
|
+
projects_for: Projektit kohteelle %{name}
|
135
201
|
show:
|
136
202
|
budget: Budjetti
|
137
203
|
view_all_projects: Näytä kaikki suunnitelmat
|
@@ -144,22 +210,48 @@ fi-pl:
|
|
144
210
|
global:
|
145
211
|
announcement: Ilmoitus
|
146
212
|
comments_enabled: Kommentit ovat käytössä
|
213
|
+
comments_max_length: Kommenttien maksimipituus (jätä arvoksi 0 käyttääksesi oletusarvoa)
|
147
214
|
form:
|
148
215
|
errors:
|
149
216
|
budget_voting_rule_only_one: Voit valita ainoastaan yhden äänestyssäännön
|
150
217
|
budget_voting_rule_required: Yksi äänestyssääntö vaaditaan
|
218
|
+
landing_page_content: Budjetoinnin aloitussivun teksti
|
219
|
+
more_information_modal: Lisätietoikkunan teksti
|
151
220
|
projects_per_page: Suunnitelmat sivua kohden
|
152
221
|
resources_permissions_enabled: Toiminnallisuutta koskevat oikeudet voidaan asettaa jokaiselle suunnitelmalle
|
222
|
+
scope_id: Teema
|
223
|
+
scopes_enabled: Teemat käytössä
|
224
|
+
title: Otsikko
|
153
225
|
total_budget: Kokonaisbudjetti
|
154
226
|
vote_minimum_budget_projects_number: Valittavien projektien vähimmäismäärä
|
155
227
|
vote_rule_minimum_budget_projects_enabled: 'Ota sääntö käyttöön: Valittavien projektien vähimmäismäärä'
|
156
228
|
vote_rule_threshold_percent_enabled: 'Ota sääntö käyttöön: Kokonaisbudjetin prosentuaalinen vähimmäismäärä'
|
157
229
|
vote_threshold_percent: Äänestyksen kynnysprosentti
|
230
|
+
workflow: Työnkulku
|
231
|
+
workflow_choices:
|
232
|
+
all: 'Äänestä kaikissa: sallii osallistujien äänestää kaikissa budjeteissa.'
|
233
|
+
one: 'Äänestä yhdessä: sallii osallistujien äänestää missä tahansa budjetissa, mutta vain yhdessä.'
|
158
234
|
step:
|
159
235
|
announcement: Ilmoitus
|
160
236
|
comments_blocked: Kommentit on estetty
|
237
|
+
highlighted_heading: Korostuksen otsikko
|
238
|
+
landing_page_content: Budjetoinnin aloitussivun teksti
|
239
|
+
list_heading: Listan otsikko
|
240
|
+
more_information_modal: Lisätietoikkunan teksti
|
161
241
|
show_votes: Näytä äänet
|
162
|
-
|
242
|
+
title: Otsikko
|
243
|
+
votes: Äänestys
|
244
|
+
votes_choices:
|
245
|
+
disabled: Äänestys estetty
|
246
|
+
enabled: Äänestys on käytössä
|
247
|
+
finished: Äänestys päättynyt
|
248
|
+
events:
|
249
|
+
budgets:
|
250
|
+
budget_published:
|
251
|
+
email_intro: 'Budjetti %{resource_title} on nyt aktiivinen osallistumistilassa %{participatory_space_title}. Näet sen tältä sivulta:'
|
252
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
253
|
+
email_subject: Budjetti %{resource_title} on nyt aktiivinen osallistumistilassa %{participatory_space_title}.
|
254
|
+
notification_title: Budjetti <a href="%{resource_path}">%{resource_title}</a> on nyt aktiivinen osallistumistilassa %{participatory_space_title}.
|
163
255
|
orders:
|
164
256
|
checkout:
|
165
257
|
error: Äänesi käsittelyssä tapahtui virhe
|
@@ -172,4 +264,4 @@ fi-pl:
|
|
172
264
|
project_proposal: 'Tähän suunnitelmaan liittyvät ehdotukset:'
|
173
265
|
index:
|
174
266
|
confirmed_orders_count: Äänten määrä
|
175
|
-
total_budget:
|
267
|
+
total_budget: Kokonaisbudjetti
|
data/config/locales/fi.yml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
fi:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
budget:
|
5
|
+
decidim_scope_id: Teema
|
6
|
+
description: Kuvaus
|
7
|
+
title: Otsikko
|
8
|
+
total_budget: Kokonaisbudjetti
|
9
|
+
weight: Painoarvo
|
4
10
|
project:
|
5
|
-
|
11
|
+
budget_amount: Budjetti
|
6
12
|
decidim_category_id: Aihepiiri
|
7
13
|
decidim_scope_id: Teema
|
8
14
|
description: Kuvaus
|
9
15
|
proposal_ids: Liittyvät ehdotukset
|
16
|
+
selected: Valittu toteutukseen
|
10
17
|
title: Otsikko
|
11
18
|
activerecord:
|
12
19
|
models:
|
@@ -21,12 +28,33 @@ fi:
|
|
21
28
|
confirm_destroy: Haluatko varmasti poistaa tämän suunnitelman?
|
22
29
|
destroy: Poista
|
23
30
|
edit: Muokkaa
|
31
|
+
edit_projects: Hallinnoi projekteja
|
24
32
|
import: Tuo ehdotuksia suunnitelmiksi
|
25
|
-
new: Uusi
|
33
|
+
new: Uusi %{name}
|
26
34
|
preview: Esikatsele
|
27
35
|
title: Toiminnot
|
28
36
|
admin:
|
37
|
+
budgets:
|
38
|
+
create:
|
39
|
+
invalid: Budjetin luonti epäonnistui
|
40
|
+
success: Budjetin luonti onnistui
|
41
|
+
destroy:
|
42
|
+
invalid: Budjetin poisto epäonnistui
|
43
|
+
success: Budjetin poisto onnistui
|
44
|
+
edit:
|
45
|
+
title: Muokkaa budjettia
|
46
|
+
update: Päivitä budjetti
|
47
|
+
index:
|
48
|
+
title: Budjetit
|
49
|
+
new:
|
50
|
+
create: Luo budjetti
|
51
|
+
title: Uusi budjetti
|
52
|
+
update:
|
53
|
+
invalid: Budjetin päivitys epäonnistui
|
54
|
+
success: Budjetin päivitys onnistui
|
29
55
|
models:
|
56
|
+
budget:
|
57
|
+
name: Budjetti
|
30
58
|
project:
|
31
59
|
name: Suunnitelma
|
32
60
|
projects:
|
@@ -41,6 +69,7 @@ fi:
|
|
41
69
|
index:
|
42
70
|
finished_orders: Valmiit äänet
|
43
71
|
pending_orders: Odottavat äänet
|
72
|
+
selected: Valittu
|
44
73
|
title: Suunnitelmat
|
45
74
|
new:
|
46
75
|
create: Luo
|
@@ -57,11 +86,39 @@ fi:
|
|
57
86
|
no_components: Tässä osallistumistilassa ei ole ole muita ehdotuskomponentteja, joista voitaisiin tuoda ehdotuksia suunnitelmiksi.
|
58
87
|
select_component: Valitse komponentti
|
59
88
|
admin_log:
|
89
|
+
budget:
|
90
|
+
create: "%{user_name} loi budjetin %{resource_name} osallistumistilassa %{space_name}"
|
91
|
+
delete: "%{user_name} poisti budjetin %{resource_name} osallistumistilassa %{space_name}"
|
92
|
+
update: "%{user_name} päivitti budjettia %{resource_name} osallistumistilassa %{space_name}"
|
60
93
|
project:
|
61
94
|
create: "%{user_name} loi suunnitelman %{resource_name} osallistumistilassa %{space_name}"
|
62
95
|
delete: "%{user_name} poisti suunnitelman %{resource_name} osallistumistilassa %{space_name}"
|
63
96
|
update: "%{user_name} päivitti suunnitelman %{resource_name} osallistumistilassa %{space_name}"
|
97
|
+
budget:
|
98
|
+
view: Näytä kaikki budjetin projektit
|
99
|
+
budget_information_modal:
|
100
|
+
back_to: Takaisin %{component_name}
|
101
|
+
close_modal: Sulje ikkuna
|
102
|
+
continue: Jatka
|
103
|
+
more_information: Lisätietoa
|
104
|
+
budgets_list:
|
105
|
+
cancel_order:
|
106
|
+
more_than_one: poista äänesi budjetista %{name} ja aloita alusta
|
107
|
+
only_one: poista äänesi ja aloita alusta.
|
108
|
+
finished_message: Olet suorittanut äänestysprosessin. Kiitos osallistumisesta!
|
109
|
+
highlighted_cta: Äänestä budjetista %{name}
|
110
|
+
if_change_opinion: Jos olet muuttanut mieltäsi, voit
|
111
|
+
my_budgets: Omat budjetit
|
112
|
+
voted_on: Olet äänestänyt budjeteissa %{links}
|
113
|
+
limit_announcement:
|
114
|
+
cant_vote: Et voi äänestää tästä budjetista. <a href="%{landing_path}">Kokeile toista budjettia</a>.
|
115
|
+
limit_reached: Sinulla on ääniä kohteessa %{links}. Äänestääksesi tästä budjetista <a href="%{landing_path}">poista äänesi ja aloita alusta</a>.
|
64
116
|
models:
|
117
|
+
budget:
|
118
|
+
fields:
|
119
|
+
name: Nimi
|
120
|
+
projects_count: Projektien määrä
|
121
|
+
total_budget: Kokonaisbudjetti
|
65
122
|
project:
|
66
123
|
fields:
|
67
124
|
title: Otsikko
|
@@ -69,11 +126,11 @@ fi:
|
|
69
126
|
order_summary:
|
70
127
|
selected_projects: 'Hankkeet, jotka olet valinnut:'
|
71
128
|
subject: Olet äänestänyt osallistumistilassa %{space_name}
|
72
|
-
voted_on_space: Olet äänestänyt budjetista osallistumistilassa %{space_name}.
|
73
|
-
voted_on_space_with_scope: Olet äänestänyt
|
129
|
+
voted_on_space: Olet äänestänyt budjetista %{budget_name} osallistumistilassa %{space_name}.
|
130
|
+
voted_on_space_with_scope: Olet äänestänyt budjetista %{budget_name} osallistumistilassa %{space_name} koskien teemaa %{scope_name} (%{scope_type}).
|
74
131
|
projects:
|
75
132
|
budget_confirm:
|
76
|
-
are_you_sure:
|
133
|
+
are_you_sure: Jos muutat mieltäsi, voit muuttaa ääntäsi myöhemmin.
|
77
134
|
cancel: Peruuta
|
78
135
|
confirm: Vahvista
|
79
136
|
description: Olet valinnut nämä suunnitelmat osaksi budjettia.
|
@@ -101,6 +158,11 @@ fi:
|
|
101
158
|
category: Aihepiiri
|
102
159
|
scope: Teema
|
103
160
|
search: Haku
|
161
|
+
status: Tila
|
162
|
+
status_values:
|
163
|
+
all: Kaikki
|
164
|
+
not_selected: Ei valittu
|
165
|
+
selected: Valittu
|
104
166
|
filters_small_view:
|
105
167
|
close_modal: Sulje ikkuna
|
106
168
|
filter: Suodata
|
@@ -120,18 +182,22 @@ fi:
|
|
120
182
|
lowest_cost: Edullisin ensin
|
121
183
|
most_voted: Eniten ääniä saaneet ensin
|
122
184
|
random: Satunnainen järjestys
|
185
|
+
selected: Valitut
|
123
186
|
project:
|
124
187
|
add: Lisää hanke %{resource_name} ääneesi
|
125
|
-
count:
|
126
|
-
one: 1 kannatus
|
127
|
-
other: "%{count} kannatusta"
|
128
188
|
remove: Poista hanke %{resource_name} äänestäsi
|
189
|
+
selected: Valittu
|
129
190
|
view: Näytä
|
191
|
+
votes:
|
192
|
+
one: ääni
|
193
|
+
other: ääntä
|
194
|
+
you_voted: Sinä äänestit
|
130
195
|
project_budget_button:
|
131
196
|
add: Lisää ääneesi
|
132
197
|
add_descriptive: Lisää hanke %{resource_name} ääneesi
|
133
198
|
added: Lisätty ääneesi
|
134
199
|
added_descriptive: Hanke %{resource_name} lisätty ääneesi
|
200
|
+
projects_for: Projektit kohteelle %{name}
|
135
201
|
show:
|
136
202
|
budget: Budjetti
|
137
203
|
view_all_projects: Näytä kaikki suunnitelmat
|
@@ -144,22 +210,48 @@ fi:
|
|
144
210
|
global:
|
145
211
|
announcement: Ilmoitus
|
146
212
|
comments_enabled: Kommentit ovat käytössä
|
213
|
+
comments_max_length: Kommenttien maksimipituus (jätä arvoksi 0 käyttääksesi oletusarvoa)
|
147
214
|
form:
|
148
215
|
errors:
|
149
216
|
budget_voting_rule_only_one: Voit valita ainoastaan yhden äänestyssäännön
|
150
217
|
budget_voting_rule_required: Yksi äänestyssääntö vaaditaan
|
218
|
+
landing_page_content: Budjetoinnin aloitussivun teksti
|
219
|
+
more_information_modal: Lisätietoikkunan teksti
|
151
220
|
projects_per_page: Suunnitelmat sivua kohden
|
152
221
|
resources_permissions_enabled: Toiminnallisuutta koskevat oikeudet voidaan asettaa jokaiselle suunnitelmalle
|
222
|
+
scope_id: Teema
|
223
|
+
scopes_enabled: Teemat käytössä
|
224
|
+
title: Otsikko
|
153
225
|
total_budget: Kokonaisbudjetti
|
154
226
|
vote_minimum_budget_projects_number: Valittavien projektien vähimmäismäärä
|
155
|
-
vote_rule_minimum_budget_projects_enabled: 'Ota sääntö käyttöön: Valittavien
|
227
|
+
vote_rule_minimum_budget_projects_enabled: 'Ota sääntö käyttöön: Valittavien suunnitelmien vähimmäismäärä'
|
156
228
|
vote_rule_threshold_percent_enabled: 'Ota sääntö käyttöön: Kokonaisbudjetin prosentuaalinen vähimmäismäärä'
|
157
229
|
vote_threshold_percent: Äänestyksen kynnysprosentti
|
230
|
+
workflow: Työnkulku
|
231
|
+
workflow_choices:
|
232
|
+
all: 'Äänestä kaikissa: sallii osallistujien äänestää kaikissa budjeteissa.'
|
233
|
+
one: 'Äänestä yhdessä: sallii osallistujien äänestää missä tahansa budjetissa, mutta vain yhdessä.'
|
158
234
|
step:
|
159
235
|
announcement: Ilmoitus
|
160
236
|
comments_blocked: Kommentointi estetty
|
237
|
+
highlighted_heading: Korostuksen otsikko
|
238
|
+
landing_page_content: Budjetoinnin aloitussivun teksti
|
239
|
+
list_heading: Listan otsikko
|
240
|
+
more_information_modal: Lisätietoikkunan teksti
|
161
241
|
show_votes: Näytä äänet
|
162
|
-
|
242
|
+
title: Otsikko
|
243
|
+
votes: Äänestys
|
244
|
+
votes_choices:
|
245
|
+
disabled: Äänestys estetty
|
246
|
+
enabled: Äänestys on käytössä
|
247
|
+
finished: Äänestys päättynyt
|
248
|
+
events:
|
249
|
+
budgets:
|
250
|
+
budget_published:
|
251
|
+
email_intro: 'Budjetti %{resource_title} on nyt aktiivinen osallistumistilassa %{participatory_space_title}. Näet sen tältä sivulta:'
|
252
|
+
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
253
|
+
email_subject: Budjetti %{resource_title} on nyt aktiivinen osallistumistilassa %{participatory_space_title}.
|
254
|
+
notification_title: Budjetti <a href="%{resource_path}">%{resource_title}</a> on nyt aktiivinen osallistumistilassa %{participatory_space_title}.
|
163
255
|
orders:
|
164
256
|
checkout:
|
165
257
|
error: Äänen käsittely epäonnistui
|
@@ -172,4 +264,4 @@ fi:
|
|
172
264
|
project_proposal: 'Tähän suunnitelmaan liittyvät ehdotukset:'
|
173
265
|
index:
|
174
266
|
confirmed_orders_count: Äänten määrä
|
175
|
-
total_budget:
|
267
|
+
total_budget: Kokonaisbudjetti
|
data/config/locales/fr-CA.yml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
fr-CA:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
budget:
|
5
|
+
decidim_scope_id: Secteur
|
6
|
+
description: Description
|
7
|
+
title: Titre
|
8
|
+
total_budget: Budget total
|
9
|
+
weight: Rang d'affichage
|
4
10
|
project:
|
5
|
-
|
11
|
+
budget_amount: Montant du budget
|
6
12
|
decidim_category_id: Catégorie
|
7
13
|
decidim_scope_id: Périmètre d'application
|
8
14
|
description: Description
|
9
15
|
proposal_ids: Propositions liées
|
16
|
+
selected: Sélectionné pour l'implémentation
|
10
17
|
title: Titre
|
11
18
|
activerecord:
|
12
19
|
models:
|
@@ -21,12 +28,33 @@ fr-CA:
|
|
21
28
|
confirm_destroy: Êtes-vous certain de vouloir supprimer ce projet?
|
22
29
|
destroy: Supprimer
|
23
30
|
edit: Modifier
|
31
|
+
edit_projects: Gérer les projets
|
24
32
|
import: Importer des propositions dans des projets
|
25
|
-
new: Nouveau
|
33
|
+
new: Nouveau %{name}
|
26
34
|
preview: Aperçu
|
27
35
|
title: Actions
|
28
36
|
admin:
|
37
|
+
budgets:
|
38
|
+
create:
|
39
|
+
invalid: Un problème est survenu lors de la création de ce budget
|
40
|
+
success: Budget créé avec succès
|
41
|
+
destroy:
|
42
|
+
invalid: Un problème est survenu lors de la suppression de ce budget
|
43
|
+
success: Budget supprimé avec succès
|
44
|
+
edit:
|
45
|
+
title: Modifier le budget
|
46
|
+
update: Mettre à jour le budget
|
47
|
+
index:
|
48
|
+
title: Budgets
|
49
|
+
new:
|
50
|
+
create: Créer un budget
|
51
|
+
title: Nouveau budget
|
52
|
+
update:
|
53
|
+
invalid: Un problème est survenu lors de la mise à jour de ce budget
|
54
|
+
success: Budget mis à jour avec succès
|
29
55
|
models:
|
56
|
+
budget:
|
57
|
+
name: Budget
|
30
58
|
project:
|
31
59
|
name: Projet
|
32
60
|
projects:
|
@@ -41,6 +69,7 @@ fr-CA:
|
|
41
69
|
index:
|
42
70
|
finished_orders: Votes terminés
|
43
71
|
pending_orders: Votes en cours
|
72
|
+
selected: Sélectionné
|
44
73
|
title: Projets
|
45
74
|
new:
|
46
75
|
create: Créer
|
@@ -57,11 +86,39 @@ fr-CA:
|
|
57
86
|
no_components: Il n'y a pas d'autres modules de proposition dans cet espace participatif pour importer les propositions dans des projets.
|
58
87
|
select_component: Veuillez sélectionner un module
|
59
88
|
admin_log:
|
89
|
+
budget:
|
90
|
+
create: "%{user_name} a créé le budget %{resource_name} dans l'espace %{space_name}"
|
91
|
+
delete: "%{user_name} a supprimé le budget %{resource_name} dans l'espace %{space_name}"
|
92
|
+
update: "%{user_name} a mis à jour le budget %{resource_name} dans l'espace %{space_name}"
|
60
93
|
project:
|
61
94
|
create: "%{user_name} a créé le projet %{resource_name} dans l'espace %{space_name}"
|
62
95
|
delete: "%{user_name} a supprimé le projet %{resource_name} dans l'espace %{space_name}"
|
63
96
|
update: "%{user_name} a mis à jour le projet %{resource_name} dans l'espace %{space_name}"
|
97
|
+
budget:
|
98
|
+
view: Voir tous les projets
|
99
|
+
budget_information_modal:
|
100
|
+
back_to: Retour à %{component_name}
|
101
|
+
close_modal: Fermer la fenêtre de dialogue
|
102
|
+
continue: Continuer
|
103
|
+
more_information: Plus d'information
|
104
|
+
budgets_list:
|
105
|
+
cancel_order:
|
106
|
+
more_than_one: supprimer votre vote sur %{name} et recommencer
|
107
|
+
only_one: supprimer votre vote et recommencez.
|
108
|
+
finished_message: Vous avez terminé le processus de vote. Merci de votre participation !
|
109
|
+
highlighted_cta: Voter pour %{name}
|
110
|
+
if_change_opinion: Si vous avez changé d'avis, vous pouvez
|
111
|
+
my_budgets: Mes Budgets
|
112
|
+
voted_on: Vous avez voté sur %{links}
|
113
|
+
limit_announcement:
|
114
|
+
cant_vote: Vous ne pouvez pas voter sur ce budget. <a href="%{landing_path}">Essayez sur un autre budget</a>.
|
115
|
+
limit_reached: Vous avez des votes actifs dans %{links}. Pour voter sur ce budget, vous devez <a href="%{landing_path}">supprimer votre vote et recommencer</a>.
|
64
116
|
models:
|
117
|
+
budget:
|
118
|
+
fields:
|
119
|
+
name: Nom
|
120
|
+
projects_count: Nombre de projets
|
121
|
+
total_budget: Budget total
|
65
122
|
project:
|
66
123
|
fields:
|
67
124
|
title: Titre
|
@@ -69,11 +126,11 @@ fr-CA:
|
|
69
126
|
order_summary:
|
70
127
|
selected_projects: 'Les projets que vous avez sélectionnés sont :'
|
71
128
|
subject: Vous avez voté sur l'espace participatif %{space_name}
|
72
|
-
voted_on_space: Vous avez voté sur
|
73
|
-
voted_on_space_with_scope: Vous avez voté sur
|
129
|
+
voted_on_space: Vous avez voté sur le budget %{budget_name} pour l'espace participatif %{space_name}.
|
130
|
+
voted_on_space_with_scope: Vous avez voté sur le budget %{budget_name} pour l'espace participatif %{space_name} sur %{scope_name} (%{scope_type}).
|
74
131
|
projects:
|
75
132
|
budget_confirm:
|
76
|
-
are_you_sure:
|
133
|
+
are_you_sure: Si vous changez d'avis, vous pourrez modifier votre vote plus tard.
|
77
134
|
cancel: Annuler
|
78
135
|
confirm: Confirmer
|
79
136
|
description: Voici les projets que vous avez choisis pour le budget.
|
@@ -101,6 +158,11 @@ fr-CA:
|
|
101
158
|
category: Catégorie
|
102
159
|
scope: Périmètre d'application
|
103
160
|
search: Rechercher
|
161
|
+
status: Statut
|
162
|
+
status_values:
|
163
|
+
all: Tous
|
164
|
+
not_selected: Non sélectionné
|
165
|
+
selected: Sélectionné
|
104
166
|
filters_small_view:
|
105
167
|
close_modal: Fermez la fenêtre
|
106
168
|
filter: Filtrer
|
@@ -120,18 +182,22 @@ fr-CA:
|
|
120
182
|
lowest_cost: Prix croissant
|
121
183
|
most_voted: Le plus populaire
|
122
184
|
random: Ordre aléatoire
|
185
|
+
selected: Sélectionné
|
123
186
|
project:
|
124
187
|
add: Ajouter le projet %{resource_name} à votre vote
|
125
|
-
count:
|
126
|
-
one: 1 soutien
|
127
|
-
other: "%{count} soutiens"
|
128
188
|
remove: Retirer le projet %{resource_name} de votre vote
|
189
|
+
selected: Sélectionné
|
129
190
|
view: Voir
|
191
|
+
votes:
|
192
|
+
one: vote
|
193
|
+
other: votes
|
194
|
+
you_voted: Vous avez voté
|
130
195
|
project_budget_button:
|
131
196
|
add: Ajouter à votre vote
|
132
197
|
add_descriptive: Ajouter le projet %{resource_name} à votre vote
|
133
198
|
added: Ajouté à votre vote
|
134
199
|
added_descriptive: Projet %{resource_name} ajouté à votre vote
|
200
|
+
projects_for: Projets pour %{name}
|
135
201
|
show:
|
136
202
|
budget: Budget
|
137
203
|
view_all_projects: Voir tous les projets
|
@@ -144,22 +210,48 @@ fr-CA:
|
|
144
210
|
global:
|
145
211
|
announcement: Annonce
|
146
212
|
comments_enabled: Activer le module de commentaire
|
213
|
+
comments_max_length: Longueur max des commentaires (laisser 0 pour la valeur par défaut)
|
147
214
|
form:
|
148
215
|
errors:
|
149
216
|
budget_voting_rule_only_one: Une seule règle de vote doit être activée
|
150
217
|
budget_voting_rule_required: Une règle de vote est requise
|
218
|
+
landing_page_content: Page d'accueil des budgets
|
219
|
+
more_information_modal: Plus d’informations
|
151
220
|
projects_per_page: Projets par page
|
152
221
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
222
|
+
scope_id: Secteur
|
223
|
+
scopes_enabled: Secteurs activés
|
224
|
+
title: Titre
|
153
225
|
total_budget: Budget total
|
154
226
|
vote_minimum_budget_projects_number: Nombre minimum de projets à voter
|
155
227
|
vote_rule_minimum_budget_projects_enabled: 'Activer la règle : Nombre minimum de projets à voter'
|
156
228
|
vote_rule_threshold_percent_enabled: 'Activer la règle : Pourcentage de budget minimum'
|
157
229
|
vote_threshold_percent: Pourcentage du budget à atteindre pour voter
|
230
|
+
workflow: Processus
|
231
|
+
workflow_choices:
|
232
|
+
all: 'Voter sur tous les budgets : autorise les participants à voter sur tous les budgets.'
|
233
|
+
one: 'Voter sur un seul budget : autorise les participants à voter sur un seul budget parmi les budgets proposés.'
|
158
234
|
step:
|
159
235
|
announcement: Annonce
|
160
236
|
comments_blocked: Commentaires bloqués
|
237
|
+
highlighted_heading: En-tête en surbrillance
|
238
|
+
landing_page_content: Page d'accueil des budgets
|
239
|
+
list_heading: En-tête de la liste des budgets
|
240
|
+
more_information_modal: Plus d’informations
|
161
241
|
show_votes: Afficher les votes
|
162
|
-
|
242
|
+
title: Titre
|
243
|
+
votes: Vote
|
244
|
+
votes_choices:
|
245
|
+
disabled: Vote désactivé
|
246
|
+
enabled: Votes activés
|
247
|
+
finished: Vote terminé
|
248
|
+
events:
|
249
|
+
budgets:
|
250
|
+
budget_published:
|
251
|
+
email_intro: 'Le budget %{resource_title} est maintenant actif pour %{participatory_space_title}. Vous pouvez le voir sur cette page :'
|
252
|
+
email_outro: Vous recevez cette notification car vous suivez « %{participatory_space_title} ». Vous pouvez cesser de le suivre en allant sur le lien précédent.
|
253
|
+
email_subject: Le budget %{resource_title} est maintenant actif pour %{participatory_space_title}.
|
254
|
+
notification_title: Le budget <a href="%{resource_path}">%{resource_title}</a> est maintenant actif pour %{participatory_space_title}.
|
163
255
|
orders:
|
164
256
|
checkout:
|
165
257
|
error: Une erreur s'est produite lors du traitement de votre vote
|