decidim-budgets 0.26.5 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/budgets/order_activity_cell.rb +29 -0
- data/app/commands/decidim/budgets/add_line_item.rb +4 -2
- data/app/commands/decidim/budgets/admin/create_budget.rb +1 -1
- data/app/commands/decidim/budgets/admin/create_order_reminders.rb +66 -0
- data/app/commands/decidim/budgets/admin/create_project.rb +5 -2
- data/app/commands/decidim/budgets/admin/destroy_budget.rb +1 -1
- data/app/commands/decidim/budgets/admin/destroy_project.rb +1 -1
- data/app/commands/decidim/budgets/admin/import_proposals_to_budgets.rb +6 -6
- data/app/commands/decidim/budgets/admin/update_budget.rb +1 -1
- data/app/commands/decidim/budgets/admin/update_project.rb +5 -2
- data/app/commands/decidim/budgets/admin/update_project_category.rb +48 -0
- data/app/commands/decidim/budgets/admin/update_project_scope.rb +54 -0
- data/app/commands/decidim/budgets/admin/update_project_selection.rb +56 -0
- data/app/commands/decidim/budgets/cancel_order.rb +1 -1
- data/app/commands/decidim/budgets/checkout.rb +10 -3
- data/app/commands/decidim/budgets/remove_line_item.rb +1 -1
- data/app/controllers/decidim/budgets/admin/projects_controller.rb +149 -1
- data/app/controllers/decidim/budgets/projects_controller.rb +13 -13
- data/app/forms/decidim/budgets/admin/budget_form.rb +2 -2
- data/app/forms/decidim/budgets/admin/order_reminder_form.rb +75 -0
- data/app/forms/decidim/budgets/admin/project_form.rb +19 -3
- data/app/helpers/decidim/budgets/admin/project_bulk_actions_helper.rb +20 -0
- data/app/helpers/decidim/budgets/projects_helper.rb +29 -0
- data/app/jobs/decidim/budgets/send_vote_reminder_job.rb +16 -0
- data/app/mailers/decidim/budgets/vote_reminder_mailer.rb +39 -0
- data/app/models/decidim/budgets/order.rb +2 -3
- data/app/models/decidim/budgets/project.rb +12 -4
- data/app/packs/entrypoints/decidim_budgets_admin.js +1 -0
- data/app/packs/src/decidim/budgets/admin/projects.js +143 -0
- data/app/permissions/decidim/budgets/admin/permissions.rb +8 -3
- data/app/queries/decidim/budgets/filtered_projects.rb +1 -1
- data/app/serializers/decidim/budgets/{data_portability_budgets_order_serializer.rb → download_your_data_budgets_order_serializer.rb} +2 -2
- data/app/services/decidim/budgets/order_reminder_generator.rb +85 -0
- data/app/views/decidim/budgets/admin/budgets/index.html.erb +3 -0
- data/app/views/decidim/budgets/admin/projects/_bulk-actions.html.erb +13 -0
- data/app/views/decidim/budgets/admin/projects/_form.html.erb +6 -0
- data/app/views/decidim/budgets/admin/projects/_project-tr.html.erb +50 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_change-selected.html.erb +15 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_dropdown.html.erb +36 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_recategorize.html.erb +15 -0
- data/app/views/decidim/budgets/admin/projects/bulk_actions/_scope-change.html.erb +25 -0
- data/app/views/decidim/budgets/admin/projects/index.html.erb +6 -54
- data/app/views/decidim/budgets/admin/projects/update_attribute.js.erb +26 -0
- data/app/views/decidim/budgets/projects/_filters.html.erb +4 -4
- data/app/views/decidim/budgets/projects/index.html.erb +28 -1
- data/app/views/decidim/budgets/projects/show.html.erb +6 -1
- data/app/views/decidim/budgets/vote_reminder_mailer/vote_reminder.html.erb +21 -0
- data/config/assets.rb +2 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +4 -0
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +47 -1
- data/config/locales/cs.yml +51 -1
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +45 -3
- data/config/locales/el.yml +2 -0
- data/config/locales/en.yml +46 -1
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +43 -0
- data/config/locales/es-PY.yml +46 -0
- data/config/locales/es.yml +48 -2
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +3 -7
- data/config/locales/fi-plain.yml +46 -0
- data/config/locales/fi.yml +46 -0
- data/config/locales/fr-CA.yml +46 -1
- data/config/locales/fr.yml +47 -2
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +11 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +19 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +2 -0
- data/config/locales/ja.yml +42 -1
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +2 -0
- data/config/locales/lt.yml +1 -337
- data/config/locales/lv.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +14 -28
- data/config/locales/no.yml +17 -0
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +2 -0
- data/config/locales/pt-BR.yml +3 -1
- data/config/locales/pt.yml +2 -0
- data/config/locales/ro-RO.yml +2 -3
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +1 -0
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +24 -4
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +2 -0
- data/config/locales/uk.yml +1 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +1 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200804175222_votes_enabled_to_votes_choices.rb +2 -2
- data/db/migrate/20220428072638_add_geolocalization_fields_to_projects.rb +9 -0
- data/lib/decidim/budgets/admin_engine.rb +3 -0
- data/lib/decidim/budgets/component.rb +7 -6
- data/lib/decidim/budgets/engine.rb +17 -0
- data/lib/decidim/budgets/test/factories.rb +11 -0
- data/lib/decidim/budgets/version.rb +1 -1
- metadata +38 -22
- data/app/services/decidim/budgets/project_search.rb +0 -45
- data/config/locales/gn-PY.yml +0 -1
- data/config/locales/ka-GE.yml +0 -1
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -1
data/config/locales/hu.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
hu:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -37,15 +38,27 @@ hu:
|
|
37
38
|
title: Projekt szerkesztése
|
38
39
|
update: Frissítés
|
39
40
|
index:
|
41
|
+
actions: Műveletek
|
42
|
+
cancel: Mégsem
|
43
|
+
change_category: Kategória módosítása
|
44
|
+
change_scope: Hatáskör megváltoztatása
|
45
|
+
change_selected: Kijelölés módosítása
|
46
|
+
deselect_implementation: Kiválasztás törlése
|
40
47
|
finished_orders: Befejezett szavazások
|
41
48
|
pending_orders: Függőben lévő szavazások
|
49
|
+
select_for_implementation: Kijelölés
|
42
50
|
title: Projektek
|
51
|
+
update: Frissítés
|
52
|
+
update_scope_button: Hatáskör frissítése
|
43
53
|
new:
|
44
54
|
create: Létrehozás
|
45
55
|
title: Új projekt
|
46
56
|
update:
|
47
57
|
invalid: Probléma történt a projekt frissítése során
|
48
58
|
success: Projekt frissítése sikeres
|
59
|
+
update_category:
|
60
|
+
select_a_category: Kérjük, válasszon egy kategóriát
|
61
|
+
select_a_project: Kérem, válasszon projektet
|
49
62
|
proposals_imports:
|
50
63
|
create:
|
51
64
|
invalid: Probléma merült fel a javaslatok projektekbe történő importálásakor
|
@@ -125,6 +138,12 @@ hu:
|
|
125
138
|
show:
|
126
139
|
budget: Költségvetés
|
127
140
|
view_all_projects: Összes projekt megtekintése
|
141
|
+
vote_reminder_mailer:
|
142
|
+
vote_reminder:
|
143
|
+
email_budgets: 'Nem fejezte be a szavazat leadását itt:'
|
144
|
+
email_intro: Elkezdte a részvételi költségvetési szavazat leadását, de nem fejezte be.
|
145
|
+
email_link: Szavazás folytatása
|
146
|
+
email_outro: Kérjük, fejezze be a szavazat leadását. A szavazáshoz előbb ki kell jelölnie azt a javaslatot vagy javaslatokat, amiket támogatni szeretne, majd a "Szavazok" gombra kattintással adhatja le szavazatát.
|
128
147
|
components:
|
129
148
|
budgets:
|
130
149
|
actions:
|
data/config/locales/id-ID.yml
CHANGED
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
it:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -226,6 +227,7 @@ it:
|
|
226
227
|
votes:
|
227
228
|
one: voto
|
228
229
|
other: voti
|
230
|
+
you_voted: Hai votato
|
229
231
|
project_budget_button:
|
230
232
|
add: Aggiungi al tuo voto
|
231
233
|
add_descriptive: Aggiungi progetto %{resource_name} al tuo voto
|
data/config/locales/ja.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ja:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -87,16 +88,40 @@ ja:
|
|
87
88
|
title: プロジェクトを編集
|
88
89
|
update: 更新
|
89
90
|
index:
|
91
|
+
actions: アクション
|
92
|
+
cancel: キャンセル
|
93
|
+
change_category: カテゴリの変更
|
94
|
+
change_scope: スコープの変更
|
95
|
+
change_selected: 選択した項目を変更
|
96
|
+
deselect_implementation: 選択解除
|
90
97
|
finished_orders: 完了した投票
|
91
98
|
pending_orders: 保留中の投票
|
99
|
+
select_for_implementation: 選択
|
92
100
|
selected: 選択済
|
93
101
|
title: プロジェクト
|
102
|
+
update: 更新
|
103
|
+
update_scope_button: スコープを更新
|
94
104
|
new:
|
95
105
|
create: 作成
|
96
106
|
title: 新規プロジェクト
|
97
107
|
update:
|
98
108
|
invalid: このプロジェクトの更新中に問題が発生しました
|
99
109
|
success: プロジェクトを更新しました
|
110
|
+
update_category:
|
111
|
+
invalid: 'これらのプロジェクトは既に %{subject_name} カテゴリを持っています: %{projects}'
|
112
|
+
select_a_category: カテゴリを選択してください
|
113
|
+
select_a_project: プロジェクトを選択してください
|
114
|
+
success: 'プロジェクトは %{subject_name} カテゴリに更新されました: %{projects}'
|
115
|
+
update_scope:
|
116
|
+
invalid: 'これらのプロジェクトは既に %{subject_name} スコープを持っています: %{projects}'
|
117
|
+
select_a_project: プロジェクトを選択してください
|
118
|
+
select_a_scope: スコープを選択してください
|
119
|
+
success: 'プロジェクトは %{subject_name} スコープに正常に更新されました: %{projects}'
|
120
|
+
update_selected:
|
121
|
+
invalid: 'これらのプロジェクトは既に選択されています: %{projects}'
|
122
|
+
select_a_project: プロジェクトを選択してください
|
123
|
+
select_a_selection: 選択してください
|
124
|
+
success: 'プロジェクトの選択が変更されました: %{projects}.'
|
100
125
|
proposals_imports:
|
101
126
|
create:
|
102
127
|
invalid: 提案をプロジェクトにインポートする際に問題が発生しました
|
@@ -109,6 +134,11 @@ ja:
|
|
109
134
|
origin_component_id: 元のコンポーネント
|
110
135
|
select_component: コンポーネントを選択してください
|
111
136
|
title: 提案のインポート
|
137
|
+
reminders:
|
138
|
+
orders:
|
139
|
+
description: ユーザーは、保留中の指定がある予算へのリンクを含む電子メールを受け取ります。
|
140
|
+
title:
|
141
|
+
other: '%{count} ユーザーにメール通知を送信しようとしています'
|
112
142
|
admin_log:
|
113
143
|
budget:
|
114
144
|
create: "%{user_name} が予算 %{resource_name} を %{space_name} に作成しました。"
|
@@ -140,6 +170,8 @@ ja:
|
|
140
170
|
show: プロジェクトを表示
|
141
171
|
vote: 投票
|
142
172
|
voted_on: '%{links} に投票しました'
|
173
|
+
last_activity:
|
174
|
+
new_vote_at_html: "<span> %{link} での新しい予算投票</span>"
|
143
175
|
limit_announcement:
|
144
176
|
cant_vote: この予算に投票することはできません。 <a href="%{landing_path}">別の予算を試してみてください</a>。
|
145
177
|
limit_reached: '%{links} に有効な投票があります。この予算に投票するには、 <a href="%{landing_path}">投票を削除し、</a> やり直す必要があります。'
|
@@ -153,6 +185,7 @@ ja:
|
|
153
185
|
fields:
|
154
186
|
category: カテゴリ
|
155
187
|
id: ID
|
188
|
+
scope: スコープ
|
156
189
|
title: タイトル
|
157
190
|
order_summary_mailer:
|
158
191
|
order_summary:
|
@@ -245,7 +278,7 @@ ja:
|
|
245
278
|
view: 表示
|
246
279
|
votes:
|
247
280
|
other: 投票
|
248
|
-
you_voted:
|
281
|
+
you_voted: 投票済
|
249
282
|
project_budget_button:
|
250
283
|
add: 投票に追加
|
251
284
|
add_descriptive: プロジェクト %{resource_name} をあなたの投票に追加
|
@@ -255,6 +288,14 @@ ja:
|
|
255
288
|
show:
|
256
289
|
budget: 予算
|
257
290
|
view_all_projects: すべてのプロジェクトを表示
|
291
|
+
vote_reminder_mailer:
|
292
|
+
vote_reminder:
|
293
|
+
email_budgets: '未完了の投票場所:'
|
294
|
+
email_intro: 参加型予算の投票を開始しましたが、完了していません。
|
295
|
+
email_link: 投票を続行する
|
296
|
+
email_outro: 投票を完了することを忘れないでください。 投票するには、まず投票する提案を選択し、「投票」ボタンで投票を確認する必要があります。
|
297
|
+
email_subject:
|
298
|
+
other: 参加型予算投票に未完了の投票があります
|
258
299
|
components:
|
259
300
|
budgets:
|
260
301
|
actions:
|
data/config/locales/ko.yml
CHANGED
data/config/locales/lb.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
lb:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -209,6 +210,7 @@ lb:
|
|
209
210
|
votes:
|
210
211
|
one: Abstimmung
|
211
212
|
other: Abstimmungen
|
213
|
+
you_voted: Du hast für dieses gestimmt
|
212
214
|
project_budget_button:
|
213
215
|
add: Zur Abstimmung hinzufügen
|
214
216
|
add_descriptive: Projekt %{resource_name} Ihrer Stimme hinzufügen
|
data/config/locales/lt.yml
CHANGED
@@ -1,338 +1,2 @@
|
|
1
|
+
---
|
1
2
|
lt:
|
2
|
-
activemodel:
|
3
|
-
attributes:
|
4
|
-
budget:
|
5
|
-
decidim_scope_id: Apimtis
|
6
|
-
description: Aprašymas
|
7
|
-
title: Pavadinimas
|
8
|
-
total_budget: Visas biudžetas
|
9
|
-
weight: Vieta eilėje
|
10
|
-
project:
|
11
|
-
budget_amount: Biudžeto dydis
|
12
|
-
decidim_category_id: Kategorija
|
13
|
-
decidim_scope_id: Apimtis
|
14
|
-
description: Aprašymas
|
15
|
-
proposal_ids: Susiję pasiūlymai
|
16
|
-
proposals: Pasiūlymai
|
17
|
-
selected: Pasirinkti įgyvendinimui
|
18
|
-
title: Pavadinimas
|
19
|
-
proposals_import:
|
20
|
-
scope_id: Apimtis
|
21
|
-
activerecord:
|
22
|
-
models:
|
23
|
-
decidim/budgets/project:
|
24
|
-
one: Projektas
|
25
|
-
few: Projektai
|
26
|
-
many: Projektai
|
27
|
-
other: Projektai
|
28
|
-
decidim:
|
29
|
-
admin:
|
30
|
-
filters:
|
31
|
-
projects:
|
32
|
-
category_id_eq:
|
33
|
-
label: Kategorija
|
34
|
-
scope_id_eq:
|
35
|
-
label: Apimtis
|
36
|
-
selected_at_null:
|
37
|
-
label: Pasirinktas
|
38
|
-
values:
|
39
|
-
'false': Pasirinkta įgyvendinimui
|
40
|
-
'true': Nepasirinkta įgyvendinimui
|
41
|
-
budgets:
|
42
|
-
actions:
|
43
|
-
attachment_collections: Aplankai
|
44
|
-
attachments: Priedai
|
45
|
-
confirm_destroy: Ar tikrai norite ištrinti šį projektą?
|
46
|
-
destroy: Ištrinti
|
47
|
-
edit: Redaguoti
|
48
|
-
edit_projects: Valdyti projektus
|
49
|
-
import: Importuoti pasiūlymus į projektus
|
50
|
-
new: Naujas %{name}
|
51
|
-
preview: Peržiūra
|
52
|
-
title: Veiksmai
|
53
|
-
admin:
|
54
|
-
budgets:
|
55
|
-
create:
|
56
|
-
invalid: Kuriant šį biudžetą iškilo problema
|
57
|
-
success: Biudžetas sukurtas sėkmingai
|
58
|
-
destroy:
|
59
|
-
invalid: Ištrinant šį biudžetą iškilo problema
|
60
|
-
success: Biudžetas sėkmingai ištrintas
|
61
|
-
edit:
|
62
|
-
title: Koreguoti biudžetą
|
63
|
-
update: Atnaujinti biudžetą
|
64
|
-
index:
|
65
|
-
finished_orders: Baigti balsavimai
|
66
|
-
pending_orders: Balsai laukiantys patvirtinimo
|
67
|
-
title: Biudžetai
|
68
|
-
users_with_finished_orders: Naudotojai užbaigę balsavimą
|
69
|
-
users_with_pending_orders: Naudotojai, kurių balsai laukia patvirtinimo
|
70
|
-
new:
|
71
|
-
create: Sukurti biudžetą
|
72
|
-
title: Naujas biudžetas
|
73
|
-
update:
|
74
|
-
invalid: Atnaujinant šį biudžetą iškilo problema
|
75
|
-
success: Biudžetas atnaujintas sėkmingai
|
76
|
-
exports:
|
77
|
-
projects: Projektai
|
78
|
-
models:
|
79
|
-
budget:
|
80
|
-
name: Biudžetas
|
81
|
-
project:
|
82
|
-
name: Projektas
|
83
|
-
projects:
|
84
|
-
create:
|
85
|
-
invalid: Kuriant šį projektą iškilo problema
|
86
|
-
success: Projektas sukurtas sėkmingai
|
87
|
-
destroy:
|
88
|
-
success: Projektas ištrintas sėkmingai
|
89
|
-
edit:
|
90
|
-
title: Redaguoti projektą
|
91
|
-
update: Atnaujinti
|
92
|
-
index:
|
93
|
-
finished_orders: Baigti balsavimai
|
94
|
-
pending_orders: Balsai laukiantys patvirtinimo
|
95
|
-
selected: Pasirinkta
|
96
|
-
title: Projektai
|
97
|
-
new:
|
98
|
-
create: Sukurti
|
99
|
-
title: Naujas projektas
|
100
|
-
update:
|
101
|
-
invalid: Atnaujinant šį projektą iškilo problema
|
102
|
-
success: Projektas atnaujintas
|
103
|
-
proposals_imports:
|
104
|
-
create:
|
105
|
-
invalid: Importuojant pasiūlymus į projektus kilo problema
|
106
|
-
success: "%{number} pasiūlymai sėkmingai įkelti į projektus"
|
107
|
-
new:
|
108
|
-
create: Importuoti pasiūlymus į projektus
|
109
|
-
default_budget: Numatytasis biudžetas
|
110
|
-
import_all_accepted_proposals: Importuoti visus priimtus projektus
|
111
|
-
no_components: Nėra kitų pasiūlymų komponentų šioje dalyvaujamojoje erdvėje, kuriuos būtų galima importuoti į projektus.
|
112
|
-
origin_component_id: Originalusis komponentas
|
113
|
-
select_component: Pasirinkite komponentą
|
114
|
-
title: Importuoti pasiūlymus
|
115
|
-
admin_log:
|
116
|
-
budget:
|
117
|
-
create: "%{user_name} sukūrė %{resource_name} biudžetą %{space_name} erdvėje"
|
118
|
-
delete: "%{user_name} ištrynė %{resource_name} biudžetą %{space_name} erdvėje"
|
119
|
-
update: "%{user_name} atnaujino %{resource_name} biudžetą %{space_name} erdvėje"
|
120
|
-
project:
|
121
|
-
create: "%{user_name} sukūrė %{resource_name} projektą %{space_name} erdvėje"
|
122
|
-
delete: "%{user_name} ištrynė %{resource_name} projektą %{space_name} erdvėje"
|
123
|
-
update: "%{user_name} atnaujino %{resource_name} projektą %{space_name} erdvėje"
|
124
|
-
budget:
|
125
|
-
view: Peržiūrėti visus biudžeto projektus
|
126
|
-
budget_information_modal:
|
127
|
-
back_to: Atgal į %{component_name}
|
128
|
-
close_modal: Uždaryti modalinį langą
|
129
|
-
continue: Tęsti
|
130
|
-
more_information: Daugiau informacijos
|
131
|
-
budget_list_item:
|
132
|
-
voting_finished: Balsavote šiame biudžete
|
133
|
-
voting_started: Pradėjote balsuoti šiame biudžete
|
134
|
-
budgets_list:
|
135
|
-
cancel_order:
|
136
|
-
more_than_one: ištrinkite balsą %{name} ir pradėkite iš naujo
|
137
|
-
only_one: ištrinti balsą ir pradėti iš naujo.
|
138
|
-
finished_message: Jūs baigėte balsuoti. Dėkojame už dalyvavimą!
|
139
|
-
highlighted_cta: Balsuoti dėl %{name}
|
140
|
-
if_change_opinion: Jeigu persigalvojote, galite
|
141
|
-
my_budgets: Mano biudžetai
|
142
|
-
progress: Baigti balsavimą
|
143
|
-
show: Peržiūrėti projektus
|
144
|
-
vote: Balsuoti
|
145
|
-
voted_on: Jūs balsavote dėl %{links}
|
146
|
-
limit_announcement:
|
147
|
-
cant_vote: Negalite balsuoti šito biudžeto. <a href="%{landing_path}"> Pabandykite kitą biudžetą.</a>
|
148
|
-
limit_reached: Turite aktyvių balsų %{links}. Tam, kad balsuoti šiame biudžete turite <a href="%{landing_path}"> ištrinti balsus ir pradėti iš naujo</a>.
|
149
|
-
models:
|
150
|
-
budget:
|
151
|
-
fields:
|
152
|
-
name: Pavadinimas
|
153
|
-
projects_count: Projektų skaičius
|
154
|
-
total_budget: Visas biudžetas
|
155
|
-
project:
|
156
|
-
fields:
|
157
|
-
category: Kategorija
|
158
|
-
id: ID
|
159
|
-
title: Pavadinimas
|
160
|
-
order_summary_mailer:
|
161
|
-
order_summary:
|
162
|
-
selected_projects: 'Jūsų pasirinkti projektai:'
|
163
|
-
subject: Jūs balsavote dalyvaujamojo proceso erdvėje %{space_name}
|
164
|
-
voted_on_space: Jūs balsavote dėl dalyvaujamojo proceso erdvės %{space_name} biudžeto %{budget_name}.
|
165
|
-
voted_on_space_with_scope: Jūs balsavote %{budget_name} biudžete %{space_name} dalyvaujamojoje erdvėje dėl %{scope_name}(%{scope_type}).
|
166
|
-
projects:
|
167
|
-
budget_confirm:
|
168
|
-
are_you_sure: Jeigu persigalvosite, galėsite balsuoti iš naujo.
|
169
|
-
cancel: Atšaukti
|
170
|
-
confirm: Patvirtinti
|
171
|
-
description: Šiuos projektus pasirinkote įtraukti į biudžetą.
|
172
|
-
title: Patvirtinti balsavimą
|
173
|
-
budget_excess:
|
174
|
-
budget_excess:
|
175
|
-
description: Šio projekto biudžetas viršija didžiausią nustatytą ribą ir projekto negalima pridėti. Jei norite, galite pašalinti projektą, kurį jau pasirinkote pridėti, arba balsuoti, atsižvelgami į tai kam teikiate pirmenybę.
|
176
|
-
title: Didžiausia nustatyta biudžeto riba viršyta
|
177
|
-
close: Uždaryti
|
178
|
-
description: Šio projekto kaina viršija didžiausią nustatytą biudžeto ribą ir projekto negalima pridėti. Jei norite, galite pašalinti projektą, kurį jau pasirinkote pridėti, arba balsuotii atsižvelgdmai į tai kam teikiate pirmenybę.
|
179
|
-
ok: OK
|
180
|
-
projects_excess:
|
181
|
-
description: Šio projekto biudžetas viršija didžiausią nustatytą projektų kiekio ribą ir projekto negalima pridėti. Jei norite, galite pašalinti projektą, kurį jau pasirinkote pridėti, arba balsuoti atsižvelgdami į tai kam teikiate pirmenybę.
|
182
|
-
title: Didžiausio nustatyto projektų skaičiaus riba viršyta
|
183
|
-
budget_summary:
|
184
|
-
are_you_sure: Ar tikrai norite atšauti savo balsą?
|
185
|
-
assigned: 'Priskirta:'
|
186
|
-
cancel_order: pašalinti balsą ir pradėti iš naujo
|
187
|
-
checked_out:
|
188
|
-
description: Jūs jau balsavote už biudžetą. Jeigu persigalvojote, galite %{cancel_link}.
|
189
|
-
title: Balsavimas dėl biudžeto baigtas
|
190
|
-
minimum_projects_rule:
|
191
|
-
description: Kokiems projektams, jūsų nuomone, turėtume skirti biudžetą? Pasirinkite ne mažiau kaip %{minimum_number} projektus, kuriuos norite paremti ir atitinkamai išreiškite savo prioritetus.
|
192
|
-
instruction: "<li>Pasirinkite bent %{minimum_number} projektus ir balsuokite pagal savo prioritetus tam, kad numatyti biudžeto išlaidas.</li>"
|
193
|
-
projects_rule:
|
194
|
-
description: Kokie projektai Jūsų manymu turėtų gauti finansavimą? Pasirinkite tarp %{minimum_number} ir %{maximum_number} projektų kurių norėtumėt ir skirkite balsuos pagal Jūsų prioritetus.
|
195
|
-
instruction: "<li>Pasirinkite tarp %{minimum_number} ir %{maximum_number} projektų ir balsuokite pagal savo prioritetus tam, kad nustatyti kam skirti biudžetą.</li>"
|
196
|
-
projects_rule_maximum_only:
|
197
|
-
description: Kokiems projektams, jūsų nuomone, turėtume skirti biudžetą? Pasirinkite ne mažiau kaip %{maximum_number} projektus, kuriuos norite paremti ir atitinkamai išreiškite savo prioritetus.
|
198
|
-
instruction: "<li>Pasirinkite iki %{maximum_number} projektų ir balsuokite pagal savo prioritetus tam, kad numatyti biudžeto išlaidas.</li>"
|
199
|
-
rules:
|
200
|
-
title: Biudžeto taisyklės
|
201
|
-
title: Jūs sprendžiate dėl biudžeto
|
202
|
-
total_budget: Visas biudžetas
|
203
|
-
total_projects: Viso balsų
|
204
|
-
vote_threshold_percent_rule:
|
205
|
-
description: Kokiems projektams, jūsų nuomone, turėtume skirti biudžetą? Projektams, kuriuos norite paremti, skirkite ne mažiau kaip %{minimum_budget} ir, norėdami nustatyti biudžetą, balsuokite pagal tai kam teikiate pirmenybę.
|
206
|
-
instruction: "<li>Pasirinkite bent %{minimum_budget} projektus ir balsuokite pagal savo prioritetus tam, kad numatyti biudžeto išlaidas.</li>"
|
207
|
-
count:
|
208
|
-
projects_count:
|
209
|
-
one: 1 projektas
|
210
|
-
few: "%{count} projektai (-ų)"
|
211
|
-
many: "%{count} projektai (-ų)"
|
212
|
-
other: "%{count} projektai"
|
213
|
-
exit_modal:
|
214
|
-
cancel: Grįžti į balsavimą
|
215
|
-
close_modal: Uždaryti modalinį langą
|
216
|
-
exit: Išeiti iš balsavimo
|
217
|
-
message: Jūsų balsas nebuvo registruotas nes dar neįvykdėte viso balsavimo proceso. Ar tikrai norite išeiti iš balsavimo aplinkos?
|
218
|
-
title: Dar nebasavote
|
219
|
-
filters:
|
220
|
-
category: Kategorija
|
221
|
-
scope: Apimtis
|
222
|
-
search: Ieškoti
|
223
|
-
status: Būsena
|
224
|
-
status_values:
|
225
|
-
all: Visi
|
226
|
-
not_selected: Nepasrinkta
|
227
|
-
selected: Pasirinkta
|
228
|
-
filters_small_view:
|
229
|
-
close_modal: Uždaryti modalinį langą
|
230
|
-
filter: Filtras
|
231
|
-
filter_by: Filtruoti pagal
|
232
|
-
unfold: Išskleisti
|
233
|
-
order_progress:
|
234
|
-
vote: Balsuoti
|
235
|
-
order_selected_projects:
|
236
|
-
remove: Pašalinti
|
237
|
-
selected_projects:
|
238
|
-
one: pasirinktas projektas
|
239
|
-
few: pasirinkti projektai
|
240
|
-
many: pasirinkti projektai
|
241
|
-
other: pasirinkti projektai
|
242
|
-
view: Peržiūra
|
243
|
-
orders:
|
244
|
-
highest_cost: Didžiausia kaina
|
245
|
-
label: Rikiuoti projektus pagal
|
246
|
-
lowest_cost: Žemiausią kainą
|
247
|
-
most_voted: Balsų skaičių
|
248
|
-
random: Atsitiktinai
|
249
|
-
selected: Pasirinkta
|
250
|
-
project:
|
251
|
-
add: Pridėti projektą %{resource_name} prie balsų
|
252
|
-
remove: Pašalinti projektą %{resource_name} iš balsų
|
253
|
-
selected: Pasirinkta
|
254
|
-
view: Peržiūrėti
|
255
|
-
votes:
|
256
|
-
one: balsas
|
257
|
-
few: balsai
|
258
|
-
many: balsai
|
259
|
-
other: balsai
|
260
|
-
project_budget_button:
|
261
|
-
add: Pridėti prie balsų
|
262
|
-
add_descriptive: Pridėti projektą %{resource_name} prie balsų
|
263
|
-
added: Pridėta prie Jūsų balsų
|
264
|
-
added_descriptive: Projektas %{resource_name} pridėtas prie Jūsų balsų
|
265
|
-
projects_for: Projektai dėl %{name}
|
266
|
-
show:
|
267
|
-
budget: Biudžetas
|
268
|
-
view_all_projects: Peržiūrėti visus projektus
|
269
|
-
components:
|
270
|
-
budgets:
|
271
|
-
actions:
|
272
|
-
comment: Komentuoti
|
273
|
-
vote: Balsuoti
|
274
|
-
name: Biudžetai
|
275
|
-
settings:
|
276
|
-
global:
|
277
|
-
announcement: Pranešimas
|
278
|
-
comments_enabled: Komentarai aktyvuoti
|
279
|
-
comments_max_length: Maksimalus komentaro ilgis (įrašyti 0 įprastam ilgiui)
|
280
|
-
form:
|
281
|
-
errors:
|
282
|
-
budget_voting_rule_only_one: Turi būti įjungta tik viena balsavimo taisyklė
|
283
|
-
budget_voting_rule_required: Būtina viena balsavimo taisyklė
|
284
|
-
landing_page_content: Biudžetų numatytasis puslapis
|
285
|
-
more_information_modal: Išsamesnės informacijos modalinis langas
|
286
|
-
projects_per_page: Projektų skaičius puslapyje
|
287
|
-
resources_permissions_enabled: Kiekvienam projektui galima nustatyti leistinus veiksmus
|
288
|
-
scope_id: Apimtis
|
289
|
-
scopes_enabled: Apimtys įjungtos
|
290
|
-
title: Pavadinimas
|
291
|
-
total_budget: Visas biudžetas
|
292
|
-
vote_minimum_budget_projects_number: Mažiausias projektų, už kuriuos galima balsuoti, skaičius
|
293
|
-
vote_rule_minimum_budget_projects_enabled: 'Įjungti taisyklę: mažiausias projektų, už kuriuos galima balsuoti, skaičius'
|
294
|
-
vote_rule_selected_projects_enabled: 'Įjungti taisyklę: mažiausias ir didžiausias projektų, už kuriuos galima balsuoti, skaičius'
|
295
|
-
vote_rule_threshold_percent_enabled: 'Įjungti taisyklę: Mažiausia biudžeto procentinė dalis'
|
296
|
-
vote_selected_projects_maximum: Didžiausias skaičius projektų, kuriuos galima pasirinkti
|
297
|
-
vote_selected_projects_minimum: Mažiausias skaičius projektų, kuriuos reikia pasirinkti
|
298
|
-
vote_threshold_percent: Balsų skaičiaus riba procentais
|
299
|
-
workflow: Eiga
|
300
|
-
workflow_choices:
|
301
|
-
all: 'Balsuoti už visus: dalyviai gali balsuoti už visus biudžetus.'
|
302
|
-
one: 'Balsuoti už vieną: dalyviai gali balsuoti tik už vieną pasirinktą biudžetą.'
|
303
|
-
step:
|
304
|
-
announcement: Skelbimas
|
305
|
-
comments_blocked: Komentarai užblokuoti
|
306
|
-
highlighted_heading: Paryškinta antraštė
|
307
|
-
landing_page_content: Biudžetų numatytasis puslapis
|
308
|
-
list_heading: Pateikti antraštę
|
309
|
-
more_information_modal: Išsamesnės informacijos modalinis langas
|
310
|
-
show_votes: Rodyti balsus
|
311
|
-
title: Pavadinimas
|
312
|
-
votes: Balsavimas
|
313
|
-
votes_choices:
|
314
|
-
disabled: Balsavimas išjungtas
|
315
|
-
enabled: Balsavimas įjungtas
|
316
|
-
finished: Balsavimas baigtas
|
317
|
-
events:
|
318
|
-
budgets:
|
319
|
-
budget_published:
|
320
|
-
email_intro: '%{participatory_space_title} %{resource_title} biudžetas dabar aktyvus. Jį galite pamatyti šiame puslapyje:'
|
321
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate %{participatory_space_title}. Jeigu nebenorite gauti pranešimų, spustelėkite ankstesnę nuorodą.
|
322
|
-
email_subject: '%{participatory_space_title} %{resource_title} biudžetas dabar aktyvus.'
|
323
|
-
notification_title: <a href="%{resource_path}">%{resource_title} biudžetas dabar aktyvus %{participatory_space_title} erdvėje.
|
324
|
-
orders:
|
325
|
-
checkout:
|
326
|
-
error: Apdorojant jūsų balsą iškilo problema
|
327
|
-
success: Jūsų balsas įskaitytas
|
328
|
-
destroy:
|
329
|
-
error: Atšaukiant jūsų balsą iškilo problema
|
330
|
-
success: Jūsų balsas atšauktas
|
331
|
-
resource_links:
|
332
|
-
included_proposals:
|
333
|
-
project_proposal: Į šį projektą įtraukti pasiūlymai
|
334
|
-
statistics:
|
335
|
-
orders_count: Palaikymai
|
336
|
-
projects_count: Projektai
|
337
|
-
index:
|
338
|
-
confirmed_orders_count: Balsų skaičius
|
data/config/locales/lv.yml
CHANGED
data/config/locales/mt.yml
CHANGED
data/config/locales/nl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
nl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -13,11 +14,8 @@ nl:
|
|
13
14
|
decidim_scope_id: Reikwijdte
|
14
15
|
description: Beschrijving
|
15
16
|
proposal_ids: Verwante voorstellen
|
16
|
-
proposals: Voorstellen
|
17
17
|
selected: Geselecteerd voor implementatie
|
18
18
|
title: Titel
|
19
|
-
proposals_import:
|
20
|
-
scope_id: Scope
|
21
19
|
activerecord:
|
22
20
|
models:
|
23
21
|
decidim/budgets/project:
|
@@ -104,10 +102,7 @@ nl:
|
|
104
102
|
success: "%{number} voorstellen succesvol geïmporteerd in projecten"
|
105
103
|
new:
|
106
104
|
create: Voorstellen importeren in projecten
|
107
|
-
|
108
|
-
import_all_accepted_proposals: Alle geaccepteerde voorstellen importeren
|
109
|
-
no_components: Er zijn geen andere voorstelonderdelen in deze participatieruimte om voorstellen in projecten te kunnen importeren.
|
110
|
-
origin_component_id: Oorsprong component
|
105
|
+
no_components: Er zijn geen andere voorstelcomponenten in deze participatieruimte om de voorstellen in projecten te importeren.
|
111
106
|
select_component: Selecteer een component
|
112
107
|
title: Voorstellen importeren
|
113
108
|
admin_log:
|
@@ -158,7 +153,7 @@ nl:
|
|
158
153
|
order_summary_mailer:
|
159
154
|
order_summary:
|
160
155
|
selected_projects: 'De projecten die je hebt geselecteerd zijn:'
|
161
|
-
subject: Je hebt gestemd
|
156
|
+
subject: Je hebt gestemd op de %{space_name} inspraakruimte
|
162
157
|
voted_on_space: Je hebt gestemd op het %{budget_name} budget voor de %{space_name} inspraakruimte.
|
163
158
|
voted_on_space_with_scope: Je hebt gestemd op het %{budget_name} budget voor de %{space_name} inspraakruimte op %{scope_name} (%{scope_type}).
|
164
159
|
projects:
|
@@ -170,13 +165,10 @@ nl:
|
|
170
165
|
title: Bevestig de stem
|
171
166
|
budget_excess:
|
172
167
|
budget_excess:
|
173
|
-
description: Dit project overschrijdt het maximale budget en kan niet worden toegevoegd. Als je wil, kun je een project verwijderen dat je al had geselecteerd, om je stem opnieuw te kunnen uitbrengen.
|
174
168
|
title: Maximum budget overschreden
|
175
169
|
close: Sluit
|
176
|
-
description: Dit project overschrijdt het maximale budget en kan niet worden toegevoegd. Als je wil, kun je een project verwijderen dat je al had geselecteerd, om je stem opnieuw te kunnen uitbrengen.
|
177
170
|
ok: OK
|
178
171
|
projects_excess:
|
179
|
-
description: Dit project overschrijdt het maximale aantal projecten en kan niet worden toegevoegd. Als je wil, kun je een project verwijderen dat je al had geselecteerd, om je stem opnieuw te kunnen uitbrengen.
|
180
172
|
title: Maximum aantal projecten overschreden
|
181
173
|
budget_summary:
|
182
174
|
are_you_sure: Weet u zeker dat u uw stem wilt annuleren?
|
@@ -192,26 +184,20 @@ nl:
|
|
192
184
|
description: Aan welke projecten moeten volgens jou middelen worden toegewezen? Selecteer minstens %{minimum_number} project(en) en maximum %{maximum_number} projecten en geef zo je voorkeur voor het budget door.
|
193
185
|
instruction: "<li>Selecteer minstens %{minimum_number} project(en) en maximum %{maximum_number} projecten en geef zo je voorkeur voor het budget door.</li>"
|
194
186
|
projects_rule_maximum_only:
|
195
|
-
description: Aan welke projecten moeten volgens jou middelen worden toegewezen? Selecteer maximum %{maximum_number} projecten en geef je
|
187
|
+
description: Aan welke projecten moeten volgens jou middelen worden toegewezen? Selecteer maximum %{maximum_number} projecten en geef zo je voorkeur voor het budget door.
|
196
188
|
instruction: "<li>Selecteer maximum %{maximum_number} project(en) en geef zo je voorkeur voor het budget door.</li>"
|
197
189
|
rules:
|
198
|
-
title:
|
190
|
+
title: Budget regels
|
199
191
|
title: U bepaalt het budget
|
200
192
|
total_budget: Totale budget
|
201
193
|
total_projects: Totaal aantal stemmen
|
202
194
|
vote_threshold_percent_rule:
|
203
|
-
description: Voor welke projecten vind jij dat we budget moeten vrijmaken? Wijs
|
195
|
+
description: Voor welke projecten vind jij dat we budget moeten vrijmaken? Wijs ten minste %{minimum_budget} toe aan de projecten die jij wil en geef zo je voorkeur voor het budget door.
|
204
196
|
instruction: "<li>Wijs minstens %{minimum_budget} toe aan de projecten die je wil en geef zo je voorkeur voor het budget door.</li>"
|
205
197
|
count:
|
206
198
|
projects_count:
|
207
199
|
one: 1 project
|
208
200
|
other: "%{count} projecten"
|
209
|
-
exit_modal:
|
210
|
-
cancel: Terug naar stemmen
|
211
|
-
close_modal: Sluit venster
|
212
|
-
exit: Verlaat stemmen
|
213
|
-
message: Je stem is niet geregistreerd omdat je het stemproces nog niet hebt voltooid. Weet je zeker dat je stemmen wil verlaten?
|
214
|
-
title: Je hebt nog niet gestemd
|
215
201
|
filters:
|
216
202
|
category: Categorie
|
217
203
|
scope: Reikwijdte
|
@@ -242,18 +228,19 @@ nl:
|
|
242
228
|
random: Willekeurige volgorde
|
243
229
|
selected: Geselecteerd
|
244
230
|
project:
|
245
|
-
add: Voeg project %{resource_name} toe aan
|
246
|
-
remove: Verwijder project %{resource_name} uit
|
231
|
+
add: Voeg project %{resource_name} toe aan uw stem
|
232
|
+
remove: Verwijder project %{resource_name} uit uw stem
|
247
233
|
selected: Geselecteerd
|
248
234
|
view: Bekijk
|
249
235
|
votes:
|
250
236
|
one: stem
|
251
237
|
other: stemmen
|
238
|
+
you_voted: Je stemde hiervoor
|
252
239
|
project_budget_button:
|
253
240
|
add: Voeg toe aan je stem
|
254
|
-
add_descriptive: Voeg project %{resource_name} toe aan
|
241
|
+
add_descriptive: Voeg project %{resource_name} toe aan uw stem
|
255
242
|
added: Toegevoegd aan je stem
|
256
|
-
added_descriptive: Project %{resource_name} is aan
|
243
|
+
added_descriptive: Project %{resource_name} is aan uw stem toegevoegd
|
257
244
|
projects_for: Projecten voor %{name}
|
258
245
|
show:
|
259
246
|
budget: Begroting
|
@@ -268,10 +255,10 @@ nl:
|
|
268
255
|
global:
|
269
256
|
announcement: Aankondiging
|
270
257
|
comments_enabled: Reacties ingeschakeld
|
271
|
-
comments_max_length: Commentaar maximale lengte (laat 0 voor
|
258
|
+
comments_max_length: Commentaar maximale lengte (laat 0 voor standaard waarde)
|
272
259
|
form:
|
273
260
|
errors:
|
274
|
-
budget_voting_rule_only_one: Slechts één stemregel
|
261
|
+
budget_voting_rule_only_one: Slechts één stemregel moet ingeschakeld zijn
|
275
262
|
budget_voting_rule_required: Eén stemregel is vereist
|
276
263
|
landing_page_content: Budgetten landingspagina
|
277
264
|
more_information_modal: Meer informatie
|
@@ -281,9 +268,8 @@ nl:
|
|
281
268
|
scopes_enabled: Scopes ingeschakeld
|
282
269
|
title: Titel
|
283
270
|
total_budget: Totale budget
|
284
|
-
vote_minimum_budget_projects_number:
|
271
|
+
vote_minimum_budget_projects_number: Minimaal aantal projecten om te stemmen
|
285
272
|
vote_rule_minimum_budget_projects_enabled: 'Inschakelen van regel: minimum aantal projecten waarover gestemd moet worden'
|
286
|
-
vote_rule_selected_projects_enabled: 'Activeer regel: er moet over een minimum en een maximum aantal projecten gestemd worden'
|
287
273
|
vote_rule_threshold_percent_enabled: 'Regel inschakelen: Minimaal budget percentage'
|
288
274
|
vote_selected_projects_maximum: Maximum aantal te selecteren projecten
|
289
275
|
vote_selected_projects_minimum: Minimaal aantal te selecteren projecten
|