decidim-budgets 0.21.0 → 0.23.2
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/images/decidim/budgets/icon.svg +1 -11
- data/app/assets/javascripts/decidim/budgets/projects.js.es6 +26 -4
- data/app/assets/stylesheets/decidim/budgets/budget/_budget-list.scss +152 -24
- 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 +19 -0
- data/app/cells/decidim/budgets/project_list_item/project_data_vote_button.erb +15 -0
- data/app/cells/decidim/budgets/project_list_item/project_image.erb +5 -0
- data/app/cells/decidim/budgets/project_list_item/project_text.erb +23 -0
- data/app/cells/decidim/budgets/project_list_item/show.erb +5 -0
- data/app/cells/decidim/budgets/project_list_item_cell.rb +66 -0
- data/app/cells/decidim/budgets/project_m/data.erb +3 -3
- data/app/cells/decidim/budgets/project_m/footer.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 +26 -11
- 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 +20 -2
- data/app/commands/decidim/budgets/checkout.rb +7 -6
- data/app/commands/decidim/budgets/remove_line_item.rb +3 -2
- data/app/controllers/concerns/decidim/budgets/needs_current_order.rb +18 -2
- data/app/controllers/concerns/decidim/budgets/orderable.rb +57 -0
- 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 +15 -12
- 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 +10 -6
- data/app/controllers/decidim/budgets/orders_controller.rb +20 -6
- data/app/controllers/decidim/budgets/projects_controller.rb +24 -19
- data/app/forms/decidim/budgets/admin/budget_form.rb +39 -0
- data/app/forms/decidim/budgets/admin/component_form.rb +44 -0
- data/app/forms/decidim/budgets/admin/project_form.rb +25 -9
- 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 +13 -0
- data/app/jobs/decidim/budgets/send_order_summary_job.rb +15 -0
- data/app/mailers/decidim/budgets/order_summary_mailer.rb +36 -0
- 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 +47 -16
- data/app/models/decidim/budgets/project.rb +37 -4
- 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 +15 -10
- 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/projects/proposals_picker.html.erb +1 -0
- 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 +22 -0
- data/app/views/decidim/budgets/projects/_budget_confirm.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_budget_summary.html.erb +26 -7
- data/app/views/decidim/budgets/projects/_filters.html.erb +15 -7
- data/app/views/decidim/budgets/projects/_linked_projects.html.erb +2 -2
- data/app/views/decidim/budgets/projects/_order_progress.html.erb +14 -18
- data/app/views/decidim/budgets/projects/_order_selected_projects.html.erb +3 -3
- data/app/views/decidim/budgets/projects/_project.html.erb +1 -57
- data/app/views/decidim/budgets/projects/_project_budget_button.html.erb +36 -7
- data/app/views/decidim/budgets/projects/_projects.html.erb +8 -1
- data/app/views/decidim/budgets/projects/index.html.erb +15 -7
- data/app/views/decidim/budgets/projects/index.js.erb +8 -0
- 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 -16
- data/config/locales/bg-BG.yml +7 -0
- data/config/locales/bg.yml +6 -0
- data/config/locales/ca.yml +125 -11
- data/config/locales/cs.yml +148 -34
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +143 -29
- data/config/locales/el.yml +168 -0
- data/config/locales/en.yml +125 -11
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +125 -11
- data/config/locales/es-PY.yml +125 -11
- data/config/locales/es.yml +125 -11
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +5 -13
- data/config/locales/fi-plain.yml +126 -12
- data/config/locales/fi.yml +136 -22
- data/config/locales/fr-CA.yml +267 -0
- data/config/locales/fr.yml +125 -11
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +70 -15
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +18 -12
- data/config/locales/id-ID.yml +2 -11
- data/config/locales/is-IS.yml +0 -11
- data/config/locales/is.yml +114 -0
- data/config/locales/it.yml +96 -12
- data/config/locales/ja-JP.yml +172 -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-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +164 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +112 -12
- data/config/locales/no.yml +42 -13
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +175 -61
- data/config/locales/pt-BR.yml +3 -13
- data/config/locales/pt.yml +62 -46
- data/config/locales/ro-RO.yml +172 -0
- data/config/locales/ru.yml +2 -14
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk-SK.yml +180 -0
- data/config/locales/sk.yml +166 -0
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +27 -0
- data/config/locales/sv.yml +125 -11
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +152 -38
- data/config/locales/uk.yml +2 -14
- 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 +12 -5
- data/lib/decidim/budgets/component.rb +87 -38
- data/lib/decidim/budgets/engine.rb +8 -6
- data/lib/decidim/budgets/seeds/city.jpeg +0 -0
- data/lib/decidim/budgets/test/factories.rb +71 -9
- 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 +123 -19
@@ -0,0 +1 @@
|
|
1
|
+
si:
|
@@ -0,0 +1,180 @@
|
|
1
|
+
sk:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
project:
|
5
|
+
budget: Rozpočet
|
6
|
+
decidim_category_id: Kategória
|
7
|
+
decidim_scope_id: Rozsah
|
8
|
+
description: Popis
|
9
|
+
proposal_ids: Súvisiace návrhy
|
10
|
+
title: Názov
|
11
|
+
activerecord:
|
12
|
+
models:
|
13
|
+
decidim/budgets/project:
|
14
|
+
one: Projekt
|
15
|
+
few: Projekty
|
16
|
+
many: Projekty
|
17
|
+
other: Projekty
|
18
|
+
decidim:
|
19
|
+
budgets:
|
20
|
+
actions:
|
21
|
+
attachment_collections: Priečinky
|
22
|
+
attachments: Prílohy
|
23
|
+
confirm_destroy: Naozaj chcete odstrániť tento projekt?
|
24
|
+
destroy: Odstrániť
|
25
|
+
edit: Upraviť
|
26
|
+
import: Importovať návrhy do projektov
|
27
|
+
new: Nový projekt
|
28
|
+
preview: Ukážka
|
29
|
+
title: Akcie
|
30
|
+
admin:
|
31
|
+
models:
|
32
|
+
project:
|
33
|
+
name: Projekt
|
34
|
+
projects:
|
35
|
+
create:
|
36
|
+
invalid: Vyskytol sa problém s vytváraním projektu
|
37
|
+
success: Projekt bol úspešne vytvorený
|
38
|
+
destroy:
|
39
|
+
success: Projekt bol úspešne vymazaný
|
40
|
+
edit:
|
41
|
+
title: Upraviť projekt
|
42
|
+
update: Aktualizovať
|
43
|
+
index:
|
44
|
+
finished_orders: Dokončené hlasy
|
45
|
+
pending_orders: Čaká sa na hlasy
|
46
|
+
title: Projekty
|
47
|
+
new:
|
48
|
+
create: Vytvoriť
|
49
|
+
title: Nový projekt
|
50
|
+
update:
|
51
|
+
invalid: Vyskytol sa problém s aktualizáciou projektu
|
52
|
+
success: Projekt bol úspešne aktualizovaný
|
53
|
+
proposals_imports:
|
54
|
+
create:
|
55
|
+
invalid: Vyskytol sa problém s importovaním návrhov do projektov
|
56
|
+
new:
|
57
|
+
create: Importovať návrhy do projektov
|
58
|
+
no_components: V tomto participatívnom priestore nie sú žiadne ďalšie súčasti návrhov pre import návrhov do projektov.
|
59
|
+
select_component: Prosíme, zvoľte súčasť
|
60
|
+
admin_log:
|
61
|
+
project:
|
62
|
+
create: "%{user_name} vytvoril projekt %{resource_name} v priestore %{space_name}"
|
63
|
+
delete: "%{user_name} vymazal projekt %{resource_name} v priestore %{space_name}"
|
64
|
+
update: "%{user_name} aktualizoval projekt %{resource_name} v priestore %{space_name}"
|
65
|
+
models:
|
66
|
+
project:
|
67
|
+
fields:
|
68
|
+
title: Názov
|
69
|
+
order_summary_mailer:
|
70
|
+
order_summary:
|
71
|
+
selected_projects: 'Vybrali ste tieto projekty:'
|
72
|
+
subject: Hlasovali ste na participatívnom priestore %{space_name}
|
73
|
+
voted_on_space: Hlasovali ste za rozpočet na participatívnom priestore %{space_name}.
|
74
|
+
voted_on_space_with_scope: Hlasovali ste za rozpočet na participatívnom priestore %{space_name} za %{scope_name} (%{scope_type}).
|
75
|
+
projects:
|
76
|
+
budget_confirm:
|
77
|
+
are_you_sure: Súhlasíte? Akonáhle potvrdíte svoj hlas, nemôžete ho už zmeniť.
|
78
|
+
cancel: Zrušiť
|
79
|
+
confirm: Potvrdiť
|
80
|
+
description: Na týchto projektoch ste si zvolili účasť na rozpočte.
|
81
|
+
title: Potvrdiť hlas
|
82
|
+
budget_excess:
|
83
|
+
close: Zavrieť
|
84
|
+
description: Tento projekt prekročil maximálny rozpočet a nemôže byť pridaný. Ak chcete, môžete vymazať niektorý projekt, ktorý ste už zvolili, alebo hlasovať svojimi preferenciami.
|
85
|
+
ok: OK
|
86
|
+
title: Maximálny rozpočet prekročený
|
87
|
+
budget_summary:
|
88
|
+
are_you_sure: Naozaj chcete zrušiť svoj hlas?
|
89
|
+
assigned: 'Priradený:'
|
90
|
+
cancel_order: vymažte svoj hlas a začnite odznova
|
91
|
+
checked_out:
|
92
|
+
description: Už ste hlasovali za rozpočet. Ak ste zmenili názor, môžete %{cancel_link}.
|
93
|
+
title: Hlasovanie o rozpočte dokončené
|
94
|
+
description: Na ktoré projekty by sme podľa Vás mali vyčleniť rozpočet? Vyberte si aspoň %{minimum_budget} na projekty, ktoré chcete, a hlasujte podľa svojich preferencií pre definovanie rozpočtu.
|
95
|
+
description_minimum_projects_rule: Na ktoré projekty by sme podľa Vás mali vyčleniť rozpočet? Vyberte si aspoň %{minimum_number} projektov, ktoré chcete, a hlasujte podľa svojich preferencií za rozpočet.
|
96
|
+
title: Vy rozhodujete o rozpočte
|
97
|
+
count:
|
98
|
+
projects_count:
|
99
|
+
one: 1 projekt
|
100
|
+
few: "%{count} projekty"
|
101
|
+
many: "%{count} projekty"
|
102
|
+
other: "%{count} projekty"
|
103
|
+
filters:
|
104
|
+
category: Kategória
|
105
|
+
scope: Rozsah
|
106
|
+
search: Hľadať
|
107
|
+
filters_small_view:
|
108
|
+
close_modal: Zavrieť okno
|
109
|
+
filter: Filter
|
110
|
+
filter_by: Filtrovať podľa
|
111
|
+
unfold: Rozbaliť
|
112
|
+
order_progress:
|
113
|
+
vote: Hlasovať
|
114
|
+
order_selected_projects:
|
115
|
+
remove: Odstrániť
|
116
|
+
selected_projects:
|
117
|
+
one: vybraný projekt
|
118
|
+
few: vybrané projekty
|
119
|
+
many: vybrané projekty
|
120
|
+
other: vybrané projekty
|
121
|
+
view: Zobraziť
|
122
|
+
orders:
|
123
|
+
highest_cost: Najvyššie náklady
|
124
|
+
label: Zoradiť projekty podľa
|
125
|
+
lowest_cost: Najnižšie náklady
|
126
|
+
most_voted: Najviac hlasov
|
127
|
+
random: Náhodné poradie
|
128
|
+
project:
|
129
|
+
add: Pridať
|
130
|
+
count:
|
131
|
+
one: 1 podpora
|
132
|
+
few: "%{count} podporení"
|
133
|
+
many: "%{count} podporení"
|
134
|
+
other: "%{count} podporení"
|
135
|
+
remove: Odstrániť
|
136
|
+
view: Zobraziť
|
137
|
+
project_budget_button:
|
138
|
+
add: Pridať
|
139
|
+
added: Pridané
|
140
|
+
show:
|
141
|
+
budget: Rozpočet
|
142
|
+
view_all_projects: Zobraziť všetky projekty
|
143
|
+
components:
|
144
|
+
budgets:
|
145
|
+
actions:
|
146
|
+
vote: Hlasovať
|
147
|
+
name: Rozpočty
|
148
|
+
settings:
|
149
|
+
global:
|
150
|
+
announcement: Oznámenie
|
151
|
+
comments_enabled: Komentáre povolené
|
152
|
+
form:
|
153
|
+
errors:
|
154
|
+
budget_voting_rule_only_one: Povolený smie byť iba jeden spôsob hlasovania
|
155
|
+
budget_voting_rule_required: Požaduje sa jeden spôsob hlasovania
|
156
|
+
projects_per_page: Projektov na stránke
|
157
|
+
resources_permissions_enabled: Povolenia pre akcie môžu byť nastavené pre každé stretnutie zvlášť
|
158
|
+
total_budget: Celkový rozpočet
|
159
|
+
vote_minimum_budget_projects_number: Minimálny počet projektov, za ktoré je možné hlasovať
|
160
|
+
vote_rule_minimum_budget_projects_enabled: 'Povoliť pravidlo: Minimálny počet projektov, za ktoré je možné hlasovať'
|
161
|
+
vote_rule_threshold_percent_enabled: 'Povoliť pravidlo: Minimálne percento rozpočtu'
|
162
|
+
vote_threshold_percent: Limit percenta hlasov
|
163
|
+
step:
|
164
|
+
announcement: Oznámenie
|
165
|
+
comments_blocked: Zablokované komentáre
|
166
|
+
show_votes: Zobraziť hlasy
|
167
|
+
votes_enabled: Hlasovanie povolené
|
168
|
+
orders:
|
169
|
+
checkout:
|
170
|
+
error: Vyskytol sa problém pri spracovaní Vášho hlasu
|
171
|
+
success: Váš hlas bol úspešne schválený
|
172
|
+
destroy:
|
173
|
+
error: Vyskytol sa problém pri zrušení Vášho hlasu
|
174
|
+
success: Váš hlas bol úspešne zrušený
|
175
|
+
resource_links:
|
176
|
+
included_proposals:
|
177
|
+
project_proposal: 'Návrhy, zahrnuté v rámci tohto projektu:'
|
178
|
+
index:
|
179
|
+
confirmed_orders_count: Počet hlasov
|
180
|
+
total_budget: Celkový rozpočet
|
@@ -0,0 +1,166 @@
|
|
1
|
+
sk:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
project:
|
5
|
+
decidim_category_id: Kategória
|
6
|
+
decidim_scope_id: Rozsah
|
7
|
+
description: Popis
|
8
|
+
proposal_ids: Súvisiace návrhy
|
9
|
+
title: Názov
|
10
|
+
activerecord:
|
11
|
+
models:
|
12
|
+
decidim/budgets/project:
|
13
|
+
one: Projekt
|
14
|
+
few: Projekty
|
15
|
+
many: Projekty
|
16
|
+
other: Projekty
|
17
|
+
decidim:
|
18
|
+
budgets:
|
19
|
+
actions:
|
20
|
+
attachment_collections: Priečinky
|
21
|
+
attachments: Prílohy
|
22
|
+
confirm_destroy: Naozaj chcete odstrániť tento projekt?
|
23
|
+
destroy: Odstrániť
|
24
|
+
edit: Upraviť
|
25
|
+
import: Importovať návrhy do projektov
|
26
|
+
preview: Ukážka
|
27
|
+
title: Akcie
|
28
|
+
admin:
|
29
|
+
models:
|
30
|
+
project:
|
31
|
+
name: Projekt
|
32
|
+
projects:
|
33
|
+
create:
|
34
|
+
invalid: Vyskytol sa problém s vytváraním projektu
|
35
|
+
success: Projekt bol úspešne vytvorený
|
36
|
+
destroy:
|
37
|
+
success: Projekt bol úspešne vymazaný
|
38
|
+
edit:
|
39
|
+
title: Upraviť projekt
|
40
|
+
update: Aktualizovať
|
41
|
+
index:
|
42
|
+
finished_orders: Dokončené hlasy
|
43
|
+
pending_orders: Čaká sa na hlasy
|
44
|
+
title: Projekty
|
45
|
+
new:
|
46
|
+
create: Vytvoriť
|
47
|
+
title: Nový projekt
|
48
|
+
update:
|
49
|
+
invalid: Vyskytol sa problém s aktualizáciou projektu
|
50
|
+
success: Projekt bol úspešne aktualizovaný
|
51
|
+
proposals_imports:
|
52
|
+
create:
|
53
|
+
invalid: Vyskytol sa problém s importovaním návrhov do projektov
|
54
|
+
new:
|
55
|
+
create: Importovať návrhy do projektov
|
56
|
+
no_components: V tomto participatívnom priestore nie sú žiadne ďalšie súčasti návrhov pre import návrhov do projektov.
|
57
|
+
select_component: Prosíme, zvoľte súčasť
|
58
|
+
admin_log:
|
59
|
+
project:
|
60
|
+
create: "%{user_name} vytvoril projekt %{resource_name} v priestore %{space_name}"
|
61
|
+
delete: "%{user_name} vymazal projekt %{resource_name} v priestore %{space_name}"
|
62
|
+
update: "%{user_name} aktualizoval projekt %{resource_name} v priestore %{space_name}"
|
63
|
+
models:
|
64
|
+
project:
|
65
|
+
fields:
|
66
|
+
title: Názov
|
67
|
+
order_summary_mailer:
|
68
|
+
order_summary:
|
69
|
+
selected_projects: 'Vybrali ste tieto projekty:'
|
70
|
+
subject: Hlasovali ste na participatívnom priestore %{space_name}
|
71
|
+
projects:
|
72
|
+
budget_confirm:
|
73
|
+
cancel: Zrušiť
|
74
|
+
confirm: Potvrdiť
|
75
|
+
description: Na týchto projektoch ste si zvolili účasť na rozpočte.
|
76
|
+
title: Potvrdiť hlas
|
77
|
+
budget_excess:
|
78
|
+
close: Zavrieť
|
79
|
+
description: Tento projekt prekročil maximálny rozpočet a nemôže byť pridaný. Ak chcete, môžete vymazať niektorý projekt, ktorý ste už zvolili, alebo hlasovať svojimi preferenciami.
|
80
|
+
ok: OK
|
81
|
+
title: Maximálny rozpočet prekročený
|
82
|
+
budget_summary:
|
83
|
+
are_you_sure: Naozaj chcete zrušiť svoj hlas?
|
84
|
+
assigned: 'Priradený:'
|
85
|
+
cancel_order: vymažte svoj hlas a začnite odznova
|
86
|
+
checked_out:
|
87
|
+
description: Už ste hlasovali za rozpočet. Ak ste zmenili názor, môžete %{cancel_link}.
|
88
|
+
title: Hlasovanie o rozpočte dokončené
|
89
|
+
description: Na ktoré projekty by sme podľa Vás mali vyčleniť rozpočet? Vyberte si aspoň %{minimum_budget} na projekty, ktoré chcete, a hlasujte podľa svojich preferencií pre definovanie rozpočtu.
|
90
|
+
description_minimum_projects_rule: Na ktoré projekty by sme podľa Vás mali vyčleniť rozpočet? Vyberte si aspoň %{minimum_number} projektov, ktoré chcete, a hlasujte podľa svojich preferencií za rozpočet.
|
91
|
+
title: Vy rozhodujete o rozpočte
|
92
|
+
count:
|
93
|
+
projects_count:
|
94
|
+
one: 1 projekt
|
95
|
+
few: "%{count} projekty"
|
96
|
+
many: "%{count} projekty"
|
97
|
+
other: "%{count} projekty"
|
98
|
+
filters:
|
99
|
+
category: Kategória
|
100
|
+
scope: Rozsah
|
101
|
+
search: Hľadať
|
102
|
+
filters_small_view:
|
103
|
+
close_modal: Zavrieť okno
|
104
|
+
filter: Filter
|
105
|
+
filter_by: Filtrovať podľa
|
106
|
+
unfold: Rozbaliť
|
107
|
+
order_progress:
|
108
|
+
vote: Hlasovať
|
109
|
+
order_selected_projects:
|
110
|
+
remove: Odstrániť
|
111
|
+
selected_projects:
|
112
|
+
one: vybraný projekt
|
113
|
+
few: vybrané projekty
|
114
|
+
many: vybrané projekty
|
115
|
+
other: vybrané projekty
|
116
|
+
view: Zobraziť
|
117
|
+
orders:
|
118
|
+
highest_cost: Najvyššie náklady
|
119
|
+
label: Zoradiť projekty podľa
|
120
|
+
lowest_cost: Najnižšie náklady
|
121
|
+
most_voted: Najviac hlasov
|
122
|
+
random: Náhodné poradie
|
123
|
+
project:
|
124
|
+
view: Zobraziť
|
125
|
+
show:
|
126
|
+
budget: Rozpočet
|
127
|
+
view_all_projects: Zobraziť všetky projekty
|
128
|
+
components:
|
129
|
+
budgets:
|
130
|
+
actions:
|
131
|
+
vote: Hlasovať
|
132
|
+
name: Rozpočty
|
133
|
+
settings:
|
134
|
+
global:
|
135
|
+
announcement: Oznámenie
|
136
|
+
comments_enabled: Komentáre povolené
|
137
|
+
form:
|
138
|
+
errors:
|
139
|
+
budget_voting_rule_only_one: Povolený smie byť iba jeden spôsob hlasovania
|
140
|
+
budget_voting_rule_required: Požaduje sa jeden spôsob hlasovania
|
141
|
+
projects_per_page: Projektov na stránke
|
142
|
+
resources_permissions_enabled: Povolenia pre akcie môžu byť nastavené pre každé stretnutie zvlášť
|
143
|
+
total_budget: Celkový rozpočet
|
144
|
+
vote_minimum_budget_projects_number: Minimálny počet projektov, za ktoré je možné hlasovať
|
145
|
+
vote_rule_minimum_budget_projects_enabled: 'Povoliť pravidlo: Minimálny počet projektov, za ktoré je možné hlasovať'
|
146
|
+
vote_rule_threshold_percent_enabled: 'Povoliť pravidlo: Minimálne percento rozpočtu'
|
147
|
+
vote_threshold_percent: Limit percenta hlasov
|
148
|
+
step:
|
149
|
+
announcement: Oznámenie
|
150
|
+
comments_blocked: Zablokované komentáre
|
151
|
+
show_votes: Zobraziť hlasy
|
152
|
+
votes_choices:
|
153
|
+
enabled: Hlasovanie povolené
|
154
|
+
orders:
|
155
|
+
checkout:
|
156
|
+
error: Vyskytol sa problém pri spracovaní Vášho hlasu
|
157
|
+
success: Váš hlas bol úspešne schválený
|
158
|
+
destroy:
|
159
|
+
error: Vyskytol sa problém pri zrušení Vášho hlasu
|
160
|
+
success: Váš hlas bol úspešne zrušený
|
161
|
+
resource_links:
|
162
|
+
included_proposals:
|
163
|
+
project_proposal: 'Návrhy, zahrnuté v rámci tohto projektu:'
|
164
|
+
index:
|
165
|
+
confirmed_orders_count: Počet hlasov
|
166
|
+
total_budget: Celkový rozpočet
|
@@ -0,0 +1 @@
|
|
1
|
+
sl:
|
@@ -0,0 +1 @@
|
|
1
|
+
so:
|
@@ -0,0 +1,27 @@
|
|
1
|
+
sr:
|
2
|
+
decidim:
|
3
|
+
budgets:
|
4
|
+
order_summary_mailer:
|
5
|
+
order_summary:
|
6
|
+
selected_projects: 'Projekti koje ste izabrali su:'
|
7
|
+
subject: Glasali ste na prostoru za diskusiju %{space_name}
|
8
|
+
projects:
|
9
|
+
budget_summary:
|
10
|
+
description_minimum_projects_rule: Za koje projekte mislite da bi trebalo da odvojimo sredstva u budžetu? Odaberite bar %{minimum_number} projekata koje želite, glasajte za predloge koji vam se sviđaju i tako pomognite u definisanju budžeta.
|
11
|
+
orders:
|
12
|
+
highest_cost: Najveća cena
|
13
|
+
label: Poređaj projekte po
|
14
|
+
lowest_cost: Najniža cena
|
15
|
+
most_voted: Najviše glasova
|
16
|
+
random: Slučajan redosled
|
17
|
+
components:
|
18
|
+
budgets:
|
19
|
+
settings:
|
20
|
+
global:
|
21
|
+
form:
|
22
|
+
errors:
|
23
|
+
budget_voting_rule_only_one: Samo jedno pravilo glasanja mora biti omogućeno
|
24
|
+
budget_voting_rule_required: Jedno pravilo glasanja je obavezno
|
25
|
+
vote_minimum_budget_projects_number: Minimum projekata za glasanje
|
26
|
+
vote_rule_minimum_budget_projects_enabled: 'Omogući pravilo: Minimalni broj projekata o kojima se glasa'
|
27
|
+
vote_rule_threshold_percent_enabled: 'Omogući pravilo: Minimalni procenta budžeta'
|
data/config/locales/sv.yml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
sv:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
budget:
|
5
|
+
decidim_scope_id: Omfång
|
6
|
+
description: Beskrivning
|
7
|
+
title: Titel
|
8
|
+
total_budget: Total budget
|
9
|
+
weight: Vikt
|
4
10
|
project:
|
5
|
-
|
11
|
+
budget_amount: Belopp
|
6
12
|
decidim_category_id: Kategori
|
7
13
|
decidim_scope_id: Omfång
|
8
14
|
description: Beskrivning
|
9
15
|
proposal_ids: Relaterade förslag
|
16
|
+
selected: Valda för genomförande
|
10
17
|
title: Titel
|
11
18
|
activerecord:
|
12
19
|
models:
|
@@ -21,12 +28,33 @@ sv:
|
|
21
28
|
confirm_destroy: Vill du radera projektet?
|
22
29
|
destroy: Radera
|
23
30
|
edit: Redigera
|
31
|
+
edit_projects: Hantera projekt
|
24
32
|
import: Importera förslag till projekt
|
25
|
-
new:
|
33
|
+
new: Ny %{name}
|
26
34
|
preview: Förhandsvisa
|
27
35
|
title: Åtgärder
|
28
36
|
admin:
|
37
|
+
budgets:
|
38
|
+
create:
|
39
|
+
invalid: Det gick inte att skapa budgeten
|
40
|
+
success: Budgeten har skapats
|
41
|
+
destroy:
|
42
|
+
invalid: Det gick inte att radera budgeten
|
43
|
+
success: Budgeten har raderats
|
44
|
+
edit:
|
45
|
+
title: Redigera budget
|
46
|
+
update: Uppdatera budget
|
47
|
+
index:
|
48
|
+
title: Budgetar
|
49
|
+
new:
|
50
|
+
create: Skapa budget
|
51
|
+
title: Ny budget
|
52
|
+
update:
|
53
|
+
invalid: Det gick inte att uppdatera budgeten
|
54
|
+
success: Budgeten har uppdaterats
|
29
55
|
models:
|
56
|
+
budget:
|
57
|
+
name: Budget
|
30
58
|
project:
|
31
59
|
name: Projekt
|
32
60
|
projects:
|
@@ -41,6 +69,7 @@ sv:
|
|
41
69
|
index:
|
42
70
|
finished_orders: Avslutade omröstningar
|
43
71
|
pending_orders: Pågående omröstningar
|
72
|
+
selected: Valda
|
44
73
|
title: Projekt
|
45
74
|
new:
|
46
75
|
create: Skapa
|
@@ -57,17 +86,51 @@ sv:
|
|
57
86
|
no_components: Det finns inga andra förslagskomponenter med förslag i deltagarutrymmet som kan importeras till projekt.
|
58
87
|
select_component: Välj en komponent
|
59
88
|
admin_log:
|
89
|
+
budget:
|
90
|
+
create: "%{user_name} skapade budgeten %{resource_name} i utrymmet %{space_name}"
|
91
|
+
delete: "%{user_name} raderade budgeten %{resource_name} i utrymmet %{space_name}"
|
92
|
+
update: "%{user_name} uppdaterade budgeten %{resource_name} i utrymmet %{space_name}"
|
60
93
|
project:
|
61
94
|
create: "%{user_name} skapade projektet %{resource_name} i utrymmet %{space_name}"
|
62
95
|
delete: "%{user_name} raderade projektet %{resource_name} i utrymmet %{space_name}"
|
63
96
|
update: "%{user_name} uppdaterade projektet %{resource_name} i utrymmet %{space_name}"
|
97
|
+
budget:
|
98
|
+
view: Visa alla budgetprojekt
|
99
|
+
budget_information_modal:
|
100
|
+
back_to: Tillbaka till %{component_name}
|
101
|
+
close_modal: Stäng fönster
|
102
|
+
continue: Fortsätt
|
103
|
+
more_information: Mer information
|
104
|
+
budgets_list:
|
105
|
+
cancel_order:
|
106
|
+
more_than_one: dra tillbaka din röst på %{name} och börja om
|
107
|
+
only_one: dra tillbaka din röst och börja om.
|
108
|
+
finished_message: Du har avslutat omröstningen. Tack för ditt deltagande!
|
109
|
+
highlighted_cta: Rösta på %{name}
|
110
|
+
if_change_opinion: Om du ångrar dig kan du
|
111
|
+
my_budgets: Mina budgetar
|
112
|
+
voted_on: Du har röstat på %{links}
|
113
|
+
limit_announcement:
|
114
|
+
cant_vote: Du kan inte rösta på denna budget. <a href="%{landing_path}">Pröva en annan budget</a>.
|
115
|
+
limit_reached: Du har aktiva röster i %{links}. För att rösta måste du <a href="%{landing_path}">ta bort din röst och börja om</a>.
|
64
116
|
models:
|
117
|
+
budget:
|
118
|
+
fields:
|
119
|
+
name: Namn
|
120
|
+
projects_count: Antal projekt
|
121
|
+
total_budget: Total budget
|
65
122
|
project:
|
66
123
|
fields:
|
67
124
|
title: Titel
|
125
|
+
order_summary_mailer:
|
126
|
+
order_summary:
|
127
|
+
selected_projects: 'De projekt som du har valt är:'
|
128
|
+
subject: Du har röstat i deltagarutrymmet %{space_name}
|
129
|
+
voted_on_space: Du har röstat på budgeten %{budget_name} i deltagarutrymmet %{space_name}.
|
130
|
+
voted_on_space_with_scope: Du har röstat på budgeten %{budget_name} i deltagarutrymmet %{space_name} för %{scope_name} (%{scope_type}).
|
68
131
|
projects:
|
69
132
|
budget_confirm:
|
70
|
-
are_you_sure:
|
133
|
+
are_you_sure: Om du ändrar dig kan du ändra rösten senare.
|
71
134
|
cancel: Avbryt
|
72
135
|
confirm: Bekräfta
|
73
136
|
description: De projekt där du har valt att delta i budgeten.
|
@@ -85,6 +148,7 @@ sv:
|
|
85
148
|
description: Du har redan röstat för budgeten. Om du har ändrat dig kan du %{cancel_link}.
|
86
149
|
title: Budgetomröstning slutförd
|
87
150
|
description: Vilka projekt tycker du att vi borde avsätta budget till? Tilldela minst %{minimum_budget} till de projekt som du vill ha och definiera budgeten genom att rösta med dina val.
|
151
|
+
description_minimum_projects_rule: Vilka projekt tycker du att vi borde avsätta budget till? Välj minst %{minimum_number} projekt som du vill ha och definiera budgeten genom att rösta med dina val.
|
88
152
|
title: Du bestämmer budgeten
|
89
153
|
count:
|
90
154
|
projects_count:
|
@@ -94,6 +158,11 @@ sv:
|
|
94
158
|
category: Kategori
|
95
159
|
scope: Omfång
|
96
160
|
search: Sök
|
161
|
+
status: Status
|
162
|
+
status_values:
|
163
|
+
all: Alla
|
164
|
+
not_selected: Inte vald
|
165
|
+
selected: Valda
|
97
166
|
filters_small_view:
|
98
167
|
close_modal: Stäng fönstret
|
99
168
|
filter: Filtrera
|
@@ -107,16 +176,28 @@ sv:
|
|
107
176
|
one: valt projekt
|
108
177
|
other: valda projekt
|
109
178
|
view: Visa
|
179
|
+
orders:
|
180
|
+
highest_cost: Högst kostnad
|
181
|
+
label: Ordna projekt efter
|
182
|
+
lowest_cost: Lägsta kostnad
|
183
|
+
most_voted: Mest röster
|
184
|
+
random: Slumpmässig ordning
|
185
|
+
selected: Valda
|
110
186
|
project:
|
111
|
-
add: Lägg till
|
112
|
-
|
113
|
-
|
114
|
-
other: "%{count} röster"
|
115
|
-
remove: Ta bort
|
187
|
+
add: Lägg till projekt %{resource_name} till din röst
|
188
|
+
remove: Ta bort projekt %{resource_name} från din röst
|
189
|
+
selected: Valda
|
116
190
|
view: Visa
|
191
|
+
votes:
|
192
|
+
one: röst
|
193
|
+
other: röster
|
194
|
+
you_voted: Du röstade
|
117
195
|
project_budget_button:
|
118
|
-
add: Lägg till
|
119
|
-
|
196
|
+
add: Lägg till i din röst
|
197
|
+
add_descriptive: Lägg till projekt %{resource_name} till din röst
|
198
|
+
added: Lades till i din röst
|
199
|
+
added_descriptive: Projekt %{resource_name} lades till i din röst
|
200
|
+
projects_for: Projekt för %{name}
|
120
201
|
show:
|
121
202
|
budget: Budget
|
122
203
|
view_all_projects: Visa alla projekt
|
@@ -129,15 +210,48 @@ sv:
|
|
129
210
|
global:
|
130
211
|
announcement: Meddelande
|
131
212
|
comments_enabled: Kommentarer aktiverade
|
213
|
+
comments_max_length: Maximal längd för kommentarer (Lämna 0 för standardvärde)
|
214
|
+
form:
|
215
|
+
errors:
|
216
|
+
budget_voting_rule_only_one: Endast en röstningsregel får vara aktiverad
|
217
|
+
budget_voting_rule_required: En röstningsregel krävs
|
218
|
+
landing_page_content: Budgetarnas landningssida
|
219
|
+
more_information_modal: Fönster "Mer information"
|
132
220
|
projects_per_page: Projekt per sida
|
133
221
|
resources_permissions_enabled: Åtgärdsbehörigheter kan ställas in för varje möte
|
222
|
+
scope_id: Omfång
|
223
|
+
scopes_enabled: Omfång aktiverade
|
224
|
+
title: Titel
|
134
225
|
total_budget: Total budget
|
226
|
+
vote_minimum_budget_projects_number: Minsta antal projekt att rösta om
|
227
|
+
vote_rule_minimum_budget_projects_enabled: 'Aktivera regel: Minsta antal projekt att rösta om'
|
228
|
+
vote_rule_threshold_percent_enabled: 'Aktivera regel: Lägsta procentandel av budget'
|
135
229
|
vote_threshold_percent: Tröskel för röster i procent
|
230
|
+
workflow: Arbetsflöde
|
231
|
+
workflow_choices:
|
232
|
+
all: 'Rösta på alla: gör det möjligt för deltagare att rösta på alla budgetar.'
|
233
|
+
one: 'Rösta på en: gör det möjligt för deltagare att rösta på valfri budget, men bara på en.'
|
136
234
|
step:
|
137
235
|
announcement: Meddelande
|
138
236
|
comments_blocked: Kommentarer blockerade
|
237
|
+
highlighted_heading: Framhävd rubrik
|
238
|
+
landing_page_content: Budgetarnas landningssida
|
239
|
+
list_heading: Listans rubrik
|
240
|
+
more_information_modal: Fönster "Mer information"
|
139
241
|
show_votes: Visa röster
|
140
|
-
|
242
|
+
title: Titel
|
243
|
+
votes: Omröstning
|
244
|
+
votes_choices:
|
245
|
+
disabled: Omröstning inaktiverad
|
246
|
+
enabled: Röstning aktiverad
|
247
|
+
finished: Omröstning avslutad
|
248
|
+
events:
|
249
|
+
budgets:
|
250
|
+
budget_published:
|
251
|
+
email_intro: 'Budgeten %{resource_title} är nu aktivt för %{participatory_space_title}. Du kan se den från den här sidan:'
|
252
|
+
email_outro: Du har fått det här meddelandet eftersom du följer %{participatory_space_title}. Du kan sluta att ta emot meddlanden via föregående länk.
|
253
|
+
email_subject: Budgeten %{resource_title} är nu aktivt för %{participatory_space_title}.
|
254
|
+
notification_title: Budgeten <a href="%{resource_path}">%{resource_title}</a> är nu aktiv för %{participatory_space_title}.
|
141
255
|
orders:
|
142
256
|
checkout:
|
143
257
|
error: Det gick inte att behandla din röst
|